-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
110 lines (105 loc) · 3.42 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
nav:
- Home: index.md
- Classes:
- Upper School:
- Computational Thinking: ct.md
- Intro to CS: intro.md
- APCS: apcs.md
- Data Structures and Algorithms: datastructures.md
- Middle School:
- CoderZ: coderz.md
- CodeCombat: codecombat.md
- Athenian Summer Programs, 2020:
- Grades 6–10 programming classes using Ruby, Python and JavaScript: https://davebsoft.com/programming-for-kids/classes/athenian/summer/2020/
- Assignments:
- Summary: ./assignments/assignment-workflow.md
- Setup Gitpod: ./assignments/setup-gitpod.md
- Create Assignment: ./assignments/create-assignment.md
- Open with Gitpod: ./assignments/open-gitpod.md
- Submit Assignment: ./assignments/submit-assignment.md
- Assignment Links: ./assignments/assignment-links.md
- Software:
- IDEs:
- VS Code: vscode.md
- VS Code Online: https://online.visualstudio.com/login
- IntelliJ: https://www.jetbrains.com/idea/download/
- PyCharm: https://www.jetbrains.com/pycharm/download
- repl.it: https://repl.it/
- ideone.com: https://ideone.com
- Colab: colab.md
- Git: git.md
- Jupyter: jupyter.md
- Jupyter Options: jupyter-options.md
- MkDocs: mkdocs.md
- Markdown: markdown.md
- IDE Plugins: plugins.md
- Hardware:
- Circuit Playground: cpx.md
- Crickit/CPX: cricket.md
- Tutorials:
- Vim: vim.md
- Unix shell: shell.md
- Online Curriculum:
- Object Oriented Programming: https://www.youtube.com/watch?v=o8p1f5ra8RA&list=PLJse9iV6ReqhD_wMePwA2HPJ1y5jNmIus
- Nand2Tetris: nand2tetris.md
- Coding Resources: coding-resources.md
- The Missing Semester of Your CS Education: https://missing.csail.mit.edu
- ROSALIND (Platform for learning bioinformatics and programming): http://rosalind.info/
- Coding Games:
- Battlesnake: battlesnake.md
- CodinGame: codingame.md
- Misc:
- Advice: advice.md
- Interesting: interesting.md
- Teaching CS: teaching.md
- APCS Bootcamp: bootcamp.md
- Hour of Code: hoc.md
- Other Athenian Websites:
- Programming Tutorials: https://github.com/athenian-programming
- Athenian FLL: https://www.athenian-fll.org
- Athenian FRC: https://www.athenian-robotics.org
theme:
name: 'material'
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
language: en
feature:
tabs: false
palette:
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
logo: 'images/owls.jpg'
favicon: 'assets/images/favicon.ico'
markdown_extensions:
- admonition
- codehilite:
linenums: true
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
google_analytics: ['UA-156755533-1', 'auto']
site_name: Athenian Computer Science
site_url: https://www.athenian-cs.org
site_description: Athenian CS Documentation
site_author: Athenian CS Team
repo_url: https://github.com/athenian-computational-thinking/athenian-cs-mkdocs
repo_name: 'Athenian CS Home'