-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1022 lines (933 loc) · 98.3 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
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>[ Demetris Zeinalipour @ UCY ]</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) -->
<!-- http://getbootstrap.com/customize/ change "@screen-sm" -> "@screen-md" in @grid-float-breakpoint -->
<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>
</head>
<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><p id="myversion"/></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="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Home<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a onclick="javascript:reset_menus();$('#tab-intro-content').show();" href="#intro">Introduction</a></li>
<li><a href="bio.html">Biography</a></li>
<li><a href="cv.html">CV (Web)</a></li>
<li><a target="_blank" href="zeinalipour.pdf">CV (PDF)</a></li>
</ul>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#tab-news-content').show();" href="#news">News</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Publications<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a onclick="javascript:reset_menus();$('#tab-publications-content').show();" href="#publications">Selected</a></li>
<li><a href="publications/">All</a></li>
</ul>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#tab-awards-content').show();" href="#awards">Awards</a>
</li>
<li class="page-scroll">
<a href="talks/">Talks</a>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#tab-courses-content').show();" href="#courses">Courses</a>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#tab-systems-content').show();" href="#systems">Systems</a>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#tab-service-content').show();" href="#service">Service</a>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#tab-advising-content').show();" href="#advising">Advising</a>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#tab-contact-content').show();" href="#contact">Contact</a>
</li>
<li class="page-scroll">
<a onclick="javascript:reset_menus();$('#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>
<section>
<!-- Place this tag where you want the search results to render -->
<gcse:searchresults-only></gcse:searchresults-only>
</section>
<!-- Home Section -->
<section name="home" id="home" style="margin-top:40px">
<div class="container">
<div align="left" class="col-md-3">
<a target="_blank" href="images/zeinalipour.jpg">
<img id="mobile-img" src="images/zeinalipour.small.jpg" width="200" border="0" alt=""></a>
</div>
<div align="left" class="col-md-4">
<h2>Demetris Zeinalipour
<h5><i>PhD, U. of California - Riverside, USA, 2005</i></h5>
</h2>
<h4>Professor<br>
<a href="https://www.cs.ucy.ac.cy/">Dept. of Computer Science</a><br>
<a href="https://www.ucy.ac.cy/">University of Cyprus</a><br>
<!--
P.O. Box 20537<br>
1678 Nicosia, CYPRUS<br>-->
Tel/Fax: <a href="tel:0035722892755">+357-22892755</a> / <a href="tel:0035722892701">01</a><br/>
Email:
<script language="JavaScript">
<!--
document.write(" ");
spiderjam('dzeina','ucy.ac.cy');
-->
</script><br/>
Lab: <a target="_blank" href="https://dmsl.cs.ucy.ac.cy/">https://dmsl.cs.ucy.ac.cy/</a><br>
Directions: <a target="_blank" href="https://goo.gl/FQCHMl">https://goo.gl/FQCHMl</a>
</h4>
<h4><i>Expertise: Data Management in Computer Systems & Networks</i> <a href="#intro" onclick="javascript:reset_menus();$('#tab-intro-content').show();" class="btn-primary btn-xs">»</a><br></h4>
</div>
<i class="twittertop" style="display:none;" id="t1">
<div id="news" tyle="text-align: left" class="col-md-5">
<center><a class="twitter-timeline" href="https://twitter.com/dmslucy" data-chrome="nofooter" data-widget-id="346662554203992065" data-width="900"
data-height="300">Tweets
by @dmslucy</a>
<script>!function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + "://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");</script>
<a target="_blank" href="https://www.youtube.com/channel/UC9ECFHg5L6p7yRcjxjQwIBw?view_as=subscriber"><img border="0" width="150" src="images/youtube.png"></a>
</center>
</div>
</i>
<!--<p><a href="#" class="btn btn-primary">More »</a></p>-->
<b class="expandshow" style="display:none;" id="tab-1">
<button class="btn btn-primary btn-lg btn-block" style="width: 100%;" onclick="javascript:$('.allshow').show();$('.noshow').hide();$('.collapseshow').show();$('.expandshow').hide();">EXPAND ALL SECTIONS <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<b class="collapseshow" style="display:none;" id="tab-1">
<button class="btn btn-primary btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('.allshow').hide();$('.noshow').show();$('.expandshow').show();$('.collapseshow').hide();">COLLAPSE ALL SECTIONS <span class="glyphicon glyphicon-chevron-up"></span></button>
</b>
</div>
</section>
<!-- Home Section -->
<section name="intro" id="intro">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<!--<h2>Welcome!</h2>-->
<b class="noshow" style="display:none;" id="tab-1">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-intro-content').toggle();">Introduction <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-intro-content">
<hr class="star-primary">
<p class="lead">
Demetris Zeinalipour is a Professor of <a target="_blank" href="https://www.cs.ucy.ac.cy/">Computer Science</a> at the <a target="_blank" href="https://www.ucy.ac.cy/">University of Cyprus</a>, where he founded and directs the <a target="_blank" href="https://dmsl.cs.ucy.ac.cy/">Data Management Systems Laboratory (DMSL)</a>. He holds a Ph.D. (2005) and M.Sc. (2003) in Computer Science and Engineering from the <a href="https://www.cs.ucr.edu/" target="_blank">University of California - Riverside</a>, CA, USA and a B.Sc. in Computer Science from the <a href="https://www.cs.ucy.ac.cy/" target="_blank">University of Cyprus</a> (2000). Before his current appointment, he served the <a target="_blank" href="https://www.cs.ucy.ac.cy/">University of Cyprus</a> as an Assistant Professor and Lecturer and also the <a href="https://www.ouc.ac.cy/" target="_blank">Open University of Cyprus</a> as a Lecturer. He has held short-term research visits at <a href="https://www.akamai.com/" target="_blank">Akamai Technologies</a>, Cambridge, MA, USA (2004), the <a href="https://www.di.uoa.gr/eng" target="_blank">University of Athens</a>, Greece (2007) as a Marie-Curie Fellow and the <a href="https://www.cs.pitt.edu/">University of Pittsburgh</a>, PA, USA (2015). During 2016-2017, he was a Humboldt Fellow at the <a target="_blank" href="https://www.mpi-inf.mpg.de/home/">Max Planck Institute for Informatics</a>, Saarbrücken, Germany. He is an <a href="https://speakers.acm.org/speakers/zeinalipour-yazti_7903">ACM Distinguished Speaker</a> (2017-2020), a Senior Member of <a href="https://www.acm.org/" target="_blank">ACM</a> (also of <a href="https://www.sigmod.org/" target="_blank">ACM SIGMOD</a>), a Senior Member of IEEE</a> (also of <a href="https://www.computer.org/" target="_blank">IEEE Computer Society</a>, <a href="https://tab.computer.org/tcde/">IEEE Technical Committee on Data Engineering</a> and <a href="https://bigdata.ieee.org/">IEEE Big Data Initiative</a>), and a Member of <a href="https://www.usenix.org/" target="_blank">USENIX</a>. He serves on the editorial board of <a target="_blank" href="https://www.springer.com/computer/database+management+%26+information+retrieval/journal/10619">Distributed and Parallel Databases</a> (Springer), <a target="_blank" href="https://www.journals.elsevier.com/big-data-research">Big Data Research</a> (Elsevier) , <a target="_blank" href="https://www.journals.elsevier.com/big-data-research">International Journal of Cooperative Information Systems</a> (World Scientific) and is an independent evaluator for the European Commission (<a href="https://ec.europa.eu/programmes/horizon2020/en/h2020-section/marie-sklodowska-curie-actions">Marie Skłodowska-Curie</a> and <a target="_blank" href="https://www.cost.eu/cost-actions/what-are-cost-actions/">COST</a> actions), the Hong Kong <a target="_blank" href="https://www.ugc.edu.hk/eng/rgc/">RGC</a>, the Austrian <a target="_blank" href="https://www.wwtf.at/">WWTF</a> and the Hellenic <a target="_blank" href="https://www.elidek.gr/en/homepage/">HFRI</a>. He is part of the <a target="_blank" href="https://edbt.org">EDBT</a> and the <a target="_blank" href="https://euro-par.org">Euro-Par</a> Steering Committees. He is currently an elected member of the University of Cyprus <a target="_blank" href="https://www.ucy.ac.cy/governingbodies/senate/senate-members/">Senate</a>.
</p>
<p>
His primary research interests include <b>Data Management in Computer Systems and Networks</b>, particularly <i>Mobile, Sensor and Spatio-Temporal Data Management; Big Data Management in Parallel and Distributed Architectures; Network, Blockchain and Telco Data Management; Crowd, Web 2.0 and Indoor Data Management; Data Privacy Management; Data Management for Sustainability.</i>
<p><a href="bio.html" class="btn-sm btn-primary">Biography »</a>
<a href="cv.html" class="btn-sm btn-primary">CV (Web)»</a>
<a href="zeinalipour.pdf" class="btn-sm btn-primary">CV (PDF)»</a>
</div>
</div>
</div>
</section>
<div class="twitterlow" style="display:none;" id="t1">
<!-- News Section -->
<section name="news" id="news">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-2">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-news-content').toggle();">News <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<b class="allshow" style="display:none;" id="tab-news-content">
<hr class="star-primary">
<h2>News</h2>
<center><a class="twitter-timeline" href="https://twitter.com/dmslucy" data-chrome="nofooter" data-widget-id="346662554203992065">Tweets
by @dmslcy</a>
<script>!function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + "://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");
</script>
<a target="_blank" href="https://www.youtube.com/channel/UC9ECFHg5L6p7yRcjxjQwIBw?view_as=subscriber"><img border="0" width="150" src="images/youtube.png"></a>
</center>
</b>
</div>
</div>
</section>
</div>
<!-- Research Section -->
<section name="publications" id="publications">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-3">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-publications-content').toggle();">Publications <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-publications-content">
<hr class="star-primary">
<h2>Selected and Recent Publications <a href="publications/" class="btn btn-primary">All Publications»</a></h2>
<h4>
<span class="label label-warning">
<a target="_blank" href="https://en.wikipedia.org/wiki/H-index"><font color=white>h-index</font></a>: 33
</span>
<span class="label label-warning">
<a target="_blank" href="https://scholar.google.com/citations?user=HCxwGIkAAAAJ&hl=en"><font color=white>Citations</font></a>: 4,257
</span>
<span class="label label-success">
<a target="_blank" alt="Demetris Zeinalipour - Gunopulos Dimitrios - Bollobás Béla - Erdős, Paul" title="Demetris Zeinalipour - Gunopulos Dimitrios - Bollobás Béla - Erdős, Paul" href="https://www.csauthors.net/distance/demetris-zeinalipour/paul-erdos"><font color="white">Erdös #</font></a>: 3
</span>
<span class="label label-success">
<a target="_blank" alt="Demetris Zeinalipour - Rizos Sakellariou - John R. Rice - Edsger W. Dijkstra" title="Demetris Zeinalipour - Rizos Sakellariou - John R. Rice - Edsger W. Dijkstra"
href="https://www.csauthors.net/distance/demetris-zeinalipour/edsger-w-dijkstra"><font color="white">Dijkstra #</font></a>: 3
</span>
<span class="label label-default">
<a target="_blank" href="https://orcid.org/0000-0002-7239-2387"><font color="white">ORCID: 0000-0002-7239-2387</font></a>
</span>
<span class="label label-default">
<a target="_blank" href="https://www.scopus.com/authid/detail.uri?authorId=35176841800"><font color="white">Scopus</font></a>
</span>
<span class="label label-default">
<a target="_blank" href="https://www.researcherid.com/rid/O-2301-2016"><font color="white">ResearcherID</font></a>
</span>
<span class="label label-default">
<a target="_blank" href="https://www.semanticscholar.org/author/D.-Zeinalipour-Yazti/1403214054"><font color="white">SemanticScholar</font></a>
</span>
</h4>
<ul>
<li><span class="label label-success">IEEE TSUSC'24</span> <a target="_blank" href="papers/tsusc24-greencapplus.pdf">"A Sustainable Energy Management Framework for Smart Homes"</a>, Soteris Constantinou, Constantinos Costa, Andreas Konstantinidis, Panos K. Chrysanthis and Demetrios Zeinalipour-Yazti, <b>IEEE Transactions on Sustainable Computing (TSUSC'24)</b>, IEEE Computer Society, Vol. x, Iss. x, pp. x-x, Los Alamitos, CA, USA, April 2024. <font color="red"><b>(accepted)</b></font>
</li>
<li><span class="label label-success">Springer DAPD'24</span> <a target="_blank" href="papers/dapd24-triabase.pdf">"A Blockchain Datastore for Scalable IoT Workloads using Data Decaying"</a>, Panagiotis Drakatos, Constantinos Costa, Andreas Konstantinidis, Panos K. Chrysanthis and Demetrios Zeinalipour-Yazti, <b>Distributed and Parallel Databases (DAPD'24)</b>, Springer Nature, Vol. xx, Iss. x, pp. xx-xx, 2024. <font color="red"><b>(accepted)</b></font>
</li>
<li><span class="label label-success">IEEE ICDE'24</span> <a target="_blank" href="papers/icde24-ecocharge.pdf">"A Framework for Continuous kNN Ranking of Electric Vehicle Chargers with Estimated Components"</a>, Soteris Constantinou, Constantinos Costa, Andreas Konstantinidis, Mohamed F. Mokbel, Demetrios Zeinalipour-Yazti, Proceedings of the <b>40th IEEE International Conference on Data Engineering (ICDE'24)</b>, IEEE Press, 14 pages, Utrecht, Netherlands, Apr 16, 2024 - Apr 19, 2024. <font color="red"><b>(accepted)</b></font>
</li>
<li><span class="label label-success">ACM TSAS'24</span> <a target="_blank" href="papers/tsas24-mobility.pdf">"Mobility Data Science: Perspectives and Challenges"</a>, Mohamed F. Mokbel, Mahmoud Attia Sakr, ..., Demetris Zeinalipour, Mengxuan Zhang, Esteban Zimányi, <b>ACM Transactions on Spatial Algorithms and Systems (TSAS'24)</b>, ACM Press, 34 pages, New York, USA, February 2024. <font color="red"><b>(accepted)</b></font>
</li>
<li><span class="label label-success">IEEE MDM'23</span> <a target="_blank" href="papers/mdm23-greencap.pdf">"An IoT Data System for Solar Self-Consumption"</a>, Soteris Constantinou, Nicolas Polycarpou, Constantinos Costa, Andreas Konstantinidis, Panos K. Chrysanthis, Demetrios Zeinalipour-Yazti, Proceedings of the <b>24th IEEE International Conference on Mobile Data Management (MDM'23)</b>, IEEE Press, pp. 65-72, July 3 - July 6, 2023, Singapore, DOI: 10.1109/MDM58254.2023.00022, 2023. <!-- <font color="red"><b>(accepted)</b></font>.-->
</li>
<li><span class="label label-success">IEEE IoTJ'23</span> <a target="_blank" href="papers/iotj23-mdf.pdf">"Cramér–Rao Lower Bound Analysis of Differential Signal Strength Fingerprinting for Crowdsourced IoT Localization"</a>, Jiseon Moon, Christos Laoudias, Ran Guan, Sunwoo Kim, and Demetrios Zeinalipour-Yazti, and Christos G. Panayiotou,<b> IEEE Internet of Things Journal (IoTJ'23)</b>, IEEE Computer Society, Vol. 10, Iss. 11, pp. 9690-9702, Los Alamitos, CA, USA, DOI: 10.1109/JIOT.2023.3235921, 2023.
</li>
<li><span class="label label-success">ACM TIOT'22</span> <a target="_blank" href="papers/tiot22-gp.pdf">"Green Planning of IoT Home Automation Workflows in Smart Buildings"</a>, Soteris Constantinou, Andreas Konstantinidis, Panos K. Chrysanthis and Demetrios Zeinalipour-Yazti, <b> ACM Transactions on Internet of Things (TIOT'22)</b>, ACM, Vol. 3, Iss. 4, pp. 1--30, New York, NY, USA, DOI: 10.1145/3549549, 2022.
</li>
<li><span class="label label-success">IEEE IC'22</span> <a target="_blank" href="papers/ic22-green.pdf">"Green Planning Systems for Self-Consumption of Renewable Energy"</a>, Soteris Constantinou, Andreas Konstantinidis and Demetrios Zeinalipour-Yazti, <b> IEEE Internet Computing (IC'22)</b>, IEEE Computer Society, pp. 7 pages, Los Alamitos, CA, USA, DOI: 10.1109/MIC.2022.3164581, 2022.
</li>
<li><span class="label label-success">ACM TSAS'22</span> <a target="_blank" href="papers/tsas22-astro.pdf">"ASTRO: Reducing COVID-19 Exposure through Contact Prediction and Avoidance"</a>, Chrysovalantis Anastasiou, Constantinos Costa, Panos K. Chrysanthis, Cyrus Shahabi, and Demetrios Zeinalipour-Yazti, <b> ACM Transactions on Spatial Algorithms and Systems (TSAS'22)</b>, Association for Computing Machinery, Vol. 8, Iss. 2, Article 11 (June 2022), 31 pages. New York, NY, USA, DOI: 10.1145/3490492, 2022.
</li>
<li><span class="label label-success">IEEE ICDE'21</span> <a target="_blank" href="papers/icde21-imcf.pdf">"The IoT Meta-Control Firewall"</a>, Soteris Constantinou, Andreas Konstantinidis, Demetrios Zeinalipour-Yazti, Panos K. Chrysanthis, Proceedings of the <b>37th IEEE International Conference on Data Engineering (ICDE'21)</b>, pp. 2523-2534, DOI: 10.1109/ICDE51399.2021.00284, IEEE Computer Society, Chania, Crete, Greece, April 19-22, 2021.
</li>
<li><span class="label label-success">ACM TSAS'21</span> <a target="_blank" href="papers/tsas21-accesplus.pdf">"Indoor Quality-of-Position Visual Assessment using Crowdsourced Fingerprint Maps"</a>, Christos Laoudias, Artyom Nikitin, Panagiotis Karras, Moustafa Youssef, Demetrios Zeinalipour-Yazti, <b> ACM Transactions on Spatial Algorithms and Systems (TSAS'21)</b>, Association for Computing Machinery, Vol. 7, Iss. 2, Article 10 (February 2021), 32 pages. DOI:https://doi.org/10.1145/3433026. </li>
</li>
<li><span class="label label-success">ACM TOIT'20</span> <a target="_blank" href="papers/toit20-epui.pdf">"Serendipity-Based Points-of-Interest Navigation"</a>, Xiaoyu Ge, Panos K. Chrysanthis, Konstantinos Pelechrinis, Demetrios Zeinalipour-Yazti, Mohamed Sharaf, <b> ACM Transactions on Internet Technology (TOIT'20)</b>, Association for Computing Machinery, Vol. 20, Iss. 4, Article 33 (November 2020), 32 pages. DOI: https://doi.org/10.1145/3391197 </li>
</li>
<li><span class="label label-success">Geoinformatica'19</span> <a target="_blank" href="papers/geo19-dp.pdf">"Continuous Decaying of Telco Big Data with Data Postdiction"</a>, Constantinos Costa, Andreas Charalampous, Andreas Konstantinidis, Demetrios Zeinalipour-Yazti, Mohamed F. Mokbel, <b>Geoinformatica'19</b>, Springer Nature, DOI: 10.1007/s10707-019-00364-z, June 2019. <font color="red"></font></li>
</li>
<li><span class="label label-success">IEEE ICDE'19</span> <a target="_blank" href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8731453">"Bridging Quantities in Tables and Text"</a>, Yusra Ibrahim, Mirek Riedewald, Gerhard Weikum and Demetrios Zeinalipour-Yazti, Proceedings of the <b>35th IEEE International Conference on Data Engineering (ICDE'19)</b>, pp. 1010-1021, DOI: 10.1109/ICDE.2019.00094, IEEE Computer Society, Macao, 2019<font color="red"></font></li>
</li>
<li><span class="label label-success">ESWC'19</span> <a target="_blank" href="https://link.springer.com/chapter/10.1007%2F978-3-030-21348-0_11">"Generating Semantic Aspects for Queries"</a>, Dhruv Gupta, Klaus Berberich, Jannik Strötgen, Demetrios Zeinalipour-Yazti, Proceedings of the <b>16th International Semantic Web Conference (ESWC'19)</b>, Springer Nature, pp. 162--178, June 2nd to June 6th, 2019, Portorož, Slovenia, 2019.</li>
</li>
<li><span class="label label-success">ACM TOIT'18</span> <a target="_blank" href="papers/toit18-grap.pdf">"IoT Data Prefetching in Indoor Navigation SOAs"</a>, Andreas Konstantinidis, Panagiotis Irakleous, Zacharias Georgiou, Demetrios Zeinalipour-Yazti and Panos K. Chrysanthis, <b>ACM Transactions on Internet Technology (TOIT'18)</b>, Vol. 19, Iss. 1, Article 10, pp. 10:1-10:21, 2018. </li>
<li><span class="label label-success">IEEE MDM'18</span> <a target="_blank" href="papers/mdm18-dp.pdf">"Decaying Telco Big Data with Data Postdiction"</a>, Constantinos Costa, Andreas Charalampous, Andreas Konstantinidis, Demetrios Zeinalipour-Yazti and Mohamed F. Mokbel, <b>19th IEEE International Conference on Mobile Data Management (MDM'18)</b>, ISBN: 978-1-5386-4133-0, pp. 106--115, June 25 - June 28, 2018, AAU, Aalborg, Denmark, 2018. <font color="red">(Best of MDM'18 / Geoinformatica Invitation!)</font></li>
<li><span class="label label-success">IEEE IC'17</span> <a target="_blank" href="papers/ic16-iin.pdf">"Internet-Based Indoor Navigation Services"</a>, Demetrios Zeinalipour-Yazti, Christos Laoudias, Kyriakos Georgiou, Georgios Chatzimilioudis, <b>IEEE Internet Computing (IC'17)</b>, vol. 21, no. 4, pp. 54-63, July 2017, doi:10.1109/MIC.2017.2911420, IEEE Computer Society, 2017.
</li>
<li><span class="label label-success">IEEE MDM'17</span> <a target="_blank" href="papers/mdm17-acces.pdf">"Indoor Localization Accuracy Estimation from Fingerprint Data"</a>, Artyom Nikitin, Georgios Chatzimilioudis, Christos Laoudias, Panagiotis Karras and Demetrios Zeinalipour-Yazti, Proceedings of the <b>18th IEEE International Conference on Mobile Data Management (MDM'17)</b>, pp. 196--205, IEEE Press, KAIST, Daejeon, South Korea, May 29 - June 1, 2017. <font color="red">(Honorable Mention Award!)</font>.
</li>
<li><span class="label label-success">IEEE ICDE'17</span> <a target="_blank" href="papers/icde17-spate.pdf">"Efficient Exploration of Telco Big Data with Compression and Decaying"</a>, Constantinos Costa, Georgios Chatzimilioudis, Demetrios Zeinalipour-Yazti, Mohamed F. Mokbel, Proceedings of the <b>33rd IEEE International Conference on Data Engineering (ICDE'17)</b>, IEEE Computer Society, pp. 1332--1343, April 19-22, 2017, San Diego, CA, USA, ISBN: 978-1-5090-6543-1, 2017.
</li>
<li><span class="label label-success">Elsevier InfoSys'17</span> <a target="_blank" href="papers/infosys16-proxplus.pdf">"Crowdsourcing Emergency Data in Non-Operational Cellular Networks"</a>, Georgios Chatzimilioudis, Constantinos Costa, Demetrios Zeinalipour-Yazti and Wang-Chien Lee, <b>Information Systems (InfoSys'17)</b>, Special Issue on Large-Scale Data Management for Mobile Applications, Vol. 64, pp. 292 - 302, Oxford, UK, 2017. </li>
<li><span class="label label-success">IEEE TKDE'16</span> <a target="_blank" href="papers/tkde16-spitfire.pdf">"Distributed In-Memory Processing of All k Nearest Neighbor Queries"</a>, Georgios Chatzimilioudis, Constantinos Costa, Demetrios Zeinalipour-Yazti, Wang-Chien Lee and Evaggelia Pitoura, <b>IEEE Transactions on Knowledge and Data Engineering (TKDE'16)</b>, IEEE Computer Society, Vol. 28, Iss. 4, pp. 925-938, 2016.</li>
<li><span class="label label-success">Springer DAPD'16</span> <a target="_blank" href="papers/dapd14-bigmobile.pdf">"Managing Big Data Experiments on Smartphones"</a>, Georgios Larkou, Marios Mintzis, Panayiotis G. Andreou, Andreas Konstantinidis and Demetrios Zeinalipour-Yazti, <b>Distributed and Parallel Databases (DAPD'16)</b>, Special Issue on Large-Scale Data Management for Mobile Applications, Springer Nature, Vol. 34, Iss. 1, pp. 33-64, 2016.</li>
<li><span class="label label-success">IEEE TKDE'15</span> <a target="_blank" href="papers/tkde15-tvm.pdf">"Privacy-Preserving Indoor Localization on Smartphones"</a>, Andreas Konstantinidis, Georgios Chatzimilioudis, Demetrios Zeinalipour-Yazti, Paschalis Mpeis, Nikos Pelekis, Yannis Theodoridis, <b>IEEE Transactions on Knowledge and Data Engineering (TKDE'15)</b>, IEEE Computer Society, Vol. 27, Iss. 11, pp. 3042-3055, Los Alamitos, CA, USA, 2015.</li>
<li><span class="label label-success">IEEE MDM'15</span> <a target="_blank" href="papers/mdm15-preloc.pdf">"Radiomap Prefetching for Indoor Navigation in Intermittently Connected Wi-Fi Networks"</a>, Andreas Konstantinidis, George Nikolaides, Georgios Chatzimilioudis, Giannis Evagorou, Demetrios Zeinalipour-Yazti and Panos K. Chrysanthis, Proceedings of the <b>16th IEEE International Conference on Mobile Data Management (MDM'15)</b>, IEEE Press, Vol.1, pp. 34-43, Pittsburgh, PA, USA, 2015.</li>
<li><span class="label label-success">Springer JNCA'14</span> <a target="_blank" href="papers/jnca14-kspotplus.pdf">"A network-aware framework for energy-efficient data acquisition in wireless sensor networks"</a>, Panayiotis G. Andreou, Demetrios Zeinalipour-Yazti, George S. Samaras and Panos K. Chrysanthis, <b>Journal of Network and Computer Applications (JNCA '14)</b>, Elsevier North-Holland, Vol. 46, pp. 227 - 240, 2014.
</li>
<li><span class="label label-success">USENIX LISA'13</span> <a target="_blank" href="https://www.usenix.org/conference/lisa13/technical-sessions/papers/larkou">"Managing Smartphone Testbeds with SmartLab"</a>, G. Larkou, C. Costa, P. Andreou, A. Konstantinidis, D. Zeinalipour-Yazti, Proceedings of the <b>27th USENIX Large Installation System Administration Conference (LISA'13)</b>, Washington D.C., USA, pp. 115-132, ISBN: 978-1-931971-05-8, 2013</li>
<li><span class="label label-success">IEEE TKDE'13</span> <a target="_blank" href="papers/tkde13-st.pdf">"Crowdsourced Trace Similarity with Smartphones"</a>, Demetrios Zeinalipour-Yazti, Christos Laoudias, Constandinos Costa, Michail Vlachos, Maria I. Andreou and Dimitrios Gunopulos, <b>IEEE Transactions on Knowledge and Data Engineering (TKDE'13)</b>, IEEE Computer Society, Vol. 25, Iss. 6, pp. 1240-1253, Los Alamitos, CA, USA, 2013.</li>
<li><span class="label label-success">IEEE IC'12</span> <a target="_blank" href="papers/ic12-crowdsourcing.pdf">"Crowdsourcing with smartphones"</a>, Georgios Chatzimiloudis, Andreas Konstantinidis, Christos Laoudias and Demetrios Zeinalipour-Yazti, <b>IEEE Internet Computing (IC'12)</b>, Special Issue: Sep/Oct 2012 - Crowdsourcing, May 2012. IEEE Press, Vol. 16, Iss. 5, pp. 36-44, 2012.</li>
<li><span class="label label-success">IEEE MDM'12</span> <a target="_blank" href="papers/mdm12-proximity.pdf">"Continuous all k-nearest neighbor querying in smartphone networks"</a>, Georgios Chatzimilioudis, Demetrios Zeinalipour-Yazti, Wang-Chien Lee, Marios D. Dikaiakos, Proceedings of the <b>13th IEEE International Conference on Mobile Data Management (MDM'12)</b>, IEEE Computer Society, pp. 79-88, Bangalore, India, ISBN: 978-0-7695-4713-8, 2012.</li>
<li><span class="label label-success">Springer DAPD'11</span> <a target="_blank" href="papers/dapd10-kspot.pdf">"Power efficiency through tuple ranking in wireless sensor network monitoring"</a>, Panayiotis Andreou, Demetrios Zeinalipour-Yazti, Panos K. Chrysanthis and George Samaras, <b>Distributed and Parallel Databases (DAPD'11)</b>, Springer Nature, Vol. 29, Iss. 1, pp. 113-150, 2011.</li>
<li><span class="label label-success">Elsevier InfoSys'11</span> <a target="_blank" href="papers/infosys10-micropulse.pdf">"Optimized query routing trees for wireless sensor networks"</a>, Panayiotis Andreou, Demetrios Zeinalipour-Yazti, Andreas Pamboris, Panos K. Chrysanthis, George Samaras, <b>Information Systems (InfoSys'11)</b>, Elsevier Science Ltd., Vol. 36, Iss. 2, pp. 267-291, Oxford UK, 2011.</li>
<li><span class="label label-success">IEEE MDM'11</span><a target="_blank" href="papers/mdm11-st.pdf">"Disclosure-Free GPS Trace Search in Smartphone Networks"</a>, Demetrios Zeinalipour-Yazti, Christos Laoudias, Maria I. Andreou, Dimitrios Gunopulos, Proceedings of the <b>12th IEEE International Conference on Mobile Data Management (MDM'11)</b>, IEEE Computer Society, pp. 78-87, Washington DC, USA, ISBN: 978-0-7695-4436-6, 2011.</li>
<li><span class="label label-success">Elsevier ComNet'09</span> <a target="_blank" href="papers/comnet09-tja.pdf">"Finding the K highest-ranked answers in a distributed network"</a>, Demetrios Zeinalipour-Yazti, Zografoula Vagena, Dimitrios Gunopulos and Vana Kalogeraki, Vassilis Tsotras, Michail Vlachos, Nick Koudas, Divesh Srivastava, <b>Computer Networks (ComNet'09)</b>, Elsevier North-Holland Inc., Vol.53, Iss. 9, pp. 1431-1449, New York, NY, USA, 2009.</li>
<li><span class="label label-success">IEEE MDM'08</span> <a target="_blank" href="papers/mdm08-micropulse.pdf">"Workload-Aware Query Routing Trees in Wireless Sensor Networks"</a>, Panayiotis Andreou, Demetrios Zeinalipour-Yazti, Panos K. Chrysanthis and George Samaras, Proceedings of the <b>9th IEEE International Conference on Mobile Data Management (MDM'08)</b>, IEEE Computer Society, pp. 189--196, Washington DC, USA, ISBN: 978-0-7695-3154-0, 2008.</li>
<li><span class="label label-success">IEEE TPDS'07</span> <a target="_blank" href="papers/tpds06-zeinalipour.pdf">"pFusion: a P2P Architecture for Internet-Scale Content-Based Search and Retrieval"</a>, Demetrios Zeinalipour-Yazti, Vana Kalogeraki, and Dimitrios Gunopulos, <b>IEEE Transaction on Parallel and Distributed Systems (TPDS'07)</b>, IEEE Press, Vol.18, Iss. 6, pp. 804-817, Piscataway, NJ, USA, 2007.</li>
<li><span class="label label-success">ACM TOS'06</span> <a target="_blank" href="papers/zeinalip-tosj.pdf">"Efficient indexing data structures for flash-based sensor devices"</a>, Song Lin, Demetrios Zeinalipour-Yazti, Vana Kalogeraki, Dimitrios Gunopulos, and Walid A. Najjar, <b>ACM Transactions on Storage (TOS'06)</b>, ACM, Vol. 2, Iss. 4, pp. 468-503, New York, NY, USA, 2006.</li>
<li><span class="label label-success">ACM CIKM'06</span> <a target="_blank" href="papers/cikm06-ubk-ublbk.pdf">"Distributed Spatio-Temporal Trajectory Retrieval"</a>, Demetrios Zeinalipour-Yazti, Song Lin, Dimitrios Gunopulos, Proceedings of the <b>15th ACM Conference on Information and Knowledge Management (CIKM'06)</b>, ACM Press, Arlington, VA, USA, 2006.</li>
<li><span class="label label-success">Elsevier ComNet'06</span> <a target="_blank" href="papers/comnet06-ddno.pdf">Structuring topologically aware overlay networks using domain names</a>, Demetrios Zeinalipour-Yazti and Vana Kalogeraki, <b>Computer Networks (ComNet'06)</b>, Elsevier North-Holland Inc., Vol. 50, Iss. 16, pp. 3064-3082, New York NY, USA, 2006.</li>
<li><span class="label label-success">USENIX FAST'05</span> <a target="_blank" href="https://www.usenix.org/legacy/event/fast05/tech/full_papers/zeinalipour-yazti/zeinalipour-yazti.pdf">"Microhash: an efficient index structure for flash-based sensor devices"</a>, Demetrios Zeinalipour-Yazti, Song Lin, Vana Kalogeraki, Dimitrios Gunopulos, Walid Najjar, Proceedings of the <b>4th USENIX Conference on File and Storage Technologies (FAST'05)</b>, San Francisco, CA, USENIX Association, pp. 31-44, Berkeley CA, USA, 2005.</li>
<li><span class="label label-success">Elsevier InfoSys'05</span> <a target="_blank" href="papers/infosys05-ism.pdf">"Exploiting locality for scalable information retrieval in peer-to-peer networks"</a>, Demetrios Zeinalipour-Yazti, Vana Kalogeraki and Dimitrios Gunopulos, <b>Information Systems (InfoSys'05)</b>, Elsevier Science Ltd., Vol. 30, Iss. 4, pp. 277-298, Oxford UK, 2005.
<li><span class="label label-success">ACM CIKM'02</span> <a target="_blank" href="https://alumni.cs.ucr.edu/~csyiazti/downloads/papers/cikm02/cikm02.pdf">"A local search mechanism for peer-to-peer networks"</a>, Vana Kalogeraki, Dimitrios Gunopulos and Demetrios Zeinalipour-Yazti, Proceedings of <b>11th ACM Conference on Information and Knowledge Management (CIKM'02)</b>, McLean, Virginia, USA, ACM, pp. 300-307, New York, NY, USA, ISBN: 1-58113-492-4, 2002.</li>
</ul>
<p><a href="publications/" class="btn btn-primary">All Publications »</a>
</p>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section name="awards" id="awards">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-6">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-awards-content').toggle();">Awards <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-awards-content">
<hr class="star-primary">
<h2>Awards and Honors <a href="cv.html#SECTION00040000000000000000" class="btn btn-primary">More »</a></h2>
<ul>
<li>
<span class="label label-success">IEEE ICDE'24</span> <a target="_blank" href="https://icde2024.github.io/">Outstanding Reviewer Award</a>, The 40th IEEE International Conference on Data Engineering (ICDE), Utrecht, Netherlands, May 13-17, 2024.</span>
</li>
<li>
<span class="label label-success">IEEE MDM'21</span> <a target="_blank" href="https://mdmconferences.org/mdm2021/">Best App Paper Award</a>, ``A Context, Location and Preference-Aware System for Safe Pedestrian Mobility'', 22nd IEEE International Conference on Mobile Data Management (MDM'21), Toronto, Canada, June 15 - June 18, 2021.</span>
</li>
<li>
<span class="label label-success">IEEE MDM'18</span> <a target="_blank" href="https://mdmconferences.org/mdm2018/">Best of MDM 2018</a>, ``Decaying Telco Big Data with Data Postdiction'', 19th IEEE International Conference on Mobile Data Management (MDM'18), Aalborg, Denmark, June 26 - June 28, 2018 (Geinformatica - Springer - journal invitation).</span>
</li>
<li>
<span class="label label-success">IEEE MDM'18</span> <a target="_blank" href="https://mdmconferences.org/mdm2018/">Best Demo Award</a>, ``FMS: Managing Crowdsourced Indoor Signals with the Fingerprint Management Studio'', 19th IEEE International Conference on Mobile Data Management (MDM'18), Aalborg, Denmark, June 26 - June 28, 2018.</span>
</li>
<li>
<span class="label label-success">IEEE MDM'17</span> <a target="_blank" href="https://mdmconferences.org/mdm2017/">Honorable Mention Award</a>, ``Indoor Localization Accuracy Estimation from Fingerprint Data'', 18th IEEE International Conference on Mobile Data Management (MDM'17), KAIST, Daejeon, South Korea, May 29 - June 1, 2017.</span>
</li>
<li>
<span class="label label-success">ACM DSP'17</span> <a target="_blank" href="https://dsp.acm.org/view_lecturer.cfm?lecturer_id=7903">ACM Distinguished Speaker</a>, Association for Computing Machinery, New York, NY, USA, 2017-2020.</span>
</li>
<li>
<span class="label label-success">ACM SENIOR'16</span> <a target="_blank" href="https://awards.acm.org/award_winners/zeinalipour_1835156.cfm">ACM Senior Member</a>, Association for Computing Machinery, New York, NY, USA, 2016.</span>
</li>
<li>
<span class="label label-success">IEEE SENIOR'16</span> <a target="_blank" href="https://www.ieee.org/membership_services/membership/senior/index.html">IEEE Senior Member</a>, Institute of Electrical and Electronics Engineers, Piscataway, NJ, USA, 2016.</span>
</li>
<li>
<span class="label label-success">HUMBOLDT'16</span> <a target="_blank" href="https://www.humboldt-foundation.de/web/home.html">Humboldt Fellow</a>, Alexander von Humboldt Foundation, Bonn, Germany, 2016.</span>
</li>
<li>
<span class="label label-success">EVARILOS'14</span> <a target="_blank" href="http://www.evarilos.eu/open-challenge.php">Best Demo Award</a>, EVARILOS Open Challenge, FP7 Project (#317989), European Union, Berlin, Germany, 2014.</span>
</li>
<li>
<span class="label label-success">ACM/IEEE IPSN'14</span> <a target="_blank" href="https://research.microsoft.com/en-us/events/ipsn2014indoorlocalizatinocompetition/">2nd Best Demo Award</a>, Microsoft Indoor Localization Competition 2014, collocated with 13th ACM/IEEE International Conference on Information Processing in Sensor Networks (IPSN'14), April 15-17, Berlin, Germany, 2014.</span>
</li>
<li>
<span class="label label-success">APPCAMPUS'13</span> <a target="_blank" href="https://blogs.windows.com/bloggingwindows/2013/11/11/5-top-apps-from-the-appcampus-program-for-windows-phone/">Appcampus Award</a>, ``Rayzit: Crowd Messaging'', Microsoft, Nokia and Aalto University, Finland, 2013.</span>
</li>
<li>
<span class="label label-success">IEEE MDM'12</span> <a target="_blank" href="https://mdmconferences.org/mdm2012/">Best Demo Award</a>, ``The Airplace Indoor Positioning Platform for Android Smartphones'', 13th IEEE International Conference on Mobile Data Management (MDM'12), Bangalore, India, July 23-26, 2012.</span>
</li>
<li>
<span class="label label-success">COREGRID'06</span> <a target="_blank" href="https://mdmconferences.org/mdm2012/">Best Demo Award</a>, ``ICGrid: Intensive Care Grid'', CoreGRID Industrial Conference, Sophia Antipolis, France, Nov. 2006.</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section name="courses" id="courses">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-5">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-courses-content').toggle();">Courses <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-courses-content">
<hr class="star-primary">
<h2>Courses <a href="cv.html#SECTION000110000000000000000" class="btn btn-primary">More »</a></h2>
<ul>
<li><span class="label label-success">EPL646</span> <a href="courses/epl646/">Advanced Topics in Databases</a> (Winter)</li>
<li><span class="label label-default">EPL446</span> <a target="_blank" href="courses/epl446/">Advanced Database Systems</a></li>
<li><span class="label label-success">EPL421</span> <a href="courses/epl421">Systems Programming</a> (Spring) </li>
<li><span class="label label-success">EPL342</span> <a target="_blank" href="courses/epl342/">Databases</a> (Winter) </li>
<li><span class="label label-success">EPL232</span> <a href="courses/epl232">Programming Techniques and Tools</a> (Winter) [formely EPL132]</li>
<li><span class="label label-default">EPL111</span> <a target="_blank" href="courses/epl111">Discrete Structures in Computer Science and Computation</a></li>
<li><span class="label label-default">EPL035</span> <a target="_blank" href="courses/epl035">Data Structures and Algorithms for ECE</a></li>
<li><span class="label label-default">EPL032</span> <a target="_blank" href="courses/epl032">Introduction to Programming and Problem Solving</a></li>
<li><span class="label label-default">EPL003</span> Computer Science and Information Systems</li>
<li><span class="label label-default">EPL001</span> Introduction to Computer Science</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section name="systems" id="systems">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-4">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-systems-content').toggle();">Systems <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-systems-content">
<hr class="star-primary">
<h2>Systems <a href="https://dmsl.cs.ucy.ac.cy/projects.php" class="btn btn-primary">More »</a></h2>
<ul>
<p>
Our group enjoys transforming basic research results into systems and services:
</p>
<li><span class="label label-success">Anyplace</span> <a target="_blank" href="https://anyplace.cs.ucy.ac.cy" target="_blank">Indoor Information Service</a> (Indoor, Big Data, Privacy, Prefetching)</li>
<li><span class="label label-success">GreenCap</span> <a target="_blank" href="https://greencap.cs.ucy.ac.cy" target="_blank">Climate Change Data Management</a> (Planning Algorithms, Smart Energy Consumption)</li>
<li><span class="label label-success">EcoCharge</span> <a target="_blank" href="https://ecocharge.cs.ucy.ac.cy" target="_blank">Electric Vehicles Green Charging</a> (Planning Algorithms, Smart Energy Consumption)</li>
<li><span class="label label-success">VGATE</span> <a target="_blank" href="https://vgate.cs.ucy.ac.cy" target="_blank">Online Conferences with Zoom+Sheets </a> (Full Stack Data Management)</li>
<li><span class="label label-success">Triabase</span> <a target="_blank" href="https://blockdb.cs.ucy.ac.cy" target="_blank">Blockchain Data Management</a> (Blockchain, ML, Data Management)</li>
<li><span class="label label-default">TBD</span> <a target="_blank" href="https://tbd.cs.ucy.ac.cy" target="_blank">Telco Big Data Awareness</a> (Spatial, Big Data, Decaying)</li>
<li><span class="label label-default">Rayzit</span> <a target="_blank" href="https://rayzit.cs.ucy.ac.cy" target="_blank">Crowd Messaging Architecture</a> (Privacy, Crowdsourcing, Mobile, Microblogging)</li>
<li><span class="label label-default">SmartLab</span> <a target="_blank" href="https://smartlab.cs.ucy.ac.cy" target="_blank">Smartphone Cloud Computer</a> (Mobile, Cloud, Programming)</li>
<li><span class="label label-default">Airplace</span> <a target="_blank" href="http://www2.ucy.ac.cy/~laoudias/pages/platform.html" target="_blank">Indoor Localization</a> (Indoor, Wi-Fi, Localization, Mobile)</li>
<li><span class="label label-default">Smarttrace</span> <a target="_blank" href="https://smarttrace.cs.ucy.ac.cy" target="_blank">Trajectory Search Retrieval</a> (Trajectories, Similarity, Mobile)</li>
<li><span class="label label-default">TVM</span> <a target="_blank" href="https://smarttrace.cs.ucy.ac.cy" target="_blank">Temporal Vector Map</a> (Indoor, Privacy, Localization)</li>
<li><span class="label label-default">KSpot+</span> <a target="_blank" href="https://kspot.cs.ucy.ac.cy" target="_blank">Wireless Sensor Networks</a> (WSN, Data Management, Search, Retrieval)</li>
<br><a target="_blank" href="https://dmsl.cs.ucy.ac.cy/"><img border="0" width="150" src="images/logo.png"/></a>
<a target="_blank" href="https://github.com/dmsl/"><img border="0" width="250" src="images/github-logo.png"/></a>
</ul>
</div>
</div>
</div>
</section>
<!-- Service Section -->
<section name="service" id="service">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-7">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-service-content').toggle();">Service <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-service-content">
<hr class="star-primary">
<h2>Professional Service <a href="cv.html#SECTION00080000000000000000" class="btn btn-primary">More »</a></h2>
<p>
<span class="label label-success">Editorial Boards</span>
<ul>
<li><b>Associate Editor</b>, <a target="_blank" href="https://link.springer.com/journal/10619"><b> Distributed and Parallel Databases</b></a> journal, Editors-in-Chief: <a target="_blank" href="http://www-users.cs.umn.edu/~mokbel/">Mohamed Mokbel</a> and <a target="_blank" href="hhttps://www.cs.ucsb.edu/~agrawal/">Divyakant Agrawal</a>, <b>Springer US Press</b>, NY, USA. (05/2017 - 04/2023)
<br><img width="200" src="images/springer.png"/>
</li>
<li><b>Associate Editor</b>, <a target="_blank" href="http://www.journals.elsevier.com/big-data-research"><b>Big Data Research</b></a> journal, Editors-in-Chief: Z. Wu, <a target="_blank" href="http://www.mi.parisdescartes.fr/~themisp/">Themis Palpanas</a>, <b>Elsevier Press</b>, Amsterdam, Netherlands. (04/2016 - current)
<br><img width="100" src="images/elsevier.png"/>
</li>
<li><b>Associate Editor</b>, <a target="_blank" href="http://www.journals.elsevier.com/big-data-research"><b>International Journal of Cooperative Information Systems</b></a> journal, Editors-in-Chief: <a target="_blank" href="https://researcher.watson.ibm.com/researcher/view.php?person=us-hludwig">Heiko Ludwig</a>, <a href="_blank" href="https://isdb.fernuni-hagen.de/">Gunter Schlageter</a>, and <a target="_blank" href="http://www.cs.ucr.edu/~tsotras/">Vassilis J Tsotras</a>, <b>World Scientific</b>, Singapore. (02/2019 - current)
<br><img width="200" src="images/worldscientific.png"/>
</li>
</ul>
</span>
</p>
<p>
<span class="label label-success">Conference Committees</span>
<ul>
<li style="list-style-type:none">
<a target="_blank" href="https://mdm2022.cs.ucy.ac.cy/"><img width="150" src="images/events/mdm2022.jpg"/></a>
<a target="_blank" href="https://edbticdt2021.cs.ucy.ac.cy/"><img width="150" src="images/events/edbt2021.png"/></a>
<a target="_blank" href="https://dmd.cs.ucy.ac.cy/"><img width="100" src="images/events/dmd19.png"/></a>
<a target="_blank" href="https://hdms18.cs.ucy.ac.cy/"><img width="200" src="images/events/hdms18.png"/></a>
<a target="_blank" href="https://www.cs.ucy.ac.cy/~hdms2010"><img width="100" src="images/events/hdms10.png"/></a>
</li>
<li>
<b>IEEE MDM:</b>
<a href="http://www.mdmconferences.org/mdm2023/committees.html" target="_blank"><b>2023</b></a> (and <font color="green">Panel Co-Chair</font> with <a href="https://www.uni-bamberg.de/mobi/team/daniela-nicklas/" target="_blank">Daniela Nicklas</a>),
<a href="https://mdm2022.cs.ucy.ac.cy/" target="_blank"><b>2022</b></a> (<font color="red"><b>General Co-Chair</b> </font> with <a href="https://www-users.cse.umn.edu/~mokbel/" target="_blank">Mohamed F. Mokbel</a> and <a href="https://www.comp.hkbu.edu.hk/~xujl/" target="_blank">Jianliang Xu</a>),
<a href="http://www.mdmconferences.org/mdm2020/committees.html" target="_blank"><b>2020</b></a> (<font color="green">Panel Co-Chair</font> with <a href="http://christophe.claramunt.free.fr/" target="_blank">Christophe Claramunt</a>),
<a href="https://www.comp.hkbu.edu.hk/mdm2019//committees.php" target="_blank">2019</a> (<font color="red"><b>PC Co-Chair</b></font> with <a href="https://hbku.edu.qa/en/staff/mohamed-mokbel" target="_blank">Mohamed F. Mokbel</a> and <a href="https://www.comp.hkbu.edu.hk/~xujl/" target="_blank">Jianliang Xu</a> also <font color="green">Best of MDM'19 SI Editor</font>),
<a href="https://mdmconferences.org/mdm2018/committees.html" target="_blank">2018</a> (and <font color="green">Panel Co-Chair</font>),
<a href="https://mdmconferences.org/mdm2016/#committees" target="_blank"><b>2016</b></a>
(and <font color="green">Tutorials Co-Chair</font> with <a href="https://www.cs.ualberta.ca/~mn/" target="_blank">Mario Nascimento</a>),
<a href="https://mdmconferences.org/mdm2015/committees.html"><b>2015</b></a>
(and <font color="green">Workshops Co-Chair</font> with <a href="http://www.cse.psu.edu/%7Ewlee/" target="_blank">Wang-Chien Lee</a>),
<a href="https://mdmconferences.org/mdm2014/">2014</a></b>
(and <font color="green">Panel Co-Chair</font> with <a href="http://www.csse.monash.edu.au/%7Eshonali/" target="_blank">Shonali Krishnaswamy</a>),
<a href="http://mdm2013.dico.unimi.it/">2013</a></b>
(and <font color="green">Demo Co-Chair</font> with <a href="http://www.cse.unt.edu/%7Ehuangyan/" target="_blank">Yan Huang</a>),
<a href="https://mdmconferences.org/mdm2012/">2012</a></b>,
<a href="https://mdmconferences.org/mdm2011/">2011</a></b>,
<a href="http://www.sce.umkc.edu/mdm2010/">2010</a></b>
(<font color="red"><b>PC Co-Chair</b></font> with <a href="http://sce2.umkc.edu/csee/kumarv/" target="_blank">Vijay Kumar</a> and <a href="http://www-nishio.ist.osaka-u.ac.jp/%7Ehara/" target="_blank">Takahiro Hara</a>),
<a href="http://idke.ruc.edu.cn/mdm2008/">2008</a></b>
<i>[IEEE's Intl. Conference on Mobile Data Management]</i>
</li>
<li>
<b>EDBT:</b>
<a href="https://edbticdt2021.cs.ucy.ac.cy/" target="_blank"><b>2021</b> </a>
(<font color="red"><b>General Co-Chair</b></font> with <a href="https://panos.cs.pitt.edu/" target="_blank">Panos K. Chrysanthis</a>),
<a href="https://diku-dk.github.io/edbticdt2020/" target="_blank">2020</a>,
<a href="http://edbticdt2019.inesc-id.pt/" target="_blank">2019</a> <font color="green">(Best of EDBT'19 SI Editor)</font>,
<a href="http://edbticdt2018.at/?EDBT18_Committee" target="_blank">2018</a>,
<a href="http://edbticdt2017.unive.it/?EDBT17_Committee" target="_blank">2017</a>,
<a href="http://edbticdt2016.labri.fr/?EDBT16_Commitee" target="_blank">2016</a>
<i>[Intl. Conference on Extending Database Technology]</i>
</li>
<li>
<b>IEEE ICDE:</b>
<a href="https://icde2023.ics.uci.edu/research-program-committee/" target="_blank"><b>2023</b></a>,
<a href="https://www.utdallas.edu/icde/committee.html" target="_blank">2020</a>,
<a href="http://www.icde2018.org/" target="_blank">2018</a>
(<font color="red"><b>Area PC Vice-Chair</b></font> for "Temporal, Spatial, Mobile, and Multimedia Data.")</a>,
<a href="http://icde2016.fi/committees.php" target="_blank">2016</a>,
<a href="http://ieee-icde2014.eecs.northwestern.edu/pc.html" target="_blank">2014</a>,
<a href="http://www.icde2013.org/" target="_blank">2013</a>,
<a href="http://www.icde2011.org/" target="_blank">2011</a>,
<a href="http://i.cs.hku.hk/icde2009/" target="_blank">2009</a>
<i>[IEEE's Intl. Conference on Data Engineering]</i>
</li>
<li>
<b>ACM SIGMOD:</b>
<a href="https://2024.sigmod.org/org_sigmod_pc.shtml" target="_blank"><b>2024</b></a>,
<a href="https://2022.sigmod.org/org_sigmod_pc.shtml" target="_blank"><b>2022</b></a>,
<a href="https://sigmod2018.org/org_sigmod_demo_pc.shtml" target="_blank">2018</a>,
<a href="http://www.sigmod2015.org/org_sigmod_pc.shtml" target="_blank">2015</a>,
<a href="http://www.sigmod2014.org/org_sigmod_demo_pc.shtml" target="_blank">2014</a>,
<a href="http://www.sigmod.org/2013/org_sigmod_demo_pc.shtml" target="_blank">2013</a>,
<a href="http://www.sigmod.org/2012/org_sigmod_demo_pc.shtml" target="_blank">2012</a>
<i>[ACM's Management of Data Conference]</i>
</li>
<li>
<b>ACM SIGSPATIAL:</b>
<a href="https://sigspatial2022.sigspatial.org/pc/" target="_blank"><b>2022</b></a>,
<a href="https://sigspatial2021.sigspatial.org/pc/" target="_blank">2021</a>,
<a href="https://sigspatial2020.sigspatial.org/pc/" target="_blank">2020</a>,
<a href="https://sigspatial2019.sigspatial.org/pc/" target="_blank">2019</a>,
<a href="https://sigspatial2018.sigspatial.org/pc/" target="_blank">2018</a>
<i>[ACM's Geographic Information Systems Conference]</i>
</li>
<li>
<b>VLDB:</b>
<a href="http://vldb.org/2023/" target="_blank"><b>2023</b></a>,
<a href="http://vldb.org/2020/" target="_blank"><b>2020</b></a>,
<a href="https://vldb2019.github.io/" target="_blank">2019</a>,
<a href="http://vldb2016.persistent.com/call_demonstrations.html" target="_blank">2016</a>,
<a href="http://www.vldb.org/2014/call_demonstrations.html" target="_blank">2014</a>,
<a href="http://vldb.org/2013/call_demonstrations.html" target="_blank">2013</a>
<i>[Intl. Conference on Very Large Data Bases]</i>
</li>
<li>
<b>ACM SIGKDD:</b>
<a href="https://www.kdd.org/kdd2023/" target="_blank"><b>2023</b></a> (<font color="red"><b>Area Vice-Chair (Senior PC)</b></font> <!--for "Temporal, Spatial, Mobile, and Multimedia Data.")--></a>,
<a href="https://www.kdd.org/kdd2020/" target="_blank"><b>2020</b></a>,
<a href="https://www.kdd.org/kdd2019/" target="_blank">2019</a>,
<a href="https://www.kdd.org/kdd2011/" target="_blank">2011</a>
<i>[ACM's Intl. Knowledge Discovery and Data Mining Conference]</i>
</li>
<li>
<b>ACM CIKM:</b>
<a href="https://www.cikm2020.org/index.html@p=1116.html" target="_blank"><b>2020</b></a>,
<a href="http://www.cikm2018.units.it/" target="_blank"><b>2018</b></a>,
<a href="http://www.yorku.ca/cikm10/" target="_blank">2010</a>
<i>[ACM's Intl. Conference on Information and Knowledge Management]</i>
</li>
<li>
<b>IEEE BigData:</b>
<a href="http://bigdataieee.org/BigData2020/ProgramCommittee.html" target="_blank"><b>2020</b></a>
<i>[IEEE's Intl. Conference on Big Data]</i>
</li>
<li>
<b>IEEE ICDCS:</b>
<a href="http://www-higashi.ist.osaka-u.ac.jp/icdcs2016/" target="_blank">2016</a>
<i>[IEEE's Intl. Conference on Distributed Computing Systems]</i>
</li>
<li>
<b>IEEE ICDM:</b>
<a href="http://datamining.it.uts.edu.au/icdm10/" target="_blank">2010</a>
(and <font color="green">Contest Chair</font>)
<i>[IEEE's Intl. Conference of Data Mining]</i>
</li>
<li>
<b>ECML/PKDD:</b>
<a href="http://www.ecmlpkdd2015.org/" target="_blank">2016</a>,
<a href="http://www.ecmlpkdd2016.org/" target="_blank">2015</a>,
<a href="http://www.ecmlpkdd2014.org/" target="_blank">2014</a>,
<a href="http://www.ecmlpkdd2011.org/" target="_blank">2011</a>
<i>[European Conference on Machine Learning and Principles and Practice of Knowledge Discovery in Databases]</i>
</li>
<li>
<b>SSDBM:</b>
<a href="http://www.ssdbm2013.org/" target="_blank">2013</a>
<i>[Intl. Conference on Scientific and Statistical Data Management]</i>
</li>
<li>
<b>WISE:</b>
<a href="http://wasp.cs.vu.nl/WISE2020/" target="_blank"><b>2020</b> </a>
<a href="https://wise2019.comp.polyu.edu.hk/PC.html" target="_blank">2019</a>
<i>[Intl. Conference on Web Information Systems Engineering]</i>
</li>
<li>
<b>APWeb-WAIM:</b>
<a href="http://www.tjudb.cn/apwebwaim2020/" target="_blank"><b>2020</b> </a>(<font color="green">Senior TPC Member</font>), <a href="http://conferences.cis.umac.mo/apwebwaim2018/program.html" target="_blank"><b>2018</b> </a>(<font color="green">Senior TPC Member</font>)
<i>[Joint Conference on Web and Big Data]</i>
</li>
<li>
<b>IEEE ICBK:</b>
<a href="http://icbk2017.bigke.org/" target="_blank"><b>2017</b></a>
<i>[IEEE's Intl. Conference on Big Knowledge]</i>
</li>
<li>
<b>Euro-Par:</b>
<a href="https://2023.euro-par.org/" target="_blank"><b>2023</b></a> (<font color="green">Workshop Co-Chair</font> with <a href="https://citius.gal/team/dora-blanco-heras" target="_blank">Dora Blanco Heras</a>),
<i>[Intl. European Conference on Parallel and Distributed Computing]</i>
</li>
</ul>
<span class="label label-success">Workshop and Symposia Committees</span>
<ul>
<li>
<b>IEEE ALIAS:</b>
<a href="https://mbdw22.cs.ucy.ac.cy/" target="_blank"><b>2022</b></a>
(<font color="green">Steering Committee</font> with <a href="https://sites.google.com/site/profdshan/" target="_blank">Dong-Soo Han</a> and <a href="https://agora.bourges.univ-orleans.fr/ramdani/" target="_blank">Nacim Ramdani</a>),
<a href="https://alias19.cs.ucy.ac.cy/" target="_blank">2019</a>
(<font color="red"><b>PC Co-Chair</b></font> with <a href="https://sites.google.com/site/profdshan/" target="_blank">Dong-Soo Han</a>, <a href="https://goo.gl/zC4usu/" target="_blank">Andreas S. Panayides</a> and <a href="https://agora.bourges.univ-orleans.fr/ramdani/" target="_blank">Nacim Ramdani</a>),
<i>[Intl. Workshop on ALgorithms for Indoor Architectures and Systems @ IEEE MDM]</i>
</li>
<li>
<b>IEEE MBDW:</b>
<a href="https://alias22.cs.ucy.ac.cy/" target="_blank"><b>2022</b></a>
(also <font color="green">Steering Committee</font> with <a href="https://sites.google.com/site/elenacamossi/" target="_blank">Elena Camossi</a>,
<a href="http://christophe.claramunt.free.fr/" target="_blank">Christophe Claramunt</a>,
<a href="http://cyril.ray.free.fr/" target="_blank">Cyril Ray</a>,
<a href="https://www.unipi.gr/faculty/ytheod/" target="_blank">Yannis Theodoridis</a>
<i>[IEEE Intl. Maritime Big Data Workshop (MBDW 2022) @ IEEE MDM]</i>
</li>
<li>
<b>IEEE BlockDM:</b>
<a href="https://blockchain.comp.hkbu.edu.hk/blockdm2021/" target="_blank"><b>2021</b></a> (<font color="red"><b>PC Co-Chair</b></font> with <a href="http://www.comp.hkbu.edu.hk/~xujl" target="_blank">Jianliang Xu </a> and <a href="http://tristartom.github.io/" target="_blank">Yuzhe Tang</a>),
<a href="https://blockchain.comp.hkbu.edu.hk/blockdm2020/" target="_blank">2020</a>,
<i>[IEEE Intl. Workshop on Blockchain and Data Management @ IEEE ICDE]</i>
</li>
<li>
<b>ACM ExploreDB:</b>
<a href="https://sites.google.com/a/unitn.it/exploredb18/organisation-1" target="_blank"><b>2018</b></a>,
<a href="https://sites.google.com/a/unitn.it/exploredb-2017/" target="_blank">2017</a>,
<a href="https://sites.google.com/site/exploredb2016/organization" target="_blank">2016</a>,
<a href="https://sites.google.com/site/exploredb2015/organization" target="_blank">2015</a>,
<a href="https://sites.google.com/site/exploredb2014/organization" target="_blank">2014</a>
<i>[Intl. Workshop on Exploratory Search in Databases and the Web @ ACM SIGMOD]</i>
</li>
<li>
<b>ACM GeoRich:</b>
<a href="http://www.dbs.ifi.lmu.de/georich16/organizer.php" target="_blank"><b>2016</b></a>
<i>[Intl. Workshop on Managing and Mining Enriched Geo-Spatial Data @ ACM SIGMOD]</i>
</li>
<li>
<b>ACM ISA:</b>
<a href="https://sites.google.com/site/indoorspatialawareness2018/committee" target="_blank"><b>2018</b></a>
<a href="https://sites.google.com/site/indoorspatialawareness2016/committee" target="_blank">2016</a>
<a href="http://stem.cs.pusan.ac.kr/isa2015/committee.html" target="_blank">2015</a>
<i>[Intl. Workshop Indoor Spatial Awareness @ ACM SIGSPATIAL]</i>
</li>
<li>
<b>IEEE HuMoComP:</b>
<a href="https://humocomp15.cs.ucy.ac.cy/" target="_blank"><b>2015</b></a>
(<font color="red"><b>PC Co-Chair</b></font> with <a href="http://www.pitt.edu/~kpele/" target="_blank">Konstantinos Pelechrinis</a>, <a href="http://people.cs.pitt.edu/~adamlee/" target="_blank">Adam J. Lee</a> and <a href="http://web.imis.athena-innovation.gr/~mter/" target="_blank">Manolis Terrovitis</a>),
<i>[Intl. Workshop On Human Mobility Computing And Privacy @ IEEE MDM]</i>
</li>
<li>
<b>IEEE Mobisocial:</b>
<a href="http://www.iis.sinica.edu.tw/%7Ednyang/mobisocial" target="_blank"><b>2015</b></a>,
<a href="http://www.iis.sinica.edu.tw/%7Ednyang/mobisocial" target="_blank">2014</a>,
<a href="http://www.iis.sinica.edu.tw/%7Ednyang/mobisocial" target="_blank">2013</a>,
<i>[Intl. Workshop on Mobile Data Management, Mining, and Computing on Social Networks @ IEEE MDM]</i>
</li>
<li>
<b>ACM BigMine:</b>
<a href="http://bigmine.github.io/bigmine16/" target="_blank"><b>2016</b></a>,
<a href="http://bigdata-mining.org/organization/" target="_blank">2013</a>,
<a href="http://bigdata-mining.org/organization/" target="_blank">2012</a>
<i>[Intl. Workshop on Big Data, Streams and Heterogeneous Source Mining: Algorithms, Systems, Programming Models and Applications @ ACM SIGKDD]</i>
</li>
<li>
<b>ACM MobiDE:</b>
<a href="http://pages.cs.brandeis.edu/%7Emobide12/" target="_blank">2012</a>,
<a href="http://archive.itee.uq.edu.au/%7Emobide11/" target="_blank">2011</a>
(and <font color="green">Steering Committee</font>),
<a href="http://www.softnet.tuc.gr/mobide10/" target="_blank">2010</a>
(and <font color="red"><b>General Co-Chair</b></font> with <a href="http://www.pittsburgh.intel-research.net/people/gibbons/" target="_blank">Phillip B. Gibbons</a>),
<a href="http://www.cs.fsu.edu/mobide09/Organization.html" target="_blank">2009</a>
(<font color="red"><b>PC Co-Chair</b></font> with <a href="http://www.cs.ou.edu/%7Edatabase/faculty.htm" target="_blank">Le Gruenwald</a>),
<a href="https://www.cs.ucy.ac.cy/mobide08/" target="_blank">2008</a>
(and <font color="green">Publicity Chair</font>),
<a href="http://www.cse.psu.edu/mobide07/" target="_blank">2007</a>,
<i>[Intl. Workshop on Data Engineering for Wireless and Mobile Access @ ACM SIGMOD]</i>
</li>
<li>
<b>VLDB's DMSN:</b>
<a href="http://www.softnet.tuc.gr/dmsn11/" target="_blank">2011</a>
(and <font color="red"><b>General Co-Chair</b></font> with <a href="http://www.cse.psu.edu/%7Ewlee/" target="_blank">Wang-Chien Lee</a>),
<a href="https://www.cs.ucy.ac.cy/~dmsn10/" target="_blank">2011</a>
(and <font color="red"><b>PC Co-Chair</b></font> with <a href="http://www.cse.psu.edu/%7Ewlee/" target="_blank">Wang-Chien Lee</a>),
<a href="http://dmsn09.ethz.ch/" target="_blank">2009</a>,
<a href="http://dmsn08.cs.umass.edu/" target="_blank">2008</a>,
<a href="http://data.cs.washington.edu/dmsn07/" target="_blank">2007</a>
<i>[Intl. Workshop on Data Management for Sensor Networks @ VLDB]</i>
</li>
<li>
<b>MUSICAL:</b>
<a href="http://musical16.cs.ucy.ac.cy" target="_blank"><b>2016</b></a> (<font color="red"><b>PC Co-Chair</b></font> with Yuka Kato (TWC University, Japan) and Takuya Yoshihiro (Wakayama University, Japan)),
<i>[Intl. Workshop On Mobile Ubiquitous Systems, Infrastructures, Communications, And AppLications @ EAI's MobiQuitous]</i>
</li>
<li>
<b>MUD:</b>
<a href="http://www.insight-ict.eu/mud/" target="_blank">2014</a>
<i>[Intl. Workshop on Mining Urban Data @ EDBT/ICDT]</i>
</li>
<li>
<b>HDMS:</b>
<a href="http://hdms18.cs.ucy.ac.cy/" target="_blank"><b>2018</b></a> (<font color="red"><b>PC Co-Chair</b></font> with <a href="https://www.cut.ac.cy/faculties/fet/eecei/staff/herodotos.herodotou/" target="_blank">Herodotos Herodotou</a>),
<a href="http://hdms16.aueb.gr/index.php/en/organizing-committee" target="_blank"><b>2016</b></a>,
<a href="http://hdms15.cs.aueb.gr/index.php/en/organizing-committee" target="_blank">2015</a>,
<a href="http://hdms2012.softnet.tuc.gr/index_en.html" target="_blank">2012</a>,
<a href="http://hdms11.di.uoa.gr/index.php?lang=en" target="_blank">2011</a>,
<a href="https://www.cs.ucy.ac.cy/%7Ehdms2010/en" target="_blank">2010</a>
(and <font color="green">Local Arrangements and Poster Chair</font>),
<a href="http://dmsn09.ethz.ch/" target="_blank">2009</a>,
<a href="http://dmsn08.cs.umass.edu/" target="_blank">2008</a>,
<a href="http://data.cs.washington.edu/dmsn07/" target="_blank">2007</a>
<i>[Hellenic Data Management Symposium]</i>
</li>
<li>
<b>MASTER:</b>
<a href="http://www.master-project-h2020.eu/" target="_blank"><b>2019</b></a>
<i>[Multiple ASpects TrajEctoRy management and analysis @ EDBT]</i>
</li>
</ul>
<span class="label label-success">Journal and Magazine Referee</span>
<ul>
<li>
<b>Journal Referee:</b>
IEEE <a href="http://www.computer.org/tkde/" target="_blank">TKDE</a> (14),
IEEE <a href="http://www.computer.org/tmc/" target="_blank">TMC</a> (3),
IEEE <a href="http://www.computer.org/tkde/" target="_blank">TPDS</a> (2),
IEEE <a href="http://bbcrlab-pc9.bbcrlabpcnet.uwaterloo.ca/tvt/index.html" target="_blank">TVT</a> (1),
IEEE <a href="http://www.computer.org/tc/" target="_blank">TC</a> (2),
IEEE <a href="http://www.ieee-cis.org/pubs/tec/" target="_blank">TEC</a> (2),
IEEE <a href="https://www.computer.org/csdl/magazine/ic" target="_blank">IC</a> (2),
ACM <a href="https://dl.acm.org/journal/tsas" target="_blank">TSAS</a> (1),
ACM <a href="https://dl.acm.org/journal/tsc" target="_blank">TSC</a> (2),
ACM <a href="http://tist.acm.org/" target="_blank">TIST</a> (2),
ACM <a href="http://taas.acm.org/" target="_blank">TAAS</a> (1),
ACM <a href="http://www.sigmod.org/publications/sigmod-record/">Sigmod Record</a> (1),
Elsevier <a href="http://www.elsevier.com/locate/is" target="_blank">Infosys</a> (2),
Elsevier <a href="http://www.elsevier.com/locate/ins" target="_blank">InfoSciences</a> (4),
Elsevier <a href="http://www.elsevier.com/locate/adhoc" target="_blank">Adhoc</a> (3),
Elsevier <a href="http://www.journals.elsevier.com/computer-communications/" target="_blank">ComCom</a> (5),
Elsevier <a href="http://www.elsevier.com/locate/jpdc" target="_blank">JPDC</a> (2),
Elsevier <a href="http://www.elsevier.com/locate/datak" target="_blank">DKE</a> (1),
Springer <a href="http://www.springer.com/computer/database+management+&+information+retrieval/journal/778" target="_blank">VLDB Journal</a> (3),
Springer <a href="http://www.springerlink.com/content/100257/" target="_blank">DADP</a> (3),
Springer <a href="http://link.springer.com/journal/10115" target="_blank">KAIS</a> (3),
Springer <a href="http://www.springer.com/computer/database+management+%26+information+retrieval/journal/10618" target="_blank">DMKD</a> (1),
<a href="http://www.computer.org/tkde/" target="_blank">PPL</a> (2)
</li>
<li>
<b>Magazine Referee</b>:
<a href="http://www.computer.org/internet" target="_blank">Internet Computing</a> (2),
<a href="http://www.comsoc.org/netmag" target="_blank">IEEE Network</a> (1)
</li>
</ul>
</p>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section name="advising" id="advising">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-8">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-advising-content').toggle();">Advising <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-advising-content">
<hr class="star-primary">
<h2>Advising <a href="cv.html#SECTION000120000000000000000" class="btn btn-primary">More »</a></h2>
<ul>
<li>
<span class="label label-success">Postdoc</span> <a target="_blank" href="https://paschalis.mp/">Paschalis Mpeis</a>, University of Cyprus, Cyprus
</li>
<li>
<span class="label label-success">Postdoc</span> <a target="_blank" href="https://www.cs.ucy.ac.cy/~gchatzim/">George Chatzimilioudis</a>, Solutions Engineer, Oracle, Cyprus.
</li>
<li>
<span class="label label-success">Postdoc</span> <a target="_blank" href="http://staff.frederick.ac.cy//com.ca/AndreasConstantinides/">Andreas Konstantinidis</a>, Lecturer at Frederick University, Cyprus.
</li>
<li>
<span class="label label-success">Postdoc</span> <a target="_blank" href="http://www2.ucy.ac.cy/~laoudias/">Christos Laoudias</a>, Researcher at KIOS Research Center, Cyprus.
</li>
<li>
<span class="label label-success">Ph.D.</span> (completed) <a target="_blank" href="http://www.uclancyprus.ac.cy/en/courses/school-sciences/academics/panayiotis-andreou">Panayiotis Andreou</a>, Assistant Professor at University of Central Lancashire, Cyprus. </span>
</li>
<li>
<span class="label label-success">Ph.D.</span> (completed) <a target="_blank" href="https://www.cs.ucy.ac.cy/~cs07cc6/">Constantinos Costa</a>, Visiting Faculty, University of Pittsburgh, PA, USA.
</li>
<li>
<span class="label label-default">Ph.D.</span> <a target="_blank" href="https://www.impactechs.com/about/">Georgios Larkou</a>, CEO Impactech, Cyprus.
</li>
<li>
<span class="label label-default">Ph.D.</span> <a target="_blank" href="https://www.impactechs.com/about/">George Nikolaides</a>, CTO Impactech, Cyprus.
</li>
<li>
<span class="label label-info">Ph.D.</span> <a target="_blank" href="https://www2.cs.ucy.ac.cy/~pdraka01/">Panos Drakatos</a>, University of Cyprus, Cyprus.
</li>
<li>
<span class="label label-info">Ph.D.</span> <a target="_blank" href="https://www.cs.ucy.ac.cy/~sconst01/">Sotiris Constantinou</a>, University of Cyprus, Cyprus.
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Home Section -->
<section name="links" id="links">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-9">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-links-content').toggle();">Links <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-links-content">
<hr class="star-primary">
<h2>Random Links</h2>
<ul>
<li><span class="label label-success"><a target="_blank" href="https://www.cs.ucy.ac.cy/colloquium/"><font color="white">Colloquium</font></a></span> I am the Computer Science Colloquium Coordinator.</li>
<li><span class="label label-default"><a target="_blank" href="http://www.homepages.ucl.ac.uk/~uccazei/"><font color="white">Brother</font></a></span> My <a target="_blank" href="http://www.homepages.ucl.ac.uk/~uccazei/">brother's</a> website.</a></li>
<li><span class="label label-danger"><a target="_blank" href="https://code.org/learn"><font color="white">Hour-of-Code</font></a></span> I support the hour of code iniative as a volunteer instructor.</a></li>
<li><span class="label label-primary"><a target="_blank" href="https://github.com/dmsl"><font color="white">Github</font></a></span> I support open-source code development.</a></li>
<li><span class="label label-warning"><a target="_blank" href="http://www.kyreniaship.org/"><font color="white">Kyrenia-Chrysocava</font></a></span> A project aimed to preserve the cultural heritage of the <a target="_blank" href="https://en.wikipedia.org/wiki/Kyrenia_ship">Kyrenia ship</a>.</li>
<li><span class="label label-success"><font color="white">Cycling</font></span> My favorite hobby besides programming :-)</a> </li>
<li>
<span class="label label-success"><font color="white">COVID-19</font></span> I support the Manifesto for <a target="_blank" href="https://ec.europa.eu/info/research-and-innovation/research-area/health-research-and-innovation/coronavirus-research-and-innovation/covid-research-manifesto_en">EU COVID-19 Research</a>
</li>
<li><span class="label label-success"><font color="white">Climate Change</font></span> I support the <a target="_blank" href="https://tcs4f.org/signatures">TCS4F</a> manifesto and strive to be CO2 neutral. <a target="_blank" href="https://tcs4f.org/signatures"><img width="100" border="0" src="https://tcs4f.org/themes/tcs4f/img/logo_short.svg"/></a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- Home Section -->
<section name="contact" id="contact">
<div class="container lead">
<div style="text-align: left; margin-top:10px" class="col-md-12">
<b class="noshow" style="display:none;" id="tab-10">
<button class="btn btn-default btn-lg btn-block" style="display: block; width: 100%;" onclick="javascript:$('#tab-contact-content').toggle();">Contact <span class="glyphicon glyphicon-chevron-down"></span></button>
</b>
<div class="allshow" style="display:none;" id="tab-contact-content">
<hr class="star-primary">
<h2>Contact</h2>
<div class="container lead">
<div align="left" class="col-md-3">
<h4 class="myEN">
POSTAL ADDRESS (EN | <a target="_blank" onclick="javascript:$('.myEN').hide();$('.myEL').show();">EL</a>)
</h4>
<h4 class="myEL" style="display:none">
ΤΑΧΥΔΡΟΜ. ΔΙΕΥΘ. (<a target="_blank" onclick="javascript:$('.myEN').show();$('.myEL').hide();">EN</a> | EL)
</h4>
<p class="myEL" style="display:none">
Δημήτρης Ζεϊναλιπούρ<br>
Τμήμα Πληροφορικής<br>
Πανεπιστήμιο Κύπρου<br>
Τ.Θ. 20537<br>
1678 Λευκωσία, ΚΥΠΡΟΣ<br>
</p>
<p class="myEN">
Demetris Zeinalipour<br>
Dept. of Computer Science<br>
University of Cyprus<br>
P.O. Box 20537<br>
1678 Nicosia, CYPRUS<br>
</p>
Email:
<script language="JavaScript">
<!--
document.write(" ");
spiderjam('dzeina','ucy.ac.cy');
-->
</script><br>
</div>
<div align="left" class="col-md-3">
<h4>CONTACT VCARD</h4>
<p>
<a href="zeinalipour.vcf"><img src="images/zeinalipour-qr.gif" border="0" width="150"><br>
https://goo.gl/ndCbTg</a>
<!-- <a href="zeinalipour.vcf" class="btn btn-primary">Get VCF Card »</a>-->
</p>
</div>
<div align="left" class="col-md-3">
<h4>OFFICE ADDRESS</h4>
<p>B106, Computer Science,<br/>
Building FST-01,<br/>
1 University Avenue,<br/>
2109 Aglantzia, CYPRUS<br/>
Tel: <a href="tel:0035722892755">+357-22892755</a><br/>
Fax: <a href="tel:0035722892701">+357-22892701</a><br/>
<br/>
</p>
</div>
<div align="left" class="col-md-3">
<h4>OFFICE DIRECTIONS</h4>
<p><a href="https://goo.gl/RLbcXM" target="_blank"><img src="images/anyplace-directions.jpg" border="0"
width="150"> <br>https://goo.gl/RLbcXM</a>
</p>
</div>
</div>
<hr class="star-primary">