-
Notifications
You must be signed in to change notification settings - Fork 8
/
presentations.html
executable file
·1068 lines (1050 loc) · 79.8 KB
/
presentations.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
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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>EPL371 > Presentations</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<!--<link href="css/bootstrap.min.css" rel="stylesheet">-->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/menucollapse.js"></script>
<script type="text/javascript" src="js/arrow78.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-2" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="glyphicon glyphicon-search"></span>
</button>
<button id="button2" type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span><a href="#"><img border="0" width="170" src="images/csucy.png"/></a></span>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="page-scroll">
<a href="index.html">EPL371</a>
</li>
<li class="page-scroll">
<a href="index.html#news">News</a>
</li>
<li class="page-scroll">
<a href="schedule.html">Schedule</a>
</li>
<li class="page-scroll">
<a href="labs/labs.html">Labs</a>
</li>
<li class="page-scroll">
<a href="index.html#assignments">Assignments</a>
</li>
<li class="page-scroll">
<a href="links.html">Links</a>
</li>
<li class="page-scroll">
<a href="presentations.html">Presentations</a>
</li>
<li class="page-scroll">
<a target="_blank" href="http://moodle.cs.ucy.ac.cy/course/info.php?id=42">Moodle</a>
</li>
<li class="page-scroll">
<a target="_blank" href="http://www.cs.ucy.ac.cy/~dzeina/courses/epl371/private">TA</a>
</li>
<li class="page-scroll">
<a onclick="javascript:$('#bs-example-navbar-collapse-2').toggle();">
<span class="glyphicon glyphicon-search"></span>
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
<!-- search box submenu -->
<div class="collapse" id="bs-example-navbar-collapse-2">
<gcse:search></gcse:search>
</div>
</div><!-- /.container-fluid -->
</nav>
<!-- search box submenu -->
<div class="collapse" id="bs-example-navbar-collapse-2">
<gcse:search></gcse:search>
</div>
<section id="tree" style="margin-top:70px">
<div class="container">
<a href="../../index.html">Zeinalipour</a> > <a href="../../index.html#courses">Courses</a> >
<a href="index.html">EPL371</a> > Student Presentations
</div>
</section>
<!-- Background Section -->
<section id="background">
<div class="container lead">
<h3>Student Presentations</h3>
<h3>Objective</h3>
<p>These short-presentations allow groups of students (or individual students) to explore a new tool or system and present it to their fellow students in a conscise and clear manner. All presentations are required to follow a specific structure that will be outlined in this page. For each presentation you are required to build a small application that demonstrates the features of the language, tool or system you aim to present. The title of each application is outlined next to each application.The presentations will be logged under this page in order to allow easy access to other students and practitionaires that want to explore the respective tool, language or technology.</p>
<h3>Topics</h3>
<table class="table">
<thead>
<tr>
<th style="text-align: center; font-weight: bold; background-color: rgb(51, 204, 0);" width="5%;">Year</th>
<th style="text-align: center; font-weight: bold; background-color: rgb(51, 204, 0);" width="50%;">Topics</th>
<th style="text-align: center; font-weight: bold; background-color: rgb(51, 204, 0);" width="15%;">Group Members</th>
<th style="text-align: center; font-weight: bold; background-color: rgb(51, 204, 0);" width="15%;">Demo Implementation</th>
<th style="text-align: center; font-weight: bold; background-color: rgb(51, 204, 0);" width="15%;">Source Files</th>
</tr>
</thead>
<tbody>
<tr align="center">
<td colspan="5" rowspan="1" valign="top"><b><big><big>2015</big></big></b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G1</b><br>
</td>
<td valign="top">
<meta charset="utf-8">
Swift Language (Anyplace)<br>
</td>
<td align="center" valign="top">Koushi Andria, Papacosta
Irene, Pavlides Panagiotis, Fragkou Andreas</td>
<td colspan="2" rowspan="1" align="center" valign="top"><a href="student-presentations/2015-ios.pptx"><b>2015-ios.pptx</b></a><b><br>
</b><a href="student-presentations/2015-ios-code.zip"><b>2015-ios-code.zip</b></a><b><br>
</b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G2</b><b><br>
</b> </td>
<td valign="top">Python (Cyclemaps)<br>
</td>
<td align="center" valign="top">Alexandrou Savvas, Andreou
Andreas, Papaphillipou Philippos, Stefanides Demosthenis<br>
<meta charset="utf-8">
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><a href="student-presentations/2015-python-crawler.pdf"><b>2015-python-crawler.pdf</b></a><b><br>
</b><a href="student-presentations/2015-python-crawler-code.pptx"><b>2015-python-crawler-code.zip</b></a><b><br>
</b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G3</b><br>
</td>
<td valign="top">Powershell<br>
</td>
<td align="center" valign="top">Stylianou Iacovos, Samatas
Michael, Achilleos Panagiotis, Kastanas Andreas<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><a href="student-presentations/2015-powershell.pdf"><b>2015-powershell.pdf</b></a><b><br>
</b><a href="student-presentations/2015-powershell-code.pptx"><b>2015-powershell-code.zip</b></a><b><br>
</b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G4</b><br>
</td>
<td valign="top">Rayzit Paper and Web System<br>
</td>
<td align="center" valign="top">Aziz Philipos, Paschalides
Demetris, Charalambous Theodoros, Papaioannou Varnavas<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><a href="student-presentations/2015-rayzit.pptx"><b>2015-rayzit</b><b>.pptx</b></a><b><br>
</b><a href="student-presentations/2015-rayzit-code.zip"><b>2015-rayzit-code.zip</b></a><b><br>
</b> <b><br>
</b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G5</b><br>
</td>
<td valign="top">Apache Spark<br>
</td>
<td align="center" valign="top">Vladimirou Marios, Voutouri
Charis, Sergey Mpaktaskar, Tiggiri Evanthia<br>
<br>
<meta charset="utf-8">
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><a href="student-presentations/2015-spark.pptx"><b>2015-spark.pptx</b></a><b><br>
</b><a href="student-presentations/2015-spark-code.zip"><b>2015-spark-code.zip</b></a><b><br>
</b> <b><br>
</b></td>
</tr>
<tr align="center">
<td colspan="5" rowspan="1" valign="top"><b><big><big>2014</big></big></b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G1</b><b><br>
</b></td>
<td valign="top"><b>Airplace Logger</b><b><br>
</b></td>
<td align="center" valign="top">Kyriakos Georgiou<br>
Athena Pafitou<br>
Maria Christodolou<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-airplace.pptx">2014-airplace.pptx</a><br>
<a href="student-presentations/2014-airplace.zip">2014-airplace.zip</a><br>
</b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G2</b><b><br>
</b></td>
<td valign="top"><b>Scala</b><b><br>
</b></td>
<td align="center" valign="top">Constantinou Stella<br>
Janet Sixouan<br>
Stefanos Christodoulides<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-scala.pptx">2014-scala.pptx</a><br>
</b><b><a href="student-presentations/2014-scala.zip">2014-scala.zip</a></b><br>
<br>
</td>
</tr>
<tr>
<td align="center" valign="top"><b>G3</b><b><br>
</b></td>
<td valign="top"><b>Rayzit Widget</b><b><br>
</b></td>
<td align="center" valign="top">Patroklos Patroklou<br>
Constantinos Kyprianou<br>
George Antoniou<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-widget.pptx">2014-widget.pptx</a></b><br>
<b><a href="student-presentations/2014-widget.zip">2014-widget.zip</a></b><br>
</td>
</tr>
<tr>
<td align="center" valign="top"><b>G4</b><b><br>
</b></td>
<td valign="top"><b>Powershell</b><b><br>
</b></td>
<td align="center" valign="top">Anastasios Chatzidimitris<br>
Panayiotis Achilleos<br>
Constantinos Solomonides<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-powershell.pptx">2014-powershell.pptx</a></b><br>
<b><a href="student-presentations/2014-powershell.zip">2014-powershell.zip</a></b><br>
<br>
</td>
</tr>
<tr>
<td align="center" valign="top"><b>G5</b><b><br>
</b></td>
<td valign="top"><b>D Programming Language</b><b><br>
</b></td>
<td align="center" valign="top">Despiana Antoniou<br>
Nikolas Chatzitheofanous<br>
Giannis Constantinou<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-dlanguage.ppt">2014-dlanguage.ppt</a></b><br>
<b><a href="student-presentations/2014-dlanguage.zip">2014-dlanguage.zip</a></b><br>
</td>
</tr>
<tr>
<td align="center" valign="top"><b>G6</b><b><br>
</b></td>
<td valign="top"><b>Python</b><br>
</td>
<td align="center" valign="top">Christiana Agathonos<br>
Zachariou Xanthi<br>
George Kakkoulis<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-python.pptx">2014-python.pptx</a></b><br>
<b><a href="student-presentations/2014-python.zip">2014-python.zip</a></b><br>
<br>
</td>
</tr>
<tr>
<td align="center" valign="top"><b>G7</b><b><br>
</b></td>
<td valign="top"><b>Rayzit (Web GUI)</b><br>
</td>
<td align="center" valign="top">Christoforou Stefanos<br>
Constantinos Charalambous<br>
Panayides Adonis<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-webgui.pdf">2014-webgui.pdf</a></b><br>
<b><a href="student-presentations/2014-webgui.zip">2014-webgui.zip</a><br>
</b><br>
</td>
</tr>
<tr>
<td align="center" valign="top"><b>G8</b><b><br>
</b></td>
<td valign="top"><b>Storm and AKNN Implementation</b><br>
</td>
<td align="center" valign="top">Anastasiou Chrysovalantis<br>
Tsoutsouki Chrystalla<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><a href="student-presentations/2014-storm.pptx">2014-storm.pptx</a></b><br>
<b><a href="student-presentations/2014-storm.zip">2014-storm.zip</a></b><br>
</td>
</tr>
<tr align="center">
<td colspan="5" rowspan="1" valign="top"><b><big><big>2013</big></big></b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G1</b><b><br>
</b></td>
<td valign="top"><b>PHP / Joomla Module</b><b><br>
</b></td>
<td align="center" valign="top">Stefanos Taranto<br>
Xanthi Zachariou<br>
Marielli Asprou<br>
Agathwnos Christiana<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><br>
<b><a href="student-presentations/2013-php-joomla.pptx">2013-php-joomla.pptx</a></b><b><br>
</b><b> </b><b><a href="student-presentations/2013-php-joomla-src.zip" target="_blank">2013-php-joomla-src.zip</a></b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G2</b><b><br>
</b></td>
<td valign="top"><b>Apache Zookeper</b><b><br>
</b></td>
<td align="center" valign="top">Giorgos X''Giannis<br>
Gavrilis Koshiaris<br>
Argyris Argyrou<br>
Andreas Konstantinou<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><br>
<a href="student-presentations/2013-zookeeper-crawler.pptx">2013-zookeeper-crawler.pptx</a></b><b><br>
</b><b> </b><b><a href="file:///Users/dzeina/Documents/MY_WEB_SITE/courses/epl371/student-presentations/2013-php-joomla-src.pptx" target="_blank"><b></b></a><b><a href="student-presentations/2013-zookeeper-crawler-src.zip">2013-zookeeper-crawler-src.zip</a></b></b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G3</b><b><br>
</b></td>
<td valign="top"><b>PhoneGap (Apache Cordova)</b><b><br>
</b></td>
<td align="center" valign="top">Timotheos Constambeys <br>
Vakis Christoforou<br>
Antwniou Despiana<br>
Panayiotis Kyriakou<br>
</td>
<td colspan="2" rowspan="1" valign="top"><b><br>
</b>
<div align="center"><b> <a href="student-presentations/2013-phonegap-smartlib.pptx">2013-phonegap-smartlib.pptx</a></b><br>
<b> </b><b> </b><b><a href="student-presentations/2013-phonegap-smartlib-src.zip" target="_blank">2013-phonegap-smartlib-src.zip</a></b><b></b></div>
</td>
</tr>
<tr>
<td align="center" valign="top"><b>G4</b><b><br>
</b></td>
<td valign="top"><b>Android (IMU)</b><b><br>
</b></td>
<td align="center" valign="top">
<meta charset="utf-8">
Rafael Constantinou<br>
Kyriakos Andreou<br>
Marios Mintzis<br>
Argyris Konstantinides<br>
</td>
<td colspan="2" rowspan="1" align="center" valign="top"><b> <br>
<a href="student-presentations/2013-android-imu.pptx">2013-android-imu.pptx</a></b><br>
<b> </b><b> </b><b><a href="student-presentations/2013-imu-src.zip" target="_blank">2013-android-imu-src.zip</a></b></td>
</tr>
<tr>
<td align="center" valign="top"><b>G5</b><b><br>
</b></td>
<td valign="top"><b>Android (NAV)</b><b><br>
</b></td>
<td align="center" valign="top">Lambros Petrou<br>
Giwrgos Koumettou<br>
Andreas Hadjidemetris <br>
Giannis Evagorou </td>
<td colspan="2" rowspan="1" align="center" valign="top"><b><br>
<a href="student-presentations/2013-android-nav.pptx">2013-android-nav.pptx</a></b><br>
<b> </b><b> </b><b><a href="student-presentations/2013-android-nav-src.zip" target="_blank">2013-android-nav-src.zip</a></b></td>
</tr>
<tr style="font-weight: bold;" align="center">
<td colspan="5" rowspan="1" style="vertical-align: top;"><big><big>2012</big></big></td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G1<br>
</td>
<td style="vertical-align: top; font-weight: bold;">Perl<br>
</td>
<td style="vertical-align: top; text-align: center;">Maria
Charalambous<br>
Loucas Neocleous<br>
Vladimiros Theodosiou<br>
</td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-perl.pptx">2012-perl.pptx</a><br>
<a href="student-presentations/2012-perl-code.zip" target="_blank">2012-perl-code.zip</a></td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G2<br>
</td>
<td style="vertical-align: top; font-weight: bold;">Python<br>
</td>
<td style="vertical-align: top; text-align: center;">Aristos
Karafotias<br>
Zacharias Zachariou<br>
Paschalis Veis<br>
</td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-python.pptx">2012-python.pptx</a><br>
<a href="student-presentations/2012-python-code.zip">2012-python-code.zip</a><br>
<br>
</td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G3<br>
</td>
<td style="vertical-align: top; font-weight: bold;">Spamassassin<br>
</td>
<td style="vertical-align: top; text-align: center;">Giorgos
Iniatis<br>
Elsi Praioriti<br>
Marios Michael<br>
</td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-spamassassin.pptx">2012-spamassassin.pptx</a><br>
<a href="student-presentations/2012-spamassassin-code.zip">2012-spamassassin-code.zip</a><br>
<br>
</td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G4<br>
</td>
<td style="vertical-align: top; font-weight: bold;">Time
Management for System Administrators<br>
</td>
<td style="vertical-align: top; text-align: center;">Ioulia
Metochi<br>
Kalypso David<br>
Eleni Philippou<br>
</td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-time-management-for-sysadmins.pptx">2012-time-management-for-sysadmins.pptx</a><br>
<a href="student-presentations/2012-time-management-for-sysadmins-code.zip">2012-time-management-for-sysadmins-code.zip</a><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G5<br>
</td>
<td style="vertical-align: top; font-weight: bold;">Android -
SmartLab and a Distributed Game<br>
</td>
<td style="vertical-align: top; text-align: center;">Paschalis
Mpeis<br>
Andreas Konstantinou<br>
Charalambos Charalambous<br>
</td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-android-marble-game-smartlab.pptx">2012-android-marble-game-smartlab.pptx</a><a href="student-presentations/2012-android-marble-game-smartlab-code.zip"><br>
2012-android-marble-game-smartlab-code.zip</a><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G6<br>
</td>
<td style="vertical-align: top; font-weight: bold;">Android
Development Bridge (ADB) and on-the-go Management<br>
</td>
<td style="vertical-align: top; text-align: center;">Zacharias
Chatzilambrou<br>
Theofilos Phocas<br>
Andreas Lympouras </td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-android-tools-and-adb.pptx">2012-android-tools-and-adb.pptx</a><br>
<a href="student-presentations/2012-android-tools-and-adb-code.zip">2012-android-tools-and-adb-code.zip</a>
</td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G7<br>
</td>
<td style="vertical-align: top; font-weight: bold;">Android
Gaming Libraries and a Distributed Game<br>
</td>
<td style="vertical-align: top; text-align: center;">Charis
Maragos<br>
Giorgos Panagiotou<br>
Chrysi Sea<br>
</td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-android-game-library-and-game.pptx">2012-android-game-library-and-game.pptx</a><br>
<a href="student-presentations/2012-android-game-library-and-game-code.zip">2012-android-game-library-and-game-code.zip</a><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;
font-weight: bold;">G8<br>
</td>
<td style="vertical-align: top; font-weight: bold;">iOS and a
Game<br>
</td>
<td style="vertical-align: top; text-align: center;">Andreas
Dimitriou<br>
Christos Vassiliou<br>
Myria Chatzitheori<br>
Margarita Papaeythymiou<br>
</td>
<td colspan="2" rowspan="1" style="vertical-align: top;
text-align: center; font-weight: bold;"><a href="student-presentations/2012-ios-and-game.pptx">2012-ios-and-game.pptx</a><br>
<a href="student-presentations/2012-ios-and-game-code.zip">2012-ios-and-game-code.zip</a><br>
</td>
</tr>
<tr style="font-weight: bold;" align="center">
<td colspan="5" rowspan="1"><big><big>2011</big></big></td>
</tr>
<tr>
<td style="text-align: center;">G1</td>
<td><span style="font-weight: bold;">Python: </span> a
dynamic object-oriented scripting language</td>
<td style="text-align: center;">Veis
Pasxalis <br>
Ioakeim Eustathios </td>
<td><span style="font-weight: bold;">BIBEL
Bibliography Tool with Python.</span> The aim of this
project is to develop a full-fledge tool that enables
users to search for bibliographic references over DBLP.<br>
</td>
<td style="text-align: center; font-weight: bold;"><br>
<a target="_blank" href="student-presentations/2011-python.ppt">2011-python.ppt</a><br>
<a href="student-presentations/2011-python-code.zip" target="_blank">2011-python-code.zip</a><br>
</td>
</tr>
<tr>
<td style="text-align: center;">G2</td>
<td><span style="font-weight: bold;">PHP:</span> a scripting
language originally designed for producing dynamic web pages<br>
<br>
Requires previous knowledge of Web Technologies <br>
<a href="http://www.php.net/manual/en/refs.fileprocess.process.php" target="_blank"></a></td>
<td style="text-align: center;">Xrusi Sea<br>
Nikolas Kleathnous<br>
Stefanos Georgiou<span style="font-weight: bold;"></span></td>
<td><span style="font-weight: bold;">CS Colloquium Series
Administration site with PHP.</span> The aim of this
project is to develop a full-fledge administration
panel <a href="http://www.php.net/manual/en/refs.fileprocess.process.php" target="_blank"></a></td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2011-php.ppt">2011-php.ppt</a><br>
<a href="student-presentations/2011-php-code.zip" target="_blank">2011-php-code.zip</a></td>
</tr>
<tr>
<td style="text-align: center;">G3</td>
<td><span style="font-weight: bold;">(Android)</span>
Comparing Indoor Localization Algorithms with Android</td>
<td style="text-align: center;">Marios Constantinides<br>
Giorgos Constantinou<br>
Silouanos Nicolaou </td>
<td style="text-align: center;"><span style="font-weight:
bold;"><a href="student-presentations/AndroidRSS.pdf">AndroidRSS Description</a><a href="projects/2011.rss.pdf"></a></span></td>
<td style="text-align: center; font-weight: bold;"><br>
<a target="_blank" href="student-presentations/2011-rss.ppt">2011-rss.ppt</a><br>
<a href="student-presentations/2011-rss-code.zip" target="_blank">2011-rss-code.zip</a><br>
</td>
</tr>
<tr>
<td style="text-align: center;">G4</td>
<td><span style="font-weight: bold;">(Android) </span>A
Peer-to-Peer Keyword Search Protocol for Android</td>
<td style="text-align: center;">Stylianou Giannos <br>
Vasiliou Vasilis <br>
Aplitsiotis Christos <br>
Taliadoros George </td>
<td style="text-align: center;"> <a href="student-presentations/AndroidP2P.pdf"><span style="font-weight: bold;">AndroidP2P Description</span></a></td>
<td style="text-align: center; font-weight: bold;"><br>
<a target="_blank" href="student-presentations/2011-p2p.ppt">2011-p2p.ppt</a><br>
<a href="student-presentations/2011-p2p-code.zip" target="_blank">2011-p2p-code.zip</a><br>
</td>
</tr>
<tr>
<td style="text-align: center;">G5</td>
<td><span style="font-weight: bold;">Applescript & Cocoa:
</span>Offers the use of English-like commands to build scripts. This combined with Mac OS X's Cocoa frameworks allows user to build entire applications using AppleScript & Cocoa objects. <br>
<br>
<span style="text-align: center;">[ Requires MacOS-X platform ]<br>
<a href="http://en.wikipedia.org/wiki/AppleScript" target="_blank">AppleScript</a></span></td>
<td style="text-align: center;">Theodoros Ioannou</td>
<td style="text-align: left;">Extend the Finder Interface with additional functionality</td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2011-applescript.ppt">2011-applescript.ppt</a><br>
<a href="student-presentations/2011-applescript-code.zip" target="_blank">2011-applescript-code.zip</a></td>
</tr>
<tr style="font-weight: bold;" align="center">
<td colspan="5" rowspan="1" style="vertical-align: top;"><big><big>2010</big></big></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold; font-style:
italic;">Scripting Language Programming</span></td>
</tr>
<tr>
<td style="vertical-align: top;">G1<br>
</td>
<td style="vertical-align: top;"><span style="font-weight:
bold;">Perl: </span>One of the most respectable
general-purpose scripting languages </td>
<td style="vertical-align: top; text-align: center;">Elli
Zavou<br>
Nikos Demetriou<br>
Theodoros Demetriou</td>
<td style="vertical-align: top; text-align: center;">Implement AS2 in Perl </td>
<td style="vertical-align: top; text-align: center;
font-weight: bold;"><a target="_blank" href="student-presentations/2010-perl.ppt">2010-perl.ppt</a><br>
<a target="_blank" href="student-presentations/2010-perl-code.zip">2010-perl-code.zip</a>
</td>
</tr>
<tr>
<td style="vertical-align: top;">G2<br>
</td>
<td style="vertical-align: top;"><span style="font-weight:
bold;">Python:</span> a dynamic object-oriented scripting
language </td>
<td style="vertical-align: top; text-align: center;">Giorgos
Mathaiou<br>
Antonis Mavris<br>
Christos Kyriakou<br>
</td>
<td style="vertical-align: top; text-align: center;">Implement AS2 in Python </td>
<td style="vertical-align: top; text-align: center;
font-weight: bold;"><a target="_blank" href="student-presentations/2010-python.ppt">2010-python.ppt</a><br>
<a target="_blank" href="student-presentations/2010-python-code.zip">2010-python-code.zip</a>
</td>
</tr>
<tr>
<td style="vertical-align: top;">G3<br>
</td>
<td style="vertical-align: top;"><span style="font-weight:
bold;"></span><a href="http://www.php.net/manual/en/refs.fileprocess.process.php" target="_blank"></a> <span style="font-weight: bold;">Google's GO Language: </span>Go attempts to combine the
development speed of working in a dynamic language like
Python with the performance and safety of a compiled
language like C or C++.<span style="font-weight: bold;"><br><br>
<a href="http://www.techcrunch.com/2009/11/10/google-go-language" target="_blank">Google go language</a></span><br>
</td>
<td style="vertical-align: top; text-align: center;">Maria
Stylianou<br>
Georgia Christodoulidou<br>
Nikos Odysseos<br>
<br>
</td>
<td style="vertical-align: top; text-align: center;">Implement
AS2 with GO</td>
<td style="vertical-align: top; text-align: center;
font-weight: bold;"><a target="_blank" href="student-presentations/2010-go.ppt">2010-go.ppt</a><br>
<a target="_blank" href="student-presentations/2010-go-code.zip">2010-go-code.zip</a>
</td>
</tr>
<tr>
<td colspan="5" rowspan="1" style="vertical-align: top;"><span style="font-weight: bold; font-style: italic;">Programming
Linux-based Mobile Devices<br>
</span></td>
</tr>
<tr>
<td style="vertical-align: top;">G5<br>
</td>
<td style="vertical-align: top;"><span style="font-weight:
bold;">Android SDK, NDK and ASE <br>
</span>
<div><span style="font-weight:
bold;">Android SDK: </span>A software stack for mobile
devices that includes an operating system, middleware and
key applications. This is Google's Operating System for
Mobile Devices<br>
<span style="font-weight: bold;">Android NDK </span>is a
companion tool to the Android SDK that lets Android
application developers build performance-critical portions
of their apps in native code<br>
<span style="font-weight: bold;">Android Scripting
Environment (ASE)</span>: brings scripting languages to
Android by allowing you to edit and execute scripts and
interactive interpreters directly on the Android device.
These scripts have access to many of the APIs available to
full-fledged Android applications, but with a greatly
simplified interface.<br>
</div>
<br>
<a href="http://developer.android.com/index.html" target="_blank">Link 1</a><br/>
<a href="http://developer.android.com/sdk/ndk/1.5_r1/index.html" target="_blank">Link 2</a><br/>
<a href="http://code.google.com/p/android-scripting/" target="_blank">Link 3</a><br>
</div>
<a href="http://en.androidwiki.com/wiki/" target="_blank"></a></td>
<td style="vertical-align: top; text-align: center;">Giorgos
Nikolaides<br>
Konstantinos Christoforou<br>
Diomedes Papadiomedous<br>
Konstantinos Kosta<br>
</td>
<td style="vertical-align: top; text-align: center;">Talk to
Instructor about Application </td>
<td style="vertical-align: top; text-align: center;
font-weight: bold;"><a target="_blank" href="student-presentations/2010-android.ppt">2010-android.ppt</a><br>
<a target="_blank" href="student-presentations/2010-android-code.zip">2010-android-code.zip</a>
</td>
</tr>
<tr>
<td style="vertical-align: top;">G6<br>
</td>
<td style="vertical-align: top;"><span style="font-weight:
bold;">Maemo:</span> is software platform developed
by Nokia for smartphones and Internet Tablets. It is based
on the Debian Linux distribution.<br>
<div style="margin-left: 40px;"><a href="http://maemo.org/" target="_blank">Maemo</a></div>
</td>
<td style="vertical-align: top; text-align: center;">Lefteris
Eleftheriades<br>
Koula Hadjikosta<br>
Giorgos Panagiotou<br>
</td>
<td style="vertical-align: top; text-align: center;">Implement
a GPS logging tool that records data in a Mysql
relational database. </td>
<td style="vertical-align: top; text-align: center;
font-weight: bold;"><a target="_blank" href="student-presentations/2010-maemo.ppt">2010-maemo.ppt</a><br>
<a target="_blank" href="student-presentations/2010-maemo-code.zip">2010-maemo-code.zip</a>
</td>
</tr>
<tr>
<td style="vertical-align: top;">G7<br>
</td>
<td style="vertical-align: top;"><span style="font-weight:
bold;">QT Toolkit:</span> is a cross-platform application
development framework, widely used for the development of
GUI programs. Also cover Android-Lighthouse, QT's
implementation of <br>
<br>
<a href="http://en.wikipedia.org/wiki/Qt_%28toolkit%29">Qt toolkit</a><br>
<a href="http://code.google.com/p/android-lighthouse/">Android Lighthouse</a>
</td>
<td style="vertical-align: top; text-align: center;">Savvoula
Christou<br>
Eleni Skittidou<br>
Marios Papachristodoulou<br>
</td>
<td style="vertical-align: top; text-align: center;">Build
a GUI for a simple lexicon on Android that will read
its information from a text file.<br>
</td>
<td style="vertical-align: top; text-align: center;
font-weight: bold;"><a target="_blank" href="student-presentations/2010-qt.ppt">2010-qt.ppt</a><br>
<a target="_blank" href="student-presentations/2010-qt-code.zip">2010-qt-code.zip</a>
</td>
</tr>
<tr style="font-weight: bold;" align="center">
<td style="background-color: rgb(255, 204, 153);" colspan="5" rowspan="1"><big><big>2009</big></big></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold; font-style:
italic;">Scripting Language Programming</span></td>
</tr>
<tr>
<td style="text-align: center;">G1</td>
<td><span style="font-weight: bold;">Perl: </span>One of the
most respectable general-purpose scripting languages</td>
<td style="text-align: center;">Froso Selari<br>
Paris Iona<br>
Andreas Diavastos</td>
<td style="text-align: center;"><span style="font-weight: bold;">Web Crawler: </span>Implement AS2 in <span style="font-weight: bold;">Perl</span></td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2009-perl.ppt">2009-perl.ppt</a><br>
<a target="_blank" href="student-presentations/2009-perl-code.zip">2009-perl-code.zip</a></td>
</tr>
<tr>
<td style="text-align: center;">G2</td>
<td><span style="font-weight: bold;">Python:</span> a dynamic
object-oriented scripting language </td>
<td style="text-align: center;">Panayiota Yianni
<br>
Marios Agathokleous <br>
Michalis Yiallouros </td>
<td style="text-align: center;"><span style="font-weight: bold;">Web Crawler: </span>Implement AS2 in <span style="font-weight: bold;">Python</span></td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2009-python.ppt">2009-python.ppt</a><br>
<a target="_blank" href="student-presentations/2009-python-code.zip">2009-python-code.zip</a></td>
</tr>
<tr>
<td style="text-align: center;">G3</td>
<td><span style="font-weight: bold;">PHP:</span> a scripting
language originally designed for producing dynamic web pages<br>
PHP Process Control Extensions:<br>
<a href="http://www.php.net/manual/en/refs.fileprocess.process.php" target="_blank">file process</a></td>
<td style="text-align: center;">Eleutheriou
Eirini <br>
Kwnstantinos Kwnstantinidis <br>
Antigoni Xatzidimitriou </td>
<td style="text-align: center;"><span style="font-weight: bold;">A Web-based Process
Management Utility</span> (like "ps -aux"). Use the PHP
Process Control Extensions.</td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2009-php.ppt">2009-php.ppt</a><br>
<a href="student-presentations/2009-php-code.zip" target="_blank">2009-php-code.zip</a></td>
</tr>
<tr>
<td style="text-align: center;">G4</td>
<td><span style="font-weight: bold;">Ruby: </span>a dynamic,
reflective, general purpose object-oriented programming
language that combines syntax inspired by Perl</td>
<td style="text-align: center;">Xanthi Markou <br>
Rea Archeou <br>
Euthumia Papadopoulou </td>
<td style="text-align: center;"><span style="font-weight: bold;">Web Crawler: </span>Implement AS2 in <span style="font-weight: bold;">Ruby</span></td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2009-ruby.ppt">2009-ruby.ppt</a><br>
<a target="_blank" href="student-presentations/2009-ruby-code.zip">2009-ruby-code.zip</a></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold; font-style:
italic;">Cloud-Computing Programming</span></td>
</tr>
<tr>
<td style="text-align: center;">G5</td>
<td><span style="font-weight: bold;">Hadoop:</span> A software
platform that lets one easily write and run applications
that process vast amounts of data that are stored on a
cluster of machines (although for the demo implementation
you can use a single machine).<br>
Web: <a href="http://hadoop.apache.org/core/" target="_blank">Hadoop Core<br>
</cite></a>Wiki: <a href="http://wiki.apache.org/hadoop/" target="_blank">Hadoop</a></td>
<td style="text-align: center;">Charis Panayi<br>
Orestis Agathokleous<br>
Achilleas Kyrou</td>
<td style="text-align: center;"><span style="font-weight: bold;">Distributed Grep: </span>Install it on Ubuntu Linux (Single-Node Cluster) and show how to run
a <span style="font-weight: bold;">Grep</span> on a large
dataset generated with <span style="font-weight: bold;">RandomWriter</span></td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2009-hadoop.ppt">2009-hadoop.ppt</a><br>
<a target="_blank" href="student-presentations/2009-hadoop-code.zip">2009-hadoop-code.zip</a></td>
</tr>
<tr>
<td style="text-align: center;">G6</td>
<td><span style="font-weight: bold;">Android:</span> A
software stack for mobile devices that includes an operating
system, middleware and key applications<br>
Web: <a href="http://code.google.com/android" target="_blank">Android</a><br>
Wiki: <a href="http://en.androidwiki.com/wiki/" target="_blank">Android wiki</a><br>
<cite><b></b></cite></td>
<td style="text-align: center;">Eleni Skittidou<br>
Savvoula Christou<br>
Marios Papachristodoulou</td>
<td style="text-align: center;"><span style="font-weight: bold;">A simple GPS trajectory logging
application </span>(using the Android Emulator / Eclipse)</td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2009-android.ppt">2009-android.ppt</a><br>
<a target="_blank" href="student-presentations/2009-android-code.zip">2009-android-code.zip</a></td>
</tr>
<tr>
<td style="text-align: center;">G7</td>
<td><span style="font-weight: bold;">OpenMoko:</span> A
project dedicated to delivering mobile phones with an open
source software stack.<br>
Web: <a href="http://www.openmoko.com/" target="_blank">Open moko</a><br>
Wiki: <a href="http://wiki.openmoko.org/wiki/Neo1973" target="_blank">Open Moko Wiki</a></td>
<td style="text-align: center;">Giorgos Mixail <br>
Maria Efthimiou <br>
Philippos Hadjimichael </td>
<td style="text-align: center;"><span style="font-weight: bold;">A simple GPS trajectory logging
application </span> (request the OpenMoko smartphone
from the instructors)</td>
<td style="text-align: center; font-weight: bold;"><a target="_blank" href="student-presentations/2009-openmoko.ppt">2009-openmoko.ppt<br>
</a><a target="_blank" href="student-presentations/2009-openmoko-code.zip">2009-openmoko-code.zip</a></td>
</tr>
<tr style="font-weight: bold;" align="center">
<td style="background-color: rgb(255, 204, 153);" colspan="5" rowspan="1"><big><big>2008</big></big></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold; font-style:
italic;">Scripting & Other Languages </span></td>
</tr>
<tr>
<td style="text-align: center;">G1</td>
<td style="font-weight: bold;">Ruby</td>
<td style="">Marios Hadjipollas, Katerina
Kounouni</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2008-Ruby.pdf">2008-ruby.pdf</a></td>
</tr>
<tr>
<td style="text-align: center;">G2</td>
<td style="font-weight: bold;"><span lang="en-us">Hancock</span></td>
<td style="">Exarchakos Nikolaos, Zografakis
Ioannis</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2008-Hancock.pdf">2008-hancock.pdf</a></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold; font-style:
italic;">Grid Computing</span></td>
</tr>
<tr>
<td style="text-align: center;">G3</td>
<td style="font-weight: bold;">Managing the EGEE Grid
Infrastructure</td>
<td style="">Christodoulos Efstathiades, Doros
Georgiou</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2008-EGEE.pdf">2008-egee.pdf</a></td>
</tr>
<tr>
<td style="text-align: center;">G4</td>
<td style="font-weight: bold;">The gLite Grid Middleware</td>
<td style="">Marinos Argyrou, Aristodimos Pipis</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2008-gLite.pdf">2008-glite.pdf</a></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold;">Windows Systems
Programming</span></td>
</tr>
<tr>
<td style="text-align: center;">G5</td>
<td style="font-weight: bold;">Windows: Threads and
Concurrency</td>
<td style="">Orestis Spanos, Christos Kyriakou</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2008-ThreadsAndConcurrency.pdf">2008-windows-threads.pdf</a></td>
</tr>
<tr style="font-weight: bold;" align="center">
<td style="background-color: rgb(255, 204, 153);" colspan="5" rowspan="1"><big><big>2007</big></big></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold; font-style:
italic;">Scripting Language Programming</span></td>
</tr>
<tr>
<td style="text-align: center;">G1</td>
<td style="font-weight: bold;">Perl</td>
<td style=""> Dimitris Kouzapas , Dimos Paulou</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2007-perl.pdf">2007-perl.pdf</a></td>
</tr>
<tr>
<td style="text-align: center;">G2</td>
<td style="font-weight: bold;"> Python / PHP</td>
<td style=""> Asterios Katsifodimos , Georgios
Nikolaou , Kostantin Vruoni</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><span lang="en-us"><a href="student-presentations/2007-python.pdf">2007-python.pdf</a></span>
<p> <span lang="en-us"><a href="student-presentations/2007-php.pdf">2007-php.pdf</a></span></p>
<p><a href="student-presentations/2007-sources.zip"><span lang="en-us"></span></a><a href="student-presentations/2007-sources.zip">2007-sources.zip</a></p>
</td>
</tr>
<tr>
<td style="text-align: center;">G3</td>
<td style="font-weight: bold;"> TCL/TK</td>
<td style=""> Maria Papa , Marianna Zannetti </td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2007-tcltk.pdf">2007-tcltk.pdf</a></td>
</tr>
<tr>
<td style="background-color: rgb(204, 255, 255);" colspan="5" rowspan="1"><span style="font-weight: bold; font-style:
italic;">Windows Systems Programming</span></td>
</tr>
<tr>
<td style="text-align: center;">G4</td>
<td style="font-weight: bold;"><span lang="en-us">Windows
Shells with an emphasis on </span> PowerShell
(Vista)</td>
<td style=""> Nikolas Ladas, Panagiotis
Voutouris</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2007-shells.pdf">2007-shells.pdf</a></td>
</tr>
<tr>
<td style="text-align: center;">G5</td>
<td style="font-weight: bold;"> Threads and Concurrency in
Windows</td>
<td style=""> Christos Konstantinou , Vasos
Tziogkouros </td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2007-threads.pdf">2007-threads.pdf</a></td>
</tr>
<tr>
<td style="text-align: center;">G6</td>
<td style="font-weight: bold;"> Process Management and IPC<span lang="en-us"> in Windows</span></td>
<td style=""> Iakovos Pitharas , K<span lang="en-us">y</span>riakos Ioannou</td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><span lang="en-us"></span><a href="student-presentations/2007-process.pdf">2007-process.pdf</a></td>
</tr>
<tr>
<td style="text-align: center;">G7</td>
<td style="font-weight: bold;"> Windows Sockets</td>
<td style=""><span lang="en-us">Neofutos Iliadis,
Marios Papas</span></td>
<td style="text-align: center;">N/A</td>
<td style="text-align: center; font-weight: bold;"><a href="student-presentations/2007-sockets.pdf">2007-</a><a href="student-presentations/2007-sockets.pdf">sockets.pdf</a></td>
</tr>
</tbody>
</table>
<h3>General Directives</h3>
<p>All presentations need to adhere to the following strict rules:
<ul>
<li>Language: <span style="color:red">Greek</span></li>
<li>Format: <span style="color:red">Powerpoint</span></li>