├── .github ├── ISSUE_TEMPLATE │ └── project-proposal.md └── workflows │ └── build.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.toml ├── content ├── _index.md ├── blog │ ├── 2025-08-25-welcome.md │ ├── 2025-08-26-ta-intro.md │ └── _index.md ├── lesson │ ├── 1.md │ ├── 10.md │ ├── 11.md │ ├── 12.md │ ├── 13.md │ ├── 14.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ ├── 9.md │ └── _index.md ├── schedule.md ├── self-guided.md └── syllabus.md ├── data ├── blog_footer.md ├── content.toml ├── reading.toml └── schedule.toml ├── sass └── main.scss ├── static ├── examples │ └── scviol.c └── img │ ├── book.svg │ ├── calendar.svg │ ├── construction.gif │ ├── discussion.svg │ ├── favicon.ico │ ├── favicon152.png │ ├── rss.svg │ └── video.svg └── templates ├── base.html ├── blog.html ├── home.html ├── index.html ├── lesson.html ├── lessons.html ├── macros.html ├── page.html ├── post.html ├── rss.xml ├── schedule.html ├── section.html └── sg.html /.github/ISSUE_TEMPLATE/project-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/.github/ISSUE_TEMPLATE/project-proposal.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/blog/2025-08-25-welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/blog/2025-08-25-welcome.md -------------------------------------------------------------------------------- /content/blog/2025-08-26-ta-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/blog/2025-08-26-ta-intro.md -------------------------------------------------------------------------------- /content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/blog/_index.md -------------------------------------------------------------------------------- /content/lesson/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/1.md -------------------------------------------------------------------------------- /content/lesson/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/10.md -------------------------------------------------------------------------------- /content/lesson/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/11.md -------------------------------------------------------------------------------- /content/lesson/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/12.md -------------------------------------------------------------------------------- /content/lesson/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/13.md -------------------------------------------------------------------------------- /content/lesson/14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/14.md -------------------------------------------------------------------------------- /content/lesson/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/2.md -------------------------------------------------------------------------------- /content/lesson/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/3.md -------------------------------------------------------------------------------- /content/lesson/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/4.md -------------------------------------------------------------------------------- /content/lesson/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/5.md -------------------------------------------------------------------------------- /content/lesson/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/6.md -------------------------------------------------------------------------------- /content/lesson/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/7.md -------------------------------------------------------------------------------- /content/lesson/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/8.md -------------------------------------------------------------------------------- /content/lesson/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/9.md -------------------------------------------------------------------------------- /content/lesson/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/lesson/_index.md -------------------------------------------------------------------------------- /content/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/schedule.md -------------------------------------------------------------------------------- /content/self-guided.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/self-guided.md -------------------------------------------------------------------------------- /content/syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/content/syllabus.md -------------------------------------------------------------------------------- /data/blog_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/data/blog_footer.md -------------------------------------------------------------------------------- /data/content.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/data/content.toml -------------------------------------------------------------------------------- /data/reading.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/data/reading.toml -------------------------------------------------------------------------------- /data/schedule.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/data/schedule.toml -------------------------------------------------------------------------------- /sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/sass/main.scss -------------------------------------------------------------------------------- /static/examples/scviol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/examples/scviol.c -------------------------------------------------------------------------------- /static/img/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/book.svg -------------------------------------------------------------------------------- /static/img/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/calendar.svg -------------------------------------------------------------------------------- /static/img/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/construction.gif -------------------------------------------------------------------------------- /static/img/discussion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/discussion.svg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/favicon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/favicon152.png -------------------------------------------------------------------------------- /static/img/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/rss.svg -------------------------------------------------------------------------------- /static/img/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/static/img/video.svg -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/blog.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/lesson.html -------------------------------------------------------------------------------- /templates/lessons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/lessons.html -------------------------------------------------------------------------------- /templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/macros.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/page.html -------------------------------------------------------------------------------- /templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/post.html -------------------------------------------------------------------------------- /templates/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/rss.xml -------------------------------------------------------------------------------- /templates/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/schedule.html -------------------------------------------------------------------------------- /templates/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/section.html -------------------------------------------------------------------------------- /templates/sg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampsyo/cs6120/HEAD/templates/sg.html --------------------------------------------------------------------------------