├── .github ├── pull_request_template.md └── workflows │ ├── assignment-statistics.yml │ ├── check_task.yml │ ├── update_criteria.yml │ └── update_task.yml ├── README.md ├── attic └── README-2023.md ├── contributions ├── README.md ├── demo │ ├── week2 │ │ └── README.md │ ├── week3 │ │ ├── README.md │ │ └── edwinso │ │ │ └── README.md │ ├── week4 │ │ ├── README.md │ │ └── sinvel │ │ │ └── README.md │ ├── week5 │ │ ├── README.md │ │ ├── amehmeti │ │ │ └── README.md │ │ ├── mingtaoz │ │ │ └── README.md │ │ ├── ryclin │ │ │ └── README.md │ │ ├── yifsu │ │ │ └── README.md │ │ └── zjia │ │ │ └── README.md │ ├── week6 │ │ ├── README.md │ │ ├── makari │ │ │ └── README.md │ │ ├── rongjin │ │ │ └── README.md │ │ ├── runzec │ │ │ └── README.md │ │ ├── shatan │ │ │ └── README.md │ │ └── yifsu │ │ │ └── README.md │ └── week7 │ │ ├── README.md │ │ └── sacsim │ │ └── README.md ├── feedback │ └── README.md ├── open-source │ └── README.md ├── paper-book-presentation │ ├── week2 │ │ └── README.md │ ├── week3 │ │ └── README.md │ ├── week4 │ │ └── README.md │ ├── week5 │ │ ├── README.md │ │ ├── edwinso │ │ │ └── README.md │ │ ├── runzec │ │ │ └── README.md │ │ └── smio │ │ │ └── README.md │ ├── week6 │ │ ├── README.md │ │ ├── mingtaoz │ │ │ └── README.md │ │ ├── ryclin │ │ │ └── README.md │ │ ├── sacsim │ │ │ └── README.md │ │ ├── sinvel │ │ │ └── README.md │ │ └── yuz2 │ │ │ └── README.md │ └── week7 │ │ └── README.md ├── presentation │ ├── week2 │ │ ├── README.md │ │ └── edwinso │ │ │ └── README.md │ ├── week3 │ │ ├── README.md │ │ └── mingtaoz │ │ │ └── README.md │ ├── week4 │ │ ├── README.md │ │ ├── runzec │ │ │ └── README.md │ │ ├── shatan │ │ │ └── README.md │ │ ├── yifsu │ │ │ └── README.md │ │ └── yuz2 │ │ │ └── README.md │ ├── week5 │ │ ├── README.md │ │ ├── makari │ │ │ └── README.md │ │ ├── msis3 │ │ │ └── README.md │ │ ├── rongjin │ │ │ └── README.md │ │ ├── shatan │ │ │ └── README.md │ │ └── sinvel │ │ │ └── README.md │ ├── week6 │ │ ├── README.md │ │ └── zjia │ │ │ └── README.md │ └── week7 │ │ └── README.md └── smart-contract-protocol │ ├── week2 │ └── README.md │ ├── week3 │ └── README.md │ ├── week4 │ └── README.md │ ├── week5 │ ├── README.md │ ├── sacsim-ryclin │ │ └── README.md │ └── yuz2 │ │ └── README.md │ ├── week6 │ └── README.md │ └── week7 │ ├── README.md │ ├── amehmeti-rongjin │ └── README.md │ ├── edwinso │ └── README.md │ ├── makari │ └── README.md │ ├── msis3 │ └── README.md │ ├── sinvel │ └── README.md │ └── smio │ └── README.md ├── grading-criteria.md └── tools ├── requirements.txt └── stat_submissions.py /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/assignment-statistics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/.github/workflows/assignment-statistics.yml -------------------------------------------------------------------------------- /.github/workflows/check_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/.github/workflows/check_task.yml -------------------------------------------------------------------------------- /.github/workflows/update_criteria.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/.github/workflows/update_criteria.yml -------------------------------------------------------------------------------- /.github/workflows/update_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/.github/workflows/update_task.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/README.md -------------------------------------------------------------------------------- /attic/README-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/attic/README-2023.md -------------------------------------------------------------------------------- /contributions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/README.md -------------------------------------------------------------------------------- /contributions/demo/week2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/demo/week3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/demo/week3/edwinso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week3/edwinso/README.md -------------------------------------------------------------------------------- /contributions/demo/week4/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/demo/week4/sinvel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week4/sinvel/README.md -------------------------------------------------------------------------------- /contributions/demo/week5/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/demo/week5/amehmeti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week5/amehmeti/README.md -------------------------------------------------------------------------------- /contributions/demo/week5/mingtaoz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week5/mingtaoz/README.md -------------------------------------------------------------------------------- /contributions/demo/week5/ryclin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week5/ryclin/README.md -------------------------------------------------------------------------------- /contributions/demo/week5/yifsu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week5/yifsu/README.md -------------------------------------------------------------------------------- /contributions/demo/week5/zjia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week5/zjia/README.md -------------------------------------------------------------------------------- /contributions/demo/week6/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/demo/week6/makari/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week6/makari/README.md -------------------------------------------------------------------------------- /contributions/demo/week6/rongjin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week6/rongjin/README.md -------------------------------------------------------------------------------- /contributions/demo/week6/runzec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week6/runzec/README.md -------------------------------------------------------------------------------- /contributions/demo/week6/shatan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week6/shatan/README.md -------------------------------------------------------------------------------- /contributions/demo/week6/yifsu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week6/yifsu/README.md -------------------------------------------------------------------------------- /contributions/demo/week7/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/demo/week7/sacsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/demo/week7/sacsim/README.md -------------------------------------------------------------------------------- /contributions/feedback/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/open-source/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week4/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week5/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week5/edwinso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week5/edwinso/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week5/runzec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week5/runzec/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week5/smio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week5/smio/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week6/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week6/mingtaoz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week6/mingtaoz/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week6/ryclin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week6/ryclin/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week6/sacsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week6/sacsim/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week6/sinvel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week6/sinvel/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week6/yuz2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/paper-book-presentation/week6/yuz2/README.md -------------------------------------------------------------------------------- /contributions/paper-book-presentation/week7/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/presentation/week2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/presentation/week2/edwinso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week2/edwinso/README.md -------------------------------------------------------------------------------- /contributions/presentation/week3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/presentation/week3/mingtaoz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week3/mingtaoz/README.md -------------------------------------------------------------------------------- /contributions/presentation/week4/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/presentation/week4/runzec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week4/runzec/README.md -------------------------------------------------------------------------------- /contributions/presentation/week4/shatan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week4/shatan/README.md -------------------------------------------------------------------------------- /contributions/presentation/week4/yifsu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week4/yifsu/README.md -------------------------------------------------------------------------------- /contributions/presentation/week4/yuz2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week4/yuz2/README.md -------------------------------------------------------------------------------- /contributions/presentation/week5/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/presentation/week5/makari/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week5/makari/README.md -------------------------------------------------------------------------------- /contributions/presentation/week5/msis3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week5/msis3/README.md -------------------------------------------------------------------------------- /contributions/presentation/week5/rongjin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week5/rongjin/README.md -------------------------------------------------------------------------------- /contributions/presentation/week5/shatan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week5/shatan/README.md -------------------------------------------------------------------------------- /contributions/presentation/week5/sinvel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week5/sinvel/README.md -------------------------------------------------------------------------------- /contributions/presentation/week6/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/presentation/week6/zjia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/presentation/week6/zjia/README.md -------------------------------------------------------------------------------- /contributions/presentation/week7/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week4/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week5/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week5/sacsim-ryclin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week5/sacsim-ryclin/README.md -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week5/yuz2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week5/yuz2/README.md -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week6/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week7/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week7/amehmeti-rongjin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week7/amehmeti-rongjin/README.md -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week7/edwinso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week7/edwinso/README.md -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week7/makari/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week7/makari/README.md -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week7/msis3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week7/msis3/README.md -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week7/sinvel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week7/sinvel/README.md -------------------------------------------------------------------------------- /contributions/smart-contract-protocol/week7/smio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/contributions/smart-contract-protocol/week7/smio/README.md -------------------------------------------------------------------------------- /grading-criteria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/grading-criteria.md -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- 1 | PTable 2 | PyGithub 3 | -------------------------------------------------------------------------------- /tools/stat_submissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH/programmable-society/HEAD/tools/stat_submissions.py --------------------------------------------------------------------------------