-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.php
executable file
·579 lines (555 loc) · 27.5 KB
/
index.php
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
<!DOCTYPE html>
<html lang="et">
<head>
<meta charset="utf-8">
<title>I244 kaugõpe</title>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="assets/styles/materialize.min.css">
<link rel="stylesheet" href="assets/styles/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="assets/js/timer.js"></script>
<script>
var end_1 = new Date('02/19/2017 11:59 PM');
var end_2 = new Date('02/26/2017 11:59 PM');
var end_3 = new Date('03/05/2017 11:59 PM');
var end_4 = new Date('03/12/2017 11:59 PM');
var end_5 = new Date('03/19/2017 11:59 PM');
var end_6 = new Date('03/26/2017 11:59 PM');
var end_7 = new Date('04/02/2017 11:59 PM');
var end_8 = new Date('04/09/2017 11:59 PM');
var end_9 = new Date('04/16/2017 11:59 PM');
var end_10 = new Date('04/23/2017 11:59 PM');
var end_11 = new Date('04/30/2017 11:59 PM');
var end_12 = new Date('05/07/2017 11:59 PM');
var end_13 = new Date('05/14/2017 11:59 PM');
var end_14 = new Date('05/21/2017 11:59 PM');
var end_15 = new Date('05/28/2017 11:59 PM');
var end_16 = new Date('05/29/2017 11:59 PM');
var end_17 = new Date('06/04/2017 11:00 AM');
var end_18 = new Date('06/04/2017 3:00 PM');
var end_19 = new Date('06/04/2017 5:00 PM');
var timer_1 = setInterval(function () { showRemaining(end_1, "countdown_1", timer_1); }, 1000);
var timer_2 = setInterval(function () { showRemaining(end_2, "countdown_2", timer_2); }, 1000);
var timer_3 = setInterval(function () { showRemaining(end_3, "countdown_3", timer_3); }, 1000);
var timer_4 = setInterval(function () { showRemaining(end_4, "countdown_4", timer_4); }, 1000);
var timer_5 = setInterval(function () { showRemaining(end_5, "countdown_5", timer_5); }, 1000);
var timer_6 = setInterval(function () { showRemaining(end_6, "countdown_6", timer_6); }, 1000);
var timer_7 = setInterval(function () { showRemaining(end_7, "countdown_7", timer_7); }, 1000);
var timer_8 = setInterval(function () { showRemaining(end_8, "countdown_8", timer_8); }, 1000);
var timer_9 = setInterval(function () { showRemaining(end_9, "countdown_9", timer_9); }, 1000);
var timer_10 = setInterval(function () { showRemaining(end_10, "countdown_10", timer_10); }, 1000);
var timer_11 = setInterval(function () { showRemaining(end_11, "countdown_11", timer_11); }, 1000);
var timer_12 = setInterval(function () { showRemaining(end_12, "countdown_12", timer_12); }, 1000);
var timer_13 = setInterval(function () { showRemaining(end_13, "countdown_13", timer_13); }, 1000);
var timer_14 = setInterval(function () { showRemaining(end_14, "countdown_14", timer_14); }, 1000);
var timer_15 = setInterval(function () { showRemaining(end_15, "countdown_15", timer_15); }, 1000);
var timer_16 = setInterval(function () { showRemaining(end_16, "countdown_16", timer_16); }, 1000);
var timer_17 = setInterval(function () { showRemaining(end_17, "countdown_17", timer_17); }, 1000);
var timer_18 = setInterval(function () { showRemaining(end_18, "countdown_18", timer_18); }, 1000);
var timer_19 = setInterval(function () { showRemaining(end_19, "countdown_19", timer_19); }, 1000);
</script>
</head>
<body>
<a href="https://github.com/mangus/i244" class="github-corner" aria-label="View source on Github">
<svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path>
</svg>
</a>
<div class="page-wrap container">
<h1 class="main-heading">Võrgurakendused I
<small>kaugõpe 2017 kevadsemester</small>
</h1>
<div class="divider"></div>
<div class="section">
<h3>Auditoorne õppetöö</h3>
<p>Õppejõud Mart Mangus / <a href="mailto:[email protected]">[email protected]</a></p>
<p>Konsultatsioon: 07.06.2017 12:00-14:00 ruum 319</p>
<div class="row">
<div class="col s7">
<h4>Loengud</h4>
<span>1. loeng (11.02.2017) - </span>
<span>
<a target="_blank" href="http://mart.mangus.ee/loengud/i244-esimene.html">Slaidid</a>
<span class="separator"> / </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/ea445100-a95c-4a50-b0f1-5c166e3b1310">Salvestus</a>
</span><br />
<span>2. loeng (08.04.2017) - </span>
<span>
Slaidid:
<a target="_blank" href="https://docs.google.com/presentation/d/1nPcwOqruZqjJxXptX0xp2kO6_KetQ4uxDVWYcCgpq7k/edit?usp=sharing">React</a>,
<a target="_blank" href="esitlused/Angular.pptx">Angular</a>,
<a target="_blank" href="https://docs.google.com/presentation/d/1uRcno6H_QalY44Lm93IFcTLm0lwwycZbjw3J06RHk8E/edit?usp=sharing">RoR</a>,
<a target="_blank" href="http://mart.mangus.ee/loengud/i244-teine/">turvateemad</a>
<span class="separator"> / </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/c5cf4a86-f2d8-43d9-afa5-0cef3c4a2ca6">Salvestus</a>
</span>
</div>
<div class="col s5">
<h4>Praktikumid</h4>
<div>
<span>1. praktikum (11.02.2017) - </span>
<span>
<a target="_blank" href="praktikum1">Praktikumi leht</a> /
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/0a18531e-1020-4e0c-aeef-5c4277694a2d">Salvestus</a>
</span>
</div>
<div>
<span>2. praktikum (04.03.2017) - </span>
<span>
<a target="_blank" href="praktikum2">Praktikumi leht</a> /
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/71119985-a333-44fe-8db6-cf4a93e1be0e?ec">Salvestus</a>
</span>
</div>
<div>
<span>3. ja 4. praktikum (19.03.2017) - </span>
<span>
<a target="_blank" href="praktikum34">Praktikumi leht</a>
</span>
</div>
<div>
<span>5. praktikum (08.04.2017) - </span>
<span>
<a target="_blank" href="praktikum5">Praktikumi leht</a> /
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/c6da96e2-e5ed-441a-80ed-f130c3f3a6af">Salvestus</a>
</span>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<div class="section">
<iframe src="https://gitter.im/i244/Lobby" height="500px" width="100%"> </iframe>
</div>
<div class="divider"></div>
<div class="section">
<h3>Eksam</h3>
<p>
Eksamil tuleb iseseisvalt lahendada praktiline ülesanne. Selleks on vaja osata kasutada HTML-i, CSS-i,
JavaScript-i,
MySQL-i ja PHP-d.<br/>
Tulemuste esitamine käib läbi versioonihalduse (Git), nii et selle kasutamise oskus on hädavajalik.<br/>
Eksam moodustab 40% aine hindest. Eksami läbimisel on lävend, ehk alla 50%-se tulemusega ei ole võimalik
ainet
läbida.
</p>
<h4>Eksami ajad</h4>
<table class="striped" style="table-layout:fixed;">
<colgroup>
<col width="18%">
<col width="18%">
<col width="18%">
<col width="18%">
<col width="28%">
</colgroup>
<tr>
<th>Kuupäev</th>
<th>Aeg</th>
<th>Ruum</th>
<th>Vooru jaotus</th>
<th>Jäänud</th>
</tr>
<tr>
<td>04.06.2017</td>
<td>11:00-12:30</td>
<td>319 | 317</td>
<td>AK11 | DK11</td>
<td><span id="countdown_17"></span></td>
</tr>
<tr>
<td>04.06.2017</td>
<td>15:00-16:30</td>
<td>319 | 317</td>
<td>DK12 | DK13</td>
<td><span id="countdown_18"></span></td>
</tr>
<tr>
<td>04.06.2017</td>
<td>17:00-18:30</td>
<td>317</td>
<td>DK14</td>
<td><span id="countdown_19"></span></td>
</tr>
</table>
<h3>Järeleksamid</h3>
<p><h4>Järeleksamile on vaja kindlasti registreeruda õppeosakonnas!</h4></p>
<p>Esimene järeleksam on 10. juunil kell 12:00 317 klassis.</p>
<h4>Ettevalmistamine eksamiks</h4>
<p>
<a target="_blank" href="https://github.com/mangus/i244/tree/master/eksam">Siin asuvad</a> eelmise aasta eksami ülesanded.
</p>
</div>
<div class="divider"></div>
<div class="section">
<h3>Iseseisev õppetöö</h3>
<h5>Iganädalased kodused tööd</h5>
<p>
Iga nädal tuleb iseseisvalt läbi töötada välja toodud teemad ning tehtud töö kohta saata aruanne. <br/><a
target="_blank" href="http://goo.gl/forms/SZ5ngxlN4m"><h3>Aruande saatmise vorm</h3></a>
</p>
<p>
Iga (korrektne) aruanne annab 2 punkti ja kokku moodustavad need aruanded 30% aine tulemusest.
Kui viidatud materjalidest jääb väheks, siis uuri ja otsi ise internetist juurde.
Võid vaadata ka päevaõppe praktikumide salvestusi, mis leiad <a target="_blank"
href="https://echo360.e-ope.ee/ess/portal/section/88b1a22f-7260-4f6e-823c-451034853ea6">kuskilt siit</a>.
</p>
<table class="striped" style="table-layout:fixed;">
<colgroup>
<col width="3%">
<col width="30%">
<col width="33%">
<col width="17%">
<col width="17%">
</colgroup>
<tr>
<th>Nr</th>
<th>Teema</th>
<th>Päevaõppe materjalid</th>
<th>Tähtaeg</th>
<th>Jäänud</th>
</tr>
<tr>
<td>1</td>
<td>Sissejuhatus HTML-i</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng01.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/7e9c8258-3664-4b9e-b487-dfbae7c5dcf9?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax01/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/01/ylesanne.html">ülesanne</a>
</td>
<td>19.02.2017 23:59</td>
<td><span id="countdown_1"></span></td>
</tr>
<tr>
<td>2</td>
<td>HTML-i keerukamad osad</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng02.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/bdbe400c-1d81-4e59-bf28-32dccc26af78?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax02/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/02/ylesanne.html">ülesanne</a>
</td>
<td>26.02.2017 23:59</td>
<td><span id="countdown_2"></span></td>
</tr>
<tr>
<td>3</td>
<td>CSS sissejuhatus</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng03.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/8d99fbf2-3cb1-4004-9cda-15104397c27b?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax03/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/03/ylesanne.html">ülesanne</a>
</td>
<td>05.03.2017 23:59</td>
<td><span id="countdown_3"></span></td>
</tr>
<tr>
<td>4</td>
<td>Kujundus ja paigutus</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng04.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/c2503f9e-bf75-4f32-ad8f-7e9816ca75dd?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax04/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/04/ylesanne.html">ülesanne</a>
</td>
<td>12.03.2017 23:59</td>
<td><span id="countdown_4"></span></td>
</tr>
<tr>
<td>5</td>
<td>JavaScript</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng05.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/74f2fadf-f5c5-4747-83cb-784046ecd33e">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax05/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/05/ylesanne.html">ülesanne</a>
</td>
<td>19.03.2017 23:59</td>
<td><span id="countdown_5"></span></td>
</tr>
<tr>
<td>6</td>
<td>jQuery</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng06.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/f1b93c7b-97af-4f69-a3e5-29f1b036ba6f">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax06/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/06/ylesanne.html">ülesanne</a>
</td>
<td>26.03.2017 23:59</td>
<td><span id="countdown_6"></span></td>
</tr>
<tr>
<td>7</td>
<td>PHP sissejuhatus</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng07.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/b10bbe40-daf0-4110-b172-20c344176c52">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax07/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/07/ylesanne.html">ülesanne</a>
</td>
<td>02.04.2017 23:59</td>
<td><span id="countdown_7"></span></td>
</tr>
<tr>
<td>8</td>
<td>Andmeside (GET ja POST)</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng08.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/b654af75-5831-413e-bc1d-b8372f0fc724">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax08/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/08/ylesanne.html">ülesanne</a>
</td>
<td>09.04.2017 23:59</td>
<td><span id="countdown_8"></span></td>
</tr>
<tr>
<td>9</td>
<td>MVC</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng09.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/48a8bc31-1e75-45cc-953b-6d97ed312ffa">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax09/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/09/ylesanne.html">ülesanne</a>
</td>
<td>16.04.2017 23:59</td>
<td><span id="countdown_9"></span></td>
</tr>
<tr>
<td>10</td>
<td>Autentimine, küpsised, sessioonid</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng10.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/4e19d63a-ccb2-46c1-b782-e3fa55542488">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax10/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/10/ylesanne.html">ülesanne</a>
</td>
<td>23.04.2017 23:59</td>
<td><span id="countdown_10"></span></td>
</tr>
<tr>
<td>11</td>
<td>MySQL</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng11.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/81b6ba94-d5ca-4506-bea4-728b3164d902?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax11/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/11/ylesanne.html">ülesanne</a>
</td>
<td>30.04.2017 23:59</td>
<td><span id="countdown_11"></span></td>
</tr>
<tr>
<td>12</td>
<td>MySQL + PHP</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng12.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/01a81925-3d5c-4e8f-b040-55cdecbfd25a?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax12/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/12/ylesanne.html">ülesanne</a>
</td>
<td>07.05.2017 23:59</td>
<td><span id="countdown_12"></span></td>
</tr>
<tr>
<td>13</td>
<td>MySQL + PHP (vol 2)</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng13.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/16b69ed9-a630-41a3-a24b-1f1373811f46?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax13/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/13/ylesanne.html">ülesanne</a>
</td>
<td>14.05.2017 23:59</td>
<td><span id="countdown_13"></span></td>
</tr>
<tr>
<td>14</td>
<td>Turvalisus</td>
<td>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Loengud/loeng14.pdf">pdf</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/3e069ed7-b3d9-4656-91ba-0209bb203686?ec=true">loeng</a>
<span class="separator"> | </span>
<a target="_blank" href="https://echo360.e-ope.ee/ess/echo/presentation/15c43e25-16da-4aa1-b5ea-17d89cdcffae?ec=true">loeng heliga</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Praktikumid/prax14/ylesanne.html">praktikum</a>
<span class="separator"> | </span>
<a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/Kodused/14/ylesanne.html">ülesanne</a>
<span class="separator"> | </span>
<a target="_blank" href="https://bitbucket.org/ttanav/praktikumid-kodused/src/2c1925d3b76e2a955144c9546ea11c18607a96de/kodused/14/tut/?at=master">pildid</a>
</td>
<td>21.05.2017 23:59</td>
<td><span id="countdown_14"></span></td>
</tr>
<tr>
<td>15</td>
<td colspan="2">Tegele koduse projektiga, aruandes kirjuta progressist</td>
<td>28.05.2017 23:59</td>
<td><span id="countdown_15"></span></td>
</tr>
</table>
</div>
<div class="divider"></div>
<div class="section">
<h3>Kodune projekt</h3>
<h3>Jäänud: <span id="countdown_16"></span></h3>
<p>Kodune projekt koosneb kahest osast:</p>
<ol>
<li>Sinu enda projekt, esitamise tähtaeg 29.05.2017 23:59</li>
<li>Kolm projekti retsensiooni (30.05.2017 saadab õppejõud retsenseeritavad tööd), esitamise tähtaeg
04.06.2017
23:59
</li>
</ol>
<p>Ehk kodust projekti ei ole vaja klassis kaitsta, aga see-eest on vaja retsenseerida kolme tööd.</p>
<ul class="collection with-header">
<h5>Olulised punktid on:</h5>
<li class="collection-item">Kood versioonihalduses juba projekti alguses</li>
<li class="collection-item">Töötav demorakendus avalikult ligipääsetav</li>
<li class="collection-item">Andmebaasi kasutamine</li>
<li class="collection-item">HTML-i, CSS-i ja JavaScript-i kasutamine kasutajaliideses</li>
<li class="collection-item">Rakenduse turvalisus</li>
<li class="collection-item">Koodide vastamine standarditele (HTML validaator jne)</li>
</ul>
<p><a href="projekt/esitamine.php">Koduse projekti esitamise vorm.</a></p>
</div>
<div class="divider"></div>
<div class="section">
<h3>Väliseid ressursse</h3>
<p>
Siin on materjalid, mis tulevad kasuks võrgurakenduste aine omandamisel. Kõik on oodatud seda nimekirja täiendama.
</p>
<ul class="collection without-border">
<li class="collection-item"><a target="_blank" href="https://www.w3schools.com/">W3Schools Online Web Tutorials</a></li>
<li class="collection-item"><a target="_blank" href="https://www.codecademy.com/courses/learn-html-css">Code academy: Learn HTML and CSS</a></li>
<li class="collection-item"><a target="_blank" href="https://www.codecademy.com/learn/web">Code academy: HTML and CSS</a></li>
<li class="collection-item"><a target="_blank" href="https://www.codecademy.com/learn/learn-javascript">Code academy: Learn JavaScript</a></li>
<li class="collection-item"><a target="_blank" href="https://www.codecademy.com/learn/javascript">Code academy: JavaScript</a></li>
<li class="collection-item"><a target="_blank" href="https://www.codecademy.com/learn/jquery">Code academy: jQuery</a></li>
<li class="collection-item"><a target="_blank" href="https://www.codecademy.com/learn/php">Code academy: PHP</a></li>
<li class="collection-item"><a target="_blank" href="https://www.codecademy.com/learn/learn-sql">Code academy: Learn SQL</a></li>
<li class="collection-item"><a target="_blank" href="http://www.ebooksbucket.com/uploads/itprogramming/javascript/Learning_PHP_MySQL_Javascript_CSS_HTML5__Robin_Nixon_3e.pdf">Raamat: Learning PHP, MySQL, JavaScript, CSS and HTML5</a></li>
<li class="collection-item"><a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/abiks/">Tiia Tänava "Võrgurakendused I" abimaterjalid aastast 2015</a></li>
<li class="collection-item"><a target="_blank" href="http://enos.itcollege.ee/~ttanav/VRI/loengus_tegime/">Tiia Tänava "Võrgurakendused I" loengus tehtud ülesanded</a></li>
<li class="collection-item"><a target="_blank" href="http://tahvel.info/books/javascript.html">JavaScript edasijõudnutele</a></li>
<li class="collection-item"><a target="_blank" href="https://www.w3schools.com/sql/trysql.asp?filename=trysql_select_all">SQL harjutamise keskkond</a></li>
<li class="collection-item"><a target="_blank" href="http://www.seabreezecomputers.com/tips/mobile-css.htm">Veebirakenduse optimeerimine mobiilile</a></li>
<li class="collection-item"><a target="_blank" href="https://www.khanacademy.org/computing/computer-programming/html-css">Khan Academy interaktiivne kursus</a></li>
<li class="collection-item"><a target="_blank" href="http://web.stanford.edu/class/cs142/lectures.html">Stanfordi Web Applications kursuse loengumaterjalid</a></li>
<li class="collection-item">...</li>
</ul>
</div>
<div class="divider"></div>
<div class="section">
<h3>Kasutatav tarkvara</h3>
<p>
Kõik on oodatud seda nimekirja täiendama!
</p>
<ul class="collection without-border">
<li class="collection-item"><a target="_blank" href="https://notepad-plus-plus.org/">Notepad++ on tasuta koodiredaktor (Windows)</a></li>
<li class="collection-item"><a target="_blank" href="https://atom.io/">Atom koodiredaktor (OS X/Windows/Linux)</a></li>
<li class="collection-item"><a target="_blank" href="https://cyberduck.io/?l=en">Cyberduck: tasuta ja lihtne FTP klient (Windows/Mac)</a></li>
</ul>
</div>
<div class="divider"></div>
<div class="section">
<!-- Ei ole see aasta enam aktuaalne...
<blockquote>
<h4>Info edasijõudnutele</h4>
<p>
Kui aine teemad on sinu jaoks väga lihtsad, siis on võimalik asendada iganädalased kodused tööd (30%
aine
hindest)
väikese (10-15 minutit) esitlusega enda valitud teemal.<br/>
Selle võimaluse kasutamiseks tuleb teema õppejõuga kooskõlastada hiljemalt 1. aprilliks.
</p>
</blockquote>
-->
<blockquote>
<h4>Jututuba</h4>
<p>
Kui tegeled aine teemadega, siis ilmuta end ka <a target="_blank" href="https://gitter.im/i244/">jututoas</a>!<br/>
Saab kaastudengitega suhelda ja abi küsida. Kui väga läbuks ei lähe, siis jälgib seda ka õppejõud ning
püüab
abistada.<br/>
Kui keegi tudeng on jututoas aktiivne abistaja, siis saab selle eest ka lisapunkte!
</p>
</blockquote>
<blockquote>
<h4>See lehekülg</h4>
<p>
Kui leiad trükivea või tahad seda lehte niisama sisulisemaks/ilusamaks/huvitavamaks teha, siis palun väga:
<a target="_blank" href="https://github.com/mangus/i244">tee pull request GitHub-is</a>.
</p>
<p>Asjalike täienduste eest lisapunktid garanteeritud.</p>
</blockquote>
</div>
</div>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Võrgurakendused I I244</h5>
<p class="grey-text text-lighten-4">I244 / Kaugõpe 2017 kevadsemester</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Lingid</h5>
<ul>
<li><a class="grey-text text-lighten-3" target="_blank" href="https://github.com/mangus/i244">Git</a></li>
<li><a class="grey-text text-lighten-3" target="_blank" href="https://gitter.im/i244/">Jututuba</a></li>
<li><a class="grey-text text-lighten-3" target="_blank" href="https://echo360.e-ope.ee/ess/portal/section/88b1a22f-7260-4f6e-823c-451034853ea6">Varasemate praktikumide salvestused</a></li>
<li><a class="grey-text text-lighten-3" target="_blank" href="http://goo.gl/forms/SZ5ngxlN4m">Iganädalane aruanne</a></li>
<li><a class="grey-text text-lighten-3" target="_blank" href="https://validator.w3.org/">Markup Validation Service</a></li>
<li><a class="grey-text text-lighten-3" target="_blank" href="http://enos.itcollege.ee/phpmyadmin//">phpMyAdmin</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container"></div>
</div>
</footer>
</body>
</html>