Skip to content

Instantly share code, notes, and snippets.

@Rid-lin
Rid-lin / SymbianDev-ru.md
Created January 18, 2024 15:48 — forked from artem78/SymbianDev-ru.md
Разработка под Symbian OS

Полезные ресурсы по разработке под Symbian

  1. Небольшой сайт, содержащий ссылки на SDK и другие полезные ресурсы - https://mrrosset.github.io/Symbian-Archive/index.html
  2. Список активных разработчиков под Symbian - mrRosset/Symbian-Archive#10
  3. Чат - https://discord.gg/5Bm5SJ9 или https://discord.com/channels/431429574975422464/743412813279526914
  4. Презентация по основам Symbian - http://www.cs.rug.nl/~aiellom/images/SymbianOS.pdf
  5. Файлы:
  • моя коллекция: [h
# Currently supports GET method but few modifications should make it universal.
# script.sh <METHOD> <URL>
# Note that this script isn't S3 upload compatible!
ACCESS_KEY="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
SECRET_KEY="YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"
DATE=$(date -u +"%Y%m%dT%H%M%SZ")
DATE_ONLY=$(date -u +"%Y%m%d")
REGION="us-east-1"
SERVICE="execute-api"
ALGORITHM="AWS4-HMAC-SHA256"
@Rid-lin
Rid-lin / Makefile
Last active August 1, 2020 08:04 — forked from cjbarker/Makefile
Makefile for cross-compiling Golang. Just update BINARY var in Makefile and create empty vars in main.go for Version and Build
# ########################################################## #
# Makefile for Golang Project
# Includes cross-compiling, installation, cleanup
# ########################################################## #
# Check for required command tools to build or stop immediately
EXECUTABLES = git go find pwd
K := $(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),some string,$(error "No $(exec) in PATH)))