-
Notifications
You must be signed in to change notification settings - Fork 92
/
cv.html
executable file
·4040 lines (3558 loc) · 228 KB
/
cv.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>[ Zeinalipour | CV ]</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="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Home<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="index.html#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 href="index.html#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-3-content').show();" href="index.html#publications">Selected</a></li>
<li><a href="publications/">All</a></li>
</ul>
</li>
<li class="page-scroll">
<a href="talks/">Talks</a>
</li>
<li class="page-scroll">
<a href="index.html#courses">Courses</a>
</li>
<li class="page-scroll">
<a href="index.html#awards">Awards</a>
</li>
<li class="page-scroll">
<a href="index.html#service">Service</a>
</li>
<li class="page-scroll">
<a href="index.html#advising">Advising</a>
</li>
<li class="page-scroll">
<a target="_blank" href="http://dmsl.cs.ucy.ac.cy/projects.php">Grants</a>
</li>
<li class="page-scroll">
<a href="index.html#contact">Contact</a>
</li>
<li class="page-scroll">
<a onclick="$('#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>
<section id="tree" style="margin-top:50px">
<div class="container">
<a href="index.html">Zeinalipour</a> > Curriculum Vitae
</div>
</section>
<!-- Home Section -->
<section id="home">
<div class="container">
<br>
<h3 align="CENTER">Curriculum Vitae of Demetris Zeinalipour</h3>
<h5 align="CENTER">Last Update: April 23, 2018</H5>
<center><a target="_blank" href="zeinalipour.pdf">Download in PDF <img border="0" src="images/pdf.gif"></a></center>
<BR>
<BR>
<P>
<FONT SIZE="+2"><B>Demetrios Zeinalipour-Yazti
<BR>(Curriculum Vitae)
<BR></B></FONT>
<DIV ALIGN="CENTER"><FONT SIZE="+2"><B>
<FONT SIZE="-1">Last Update: April 30, 2018</FONT></B></FONT></DIV>
<BR>
<BR>
<P>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 WIDTH="100%">
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">Department of Computer Science</TD>
<TD ALIGN="RIGHT">Tel: +357-22-892755</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">University of Cyprus</TD>
<TD ALIGN="RIGHT">Fax: +357-22-892701</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">1 University Ave., P.O. Box 20537,</TD>
<TD ALIGN="RIGHT"><TT>[email protected]</TT></TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">1678 Nicosia, Cyprus</TD>
<TD ALIGN="RIGHT"><TT>http://www.cs.ucy.ac.cy/~dzeina/</TT></TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Data Management Systems Laboratory (DMSL)</B></TD>
<TD ALIGN="RIGHT"><TT>http://dmsl.cs.ucy.ac.cy/</TT></TD>
</TR>
</TABLE>
</DIV>
<P>
<P>
<H1><A NAME="SECTION00010000000000000000">
<B>RESEARCH INTERESTS</B></A>
</H1>
<B>Data Management in Computer Systems and Networks:</B>
<EM>Mobile and Sensor Data Management; Big Data Management in Parallel and Distributed Architectures; Spatio-Temporal Data Management; Network and Telco Data Management; Crowd, Web 2.0 and Indoor Data Management; Data Privacy Management.</EM>
<P>
<H1><A NAME="SECTION00020000000000000000">
<B>EDUCATION</B></A>
</H1>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 WIDTH="100%">
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Ph.D.</B></TD>
<TD ALIGN="LEFT">Computer Science & Engineering, University of California - Riverside</TD>
<TD ALIGN="RIGHT">06/2003 - 08/2005</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Dissertation: Search and Retrieval Algorithms for Distributed Data</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Management Systems</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<B>M.Sc.</B></TD>
<TD ALIGN="LEFT">Computer Science & Engineering, University of California - Riverside</TD>
<TD ALIGN="RIGHT">09/2001 - 06/2003</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Thesis: Information Retrieval in Peer-to-Peer Networks</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<B>B.Sc.</B></TD>
<TD ALIGN="LEFT">Computer Science, University of Cyprus</TD>
<TD ALIGN="RIGHT">09/1996 - 07/2000</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Thesis: An eXtensible Retrieval Annotation Caching Engine</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"></TD>
<TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
</TABLE>
</DIV>
<P>
<H1><A NAME="SECTION00030000000000000000">
<B>EXPERIENCE</B></A>
</H1>
<P>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 WIDTH="100%">
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Associate Professor</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">04/2018 - current</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Assistant Professor</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">01/2013 - 03/2018</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Humboldt Fellow</B>, Max Planck Institute for Informatics, Saarbrücken, Germany</TD>
<TD ALIGN="RIGHT">09/2016-08/2017</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Visiting Researcher</B>, Dept. of Computer Science, Univ. of Pittsburgh, PA, USA</TD>
<TD ALIGN="RIGHT">Summer 2015</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<P>
<B>Lecturer</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">01/2009 - 12/2012</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Lecturer</B>, School of Pure and Applied Sc., Open Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">07/2007 - 01/2009</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Marie-Curie Fellow</B>, Dept. of Informatics & Telec., University of Athens, Greece</TD>
<TD ALIGN="RIGHT">Summer 2007</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<P>
<B>Visiting Lecturer</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">08/2005 - 07/2007</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Visiting Researcher</B>, Network Intelligence Lab, Akamai, Cambridge MA, USA</TD>
<TD ALIGN="RIGHT">Summer 2004</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<P>
<B>Research Assistant</B>, DB Lab, Univ. of California - Riverside, CA, USA</TD>
<TD ALIGN="RIGHT">06/2003 - 08/2005</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Teaching Assistant</B>, University of California - Riverside, CA, USA</TD>
<TD ALIGN="RIGHT">09/2001 - 06/2003</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Academic Collaborator</B>, University of Cyprus, Nicosia, Cyprus</TD>
<TD ALIGN="RIGHT">06/2000 - 09/2001</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
</TABLE>
</DIV>
<P>
<P>
<P>
<H1><A NAME="SECTION00040000000000000000">
<B>AWARDS & HONORS</B></A>
</H1>
<UL>
<LI><B>Honorable Mention Award</B>. <EM>``Indoor Localization Accuracy Estimation from Fingerprint Data''</EM>, A. Nikitin, C. Laoudias, G. Chatzimilioudis, P. Karras, D. Zeinalipour-Yazti, <EM>18th IEEE Intl. Conf. on Mobile Data Management (MDM'17)</EM>, Daejeon, S. Korea, May 29-Jun 1, 2017.
</LI>
<LI><B>ACM Distinguished Speaker</B>. <EM>``a highly visible way that ACM, through the appointment of leading researchers, engages with emerging professionals, students and, in some cases, the public on a range of topics in computing.''</EM>, Association for Computing Machinery, New York, NY, USA, as of February 17, 2017 until February 17, 2020.
</LI>
<LI><B>ACM Senior Member</B> for <EM>``having demonstrated performance that sets them apart from their peers''</EM>, Association for Computing Machinery, New York, NY, USA, as of January 3, 2017.
</LI>
<LI><B>IEEE Senior Member</B> for <EM>``significant contributions to the profession''</EM>, Institute of Electrical and Electronics Engineers, New York, NY, USA, as of December 8, 2016.
</LI>
<LI><B>Humboldt Fellow</B>, for <EM>``exceptionally highly-qualified scientists and scholars''</EM>, Host Institute: Max Planck Institute for Informatics, Saarbrücken, Germany, Alexander von Humboldt Foundation, Bonn, Germany, 09/2016-08/2017.
</LI>
<LI><B>Best Demo Award</B>, ``Indoor Geolocation for Android Smartphones with Airplace'', T. Costambeys, C. Laoudias, <B>D. Zeinalipour-Yazti</B>, C. G. Panayiotou, EVARILOS Open Challenge, FP7 Project (#317989), European Union, Berlin, Germany, 2014.
</LI>
<LI><B>2nd Best Demo Award</B>, ``Accurate Multi-Sensor Localization on Android Devices'', C. Laoudias, G. Larkou, M. Chin-Lung Li, Yu-Kuen Tsai, <B>D. Zeinalipour-Yazti</B>, C. G. Panayiotou, Microsoft Indoor Localization Competition, <EM>13th ACM/IEEE Intl. Conf. on Information Processing in Sensor Networks</EM> (IPSN'14), April 15-17, Berlin, Germany, 2014.
</LI>
<LI><B>Appcampus Award</B>, ``Rayzit: Crowd Messaging'' by Microsoft, Nokia and Aalto University (Finland) innovative mobile application rayzit.com, 2013.
<P>
</LI>
<LI><B>Best Demo Award</B>, ``The Airplace Indoor Positioning Platform for Android Smartphones'', C. Laoudias, G. Constantinou, M. Constantinides, S. Nicolaou, <B>D. Zeinalipour-Yazti</B>, C. G. Panayiotou, <EM>13th IEEE Intl. Conference on Mobile Data Management</EM> (MDM 2012), Bangalore, India, July 23-26, 2012.
</LI>
<LI><B>Best Demo Award</B>, ``ICGrid: Intensive Care Grid'',
CoreGRID Industrial Conference, Sophia Antipolis, France, November 2006.
</LI>
<LI><B>Outstanding Teaching Assistant Honorable Mention</B>, University of California, Riverside, CA, USA, 2002-2003.
</LI>
<LI><B>Head Teaching Assistant</B>, Computer Science & Engr. Dept, Univ. of California, Riverside, CA, USA, 2002-2003.
</LI>
<LI><B>Outstanding Teaching Assistant Award</B>, U. of California, Riverside, CA, USA, 2001-2002.
</LI>
<LI><B>Full Scholarship</B> by the Computer Science & Engr. Dept, Univ. of California, Riverside, CA, USA, 2001-2006.
</LI>
<LI><B>Dean's Graduate Fellowship Award</B>, U. of California, Riverside, CA, USA, 2001-2003.
</LI>
<LI><B>Young Researcher Fellowship Award</B>, Cyprus Research Promotion Foundat., 2000-2001.
</LI>
<LI><B>Awards at School</B>: Praise in Paneuropean writing
contest (1990-91), 1st in CyBC's national History & Archeology contest (1991-92) and
2nd in national Geography (1992-93) contest.
</LI>
</UL>
<P>
<P>
<H1><A NAME="SECTION00050000000000000000">
PUBLICATIONS</A>
</H1>
<B>Google Scholar Citations: 2,655;
h-index<A NAME="tex2html1"
HREF="#foot103"><SUP>1</SUP></A>: 24;
i10-index<A NAME="tex2html2"
HREF="#foot104"><SUP>2</SUP></A>: 52</B>
<P>
<H2><A NAME="SECTION00051000000000000000">
JOURNAL AND MAGAZINE ARTICLES</A>
</H2>
<DL COMPACT>
<DT><B>J23.</B></DT>
<DD><A NAME="J23"></A>
<B>``IoT Data Prefetching in Indoor Navigation SOAs''</B>,
<BR>
Andreas Konstantinidis, Panagiotis Irakleous, Zacharias Georgiou,
<B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis,
<B>ACM Transactions on Internet Technology (TOIT'18)</B>, 20 pages, <B>2018</B>.
<P>
</DD>
<DT><B>J22.</B></DT>
<DD><A NAME="J22"></A>
<B>``Internet-based Indoor Navigation Services''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Christos Laoudias, Kyriakos Georgiou and Georgios Chatzimilioudis
<B>IEEE Internet Computing (IC)</B>, IEEE Computer Society, Vol. 21, Iss. 4, pp. 54-63, 10.1109/MIC.2017.265101954, Los Alamitos, CA, USA, <B>2017</B>.
<P>
</DD>
<DT><B>J21.</B></DT>
<DD><A NAME="J21"></A>
<B>``Crowdsourcing Emergency Data in Non-Operational Cellular Networks''</B>,
<BR>
Georgios Chatzimilioudis, Constantinos Costa, <B>Demetrios Zeinalipour-Yazti</B>, Wang-Chien Lee,
<B>Information Systems (InfoSys)</B>, Special Issue on Large-Scale Data Management for Mobile Applications,
Vol. 64, pp. 292 - 302, Oxford, UK, <B>2017</B>.
<P>
</DD>
<DT><B>J20.</B></DT>
<DD><A NAME="J20"></A>
<B>``Distributed In-Memory Processing of All k Nearest Neighbor Queries''</B>,
<BR>
Georgios Chatzimilioudis, Constantinos Costa, <B>Demetrios Zeinalipour-Yazti</B> and
Wang-Chien Lee and Evaggelia Pitoura,
<B>Transactions on Knowledge and Data Engineering (TKDE)</B>,
IEEE Computer Society, Volume 28, Issue 4, Pages: 925-938, Los Alamitos, CA, USA, <B>2016</B>.
<P>
</DD>
<DT><B>J19.</B></DT>
<DD><A NAME="J19"></A>
<B>``Managing Big-Data Experiments on Smartphones''</B>,
<BR>
Georgios Larkou, Marios Mintzis, Andreas Konstantinidis, Panayiotis Andreou and <B>Demetrios Zeinalipour-Yazti</B>,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Large-Scale Data Management for Mobile Applications, Springer US, Vol. 34, Iss. 1, pp. 33-64, <B>2016</B>.
<P>
</DD>
<DT><B>J18.</B></DT>
<DD><A NAME="J18"></A>
<B>``Privacy-Preserving Indoor Localization on Smartphones''</B>,
<BR>
Andreas Konstantinidis, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B>, Paschalis Mpeis, Nikos Pelekis, and Yannis Theodoridis,
<B>Transactions on Knowledge and Data Engineering (TKDE)</B>,
IEEE Computer Society, Volume 27, Issue 11, Pages: 3042-3055, Los Alamitos, CA, USA, <B>2015</B>.
<P>
</DD>
<DT><B>J17.</B></DT>
<DD><A NAME="J17"></A>
<B>``A Network-aware Framework for Energy-efficient Data Acquisition in Wireless Sensor Networks''</B>,
<BR>
Panayiotis G. Andreou, <B>Demetrios Zeinalipour-Yazti</B>, George S. Samaras, Panos K. Chrysanthis,
<B>Journal of Network and Computer Applications (JNCA)</B>, Elsevier Press,
Volume 30, Issue 1, Pages: 209-243, January <B>2014</B>.
<P>
</DD>
<DT><B>J16.</B></DT>
<DD><A NAME="J16"></A><B>``Crowdsourced Trace Similarity with Smartphones''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Christos Laoudias, Costandinos Costa, Maria I. Andreou, Michalis Vlachos, Dimitrios Gunopulos, <B>IEEE Transactions on Knowledge and Data Engineering (TKDE)</B>,
IEEE Computer Society, Volume 25, Pages: 1240-1253, Los Alamitos, CA, USA, <B>2013</B>.
<P>
</DD>
<DT><B>J15.</B></DT>
<DD><A NAME="J15"></A><B>``Intelligent Search in Social Communities of Smartphone Users''</B>,
<BR>
Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, Panayiotis G. Andreou,
Panos K. Chrysanthis, George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Mobile Data Management,
Springer US, Volume 31, Pages: 115-149, <B>2013</B>.
<P>
</DD>
<DT><B>J14.</B></DT>
<DD><A NAME="J14"></A><B>``Crowdsourcing with Smartphones''</B>,
<BR>
Georgios Chatzimiloudis, Andreas Konstantinides, Christos Laoudias and <B>Demetrios Zeinalipour-Yazti</B>,
<B>IEEE Internet Computing (IC)</B>, Special Issue: Sep/Oct 2012 - Crowdsourcing May 2012. IEEE Press, Volume 16, Pages: 36-44, <B>2012</B>.
<P>
</DD>
<DT><B>J13.</B></DT>
<DD><A NAME="J13"></A><B>``Power Efficiency through Tuple Ranking in Wireless Sensor Network Monitoring''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis and George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Query Processing in Sensor Networks, Springer Press, Volume 29, Issue 1-2, Pages: 113-150, DOI: 10.1007/s10619-010-7072-5, January <B>2011</B>.
<P>
</DD>
<DT><B>J12.</B></DT>
<DD><A NAME="J12"></A><B>``In-Network Data Acquisition and Replication in Mobile Sensor Networks''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis and George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Query Processing in Sensor Networks,
Springer Press, Volume 29, Issue 1-2, Pages: 87-112, DOI: 10.1007/s10619-010-7073-4, January <B>2011</B>.
<P>
</DD>
<DT><B>J11.</B></DT>
<DD><A NAME="J11"></A><B>``Optimized Query Routing Trees for Wireless Sensor Networks''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Andreas Pamboris, Panos K. Chrysanthis and George Samaras,
<B>Information Systems (InfoSys)</B>, Volume 36, Issue 2, Pages: 267-291, Elsevier Press, April <B>2011</B>.
<P>
</DD>
<DT><B>J10.</B></DT>
<DD><A NAME="J10"></A><B>``A Multi-Objective Evolutionary Algorithm for the Deployment and Power Assignment Problem in Wireless Sensor Networks''</B>,
<BR>
Andreas Konstantinidis, Kun Yang, Qingfu Zhang, <B>Demetrios Zeinalipour-Yazti</B>
<B>Computer Networks (ComNet)</B>, Volume 54, Issue 6, Pages: 960-976, Elsevier Press, April <B>2010</B>.
<P>
</DD>
<DT><B>J9.</B></DT>
<DD><A NAME="J9"></A><B>``Finding the K Highest-Ranked Answers in a Distributed Network''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Zografoula Vagena, Dimitrios Gunopulos, Vana Kalogeraki, Vassilis Tsotras, Michail Vlachos, Nick Koudas and Divesh Srivastava,
<B>Computer Networks (ComNet)</B>, Volume 53, Issue 9, Pages: 1431-1449, Elsevier Press, <B>2009</B>.
<P>
</DD>
<DT><B>J8.</B></DT>
<DD><A NAME="J8"></A><B>``Metadata Ranking and Pruning for Failure Detection in Grids''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Haris Papadakis, Chryssis Georgiou and Marios D. Dikaiakos,
<B>Parallel Processing Letters Journal (PPL)</B>,
Special Issue on Grid Architectural Issues: Scalability, Dependability, Adaptability,
Volume: 18, Issue: 3, Page 371 - 390, September <B>2008</B>.
<P>
</DD>
<DT><B>J7.</B></DT>
<DD><A NAME="J7"></A><B>``pFusion: An Architecture for Internet-Scale Content-Based Search and Retrieval''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos,
<B>IEEE Transactions on Parallel and Distributed Systems (TPDS)</B>, Volume 18, No. 6, Pages: 804-817, June <B>2007</B>.
<P>
</DD>
<DT><B>J6.</B></DT>
<DD><A NAME="J6"></A><B>``Distributed Middleware Architectures for Scalable Media Services''</B>,
Vana Kalogeraki, <B>Demetrios Zeinalipour-Yazti</B>, Dimitrios Gunopulos and Alex Delis,
<B>Journal of Network and Computer Applications (JNCA)</B>, Elsevier Press,
Volume 30, Issue 1, Pages: 209-243, January <B>2007</B>.
<P>
</DD>
<DT><B>J5.</B></DT>
<DD><A NAME="J5"></A><B>``Efficient Indexing Data Structures for Flash-Based Sensor Devices''</B>,
<BR>
Song Lin, <B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki, Dimitrios Gunopulos, Walid Najjar,
<B>ACM Transactions on Storage (TOS)</B>, Volume 2, No. 4, Pages: 468 - 503, November <B>2006</B>.
<P>
</DD>
<DT><B>J4.</B></DT>
<DD><A NAME="J4"></A>
<B>``Structuring Topologically-Aware Overlay Networks using Domain Names''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B> and Vana Kalogeraki,
<B>Computer Networks (ComNet)</B>, Elsevier Press, Volume 50, Issue 16, Pages: 3064-3082, November <B>2006</B>.
<P>
</DD>
<DT><B>J3.</B></DT>
<DD><A NAME="J3"></A><B>``Exploiting Locality for Scalable Information Retrieval in Peer-to-Peer Systems''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos,
<B>Information Systems (InfoSys)</B>, Elsevier Press, Volume 30, Issue 4, Pages: 277-298, <B>2005</B>.
(ranks 1st in the TOP25 list of the Information Systems journal in April-May-June 2005).
<P>
</DD>
<DT><B>J2.</B></DT>
<DD><A NAME="J2"></A><B>``A Distributed Middleware Infrastructure for Personalized Services''</B>,
<BR>
Marios D. Dikaiakos, <B>Demetrios Zeinalipour-Yazti</B>,
<B>Computer Communications (ComCom)</B>, Elsevier Press, Volume 27, Issue 15, Pages: 1464-1480, <B>2004</B>.
<P>
</DD>
<DT><B>J1.</B></DT>
<DD><A NAME="J1"></A>
<B>``Information Retrieval Techniques for Peer-to-Peer Systems''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos,
<B>Computing in Science and Engineering (CiSE)</B>, Special Issue on Web Engineering, IEEE Publications, Pages: 20 - 26, ISSN: 1521-9615, July/August <B>2004</B>.
<P>
</DD>
</DL>
<P>
<H2><A NAME="SECTION00052000000000000000">
CONFERENCE AND WORKSHOP PROCEEDINGS</A>
</H2>
<DL COMPACT>
<DT><B>C75.</B></DT>
<DD><A NAME="C75"></A>
<B>``Decaying Telco Big Data with Data Postdiction''</B>,
<BR>
Constantinos Costa, Andreas Charalampous, Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed F. Mokbel,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>, 10 pages, June 25 - June 28, 2018, AAU, Aalborg, Denmark, <B>2018</B>.
<P>
</DD>
<DT><B>C74.</B></DT>
<DD><A NAME="C74"></A>
<B>``Future Directions for Indoor Information Systems: A Panel Discussion''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>, 2 pages, June 25 - June 28, 2018, AAU, Aalborg, Denmark, <B>2018</B>.
<P>
</DD>
<DT><B>C73.</B></DT>
<DD><A NAME="C73"></A>
<B>``Telco Big Data: Current State & Future Directions''</B>,
<BR>
Constantinos Costa and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>, 4 pages, June 25 - June 28, 2018, AAU, Aalborg, Denmark, <B>2018</B>.
<P>
</DD>
<DT><B>C72.</B></DT>
<DD><A NAME="C72"></A>
<B>``FMS: Managing Crowdsourced Indoor Signals with the Fingerprint Management Studio''</B>,
<BR>
Marileni Angelidou, Constantinos Costa, Artyom Nikitin and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>, 2 pages, June 25 - June 28, 2018, AAU, Aalborg, Denmark, <B>2018</B>.
<P>
</DD>
<DT><B>C71.</B></DT>
<DD><A NAME="C71"></A>
<B>``TBD-DP: Telco Big Data Visual Analytics with Data Postdiction''</B>,
<BR>
Constantinos Costa, Andreas Charalampous, Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed F. Mokbel
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>, 2 pages, June 25 - June 28, 2018, AAU, Aalborg, Denmark, <B>2018</B>.
<P>
</DD>
<DT><B>C70.</B></DT>
<DD><A NAME="C70"></A>
<B>``EPUI: Experimental Platform for Urban Informatics''</B>,
<BR>
Xiaoyi Ge, Panos K. Chrysanthis, Konstantinos Pelechrinis, and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 2018 ACM International Conference on Management of Data, <B>(SIGMOD 2018)</B></EM>, 4 pages, June 10-15, Houston, Texas, USA, <B>2018</B>.
<P>
</DD>
<DT><B>C69.</B></DT>
<DD><A NAME="C69"></A>
<B>``Generating Semantic Aspects for Queries''</B>,
<BR>
Dhruv Gupta, Klaus Berberich, Jannik Strötgen, and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 18th ACM/IEEE Joint Conference on Digital Libraries, <B>(JCDL '18)</B></EM>, 2 pages, June 3-6, 2018, Fort Worth, Texas, USA, <B>2018</B>.
<P>
</DD>
<DT><B>C68.</B></DT>
<DD><A NAME="C68"></A>
<B>``Towards Real-Time Road Traffic Analytics using Telco Big Data''</B>,
<BR>
Constantinos Costa, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B> and Mohamed F. Mokbel,
<EM>Proceedings of the 11th Intl. Workshop on Real-Time Business Intelligence and Analytics <B>(BIRTE 2017)</B></EM>, collocated with VLDB 2017, pp. 5:1-5:5, ISBN: 978-1-4503-5425-7/17/08, Munich, Germany, August 28, <B>2017</B>.
<P>
</DD>
<DT><B>C67.</B></DT>
<DD><A NAME="C67"></A>
<B>``Data-driven Serendipity Navigation in Urban Places''</B>,
<BR>
Xiaoyi Ge, Ameya Daphalapurkar, Manali Shmipi, Kohli Darpun, Konstantinos Pelechrinis, Panos K. Chrysanthis, and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 37th IEEE International Conference on Distributed Computing Systems <B>(ICDCS 2017)</B></EM>, 4 pages,
June 5-8, Atlanta, GA, USA, <B>2017</B>.
<P>
</DD>
<DT><B>C66.</B></DT>
<DD><A NAME="C66"></A>
<B>``Indoor Localization Accuracy Estimation from Fingerprint Data''</B>,
<BR>
Artyom Nikitin, Christos Laoudias, Georgios Chatzimilioudis, Panagiotis Karras and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 18th IEEE International Conference on Mobile Data Management <B>(MDM 2017)</B></EM>, IEEE Computer Society, pp. 196-205, May 29 - June 1, 2017, Daejeon, South Korea, <B>2017</B>. <B>(Honorable Mention Award)</B>
<P>
</DD>
<DT><B>C65.</B></DT>
<DD><A NAME="C65"></A>
<B>``ACCES: Offline Accuracy Estimation for Fingerprint-based Localization''</B>,
<BR>
Artyom Nikitin, Christos Laoudias, Georgios Chatzimilioudis, Panagiotis Karras and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 18th IEEE International Conference on Mobile Data Management <B>(MDM 2017)</B></EM>, IEEE Computer Society, pp. 358-359, May 29 - June 1, 2017, Daejeon, South Korea, ISBN-13: 978-1-5386-3932-0, <B>2017</B>.
<P>
</DD>
<DT><B>C64.</B></DT>
<DD><A NAME="C64"></A>
<B>``Efficient Exploration of Telco Big Data with Compression and Decaying''</B>,
<BR>
Constantinos Costa, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B> and Mohamed F. Mokbel,
<EM>Proceedings of the 33rd International Conference on Data Engineering <B>(ICDE 2017)</B></EM>, IEEE Computer Society, pp. 1332-1343, April 19-22, 2017, San Diego, CA, USA, ISBN: 978-1-5090-6543-1, <B>2017</B>.
<P>
</DD>
<DT><B>C63.</B></DT>
<DD><A NAME="C63"></A>
<B>``SPATE: Compacting and Exploring Telco Big Data''</B>,
<BR>
Constantinos Costa, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed F. Mokbel,
<EM>Demo Proceedings of the 33rd International Conference on Data Engineering <B>(ICDE 2017)</B></EM>, IEEE Computer Society, pp. 1419-1420, April 19-22, 2017, San Diego, CA, USA, ISBN: 978-1-5090-6543-1, <B>2017</B>.
<P>
</DD>
<DT><B>C62.</B></DT>
<DD><A NAME="C62"></A>
<B>``Distributed In-Memory Processing of All k Nearest Neighbor Queries (Extended Abstract)''</B>,
<BR>
Georgios Chatzimilioudis, Constantinos Costa, <B>Demetrios Zeinalipour-Yazti</B> and
Wang-Chien Lee and Evaggelia Pitoura,
<EM>Proceedings of the 32nd International Conference on Data Engineering <B>(ICDE 2016)</B></EM>,
Helsinki, Finland, May 16-20, Pages: 1490-1491, DOI: 10.1109/ICDE.2016.7498389, <B>2016</B>.
<P>
</DD>
<DT><B>C61.</B></DT>
<DD><A NAME="C61"></A>
<B>``Privacy-Preserving Indoor Localization on Smartphones (Extended Abstract)''</B>,
<BR>
Andreas Konstantinidis, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B>, Paschalis Mpeis,
Nikos Pelekis, and Yannis Theodoridis,
<EM>Proceedings of the 32nd International Conference on Data Engineering <B>(ICDE 2016)</B></EM>,
Helsinki, Finland, May 16-20, Pages: 1470-1471, DOI: 10.1109/ICDE.2016.7498379, <B>2016</B>.
<P>
</DD>
<DT><B>C60.</B></DT>
<DD><A NAME="C60"></A><B>``A Realistic Evaluation and Comparison of Indoor Location Technologies: Experiences and Lessons Learned''</B>,
<BR>
Dimitrios Lymberopoulos, Jie Liu, Xue Yang, Romit Roy Choudhury, ..., Christos Laoudias, <B>Demetrios Zeinalipour-Yazti</B>, Yu-Kuen Tsai, et. al.
<EM>Proceedings of the 14th International Conference on Information Processing in Sensor Networks <B>(IPSN 2015)</B></EM>,
Seattle, WA, USA, April 14-16, Pages: 178-189, <B>2015</B>.
<P>
</DD>
<DT><B>C59.</B></DT>
<DD><A NAME="C59"></A><B>``RadioMap Prefetching for Indoor Navigation in Intermittently Connected Wi-Fi Networks''</B>,
<BR>
Andreas Konstantinidis, George Nikolaides, Georgios Chatzimilioudis, Giannis Evagorou, <B>Demetrios Zeinalipour-Yazti</B> and Panos K. Chrysanthis,
<EM>Proceedings of the 16th IEEE International Conference on Mobile Data Management <B>(MDM 2015)</B></EM>,
Pittsburgh, PA, USA, July 15-18, Volume 1, Pages: 34-43, <B>2015</B>.
<P>
</DD>
<DT><B>C58.</B></DT>
<DD><A NAME="C58"></A><B>``Rayzit: An Anonymous and Dynamic Crowd Messaging Architecture''</B>,
<BR>
Constantinos Costa, Chrysovalantis Anastasiou, Georgios Chatzimilioudis and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 3rd IEEE International Workshop on Mobile Data Management Mining and Computing on Social Networks collocated with IEEE MDM '15 <B>(Mobisocial 2015)</B></EM>,
Pittsburgh, PA, USA, July 15-18, 978-1-4799-9972-9/15, IEEE Press, Volume 2, Pages: 98-103, <B>2015</B>.
<P>
</DD>
<DT><B>C57.</B></DT>
<DD><A NAME="C57"></A><B>``Scalable Mockup Experiments on Smartphones using SmartLab''</B>,
<BR>
Georgios Larkou, Marios Mintzis, Panayiotis G. Andreou, Andreas Konstantinidis and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 16th IEEE International Conference on Mobile Data Management <B>(MDM 2015)</B></EM>,
Pittsburgh, PA, USA, July 15-18, 978-1-4799-9972-9/15, IEEE Press, Volume 2, Pages: 287-290, <B>2015</B>.
<P>
</DD>
<DT><B>C56.</B></DT>
<DD><A NAME="C56"></A><B>``Anyplace: A Crowdsourced Indoor Information Service''</B>,
<BR>
Kyriakos Georgiou, Timotheos Constambeys, Christos Laoudias, Lambros Petrou, Georgios Chatzimilioudis and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 16th IEEE International Conference on Mobile Data Management <B>(MDM 2015)</B></EM>,
Pittsburgh, PA, USA, July 15-18, 978-1-4799-9972-9/15, IEEE Press, Volume 2, Pages: 291-294, <B>2015</B>.
<P>
</DD>
<DT><B>C55.</B></DT>
<DD><A NAME="C55"></A><B>``Mobile Data Management in Indoor Spaces''</B>,
<BR>
Christos Laoudias and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 16th IEEE International Conference on Mobile Data Management</EM>
<B>(MDM 2015)</B>, Pittsburgh, PA, USA, June 15-18, Volume 1, Pages: 11-14, <B>2015</B>.
<P>
</DD>
<DT><B>C54.</B></DT>
<DD><A NAME="C54"></A><B>``Mobile Big Data Analytics: Research, Practice and Opportunities''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B> and Shonali Krishnaswamy,
<EM>Proceedings of the 15th IEEE International Conference on Mobile Data Management</EM>
<B>(MDM 2014)</B>, Brisbane, Australia, July 15-18, Volume 1, Pages: 1-2, <B>2014</B>.
<P>
</DD>
<DT><B>C53.</B></DT>
<DD><A NAME="C53"></A><B>``Sensor Mockup Experiments with SmartLab''</B>,
<BR>
George Larkou, Marios Mintzis, Stefano Taranto, Andreas Konstantinidis, Panayiotis G. Andreou and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 13th international conference on Information processing in sensor networks</EM>
<B>(IPSN 2014)</B>, Pages: 339-340, ISBN: 978-1-4799-3146-0, Berlin, Germany, April 15-17, <B>2014</B>.
<P>
</DD>
<DT><B>C52.</B></DT>
<DD><A NAME="C52"></A><B>``Crowdsourced Indoor Localization and Navigation with Anyplace''</B>,
<BR>
Lambros Petrou, George Larkou, Christos Laoudias, <B>Demetrios Zeinalipour-Yazti</B>, Christos G. Panayiotou,
<EM>Proceedings of the 13th international conference on Information processing in sensor networks</EM>
<B>(IPSN 2014)</B>, Pages: 331-332, ISBN: 978-1-4799-3146-0, Berlin, Germany, April 15-17, <B>2014</B>.
<P>
</DD>
<DT><B>C51.</B></DT>
<DD><A NAME="C51"></A><B>``Managing Smartphone Testbeds with SmartLab''</B>,
<BR>
George Larkou, Panayiotis K. Andreou, Andreas Konstantinides and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 27th USENIX Large Installation System Administration Conference</EM>
<B>(LISA 2013)</B>, Pages: 115-132, ISBN: 978-1-931971-05-8, Washington D.C., USA, <B>2013</B>.
<P>
</DD>
<DT><B>C50.</B></DT>
<DD><A NAME="C50"></A><B>``Indoor Positioning and Navigation in the Big-Data Era''</B>,
<BR>
Lambros Petrou, George Larkou, Christos Laoudias, <B>Demetrios Zeinalipour-Yazti</B> and Christos G. Panayiotou,
<EM>Proceedings of the 4th Intl. Conference on Indoor Positioning and Indoor Navigation</EM>
<B>(IPIN 2013)</B>, Montbéliard, France, <B>2013</B>.
<P>
</DD>
<DT><B>C49.</B></DT>
<DD><A NAME="C49"></A><B>``Crowdsourced Indoor Localization for Diverse Devices through Radiomap Fusion''</B>,
<BR>
Christos Laoudias, <B>Demetrios Zeinalipour-Yazti</B> and Christos G. Panayiotou,
<EM>Proceedings of the 4th Intl. Conference on Indoor Positioning and Indoor Navigation</EM>
<B>(IPIN 2013)</B>, Montbéliard, France, <B>2013</B>.
<P>
</DD>
<DT><B>C48.</B></DT>
<DD><A NAME="C48"></A><B>``Demo: Indoor Geolocation on Multi-Sensor Smartphones''</B>,
<BR>
Chin-Lung Li, Christos Laoudias, George Larkou, Yu-Kuen Tsai, <B>Demetrios Zeinalipour-Yazti</B> and Christos G. Panayiotou
<EM>Proceedings of the 11th International Conference on Mobile Systems, Applications and Services</EM>
<B>(MobiSys 2013)</B>, Tapei, Taiwan, Pages: 503-504, Taipei, Taiwan, June 25 - 28, ISBN: 978-1-4503-1672-9, <B>2013</B>.
<P>
</DD>
<DT><B>C47.</B></DT>
<DD><A NAME="C47"></A><B>``Crowdsourcing for Mobile Data Management''</B>,
<BR>
Georgios Chatzimilioudis and <B>Demetrios Zeinalipour-Yazti</B>
<EM>14th IEEE International Conference on Mobile Data Management</EM> <B>(MDM 2013)</B>, Milan, Italy, June 3-6, <B>2013</B>.
<P>
</DD>
<DT><B>C46.</B></DT>
<DD><A NAME="C46"></A><B>``CLODA: A Crowdsourced Linked Open Data Architecture''</B>,
<BR>
George Larkou, Julia Metochi, Georgios Chatzimilioudis and <B>Demetrios Zeinalipour-Yazti</B>
<EM>1st IEEE International Workshop on Mobile Data Management, Mining, and Computing on Social Networks (MobiSocial)</EM>, at <EM>14th IEEE International Conference on Mobile Data Management</EM> <B>(MDM 2013)</B>, June 3-6 2013, Milan, Italy, <B>2013</B>.
<P>
</DD>
<DT><B>C45.</B></DT>
<DD><A NAME="C45"></A><B>``Hybrid Indoor Positioning on Multi-Sensor Android Smartphones''</B>,
<BR>
Chin-Lung Li, Christos Laoudias, George Larkou, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B> and Christos G. Panayiotou
<EM>The 3rd International Conference on Indoor Positioning and Indoor Navigation</EM> <B>(IPIN 2012)</B>,
November 13-15, 2012, Sydney, Australia, <B>2012</B>.
<P>
</DD>
<DT><B>C44.</B></DT>
<DD><A NAME="C44"></A><B>``FireWatch: G.I.S.-assisted Wireless Sensor Networks for Forest Fires''</B>,
<BR>
Panayiotis G. Andreou, George Constantinou, <B>Demetrios Zeinalipour-Yazti</B>, George Samaras,
<EM>The 24th International Conference on Scientific and Statistical Database Management</EM> <B>(SSDBM 2012)</B>,
Springer LNCS Series, Volume 7338, Pages: 618-621, Chania, Greece, ISBN: 978-3-642-31234-2, <B>2012</B>.
<P>
</DD>
<DT><B>C43.</B></DT>
<DD><A NAME="C43"></A><B>``Continuous All k-Nearest Neighbor Querying in Smartphone Networks''</B>,
<BR>
Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B>, Wang-Chien Lee, Marios D. Dikaiakos,
<EM>Proceedings of the 13th IEEE International Conference on Mobile Data Management</EM> <B>(MDM 2012)</B>, IEEE Computer Society, Pages: 79-88, Bangalore, India, ISBN: 978-0-7695-4713-8, <B>2012</B>.
<P>
</DD>
<DT><B>C42.</B></DT>
<DD><A NAME="C42"></A><B>``The Airplace Indoor Positioning Platform for Android Smartphones''</B>,
<BR>
Christos Laoudias, George Constantinou, Marios Constantinides, Silouanos Nicolaou, <B>Demetrios Zeinalipour-Yazti</B>, Christos G. Panayiotou,
<EM>Proceedings of the 13th IEEE International Conference on Mobile Data Management</EM> <B>(MDM 2012)</B>, IEEE Computer Society, Pages: 312-315, Bangalore, India, ISBN: 978-0-7695-4713-8, <B>2012</B>. (<B>Best Demo Award</B>)
<P>
</DD>
<DT><B>C41.</B></DT>
<DD><A NAME="C41"></A><B>``SmartP2P: A Multiobjective Framework for Finding Social Content in P2P Smartphone Networks''</B>,
<BR>
Andreas Konstantinidis, Christos Aplitsiotis, <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 13th IEEE International Conference on Mobile Data Management</EM> <B>(MDM 2012)</B>,
IEEE Computer Society, Pages: 324-327, Bangalore, India, ISBN: 978-0-7695-4713-8, <B>2012</B>
<P>
</DD>
<DT><B>C40.</B></DT>
<DD><A NAME="C40"></A><B>``Towards In-Situ Localization on Smartphones with a Partial Radiomap''</B>,
<BR>
Andreas Konstantinidis, Georgios Chatzimilioudis, Christos Laoudias, Silouanos Nicolaou and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 4th ACM international workshop on Hot topics in planet-scale measurement</EM>
<B>(HotPlanet'12)</B>, in conjunction with ACM MobiSys'12, ACM, Pages: 9-14, New York, NY, USA, ISBN: 978-1-4503-1318-6, Low Wood Bay, Lake District, UK, June 25, <B>2012</B>.
<P>
</DD>
<DT><B>C39.</B></DT>
<DD><A NAME="C39"></A><B>``Demo: The Airplace Indoor Positioning Platform''</B>,
<BR>
Christos Laoudias, George Constantinou, Marios Constantinides, Silouanos Nicolaou, <B>Demetrios Zeinalipour-Yazti</B> and Christos G. Panayiotou,
<EM>The 10th International Conference on Mobile Systems, Applications and Services</EM>
<B>(MobiSys 2012)</B>, Low Wood Bay, Lake District UK, June 25 - 29, Pages: 467-468,
ISBN: 978-1-4503-1301-8, <B>2012</B>.
<P>
</DD>
<DT><B>C38.</B></DT>
<DD><A NAME="C38"></A><B>``Demo: A Programming Cloud of Smartphones''</B>,
<BR>
Andreas Konstantinidis, Constantinos Costa, George Larkou and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>The 10th International Conference on Mobile Systems, Applications and Services</EM>
<B>(MobiSys 2012)</B>, Low Wood Bay, Lake District UK, June 25 - 29, Pages: 465-466,
ISBN: 978-1-4503-1301-8, <B>2012</B>.
<P>
</DD>
<DT><B>C37.</B></DT>
<DD><A NAME="C37"></A><B>``Towards a Network-aware Middleware for Wireless Sensor Networks''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, George Samaras, Panos K. Chrysanthis,
8th Intl. Workshop on Data Management for Sensor Networks <B>(DMSN 2011)</B>, in conjunction with VLDB 2011,
Seattle, WA, USA, August 29, <B>2011</B>.
<P>
</DD>
<DT><B>C36.</B></DT>
<DD><A NAME="C36"></A><B>``Data Management Techniques for Smartphone Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>
10th International ACM Workshop on Data Engineering for Wireless and Mobile Access <B>(MobiDE 2011)</B>, in conjunction with SIGMOD/PODS 2011, Athens, Greece, June 12, <B>2011</B>.
<P>
</DD>
<DT><B>C35.</B></DT>
<DD><A NAME="C35"></A><B>``Energy Efficient Data Management in Smartphone Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>
NSF-sponsored Workshop on Sustainable Energy-Efficient Data Management <B>(SEEDM 2011)</B>,
Arlington, Virginia, May 2-3, <B>2011</B>.
<P>
</DD>
<DT><B>C34.</B></DT>
<DD><A NAME="C34"></A><B>An Indoor Trajectory Comparison Framework for Android Smartphones</B>, Christos Laoudias, Constantinos Costa, <B>Demetrios Zeinalipour-Yazti</B>, Christos G. Panayiotou, Demo at the International Conference on Indoor Positioning and Indoor Navigation <B>(IPIN 2011)</B>, Guimarães, Portugal, 21-23 Sept. <B>2011</B>.
<P>
</DD>
<DT><B>C33.</B></DT>
<DD><A NAME="C33"></A><B>``A Platform for the Evaluation of Fingerprint Positioning Algorithms on Android Smartphones''</B>, Christos Laoudias, George Constantinou, Marios Constantinides, Silouanos Nicolaou, <B>D. Zeinalipour-Yazti</B>, Christos G. Panayiotou, Demo at the International Conference on Indoor Positioning and Indoor Navigation <B>(IPIN 2011)</B>, Guimarães, Portugal, 21-23 Sept. <B>2011</B>.
<P>
</DD>
<DT><B>C32.</B></DT>
<DD><A NAME="C32"></A><B>``Multi-Objective Query Optimization in Smartphone Social Networks''</B>,
<BR>
Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, Panayiotis Andreou, George Samaras
<EM>12th IEEE International Conference on Mobile Data Management</EM> <B>(MDM 2011)</B>, Pages: 27-32, IEEE Computer Society, Volume 1. IEEE 2011, ISBN 978-1-4577-0581-6, Lulea, Sweden, June 6-9, <B>2011</B>.
<P>
</DD>
<DT><B>C31.</B></DT>
<DD><A NAME="C31"></A><B>``Disclosure-free GPS Trace Search in Smartphone Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Christos Laoudias, Maria I. Andreou, Dimitrios Gunopulos
<EM>12th IEEE International Conference on Mobile Data Management</EM> <B>(MDM 2011)</B>, Pages: 78-87, IEEE Computer Society, Volume 1, IEEE 2011, ISBN 978-1-4577-0581-6, Lulea, Sweden, June 6-9, <B>2011</B>.
<P>
</DD>
<DT><B>C30.</B></DT>
<DD><A NAME="C30"></A><B>``SmartTrace: Finding Similar Trajectories in Smartphone Networks without Disclosing the Traces''</B>,
Constandinos Costa, Christos Laoudias, <B>Demetrios Zeinalipour-Yazti</B>, Dimitrios Gunopulos
Demo at 27th International Conference on Data Engineering March <B>(ICDE 2011)</B>,
ISBN 978-1-4244-8958-9, Pages: 1288-1291, IEEE Press, April 11-16, Hannover, Germany, <B>2011</B>.
<P>
</DD>
<DT><B>C29.</B></DT>
<DD><A NAME="C29"></A><B>``Minimum-Hot-Spot Query Trees for Wireless Sensor Networks''</B>,
<BR>
Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B>, Dimitrios Gunopulos,
Ninth International ACM Workshop on Data Engineering for Wireless and Mobile Access <B>(MobiDE 2010)</B>,
June 6, 2010, Indianapolis, Indiana, USA, Pages: 33-40, ACM Press, ISBN: 978-1-4503-0151-0,
DOI:10.1145/1850822.1850829, <B>2010</B>.