-
Notifications
You must be signed in to change notification settings - Fork 3
/
resources.html
286 lines (275 loc) · 11.8 KB
/
resources.html
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link rel="icon" href="favicon-192.png" sizes="192x192">
<title>CSDojo Resources</title>
</head>
<style>
.mdl-grid {
width: 90%;
}
.mdl-card {
width: 100%;
height: 100%;
}
</style>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<!-- Navigation Bar -->
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">csDojo</span>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="about.html">About</a>
<a class="mdl-navigation__link" href="resources.html">Resources</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer mdl">
<span class="mdl-layout-title">csDojo</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="about.html">About</a>
<a class="mdl-navigation__link" href="resources.html">Resources</a>
</nav>
</div>
<!-- Page content -->
<div class = "mdl-layout__content mdl-grid">
<div class = "mdl-cell mdl-cell--12-col">
<h1>Welcome to CSDojo Resources!</h1>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__title mdl-card--border">
<div class = "mdl-card__title-text"><h2>Racket</h2></div>
</div>
<div class = "mdl-card__supporting-text">
<ul class = "mdl-list">
<li class = "mdl-list__item mdl-list__item--three-line">
</li>
</ul>
</div>
</div>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__title mdl-card--border">
<div class = "mdl-card__title-text"><h2>Netlogo</h2></div>
</div>
<div class = "mdl-card__supporting-text">
<ul class = "mdl-list">
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://ccl.northwestern.edu/netlogo/docs/">
Netlogo User Manual
</a>
<span class = "mdl-list__item-text-body">
Includes:
<a target = "_blank" href = "https://ccl.northwestern.edu/netlogo/docs/tutorial1.html">3-part tutorial</a>,
<a target = "_blank" href = "https://ccl.northwestern.edu/netlogo/docs/interface.html">interface guide</a>, and
<a target = "_blank" href = "https://ccl.northwestern.edu/netlogo/docs/programming.html">programming guide</a>
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://ccl.northwestern.edu/netlogo/docs/dictionary.html">
Netlogo Dictionary
</a>
<span class = "mdl-list__item-text-body">
Dictionary of Netlogo primitives
</span>
</span>
</li>
</ul>
</div>
</div>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__title mdl-card--border">
<div class = "mdl-card__title-text"><h2>HTML & CSS</h2></div>
</div>
<div class = "mdl-card__supporting-text">
<ul class = "mdl-list">
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://www.w3schools.com/html/default.asp">W3Schools HTML Tutorials</a>
<span class = "mdl-list__item-text-body">
Straightforward code explanations of HTML with interactive examples
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://www.w3schools.com/css/default.asp">W3Schools CSS Tutorials</a>
<span class = "mdl-list__item-text-body">
Straightforward code explanations of CSS with interactive examples
</span>
</span>
</li>
</ul>
</div>
</div>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__title mdl-card--border">
<div class = "mdl-card__title-text"><h2>Python</h2></div>
</div>
<div class = "mdl-card__supporting-text">
<ul class = "mdl-list">
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://www.w3schools.com/python/default.asp">W3Schools Python Tutorials</a>
<span class = "mdl-list__item-text-body">
Straightforward code explanations of Python with interactive examples
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "http://homer.stuy.edu/~pbrooks/PythonChecker/PythonChecker.py">
Mr. Brook's Python Checker
</a>
<span class = "mdl-list__item-text-body">
Useful for Intro II final project: Check Python program designed to produce HTML
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "http://pythontutor.com">
Python Code Visualizer
</a>
<span class = "mdl-list__item-text-body">
Write code in your web browser, see it visualized step by step, and get live help from volunteers
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://docs.python.org/3.8/library/index.html">
Python 3.8 Standard Library
</a>
<span class = "mdl-list__item-text-body">
Describes semantics of non-essential built-in object types and of built-in functions and modules
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://docs.python.org/3.8/reference/index.html#reference-index">
Python 3.8 Language Reference
</a>
<span class = "mdl-list__item-text-body">
Describes syntax and core semantics
</span>
</span>
</li>
</ul>
</div>
</div>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__title mdl-card--border">
<div class = "mdl-card__title-text"><h2>Java</h2></div>
</div>
<div class = "mdl-card__supporting-text">
<ul class = "mdl-list">
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://www.w3schools.com/java/default.asp">W3Schools Java Tutorials</a>
<span class = "mdl-list__item-text-body">
Straightforward code explanations of Java with interactive examples
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://cscircles.cemc.uwaterloo.ca/java_visualize/">Java Code Visualizer</a>
<span class = "mdl-list__item-text-body">
Write code in your web browser and see it visualized step by step
</span>
</span>
</li>
</ul>
</div>
</div>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__title mdl-card--border">
<div class = "mdl-card__title-text"><h2>Senior Electives</h2></div>
</div>
<div class = "mdl-card__supporting-text">
<ul class = "mdl-list">
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://processing.org/reference/">Processing Reference</a>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://cdecl.org">C-English Translator</a>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://jsfiddle.net">JS Fiddle</a>
</span>
</li>
</ul>
</div>
</div>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__title mdl-card--border">
<div class = "mdl-card__title-text"><h2>Miscellaneous</h2></div>
</div>
<div class = "mdl-card__supporting-text">
<ul class = "mdl-list">
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://www.gnu.org/software/emacs/tour/g">Guided Tour of Emacs</a>
<span class = "mdl-list__item-text-body">
Emacs is a flexible text editor with a steep learning curve of keyboard commands
</span>
</span>
</li>
<li class = "mdl-list__item mdl-list__item--three-line">
<span class = "mdl-list__item-primary-content">
<a target = "_blank" href = "https://www.youtube.com/watch?v=adxmlHDim6c">FileZilla YouTube Tutorial</a>
<span class = "mdl-list__item-text-body">
FileZilla is used to transfer files between the school computers and your home computer
</span>
</span>
</li>
</ul>
</div>
</div>
</div>
<div class = "mdl-cell mdl-cell--6-col">
<div class = "mdl-card mdl-shadow--2dp">
<div class = "mdl-card__supporting-text">
<span class = "mdl-list__item-text-body"><h3>
(\ (\<br>
( . .)<br>
C(")(")</h3>
</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>