forked from maeyler/BLM305-2018
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
512 lines (503 loc) · 15.7 KB
/
index.html
File metadata and controls
512 lines (503 loc) · 15.7 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
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="theme-color" content="#fbc02d" />
<meta name="author" content="M A Eyler & Bedirhan Yildirim, Istanbul, 2018" />
<meta name="description" content="BLM305 FSMV University" />
<!-- Css Start -->
<link href='https://fonts.googleapis.com/css?family=ABeeZee' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="styles.css">
<style>
table {
border-collapse: collapse;
width: -webkit-fill-available;
}
thead {
text-align: left;
}
thead tr {
color: #00000099;
font-size: 12px;
font-family: 'Roboto';
border-bottom: 2px solid #dddddd;
}
thead th {
padding: 14px 0;
position: relative;
}
tbody {
text-align: left;
}
tbody tr {
border-bottom: 1px solid #dddddd;
}
tbody th {
color: #00000099;
text-align: center;
}
tbody td {
padding: 14px 0;
padding-left: 5px;
position: relative;
}
tbody td a {
font-size: 14px;
color: #000000de;
}
tbody td a:hover {
color: #363636de;
}
tbody tr a:hover .tip {
display: block;
}
tbody tr th:hover .tip {
display: block;
}
.tip {
top: 35px;
z-index: 1;
left: 35px;
display: none;
color: white;
font-size: 12px;
padding: 6px 10px;
text-align: center;
border-radius: 3px;
position: absolute;
background: #aeaeae;
}
</style>
<!--#Css End -->
<link rel="icon" sizes="192x192" href="images/favicon.png">
<link rel="manifest" href="manifest.json">
<title>BLM 305</title>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('/BLM305/sw.js')
.then((reg) => { console.log('SW starts', reg.active) })
.catch(console.log)
}
</script>
</head>
<body>
<!-- Header Start -->
<header>
<div class="header-top">
<div class="container">
<div class="logo">
<h2>Advanced Programming</h2>
<h5>by M. Akif Eyler, FSMVU</h5>
</div>
</div>
</div>
<div class="header-bottom">
<div class="container">
<div class="navbar">
<ul>
<li class="github"><a href="https://github.com/maeyler/BLM305/">GitHub</a></li>
<li class="readme"><a href="Readme.html">Readme</a></li>
<li class="cw"><a href="inspect.html">Class works</a></li>
</ul>
</div>
</div>
</div>
<div class="header-mobile">
<div class="container">
<div class="navbar">
<ul>
<li>
<a href="https://github.com/maeyler/BLM305/">
<img src="images/github.svg" height="25px"/>
</a>
</li>
<li>
<a href="Readme.html">
<img src="images/readme.svg" height="25px"/>
</a>
</li>
<li>
<a href="inspect.html">
<img src="images/list.svg" height="25px"/>
</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<!--#Header End -->
<!-- Content Start -->
<div class="content">
<div class="container">
<div class="card">
<div class="card-header">
<div class="card-text">
<div class="card-title">
Cumulative Work of Each Student
</div>
</div>
</div>
<div class="card-footer">
<div class="card-desc">
<table>
<!--thead>
<tr>
<th></th><th>Weekly Work<span class="tip">Absolute address</span></th>
<th>Term Project<span class="tip">Relative address</span></th>
</tr>
</thead-->
<!--tr><th>0</th>
<td>
<a href="https://smallsimplesafe.github.io/ProgWork/">Small Simple
<span class="tip">Dummy user <BR>to be removed</span></a>
</td><td>
<a href="project/solar_system.html">Solar System
<span class="tip">Motion of Earth and Moon around the Sun</span></a>
</td>
</tr-->
<tr><th> 1</th>
<td>
<a href="https://abderrhmanabdellatif.github.io/advanced-programing-Homeworks/">Abdurrahman Abdellatif</a>
</td><td>
<a href="project/AbdurrahmanAbdellatif.html">Shopping cart</a>
</td>
</tr>
<tr><th> 2</th>
<td>
<a href="https://alaamarawi.github.io/AdvancedProgramming_javascript/">Alaa Marawi
</a>
</td><td>
<a href="project/AlaaMarawi.html">Minesweeper
<span class="tip">Minesweeper game with SVG</span></a>
</td>
<tr><th> 3</th>
<td>
<a href="https://sahinalcin.github.io/aptworks/">Şahin Alçın</a>
</td><td>
<a href="project/sahinalcin.html">Informatics Knowledge
<span class="tip">Test your own informatics knowledge</span></a>
</td>
</tr>
<tr><th> 4</th>
<td>
<a href="https://alperen317.github.io/AdvancedProgramming/">Ali Alperen ASLAN</a>
</td><td>
<a href="project/AliAlperenASLAN.html">Space Shooter
<span class="tip">Create game with using canvas</span></a>
</td>
</tr>
<tr><th> 5</th>
<td>
<a href="https://sfrcnayds.github.io/JSHomeworks/">Sefercan Aydaş</a>
</td><td>
<a href="project/SefercanAYDAS.html">Student Automation
<span class="tip">Student Automation With HTML and JS</span></a>
</td>
</tr>
<tr><th> 6</th>
<td>
<a href="https://hamzacakmak.github.io/JSExercises/">Hamza Cakmak
</td>
<td>
<a href="project/HamzaCAKMAK.html">Snake game
<span class="tip">Snake Game With JS</span></a>
</td>
</tr>
<tr><th> 7</th>
<td>
<a href="https://ummugulsumcan.github.io/ileri-odevler/">Ummugulsum Can </a>
</td><td>
<a href="project/ummugulsumcan.html">Number Prediction Game
<span class="tip">Prediction a number between 1 and 10 </span></a>
</td>
</tr>
<tr><th> 8</th>
<td>
<a href="https://cankaya96.github.io/adv_prog_HW/HW4/PWA.html">M.Furkan Çankaya
<span class="tip">My repo with PWA</span></a>
</td><td>
<a href="project/MuhammetFurkanCankaya.html">Game - Tic Tac Toe
<span class="tip">x-o-x game with PWA</span></a>
</td>
</tr>
<tr><th> 9</th>
<td>
<a href="https://ertugrulcbn.github.io/ProgWork/">Ertuğrul Çoban</a>
</td><td>
<a href="project/ErtugrulCOBAN.html">Tic Tac Toe
<span class="tip">Tic Tac Toe Game</span></a>
</tr>
<tr><th>10</th>
<td>
<a href="https://colakhuseyin.github.io/HuseyinCalisma/">Hüseyin Çolak</a>
</td><td>
<a href="project/HüseyinCOLAK.html">Daily
<span class="tip">Daily Project</span></a>
</tr>
<tr><th>11</th>
<td>
<a href="https://gokcedastan.github.io/AdvancedProgrammingHW/">Gökçe Daştan
<span class="tip">Gökçe Daştan</span></a>
</td><td>
<a href="project/GokceDastan.html">Sudoku Game
<span class="tip">Gökçe Daştan Sudoku</span></a>
</td>
</tr>
<tr><th>12</th>
<td><a href="https://abdikmen.github.io/advanced-programming/">Arif Burak Dikmen</a></td>
<td><a href="project/abdikmen.html">Matrix Operations
<span class="tip">Some matrix operations in JavaScript</span></a></td>
</tr>
<tr><th>13</th>
<td><a href="https://sameteraslan.github.io/HomeworksJavaScript/">Abdulsamet Eraslan</a></td>
<td><a href="project/AbdulsametERASLAN.html">Emlak Sitesi
<span class="tip">Basic estate website in CSS ve JavaScript</span></a></td>
</tr>
<tr><th>14</th>
<td>
<a href="https://dilaerbakan.github.io/BLM_advprg/">Dila Erbakan</a>
</td><td>
<a href="project/dilaerbakan.html">Destek Ekranı
<span class="tip">Users can register to website and send messages </span></a>
</td
</tr>
<tr><th>15</th>
<td>
<a href="https://celilreha.github.io/AdvancedProg">Celil Reha Esgice</a>
</td><td>
<a href="project/celilreha.html">Hangman Game
<span class="tip">Word Prediction Game</span></a>
</td>
</tr>
<tr><th>16</th>
<td>
<a href="https://aysesenafeyiz.github.io/ileriProgramlama/">Ayse Sena Feyiz</a>
</td><td>
<a href="project/AyseSenaFeyiz.html">Hangman Game
<span class="tip">Try to guess the word.If you're wrong, the guy is hanged.</span></a>
</td>
</tr>
<tr><th>17</th>
<td>
<a href="https://yavuzselimgugen.github.io/advanced_homework/">Yavuz Selim Gugen
<span class="tip">1621221028</span></a>
</td><td>
<a href="project/YavuzSelimGugen.html">Tetris
<span class="tip">The legacy game of tetris with JS on web platform.</span></a>
</td>
</tr>
<tr><th>18</th>
<td><a href="https://hasangulbaba.github.io/firstRepo/">Hasan Gulbaba</a>
</td>
<td>
<a href="project/HasanGULBABA.html">Library Web Page
<span class="tip">A Library Web Automation With Css And Html</span></a>
</td>
</tr>
<tr><th>19</th>
<td> <a href="https://hasankagit.github.io/Odevler">Hasan Kağıt
<span class="tip">MY REPO</span></a>
</td>
<td>
<a href="project/hasankagit.html">BLOG
<span class="tip">MY PROJECT</span>
</a>
</td>
</tr>
<tr><th>20</th>
<td>
<a href="https://busenurkaraca.github.io/AdvancedProgramming/">Busenur Karaca</a>
</td><td>
<a href="project/BusenurKaraca.html">Helping Website
<span class="tip">Helping Website</span>
</a>
</td>
</tr>
<tr><th>21</th>
<td>
<a href="https://maya-karahbala.github.io/advancedpro/">Maya karahbala
<span class="tip">by Maya karahbala </span></a>
</td><td>
<a href="project/MayaKarahBala.html">Shell game
<span class="tip">Thimblerig game</span></a>
</td>
</tr>
<tr><th>22</th>
<td>
<a href="https://eneskarali.github.io/advancedProgrammingLab/">Enes Karali
</td>
<td>
<a href="project/eneskarali.html">Solar System Animation
<span class="tip">Animation of planets in the solar system.</span></a>
</td>
</tr>
<tr><th>23</th>
<td><a href="https://burakeless.github.io/Advanced-Programming/">Veysel Burak Keleş</a>
</td><td>
<a href="project/BurakKeles.html">Periodic Table<span class="tip">Table For The Classification of Chemical Elements</span></a>
</td>
</tr>
<tr><th>24</th>
<td><a href="https://mustafakiyga.github.io/AdvancedProgramming/index.html">Mustafa Nihat Kıyga</a>
</td><td><a href="project/mustafakiyga.html">Maze Game
<span class="tip">Solving maze as a player</span></a>
</td>
</tr>
<tr><th>25</th>
<td>
<a href="https://beyzakoser.github.io/odevler/homeworks.html">Beyza Koser</a>
</td><td>
<a href="project/beyzaKoser.html">Connect Four
<span class="tip">The aim for both players is to make a straight line of four own pieces; the line can be vertical, horizontal or diagonal.</span></a>
</td>
</tr>
<tr><th>26</th>
<td><a href = "https://mustafakucuk01.github.io/Advanced_ProgrammingSchool/">Mustafa Küçük</a>
</td>
<td><a href = "project/MustafaKucuk.html">Ordering Numbers Game
<span class="tip">Click random placed numbers with ascending order starting 1</span></a>
</td>
</tr>
<tr><th>27</th>
<td><a href = "https://mehmetalperenkurt.github.io/ileriprogramlama/">Mehmet Alperen Kurt</a>
</td>
<td><a href = "project/mehmetalperenkurt.html">Flight Booking
<span class="tip">Flight Ticket Booking System</span></a>
</td>
</tr>
<tr><th>28</th>
<td>
<a href="https://zeynasip.github.io/AdvancedProgramming/">Zeynep Nasip</a>
</td><td>
<a href="project/ZeynepNasip.html">Dukkan
<span class="tip">idea store</span></a>
</td>
</tr>
<tr><th>29</th>
<td>
<a href=" https://yrgp.github.io/apt/ ">Youssof Ragheb</a>
</td><td>
<a href="project/yrgp.html">Memory Card
<span class="tip">Memory Card Game</span></a>
</td>
</tr>
<tr><th>30</th>
<td>
<a href="https://a0m0rajab.github.io/exercise/">Abdurrahman Rajab
</td><td>
<a href="project/a0m0rajab.html">ChatBot
<span class="tip">Chat Bot with witAI api</span></a>
</td>
</tr>
<tr><th>31</th>
<td>
<a href="https://feyzanursaka.github.io/Odevler/index.html">Feyza Nur Saka
<span class="tip">feyza nur saka </span></a>
</td><td>
<a href="project/FeyzaNurSAKA.html"> Quiz Show
<span class="tip"> Answer the questions </span></a>
</td>
</tr>
<tr><th>32</th>
<td> <a href="https://ahmetihsansavas.github.io/Ileri_Programlama/">Ahmet İhsan Savaş
</a>
</td><td> <a href="project/ahmetihsansavas.html">Calculator
<span class="tip">javascript Calculator</span></a>
</td>
</tr>
<tr>
<th>33</th>
<td>
<a href="https://mervetanrikulu.github.io/Odevler/">
Merve Tanrikulu
</a>
</td>
<td>
<a href="project/MerveTanrikulu.html">
Hangman
<span class="tip">Harry Potter konseptli bir adam asmaca oyunu</span>
</a>
</td>
</tr>
<tr><th>34</th>
<td> <a href="https://enestrz.github.io/AdvancedProgrammingWorks/">Enes Terzi
</a>
</td>
<td>
<a href="project/EnesTerzi.html">Html Quiz
<span class="tip">A quiz which give you an analytical result about your choices</span></a>
</td>
</tr>
<tr><th>35</th>
<td> <a href="https://selimtural.github.io/JavaS/">Selim Tural
</a>
</td>
<td>
<a href="project/selimtural.html">Piano
<span class="tip">Click to play online piano.</span></a>
</td>
</tr>
<tr><th>36</th>
<td>
<a href="https://muhammedzahidunal.github.io/ileriProgramming/">M.Zahid Unal</a>
</td><td>
<a href="project/muhammedzahidunal.html">Memory Game
<span class="tip">Memory Game: Find same cards </span></a>
</td>
</tr>
<tr><th>37</th>
<td>
<a href="https://merveyavuz.github.io/JavaScriptHWs/">Merve Yavuz
<span class="tip">Merve Yavuz</span></a>
</td><td>
<a href="project/merveyavuz.html">Othello
<span class="tip">Othello game</span></a>
</td>
</tr>
<tr><th>38</th>
<td>
<a href="https://enesbehlul.github.io/Advanced_Programming/">Enes Behlül Yenidünya</a>
</td><td>
<a href="project/enesbehlul.html">Money Management
<span class="tip">Income and expense tracking.</span></a>
</td>
</tr>
<tr><th>39</th>
<td>
<a href="https://bedirhanyildirim.github.io/AdvProg/">Bedirhan Yıldırım</a>
</td><td>
<a href="http://fsmvu.com/">Student Clubs Automation
<span class="tip">This web application publish student clubs infos and events announcements.</span></a>
</td>
</tr>
<tr><th>40</th>
<td>
<a href="https://ibrahimyyildirim.github.io/advancedProgramming/">İbrahim Yıldırım</a>
</td><td>
<a href="project/ibrahimyyildirim.html">Ticket Booking System
<span class="tip">Based seat and ticket reservation system allowing bookings in a few easy steps.</span></a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<!--#Content End -->
<!-- Footer Start -->
<footer>
<div class="container">
<div class="footer-bottom">
<h3>This website made by <a href="https://github.com/bedirhanyildirim">Bedirhan Yıldırım</a></h3>
</div>
</footer>
<!--#Footer End -->
</body>
</html>