forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
executable file
·3315 lines (2824 loc) · 172 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">Short 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: August 24, 2015</H5>
<center><a target="_blank" href="zeinalipour.pdf">Download in PDF <img border="0" src="images/pdf.gif"></a></center>
<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"> </TD>
<TD ALIGN="RIGHT"> </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; Spatio-Temporal Data Management; Big Data Management in Parallel and Distributed Architectures; Network and Web 2.0 Data Management; Crowd 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">2003-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"> </TD>
<TD ALIGN="LEFT"> </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">2001-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"> </TD>
<TD ALIGN="LEFT"> </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">1996-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>
</TABLE>
</DIV>
<P>
<H1><A NAME="SECTION00030000000000000000">
<B>ACADEMIC APPOINTMENTS</B></A>
</H1>
<P>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 WIDTH="100%">
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Assistant Professor</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">12/2012 - 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>Lecturer</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">01/2009-11/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>Visiting Lecturer</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">09/2005-06/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"><B>Research Assistant</B>, DB Lab, Univ. of California - Riverside, CA, USA</TD>
<TD ALIGN="RIGHT">2003-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">2001-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">2000-2001</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
</TABLE>
</DIV>
<P>
<H1><A NAME="SECTION00040000000000000000">
PUBLICATIONS</A>
</H1>
<FONT SIZE="+2"><B>Google Scholar Citations: 2,012;
h-index<A NAME="tex2html1"
HREF="#foot60"><SUP>1</SUP></A>: 21;
i10-index<A NAME="tex2html2"
HREF="#foot61"><SUP>2</SUP></A>: 38</B></FONT>
<P>
<H2><A NAME="SECTION00041000000000000000">
JOURNAL AND MAGAZINE PAPERS</A>
</H2>
<DL COMPACT>
<DT><B>J19.</B></DT>
<DD><A NAME="J19"></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, Los Alamitos, CA, USA, <B>2015</B> <B>(accepted)</B>.
<P>
</DD>
<DT><B>J18.</B></DT>
<DD><A NAME="J18"></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, 10.1007/s10619-014-7158-6, Pages: 1-32, <B>2014</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, pp. 209-243, January <B>2014</B>.
<P>
</DD>
<DT><B>J16.</B></DT>
<DD><A NAME="J16"></A><B>``Crowdsourced Trajectory Similarity with Smartphones''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Christos Laoudias, Costandinos Costa, 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, <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, George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Query Processing in Sensor Networks, Springer Press, Volume 29, Numbers 1-2, pp. 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, George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Query Processing in Sensor Networks,
Springer Press, Volume 29, Numbers 1-2, pp. 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, George Samaras,
<B>Information Systems (InfoSys)</B>, Volume 36, Issue 2, pp. 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 and <B>Demetrios Zeinalipour-Yazti</B>
<B>Computer Networks (ComNet)</B>, Volume 54, Issue 6, pp. 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 and Vana Kalogeraki, Vassilis Tsotras, Michail Vlachos, Nick Koudas, Divesh Srivastava,
<B>Computer Networks (ComNet)</B>, Volume 53, Issue 9, pp. 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, 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, Dimitrios Gunopulos,
<B>IEEE Transactions on Parallel and Distributed Systems (TPDS)</B>, Volume 18, No. 6, pp. 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, pp. 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, pp. 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, pp. 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, pp. 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, pp. 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, pp. 20 - 26, ISSN: 1521-9615, July/August <B>2004</B>.
<P>
</DD>
</DL>
<P>
<H2><A NAME="SECTION00042000000000000000">
CONFERENCE AND WORKSHOP PAPERS</A>
</H2>
<DL COMPACT>
<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 (MDM 2015)</EM>,
Pittsburgh, PA, USA, July 15-18, Volume 1, pp. 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, pp. 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, pp. 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, pp. 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>, 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>, 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, IEEE Computer Society, Pages: 79-88, Bangalore, India, ISBN: 978-0-7695-4713-8, <B>2012</B>. <B>[Acceptance Rate: 25% (22/88)]</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, IEEE Computer Society, Pages: 312-315, Bangalore, India, ISBN: 978-0-7695-4713-8, <B>2012</B>
<BR>(<B><U>Best Demo Award!</U></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>, pp. 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>, pp. 78-87, IEEE Computer Society, Volume 1, IEEE 2011, ISBN 978-1-4577-0581-6, Lulea, Sweden, June 6-9, <B>2011</B>.
<B>[Acceptance Rate: 25% (22/88)]</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, pp. 1288-1291, IEEE Press, April 11-16, Hannover, Germany, <B>2011</B>,
<B>[Acceptance Rate: 31% (21/67)]</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, pp. 33-40, ACM Press, ISBN: 978-1-4503-0151-0,
DOI:10.1145/1850822.1850829, <B>2010</B>.
<P>
</DD>
<DT><B>C28.</B></DT>
<DD><A NAME="C28"></A><B>``Improving the Dependability of Computational Grids via Short-Term Failure Predictions''</B>,
Artur Andrzejak, <B>Demetrios Zeinalipour-Yazti</B>, Marios D. Dikaiakos,
CoreGRID ERCIM Working Group Workshop on Grids, P2P and Service computing
<B>(EuroPAR 2009 Workshops)</B>, Springer Press Series, Delft, Netherlands, August 24, <B>2009</B>.
<P>
</DD>
<DT><B>C27.</B></DT>
<DD><A NAME="C27"></A><B>``FSort: External Sorting on Flash-based Sensor Devices''</B>,
<BR>
Panayiotis Andreou, Orestis Spanos, <B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis, George Samaras,
<EM>6<SUP>th</SUP>
<tex2html_verbatim_mark>mathend000# Intl. Workshop on Data Management for Sensor Networks ``DMSN''</EM>
<B>(VLDB 2009 Workshops)</B>, Lyon, Paris, ACM International Conference Proceeding Series, ISBN: 978-1-60558-777-6, DOI: 10.1145 / 1594187.1594201, article 10, <B>2009</B>.
<P>
</DD>
<DT><B>C26.</B></DT>
<DD><A NAME="C26"></A><B>``Perimeter-Based Data Replication and Aggregation in Mobile Sensor Networks''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Maria I. Andreou, Panos K. Chrysanthis, George Samaras,
<EM>10th International Conference on Mobile Data Management</EM> (<B>MDM 2009)</B>,
Taipei, Taiwan, May 18-21, pp. 244-251, IEEE Computer Society, ISBN: 978-0-7695-3650-7, <B>2009</B>.
<P>
</DD>
<DT><B>C25.</B></DT>
<DD><A NAME="C25"></A><B>``KSpot: Effectively Monitoring the K Most Important Events in a Wireless Sensor Network''</B>,
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Martha Vasiliadou, Panos K. Chrysanthis, George Samaras,
Demo at the 25th International Conference on Data Engineering March (<B>ICDE 2009</B>), Shanghai, China, May 29 - April 4, 2009, pp. 1503-1506, ISBN: 978-1-4244-3422-0., IEEE Computer Society, <B>2009</B>. <B>[Acceptance Rate: 28% (26/92)]</B>.
<P>
</DD>
<DT><B>C24.</B></DT>
<DD><A NAME="C24"></A><B>``ETC: Energy-driven Tree Construction in Wireless Sensor Networks''</B>,
<BR>
Panayiotis Andreou, Andreas Pamboris, <B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis, George Samaras,
<EM>2nd International Workshop on Sensor Network Technologies for Information Explosion Era (SeNTIE'09)</EM>,
<B>(MDM 2009 Workshops)</B>, Taipei, Taiwan, 2009, pp. 513-518., ISBN: 978-1-4244-4153-2,
IEEE Computer Society, <B>2009</B>.
<P>
</DD>
<DT><B>C23.</B></DT>
<DD><A NAME="C23"></A><B>``Identifying Failures in Grids through Monitoring and Ranking''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Kyriacos Neocleous, Chryssis Georgiou, Marios D. Dikaiakos,
The 7th IEEE International Symposium on Network Computing and Applications (<B>NCA 2008</B>),
Cambridge, MA USA, pp. 291-298, IEEE Computer Society, July 10-12, <B>2008</B>.
<P>
</DD>
<DT><B>C22.</B></DT>
<DD><A NAME="C22"></A><B>``Workload-aware Optimization of Query Routing Trees in Wireless Sensor Networks''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis and George Samaras,
<EM>IEEE/ACM 9th International Conference on Mobile Data Management</EM> (<B>MDM 2008)</B>,
Beijing, China, pp. 189-196, IEEE Computer Society, April 27-30, <B>2008</B>. <B>[Acceptance Rate: 21% (26/119)]</B>.
<P>
</DD>
<DT><B>C21.</B></DT>
<DD><A NAME="C21"></A><B>``Seminar: Distributed Top-K Query Processing in Wireless Sensor Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B> and Zografoula Vagena,
<EM>IEEE/ACM 9th International Conference on Mobile Data Management</EM> (<B>MDM 2008)</B>,
Beijing, China, pp. 227, IEEE Computer Society, April 27-30, <B>2008</B>.
<P>
</DD>
<DT><B>C20.</B></DT>
<DD><A NAME="C20"></A><B>``SenseSwarm: A Perimeter-based Data Acquisition Framework for Mobile Sensor Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Panayiotis Andreou, Panos K. Chrysanthis, George Samaras,
<EM>4<SUP>th</SUP>
<tex2html_verbatim_mark>mathend000# Intl. Workshop on Data Management for Sensor Networks ``DMSN''</EM>
<B>(VLDB 2007 Workshops)</B>, ACM International Conference Proceeding Series; Volume 273,
pp. 13-18, Vienna, Austria, <B>2007</B>.
<P>
</DD>
<DT><B>C19.</B></DT>
<DD><A NAME="C19"></A><B>``FailRank: Towards a Unified Grid Failure Monitoring and Ranking System''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Kyriacos Neocleous, Chryssis Georgiou, Marios D. Dikaiakos,
In CoreGrid Springer Volume of Selected Papers from the <B>(Coregrid 2007 Workshop)</B>
on Grid Programming Models and P2P Systems Architecture, Heraklion, Greece, <B>2007</B>.
<P>
</DD>
<DT><B>C18.</B></DT>
<DD><A NAME="C18"></A><B>``The MicroPulse Framework for Adaptive Waking Windows in Sensor Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Panayiotis Andreou, Panos K. Chrysanthis, George Samaras and Andreas Pitsillides,
IEEE First International Workshop on Data Intensive Sensor Networks "DISN"
<B>(MDM 2007 Workshops)</B>, Mannheim, Germany, pp. 351-355, ISBN: 1-4244-1241-2, IEEE Computer Society, May 11, <B>2007</B>.
<P>
</DD>
<DT><B>C17.</B></DT>
<DD><A NAME="C17"></A><B>``Intensive Care Window: A multi-modal monitoring tool for Intensive Care Research and Practice''</B>,
<BR>
Harald Gjermundrod, Marios Papa, <B>Demetrios Zeinalipour-Yazti</B>, Marios D. Dikaiakos, George Panayi, Theodoros Kyprianou,<EM>20th IEEE International Symposium on Computer-Based Medical Systems <B>(CBMS 2007)</B></EM>,
IEEE Computer Society ISBN 0-7695-2905-4, pp. 471-476, June 20-22, Maribor, Slovenia, <B>2007</B>.
<P>
</DD>
<DT><B>C16.</B></DT>
<DD><A NAME="C16"></A><B>``ICGrid: Enabling Intensive Care Medical Research on the EGEE Grid''</B>,
<BR>
Harald Gjermundrod, Marios D. Dikaiakos, <B>Demetrios Zeinalipour-Yazti</B>, George Panayi, Theodoros Kyprianou,
5<SUP>th</SUP>
<tex2html_verbatim_mark>mathend000# HealthGrid Conference (<B>HealthGrid 2007</B>), April 24-27, pp. 248-257, IOS Press, <B>2007</B>.
<P>
</DD>
<DT><B>C15.</B></DT>
<DD><A NAME="C15"></A>
<B>``MINT Views: Materialized In Network Top-k Views in Sensor Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Panayiotis Andreou, Panos K. Chrysanthis, George Samaras,
<EM>IEEE/ACM 8th International Conference on Mobile Data Management</EM> (<B>MDM 2007)</B>,
Mannheim, Germany, May 7 - 11, ISBN 14244-1240-4, pp. 182-189, IEEE Press, <B>2007</B>. <B>[Acceptance Rate: 28.5%]</B>
<P>
</DD>
<DT><B>C14.</B></DT>
<DD><A NAME="C14"></A>
<B>``Distributed Spatio-Temporal Trajectory Retrieval''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Song Lin, Dimitrios Gunopulos,
<EM>ACM 15th Conference on Information and Knowledge Management</EM> (<B>CIKM 2006)</B>,
November 6-11, Arlington, VA, USA, pp. 14-23, ACM Press, ISBN 1-59593-433-2, <B>2006</B>. <B>[Acceptance Rate: 15% (81/537)]</B>
<P>
</DD>
<DT><B>C13.</B></DT>
<DD><A NAME="C13"></A>
<B>``Efficient Online State Tracking Using Sensor Networks''</B>,
<BR>
Maria Halkidi, Vana Kalogeraki, Dimitrios Gunopulos, Dimitris Papadopoulos, <B>Demetrios Zeinalipour-Yazti</B> and Michail Vlachos
<EM>IEEE/ACM 7th International Conference on Mobile Data Management</EM> (<B>MDM 2006)</B>,
Nara, Japan, May 10-12, p. 24-32, <B>2006</B>. <B>[Acceptance Rate: 23% (27/117)]</B>
<P>
</DD>
<DT><B>C12.</B></DT>
<DD><A NAME="C12"></A>
<B>``MicroHash: An Efficient Index for Sensor Nodes with External Flash Memories''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Song Lin, Vana Kalogeraki, Dimitrios Gunopulos, Walid Najjar,
<EM>4th USENIX Conference on File and Storage Technologies</EM> (<B>FAST 2005)</B>,
San Francisco, CA, December 14-16, pp. 31-44, <B>2005</B>. <B>[Acceptance Rate: 20% (25/125)]</B>
<P>
</DD>
<DT><B>C11.</B></DT>
<DD><A NAME="C11"></A>
<B>``The Threshold Join Algorithm for Top-k Queries in Distributed Sensor Networks''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Zografoula Vagena, Dimitrios Gunopulos, Vana Kalogeraki, Vassilis Tsotras, Michail Vlachos, Nick Koudas, Divesh Srivastava,
<EM>2<SUP>nd</SUP>
<tex2html_verbatim_mark>mathend000# Intl. Workshop on Data Management for Sensor Networks ``DMSN''</EM>
<B>(VLDB 2005 Workshops)</B>, Trondheim, Norway,
ACM Intl. Conference Proceeding Series; Volume 96, pp. 61-66, <B>2005</B>.
<P>
</DD>
<DT><B>C10.</B></DT>
<DD><A NAME="C10"></A><B>RISE Co-S : High Performance Sensor Storage and Co-Processing Architecture</B>,
<BR>
Anirban Banerjee, Abhishek Mitra, Walid Najjar, <B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos,
Second Annual IEEE Communications Society Conference on Sensor and Ad Hoc Communications and Networks <B>(SECON 2005)</B>,
Santa Clara, California, USA, <B>2005</B>.
<P>
</DD>
<DT><B>C9.</B></DT>
<DD><A NAME="C9"></A><B>``High-Performance Low Power Sensor Platforms Featuring Gigabyte Scale Storage''</B>,
<BR>
Abhishek Mitra, Anirban Banerjee, Walid Najjar, <B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos,
IEEE/ACM 3rd International Workshop on Measurement, Modeling, and Performance Analysis of Wireless Sensor Networks
``SenMetrics 2005'', <B>(MobiQuitous 2005 Workshops)</B>, San Diego, CA, <B>2005</B>. <B>[Acceptance Rate: 27%].</B>
<P>
</DD>
<DT><B>C8.</B></DT>
<DD><A NAME="C8"></A><B>``Data Acquisition in Sensor Networks with Large Memories''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Som Neema, Dimitrios Gunopulos, Vana Kalogeraki, Walid Najjar,
<EM>IEEE International Workshop on Networking Meets Databases ``NetDB''</EM>,
<B>(ICDE 2005 Workshops)</B>, pp. 1188-, Tokyo, Japan, <B>2005</B>.
<P>
</DD>
<DT><B>C7.</B></DT>
<DD><A NAME="C7"></A><B>``NODES: A Novel System Design for Embedded Sensor Networks''</B>,
<BR>
Som Neema, Abhishek Mitra, Anirban Banerjee, Walid Najjar, <B>Demetrios Zeinalipour-Yazti</B>, Dimitrios Gunopulos, Vana Kalogeraki,
<EM>IEEE Intl. Conference on Information Processing in Sensor Networks <B>(IPSN 2005)</B></EM>,
LA, CA, <B>2005</B>.
<P>
</DD>
<DT><B>C6.</B></DT>
<DD><A NAME="C6"></A><B>``Towards Self-Managing QoS-Enabled Peer-to-Peer Systems''</B>,
<BR>
Vana Kalogeraki, Fang Chen, Thomas Repantis and <B>Demetrios Zeinalipour-Yazti</B>,
In Post-Proceedings of the workshop SELF-STAR: Self-* Properties in Complex Information Systems,
Hot Topics in Computer Science, LNCS Volume 3460, pp. 325-342, May <B>2005</B>.
<P>
</DD>
<DT><B>C5.</B></DT>
<DD><A NAME="C5"></A>
<B>``On Constructing Internet-Scale P2P Information Retrieval Systems''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos
<EM>International Workshop On Databases, s and P2P Computing ``DBISP2P''</EM>
<B>(VLDB 2004 Workshops)</B>, LNCS Volume 3367, pp. 136-150, Toronto, Canada, <B>2004</B>.
<P>
</DD>
<DT><B>C4.</B></DT>
<DD><A NAME="C4"></A>
<B>``A Local Search Mechanism for Peer-to-Peer Networks''</B>,
<BR>
Vana Kalogeraki, Dimitrios Gunopulos and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>ACM 11th International Conference on Information and Knowledge Management</EM>
<B>(CIKM 2002)</B>, pp. 300-307, McLean, Virginia, USA, <B>2002</B>. <B>[Acceptance Rate: 24%]</B>.
<P>
</DD>
<DT><B>C3.</B></DT>
<DD><A NAME="C3"></A><B>``Design and Implementation of a Distributed Crawler and Filtering Processor''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B> and Marios D. Dikaiakos,
<EM>5th Intl. Workshop on Next Generation Information Technologies and Systems</EM> <B>(NGITS 2002)</B>,
LNCS Volume 2382, pp. 58-74, Eds. A. Halevy and A. Gal., Caesarea, Israel, <B>2002</B>.
<P>
</DD>
<DT><B>C2.</B></DT>
<DD><A NAME="C2"></A><B>``WebRACE: A Distributed WWW Retrieval, Annotation, and Caching Engine''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B> and Marios D. Dikaiakos. <EM>International Workshop on Performance-oriented</EM>
<EM>Application Development for Distributed Architectures</EM> <B>(PADDA 2001)</B>, Munich, Germany, <B>2001</B>.
<P>
</DD>
<DT><B>C1.</B></DT>
<DD><A NAME="C1"></A><B>``Collaboration through Navigation: The Case of a Web-based Helpdesk System''</B>,
<BR>
Marios D. Dikaiakos, <B>Demetrios Zeinalipour-Yazti</B>. Poster at the <EM>9th International World-Wide Web Conference</EM> <B>(WWW 2000)</B>, pp. 96-97, Amsterdam, Netherlands, <B>2000</B>.
<P>
</DD>
</DL>
<P>
<H2><A NAME="SECTION00043000000000000000">
BOOK CHAPTERS</A>
</H2>
<DL COMPACT>
<DT><B>B9.</B></DT>
<DD><A NAME="B9"></A><B>``Nearest Neighbor Queries on Big Data''</B>
<BR>
Georgios Chatzimilioudis, Andreas Konstantinidis and <B>Demetrios Zeinalipour-Yazti</B>
Information Granularity, Big Data, and Computational Intelligence; Springer Verlag, Volume 8,
Editor(s): Witold Pedrycz and Shyi-Ming Chen, Pages: 3-22, ISBN: 978-3-319-08253-0, <B>2015</B>.
<P>
</DD>
<DT><B>B8.</B></DT>
<DD><A NAME="B8"></A><B>``A P2P Search Framework for Intelligent Crowdsourcing in Mobile Social Networks''</B>
<BR>
Andreas Konstantinidis and <B>Demetrios Zeinalipour-Yazti</B>
Opportunistic Mobile Social Networks, CRC Press, Taylor & Francis Group, Published: August 14, 2014 by CRC Press, Editor(s): Jie Wu, Yunsheng Wang, Pages: 377-405, ISBN: 978-1-4665-9494-4, <B>2014</B>.
<P>
</DD>
<DT><B>B7.</B></DT>