This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 279
/
_config.yml
171 lines (161 loc) · 3.72 KB
/
_config.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
title: Computing for Computer Scientists
email: [email protected]
description: > # this means to ignore newlines until "url:"
This 1-credit seminar is designed to teach the essentials of using a computer
effectively for EECS students. While the target audience is CS/CE/DS
students, any student wishing to learn how to use their computer much more
effectively is encouraged to join. Topics covered include shells,
environment, scripting, Makefiles, compilers, debugging tools, and version
control. The last month of the course will be open to student input for
remaining useful topics to cover.
url: "https://c4cs.github.io" # the base hostname & protocol for your site
google_analytics_id: UA-70360310-1
timezone: America/Detroit
permalink: none
collections:
commands:
output: true
permalink: /commands/:title
syllabus:
updates:
lectures:
output: true
defaults:
- scope:
path: "_syllabus/f18"
values:
category: f18
- scope:
path: "_lectures/f18"
values:
category: f18
- scope:
path: "_updates/f18"
values:
category: f18
- scope:
path: "_syllabus/w18"
values:
category: w18
- scope:
path: "_lectures/w18"
values:
category: w18
- scope:
path: "_updates/w18"
values:
category: w18
- scope:
path: "_syllabus/f17"
values:
category: f17
- scope:
path: "_lectures/f17"
values:
category: f17
- scope:
path: "_updates/f17"
values:
category: f17
- scope:
path: "_syllabus/w17"
values:
category: w17
- scope:
path: "_lectures/w17"
values:
category: w17
- scope:
path: "_updates/w17"
values:
category: w17
- scope:
path: "_syllabus/f16"
values:
category: f16
- scope:
path: "_lectures/f16"
values:
category: f16
- scope:
path: "_updates/f16"
values:
category: f16
- scope:
path: "_updates/w16"
values:
category: w16
- scope:
type: lectures
values:
layout: lecture
- scope:
type: syllabus
values:
layout: syllabus
- scope:
path: "_lectures/w18"
values:
category: w18
- scope:
path: "_syllabus/w18"
values:
category: w18
- scope:
path: "_updates/w18"
values:
category: w18
- scope:
type: commands
values:
layout: reference
- scope:
path: "_commands/basics"
values:
category: basics
- scope:
path: "_commands/tutorials"
values:
category: tutorials
- scope:
path: "_commands/shells"
values:
category: shells
- scope:
path: "_commands/scripting"
values:
category: scripting
- scope:
path: "_commands/tools"
values:
category: tools
- scope:
path: "_commands/editors"
values:
category: editors
- scope:
path: "_commands/toys"
values:
category: toys
- scope:
path: "_commands/ubuntu"
values:
category: ubuntu
- scope:
path: "_commands/os_x"
values:
category: os_x
command_categories: ["basics", "tutorials", "shells", "scripting", "tools", "editors", "toys", "ubuntu", "os_x"]
# Build settings
markdown: kramdown
# This is a bit of a hack, since we're using remark, which expects
# to render markdown itself, we need to prevent jekyll from picking
# it up and parsing it, however we would still like to use the templating
# features of jekyll so that we can just write slides alone, in a
# markdown file. Thus we override the extensions list so that jekyll does
# not treat .markdown files as markdown.
markdown_ext: "mkdown,mkdn,mkd,md"
# Needed for Travis
exclude: [vendor]
# Needed for Docker builds
github: [metadata]