-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
399 lines (344 loc) · 16 KB
/
index.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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<!DOCTYPE html>
<html>
<head>
<title>BLM305 HomePage</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="JSuniWork/CW7/geek.png">
<link rel="manifest" href="manifest.json">
<script>
// https://stackoverflow.com/questions/38168276/navigator-serviceworker-controller-is-null-until-page-refresh
self.addEventListener('install', function (event) {
event.waitUntil(self.skipWaiting()); // Activate worker immediately
});
self.addEventListener('activate', function (event) {
event.waitUntil(self.clients.claim()); // Become available to all pages
});
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('/exercise/sw.js')
.then((reg) => { console.log('SW starts', reg.active) })
.catch(console.log)
}
</script>
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Raleway", sans-serif
}
</style>
</head>
<body class="w3-light-grey w3-content" style="max-width:1600px">
<!-- Sidebar/menu -->
<!-- <nav class="w3-sidebar w3-collapse w3-white w3-animate-left" style="z-index:3;width:300px;" id="mySidebar"><br>
<div class="w3-container">
<a href="#" onclick="w3_close()" class="w3-hide-large w3-right w3-jumbo w3-padding w3-hover-grey" title="close menu">
<i class="fa fa-remove"></i>
</a>
<img src="https://avatars3.githubusercontent.com/u/18273833" style="width:100%;" class="w3-round"><br><br>
<h4><b>Abdurrahman RAJAB </b></h4>
</div>
<div class="w3-panel w3-large">
<a class="fa fa-github w3-hover-opacity" href="https://github.com/a0m0rajab"></a>
<a class="fa fa-facebook-official w3-hover-opacity" href="https://www.facebook.com/a0m0rajab"></a>
<a class="fa fa-instagram w3-hover-opacity" href="https://www.instagram.com/a0m0rajab"></a>
<a class="fa fa-twitter w3-hover-opacity" href="https://www.twitter.com/rajab_2"></a>
<a class="fa fa-linkedin w3-hover-opacity" href="https://www.linkedin.com/in/a0m0rajab"></a>
</div>
</nav> -->
<!-- Overlay effect when opening sidebar on small screens -->
<div class="w3-overlay w3-hide-large w3-animate-opacity" onclick="w3_close()" style="cursor:pointer" title="close side menu"
id="myOverlay"></div>
<!-- !PAGE CONTENT! -->
<!-- <div class="w3-main" style="margin-left:300px"> -->
<div class="w3-main" >
<!-- Header -->
<header id="portfolio">
<span class="w3-button w3-hide-large w3-xxlarge w3-hover-text-grey" onclick="w3_open()"><i class="fa fa-bars"></i></span>
<div class="w3-container">
<h1><b>Advanced Programming Techniques - BLM305</b></h1>
</div>
</header>
<!-- First Grid-->
<div class="w3-row-padding">
<div class="w3-quarter w3-container">
<div class="w3-container w3-white">
<p><b>CW0 - Introduction</b></p>
<p>Introduction to HTML and JS, solved the
<a href="http://eloquentjavascript.net/02_program_structure.html#p_1pkxSCSkVg">Chessboard</a>
exercise at the end Chap 2 of <a href="http://eloquentjavascript.net/">eloquent javascript book</a></p>
<div>
<a href="https://groups.google.com/forum/#!topic/fsmvu-mae/1gn41Vtkj6Y" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<br>
<br>
</div>
</div>
</div>
<div class="w3-quarter w3-container">
<div class="w3-container w3-white">
<p><b>CW1 - making a web page</b></p>
<p>Making a web page using <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a>
methods.</p>
<div>
<a href="https://groups.google.com/forum/#!topic/fsmvu-mae/IvKDmXMwrM8" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/CW1.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">Work</a>
<br>
<br>
</div>
</div>
</div>
<div class="w3-quarter w3-container">
<div class="w3-container w3-white">
<p><b>CW2 - Objects and Arrays</b></p>
<p>solved the
<a href="http://eloquentjavascript.net/04_data.html#h_TcUD2vzyMe">The sum of a range</a>
exercise at the end Chap 4 of <a href="http://eloquentjavascript.net/">eloquent javascript book</a>
Modified analyze() method so that it counts the number days for each event type.</p>
<div>
<a href="https://groups.google.com/forum/#!topic/fsmvu-mae/hwM_bADloQU" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/CW2/roadMap" class="w3-btn w3-white w3-border w3-border-grey w3-round">work</a>
<br>
<br>
</div>
</div>
</div>
<div class="w3-quarter w3-container">
<div class="w3-container w3-white">
<p><b>CW3 - Inspector</b></p>
<p>tickling The <a href="https://maeyler.github.io/JS/sss/">Inspector </a>.</p>
<div>
<a href="https://groups.google.com/forum/#!topic/fsmvu-mae/-5ONDWb77fY" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/index.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">Work</a>
<br>
<br>
</div>
</div>
</div>
</div>
<br>
<!-- Second Grid-->
<div class="w3-row-padding">
<div class="w3-quarter w3-container">
<div class="w3-container w3-white">
<p><b>CW4 - File </b></p>
<p>You will open a remote file and some local files together and comparing them.</p>
<div>
<a href="https://groups.google.com/forum/#!msg/fsmvu-mae/YbEWQyVvejk/uQsmi5WuCAAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/CW5.HTML" class="w3-btn w3-white w3-border w3-border-grey w3-round">Work</a>
</div>
<br>
</div>
</div>
<div class="w3-quarter w3-container">
<div class="w3-container w3-white">
<p><b>CW5 - Timing</b></p>
<p>Comparing map and array using Time measurement methods.</p>
<div>
<a href="https://groups.google.com/forum/#!msg/fsmvu-mae/qx3MEdIdMtI/gp9TLgNOBQAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/cw6.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">Work</a>
</div>
<br>
</div>
</div>
<div class="w3-quarter w3-container">
<div class="w3-container w3-white">
<p><b>CW7 - DOM and PWA</b></p>
<p>Making PWA and Some tables using DOM.</p>
<div>
<a href="https://groups.google.com/forum/#!msg/fsmvu-mae/FS_53-wdnc0/quWV2wFHAQAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/CW7/roadMap" class="w3-btn w3-white w3-border w3-border-grey w3-round">Work</a>
</div>
<br>
</div>
</div>
<div class="w3-quarter w3-container w3-hide ">
<div class="w3-container w3-white">
<p><b>CW7</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue
gravida diam non fringilla.</p>
<div>
<a href="#" class="w3-btn w3-white w3-border w3-border-grey w3-round">Link Button</a>
<a href="#" class="w3-btn w3-white w3-border w3-border-grey w3-round">Link Button</a>
</div>
<br>
</div>
</div>
</div>
<br>
<!-- third Grid-->
<div class="w3-row-padding">
<div class="w3-third w3-container">
<div class="w3-container w3-white">
<p><b>CW8 - Canvas Drawing </b></p>
<p>A program that draw on screen by using canvas.</p>
<div>
<a href="JSuniWork/cw8.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">Porgram </a>
<a href="https://groups.google.com/forum/#!topic/fsmvu-mae/ATkjUn3RlFo" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<br>
<br>
</div>
</div>
</div>
<div class="w3-third w3-container w3-hide ">
<div class="w3-container w3-white">
<p><b>CW9</b></p>
<p>coming soon.</p>
<div>
<a href="#" class="w3-btn w3-white w3-border w3-border-grey w3-round">Link Button</a>
<a href="#" class="w3-btn w3-white w3-border w3-border-grey w3-round">Link Button</a>
<br>
<br>
</div>
</div>
</div>
<div class="w3-third w3-container">
<div class="w3-container w3-white">
<p><b>HW0 - Course Data </b></p>
<p>Using user inputs to add student , get average of them and show their grades by using arrays.</p>
<div>
<a href="https://groups.google.com/d/msg/fsmvu-mae/9zz_tXebdb0/Bpd_v0ULAQAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/HW1.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">Work</a>
<br>
<br>
</div>
</div>
</div>
</div>
<br>
<!-- forth Grid-->
<div class="w3-row-padding">
<div class="w3-third w3-container">
<div class="w3-container w3-white">
<p><b>HW1 - Student Database</b></p>
<p>Read file remotle, working on classes and maps.</p>
<div>
<a href="https://groups.google.com/d/msg/fsmvu-mae/9zz_tXebdb0/EwhcpcJ9BgAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/HW2/Database.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">work</a>
<br>
<br>
</div>
</div>
</div>
<div class="w3-third w3-container">
<div class="w3-container w3-white">
<p><b>HW2 - Animation </b></p>
<p>Using Java Script to make animation.</p>
<div>
<a href="https://groups.google.com/d/msg/fsmvu-mae/9zz_tXebdb0/LCuvfxd6AAAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/HW3/animation.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">Work</a>
<br>
<br>
</div>
</div>
</div>
<div class="w3-third w3-container">
<div class="w3-container w3-white">
<p><b>HW3 - My Home Page </b></p>
<p>Making Home Page as PWA and desgining it.</p>
<div>
<a href="https://groups.google.com/d/msg/fsmvu-mae/9zz_tXebdb0/ohONnfLoAgAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<br>
<br>
</div>
</div>
</div>
</div>
<br>
<div class="w3-row-padding">
<div class="w3-third w3-container">
<div class="w3-container w3-white">
<p><b>Project - ChatBot</b></p>
<p>ChatBot Ai with witAI .</p>
<div>
<a href="https://groups.google.com/d/msg/fsmvu-mae/D2VBsve9y8U/9MDNE6R6AAAJ" class="w3-btn w3-white w3-border w3-border-grey w3-round">Question</a>
<a href="JSuniWork/ChatBot.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">work</a>
<br>
<br>
</div>
</div>
</div>
</div>
<br>
<!-- UseFull links Grid-->
<div class="w3-row-padding">
<div class="w3-container">
<div class="w3-container w3-white">
<p><b>Usefull links</b></p>
<a href="https://web.dev/" class="w3-btn w3-white w3-border w3-border-blue w3-round">Google web Development
Site</a>
<a href="https://codepen.io/" class="w3-btn w3-white w3-border w3-border-grey w3-round">Code pen Platform</a>
<a href="https://www.fsf.org/" class="w3-btn w3-white w3-border w3-border-blue w3-round">Free software
foundation. </a>
<a href="https://www.gnu.org/philosophy/shouldbefree.en.html" class="w3-btn w3-white w3-border w3-border-grey w3-round">free
software philosophy.</a>
<br><br>
<a href="https://keep.google.com" class="w3-btn w3-white w3-border w3-border-blue w3-round">Google keeps for
notes.</a>
<a href="https://trello.com/" class="w3-btn w3-white w3-border w3-border-grey w3-round">Trello for planning
and teamWork.</a>
<br>
<br>
</div>
</div>
</div>
<br>
<!-- Footer -->
<footer class="w3-container w3-padding-32 w3-dark-grey">
<div class="w3-row-padding">
<div class="w3-third">
<h3>ِAbout lesson</h3>
<img src="JSuniWork\imgs\uniLogo.png" style="width:50%; height: 50%;" class="w3-round"><br><br>
<h4><b>Fatih Sultan Mehmet University </b></h4>
<p>BLM305 advanged programming course.</p>
<p><a href="fsm.edu.tr" target="_blank">University link </a></p>
</div>
<div class="w3-third">
<h3>ِAbout Me</h3>
<img src="https://avatars3.githubusercontent.com/u/18273833" style="width:50%; height: 50%;" class="w3-round"><br><br>
<h4><b>Abdurrahman RAJAB </b></h4>
<p>Computer Science Student 3rd Grade.</p>
<p> <a href="https://github.com/a0m0rajab/exercise" target="_blank">project page on Github</a></p>
<div class="w3-panel w3-large">
<a class="fa fa-github w3-hover-opacity" href="https://github.com/a0m0rajab"></a>
<a class="fa fa-facebook-official w3-hover-opacity" href="https://www.facebook.com/a0m0rajab"></a>
<a class="fa fa-instagram w3-hover-opacity" href="https://www.instagram.com/a0m0rajab"></a>
<a class="fa fa-twitter w3-hover-opacity" href="https://www.twitter.com/rajab_2"></a>
<a class="fa fa-linkedin w3-hover-opacity" href="https://www.linkedin.com/in/a0m0rajab"></a>
</div>
</div>
<div class="w3-third">
<h3>ِAbout Instructor</h3>
<!-- -->
<img src="JSuniWork\imgs\eyler.jpg" style="width:50%; height: 50%;" class="w3-round"><br><br>
<h4><b>Mehmet Akif eyler </b></h4>
<p>Mehmet Akif Eyler get his <a href="http://www.genealogy.ams.org/id.php?id=81183">PHD</a> from Harvard
University at 1980.</p>
<p> <a href="https://github.com/maeyler " target="_blank">Github Page</a></p>
</div>
</div>
</footer>
<div class="w3-black w3-center w3-padding-24">Powered by <a href="https://www.w3schools.com/w3css/default.asp"
title="W3.CSS" target="_blank" class="w3-hover-opacity">w3.css</a></div>
<!-- End page content -->
</div>
<script>
// Script to open and close sidebar
// function w3_open() {
// document.getElementById("mySidebar").style.display = "block";
// document.getElementById("myOverlay").style.display = "block";
// }
// function w3_close() {
// document.getElementById("mySidebar").style.display = "none";
// document.getElementById("myOverlay").style.display = "none";
// }
</script>
</body>
</html>