-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCourse_outline.html
More file actions
220 lines (214 loc) · 6.69 KB
/
Course_outline.html
File metadata and controls
220 lines (214 loc) · 6.69 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="M A Eyler, Istanbul, 2022">
<link rel="icon" href="images/icon192.png">
<title>Course Outline</title>
<style>
body {
max-width: 400px;
font: 15px arial;
background: #cef;
}
small { font-size: 14px; }
table { border-collapse: collapse; }
td {
border: 0.5px solid black;
padding: 6px;
}
td:nth-child(odd) {
text-align: center;
}
</style>
</head>
<body>
<h3>Outline -- BLM 305 (2022)</h3>
<table>
<thead>
<tr>
<th>Week</th>
<th>Topic</th>
<th>Chap</th>
<th>API</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td><a href="work/First%20Week">First week</a>
<br>VS Code, Dev Tools
</td>
<td>1<br></td>
<td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a>
<br><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number">Number</a>
</td>
</tr>
<tr>
<td>1</td>
<td><a href="work/Counting.html">Web page</a>, <a href="GitHub Kılavuzu">Git/GitHub</a>
<br>Simple Functions
</td>
<td><br>2-3</td>
<td><a href="https://docs.github.com/en/get-started/quickstart/hello-world">Hello GitHub</a>
<br><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function">Function</a>
</td>
</tr>
<tr>
<td>2</td>
<td>Elements of a web page
<br><a href="work/Objects">Objects</a> and <a href="https://maeyler.github.io/JS/Java%20to%20JS">Classes</a>
</td>
<td>13<br>4</td>
<td><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a>, <a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a>
</td>
</tr>
<tr>
<td>3</td>
<td>Higher-order Functions<br>
Object <a href="work/Inspector.html">Inspector</a>
</td>
<td>5<br> </td>
<td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a>,
<a href="https://www.json.org/">JSON</a><br>
</td>
</tr>
<tr>
<td>4</td>
<td>Keyed collections<br>
<a href="exam/Sample_quiz">Quiz 1</a>
and <a href="exam/Quiz1_2022">solution</a></td>
<td>6<br> </td>
<td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Keyed_collections">Set and Map</a>
<br>
</td>
</tr>
<tr>
<td>5</td>
<td><a href="work/Inspector.html">Async</a> Programming<br>
Fetching <a href="work/Reading_files">Remote Files</a></td>
<td>11</td>
<td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">
Promise</a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch">Fetch_API</a></td>
</tr>
<tr>
<td>6</td>
<td>
<a href="work/Power">Power of DevTools</a><br>
<a href="https://maeyler.github.io/JS/simple/JS_Animation">Animations</a>, <a href="https://eloquentjavascript.net/17_canvas.html#p_qMrOddcbqu">sprites</a>
</td>
<td>14</td>
<td>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model">DOM</a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API">Animation</a>
</td>
</tr>
<tr>
<td>7</td>
<td>
Quiz 2 <a href="exam/Quiz2_2022">solution</a></td>
<td></td>
<td></td>
</tr>
<td>8</td>
<td>
Reading <a href="work/Local_files">Local Files</a><br>
<a href="https://maeyler.github.io/JS/hard/Dragging">
Handling Events</a>
</td>
<td><br>15</td>
<td>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/File">File</a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Event">Event</a>
</td>
</tr>
<tr>
<td>9</td>
<td>
<a href="https://maeyler.github.io/JS/PWA_EN">PWA</a>,
<a href="https://codefrontend.com/css-guide/">CSS</a>,
<a href="work/await.html">await</a> <br>
External API: <a href="https://maeyler.github.io/JS/api/GitHub_Users">Users</a>
</td>
<td></td>
<td><a href="https://javascript.info/async-await">
async/await</a><br>
<a href="https://docs.github.com/en/free-pro-team@latest/rest/reference/users#get-a-user">
GitHub users</a></td>
</tr>
<tr>
<td>10</td>
<td>
External API: <a href="work/Weather.html">Weather</a><br>
<a href="work/Graphics.html">SVG and Canvas</a>
</td>
<td> <br>17</td>
<td><a href="https://api.openweathermap.org/">OpenWeather</a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API">Canvas</a></td>
</tr>
<tr>
<td>11</td>
<td>External API: <a href="work/Open_Maps.html">Maps</a>
<br><a href="https://www.openstreetmap.org/">Open Maps</a>
</td>
<td></td>
<td><a href="https://leafletjs.com/">Leaflet JS</a><br>
<a href="https://www.openstreetmap.org/about">Map Docs</a></td>
</tr>
<tr>
<td>12</td>
<td>Web API:<br><a href="work/ImageInspector.html">Image Processing</a></td>
<td> </td>
<td>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/transition">Transition</a>
<br><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/transform">Transform</a></td>
</tr>
<tr>
<td>13</td>
<td>
<a href="https://maeyler.github.io/JS/api/Drive_teacher">Drive teacher</a><br>
<a href="work/Drive_API.html">Write to the cloud</a>
</td>
<td> </td>
<td><a href="https://developers.google.com/drive/api/v3/quickstart/js">Google Drive</a><br> </td>
</tr>
<tr>
<td>14</td>
<td><a href="/2022/Projects">Term Project</a></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>15</td>
<td>Final exam</td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<br>
<p><b>Lecture on Tuesday: 9-12 </b>
<ul>
<li>M Akif Eyler: <ma.eyler(AT)gmail.com></li>
</ul>
<p><b>Lab on Thursday: 13-15 </b>
<ul>
<li>Kadir Aram: <karam(AT)fsm.edu.tr></li>
<li>Zeki KUŞ: <zkus(AT)fsm.edu.tr></li>
</ul>
<p><b>Grading</b></p>
<pre>
2xQuiz 30
Homeworks 10
Class work 10
Project 20
Final exam 30
</pre>
<p><b>Attendance and regular class work is required</b>
</p>
<script src="navbar.js"></script>
</body>
</html>