-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
1383 lines (1322 loc) · 77.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Seneca Project: Research on Cloud Engineering</title>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/freelancer.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- 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="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#page-top">Seneca Project</a>
</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="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#research">Research Lines</a>
</li>
<li class="page-scroll">
<a href="#fellows">PhD Students</a>
</li>
<li class="page-scroll">
<a href ="#publications">Publications</a>
</li>
<li class="page-scroll">
<a href="#about">Working Group</a>
</li>
<li class="page-scroll">
<a href="#workshops">Workshops</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img class="img-responsive" src="img/seneca.png" width="10%" alt="">
<img class="img-responsive" src="img/eu.png" width="15%" alt="">
<div class="intro-text">
<span class="name">Seneca</span>
<span class="skills">Software Engineering in Enterprise Cloud Applications</span>
</div>
</div>
</div>
</div>
</header>
<!-- Portfolio Grid Section -->
<section id="research">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Research Lines</h2>
<hr class="star-primary">
</div>
<div class="col-lg-12 text-center">
</div>
<div class="col-lg-12 text-center">
SENECA is an European Industrial Doctorate project,
which provides the opportunity to nine early-stage
researchers to pursue their PhD in the area of
software engineering of cloud-based systems. This
project has received funding from the European
Union’s Horizon 2020 research and innovation
programme under the Marie Sklodowska-Curie grant
agreement No 642954. The research is organized in
three streams: A) Product quality in cloud-related
software development projects B) Process quality in
cloud-related software development C) Operations'
quality in cloud systems.
</div>
<div class="col-lg-12 text-center">
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h3>Product Quality</h3>
<b>Quality in cloud-related software development</b>
<ul>
<li>Impact of code review in cloud computing development</li>
<li>Improving cloud-related testing practices</li>
<li>Data driven development software in cloud-related software development projects</li>
</ul>
<a href="#quality" class="portfolio-link" data-toggle="modal">More info</a>
</div>
<div class="col-sm-4 portfolio-item">
<h3>Process Quality</h3>
<b>Process quality in cloud-related software development projects</b>
<ul>
<li>Bad process smells in software development repositories</li>
<li>Quality assurance of software-defined cloud infrastructure</li>
<li>Characterization of performance in key parameters of software development</li>
</ul>
<a href="#quantitative" class="portfolio-link" data-toggle="modal">More info</a>
</div>
<div class="col-sm-4 portfolio-item">
<h3>Operations Quality</h3>
<b>Operations' quality in cloud systems</b>
<ul>
<li>Configuration management and administration of cloud computing systems</li>
<li>Energy-efficiency of cloud computing systems</li>
<li>Secure systems on cloud computing infrastructures</li>
</ul>
<a href="#optimization" class="portfolio-link" data-toggle="modal">More info</a>
</div>
</div>
</div>
</section>
<!-- Fellows Section -->
<section id="fellows">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>PhD Students</h2>
<hr class="star-primary">
</div>
<div class="col-lg-12 text-center">
</div>
<div class="col-lg-12 text-center">
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h3>Product Quality</h3>
<b>Quality in cloud-related software development</b>
<ul>
<li>Impact of code review in cloud computing development - <a href="#marcodibiase" class="portfolio-link" data-toggle="modal"> Marco di Biase </a></li>
<li>Improving cloud-related testing practices - <a href="#davidespadini" class="portfolio-link" data-toggle="modal"> Davide Spadini </a></li>
<li>Data driven development software in cloud-related software development projects - <a href="#lucapascarella" class="portfolio-link" data-toggle="modal"> Luca Pascarella </a></li>
</ul>
</div>
<div class="col-sm-4 portfolio-item">
<h3>Process Quality</h3>
<b>Process quality in cloud-related software development projects</b>
<ul>
<li>Bad process smells in software development repositories </li>
<li>Quality assurance of software-defined cloud infrastructure - <a href="#ahmedzerouali" class="portfolio-link" data-toggle="modal"> Ahmed Zerouali </a></li>
<li>Characterization of performance in key parameters of software development - <a href="#dorealdadalipaj" class="portfolio-link" data-toggle="modal"> Dorealda Dalipaj </a></li>
</ul>
</div>
<div class="col-sm-4 portfolio-item">
<h3>Operations Quality</h3>
<b>Operations' quality in cloud systems</b>
<ul>
<li>Configuration management and administration of cloud computing systems - <a href="#tusharsharma" class="portfolio-link" data-toggle="modal"> Tushar Sharma </a></li>
<li>Energy-efficiency of cloud computing systems - <a href="#stefanosgeorgiou" class="portfolio-link" data-toggle="modal"> Stefanos Georgiou </a></li>
<li>Secure systems on cloud computing infrastructures - <a href="#antoniosgkortzis" class="portfolio-link" data-toggle="modal"> Antonios Gkortzis </a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- Publications -->
<section id="publications">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Publications</h2>
<hr class="star-primary">
</div>
<div class="col-lg-12 text-center">
</div>
<div class="col-lg-12 text-center">
</div>
</div>
<div class="col-sm-6 portfolio-item">
<b>A security perspective on code review: The case of Chromium.</b>
<ul>
<li>Marco di Biase, Magiel Bruntink, Alberto Bacchelli.</li>
<li>In Proceedings of SCAM 2016 (16th IEEE International Working Conference on Source Code Analysis and Manipulation), in press. 2016</li>
</ul>
<b>BugTracking: A Tool to Assist in the Identification of Bug Reports</b>
<ul>
<li> Gema Rodriguez-Perez , Jesus M. Gonzalez-Barahona, Gregorio Robles, Dorealda Dalipaj, Nelson Sekitoleko</li>
<li> Chapter. Open Source Systems: Integrating Communities.
Volume 472 of the series IFIP Advances in Information and Communication Technology pp 192-198</li>
</ul>
<b> Software engineering artifact in software development process – linkage between issues and code review processes</b>
<ul>
<li> Dorealda Dalipaj, Jesus M. Gonzalez-Barahona, Daniel Izquierdo-Cortazar</li>
<li> 15th International Conference on Intelligent Software Methodologies, Tools and Techniques (SOMET), 2016.</li>
</ul>
<b> Does your configuration code smell? </b>
<ul>
<li> Tushar Sharma, Marios Fragkoulis, and Diomidis Spinellis</li>
<li> Proceedings of the 13th International Conference on Mining Software Repositories (MSR ’16)</li>
</ul>
<b> To mock or not to mock?: An empirical study on mocking practices</b>
<ul>
<li> D Spadini, M Aniche, M Bruntink, A Bacchelli </li>
<li> Proceedings of the 14th International Conference on Mining Software Repositories </li>
</ul>
<b> How long does it take to fix the code: A case study of OpenStack.</b>
<ul>
<li> Dorealda Dalipaj and Jesus M. Gonzalez-Barahona </li>
<li> In SATTOSE 2017 (Seminar Series on Advanced Techniques and Tools for Software Evolution)</li>
</ul>
<b> Towards a context dependent Java exceptions hierarchy </b>
<ul>
<li> Maria Kechagia, Tushar Sharma, and Diomidis Spinellis </li>
<li> In ICSE '17: Poster Track Session, 347–349. IEEE Press, 2017.</li>
</ul>
<b> On the Relation of Test Smells to Software Code Quality </b>
<ul>
<li> Spadini, D., Palomba, F., Zaidman, A., Bruntink, M. and Bacchelli, A.</li>
<li> In ICSME 2018 (International Conference on Software Maintainance and Evolution)</li>
</ul>
<b> Smelly Relations: Measuring and Understanding Database Schema Quality </b>
<ul>
<li> Tushar Sharma, Marios Fragkoulis, Stamatia Rizou, Magiel Bruntink and Diomidis Spinellis. </li>
<li> In International Conference on Software Engineering (ICSE) 2018, Gothenburg, Sweden. </li>
</ul>
<b> Detecting and Managing Code Smells: Research and Practice </b>
<ul>
<li> Tushar Sharma </li>
<li> Technical briefing in International Conference on Software Engineering (ICSE) 2018, Gothenburg, Sweden. </li>
</ul>
<b> Vulinoss: A Dataset of Vulnerabilities in Open-source Projects. </b>
<ul>
<li> Antonios Gkortzis, Dimitris Mitropoulos and Diomidis Spinellis </li>
<li> In Mining Software Repositories (MSR) 2018, Gothenburg, Sweden in May 2018. </li>
</ul>
<b> Analyzing Programming Languages' Energy Consumption: An Empirical Study </b>
<ul>
<li> Georgiou, S., Kechagia, M. and Spinellis, D </li>
<li> In Proceedings of the 21st Pan-Hellenic Conference on Informatics (2017, September) </li>
</ul>
<b> What are your programming language’s energy-delay implications? </b>
<ul>
<li> Stefanos Georgiou, Maria Kechagia, Panos Louridas, and Diomidis Spinellis </li>
<li> In 15th International Conference on Mining Software Repositories: Technical Track, MSR '18. Sweden, May 2018. ACM. </li>
</ul>
<b> Analyzing Programming Languages’ Energy Consumption: An Empirical Study. </b>
<ul>
<li> Stefanos Georgiou, Maria Kechagia, Panos Louridas, and Diomidis Spinellis </li>
<li> In Pan-Hellenic Conference on Informatics 2017 </li>
</ul>
<b> Investigating Type Declaration Mismatches in Python </b>
<ul>
<li> Luca Pascarella, Achyudh Ram, Azqa Nadeem, Dinesh Bisesser, Norman Knyazev, and Alberto Bacchelli </li>
<li> In Proceedings of MaLTeSQuE 2018 (Workshop on Machine Learning Techniques for Software Quality Evaluation), 2018 </li>
</ul>
<b> Re-evaluating Method-Level Bug Prediction </b>
<ul>
<li> Luca Pascarella, Fabio Palomba, and Alberto Bacchelli </li>
<li> In Proceedings of SANER 2018 (25th International Conference on Software Analysis, Evolution, and Reengineering), 2018 </li>
</ul>
<b> Self-Reported Activities of Android Developers </b>
<ul>
<li> Luca Pascarella, Franz-Xaver Geiger, Fabio Palomba, Dario Di Nucci, Ivano Malavolta, and Alberto Bacchelli </li>
<li> Proceedings of MOBILESoft 2018 (5th IEEE/ACM International Conference on Mobile Software Engineering and Systems), May 27-28 2018 | Gothenburg, Sweden </li>
</ul>
<b> A Graph-based Dataset of Commit History of Real-World Android apps </b>
<ul>
<li> Franz-Xaver Geiger, Ivano Malavolta, Luca Pascarella, Fabio Palomba, Dario Di Nucci, and Alberto Bacchelli, </li>
<li> In Proceedings of MSR 2018 (15th International Conference on Mining Software Repositories), May 27-28 2018 | Gothenburg, Sweden </li>
</ul>
<b> How Is Video Game Development Different from Software Development in Open Source? </b>
<ul>
<li> Luca Pascarella, Fabio Palomba, Massimiliano Di Penta, and Alberto Bacchelli </li>
<li> In Proceedings of MSR 2018 (15th International Conference on Mining Software Repositories), May 27-28 2018 | Gothenburg, Sweden </li>
</ul>
</div>
<div class="col-sm-6 portfolio-item">
<b>Characterization of the Xen project code review process: An experience report</b>
<ul>
<li> Daniel Izquierdo-Cortazar, Lars Kurth, Jesus M. Gonzalez-Barahona, Santiago Duenas, Nelson Sekitoleko </li>
<li> 13th International Conference on Mining Software Repositories May 14-15, 2016. Austin, Texas.</li>
</ul>
<b> A Quantitative Analysis of Performance in the Key Parameter in Code Review – Individuation of Defects</b>
<ul>
<li> Dorealda Dalipaj</li>
<li> Doctoral Consortium of the International Conference on Open Source Systems (OSS), 2016</li>
</ul>
<b> An empirical analysis of vulnerabilities in virtualization technologies </b>
<ul>
<li> A. Gkortzis, S. Rizou, and D. Spinellis </li>
<li> 8th IEEE International Conference on Cloud Computing Technology and Science </li>
</ul>
<b> Classifying code comments in Java open-source software systems</b>
<ul>
<li> Luca Pascarella, Alberto Bacchelli </li>
<li> Proceedings of MSR 2017 (14th International Conference on Mining Software Repositories), forthcoming. 2017</li>
</ul>
<b> Software Engineering Artifact in Software Development Process - Linkage Between Issues and Code Review Processes </b>
<ul>
<li> Dorealda Dalipaj, Jesus M. Gonzalez-Barahona, Daniel Izquierdo-Cortazar</li>
<li> In SOMET 2016 (International Conference on Intelligent Software Methodologies, Tools and Techniques)</li>
</ul>
<b> House of cards: code smells in open-source C# repositories</b>
<ul>
<li> Tushar Sharma, Marios Fragkoulis, and Diomidis Spinellis </li>
<li> In ESEM 2017.</li>
</ul>
<b> Designite: A Customizable Tool for Smell Mining in C# Repositories </b>
<ul>
<li> Tushar Sharma</li>
<li> In SATToSE 2017 (Seminar Series on Advanced Techniques and Tools for Software Evolution)</li>
</ul>
<b> When Testing Meets Code Review: How and Why Developers Review Tests </b>
<ul>
<li> Davide Spadini, Mauricio Aniche, Margaret-Anne Storey, Magiel Bruntink, Alberto Bacchelli</li>
<li> In ICSE 2018 (International Conference on Software Engineering)</li>
</ul>
<b> Classifying code comments in Java Mobile Applications </b>
<ul>
<li> Luca Pascarella </li>
<li> In Proceedings of MOBILESoft 2018 (5th IEEE/ACM International Conference on Mobile Software Engineering and Systems). Student Research Competition, May 27-28 2018 | Gothenburg, Sweden </li>
</ul>
<b> Information Needs in Contemporary Code Review </b>
<ul>
<li> Luca Pascarella, Davide Spadini, Fabio Palomba, Magiel Bruntink, and Alberto Bacchelli </li>
<li> In Proceedings of CSCW 2018 (The 21st ACM Conference on Computer-Supported Cooperative Work and Social Computing). November 3-7 2018 | Jersey City, USA </li>
</ul>
<b> Software analytics in continuous delivery: a case study on success factors </b>
<ul>
<li> Huijgens, H., Spadini, D., Stevens, D., Visser, N., and van Deursen, A. </li>
<li> In Proceedings of the 12th ACM/IEEE International Symposium on Empirical Software Engineering and Measurement (p. 25). </li>
</ul>
<b> Mock objects for testing java systems </b>
<ul>
<li> Spadini, D., Aniche, M., Bruntink, M., and Bacchelli, A. </li>
<li> Empirical Software Engineering. </li>
</ul>
<b> Practices and tools for better software testing </b>
<ul>
<li> Spadini, D. </li>
<li> Proceedings of the 2018 26th ACM Joint Meeting on European Software Engineering Conference and Symposium on the Foundations of Software Engineering - ESEC/FSE 2018, 928–931. </li>
</ul>
<b> PyDriller: Python framework for mining software repositories </b>
<ul>
<li> Spadini, D., Aniche, M., and Bacchelli, A. </li>
<li> Proceedings of the 2018 26th ACM Joint Meeting on European Software Engineering Conference and Symposium on the Foundations of Software Engineering - ESEC/FSE 2018, 908–911.</li>
</ul>
<b> An Empirical Analysis of Technical Lag in npm Package Dependency Updates </b>
<ul>
<li> Ahmed Zerouali, Eleni Constantinou, Tom Mens, Gregorio Roble and Jesus M. Gonzalez-Barahona </li>
<li> The 17th International Conference on Software Reuse 2018. </li>
</ul>
<b> Graal: The Quest for Source Code Knowledge </b>
<ul>
<li> V. Cosentino, S. Duenas, A. Zerouali, G. Robles, J.M. González-Barahona </li>
<li> in SCAM'18, colocated with ICSME18 </li>
</ul>
<b> On The Relation Between Outdated Docker Containers, Severity Vulnerabilities and Bugs </b>
<ul>
<li> Ahmed Zerouali, Tom Mens, Gregorio Robles and Jesus M. Gonzalez-Barahona </li>
<li> IEEE International Conference on Software Analysis, Evolution and Reengineering. SANER 2019. </li>
</ul>
<b> SortingHat: Wizardry on Software Project Members </b>
<ul>
<li> David Moreno, Santiago Dueñas, Valerio Cosentino, Miguel Angel Fernandez, Ahmed Zerouali, Gregorio Robles and Jesus M. Gonzalez-Barahona </li>
<li> Demonstrations track in ICSE 2019, Montreal, CANADA. </li>
</ul>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Working Group</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h3>TU Delft</h3>
Delft University of Technology, aka TU Delft, is a top research and
academic center for engineering and applied sciences. TU Delft is
considered to be among the world's most prestigious universities of
engineering and technology by high-reputation ranking systems. It
hosts more than 19,000 students and 3,300 scientists, in eight
faculties.
</div>
<div class="col-sm-4 portfolio-item">
<h3>URJC</h3>
Universidad Rey Juan Carlos is the youngest public University in the
Madrid region. It is one of the Universities in Spain recognized as
“Campus de Excelencia Internacional” by the Spanish
Government. The University has a PhD School, in which the LibreSoft
research team participates, in the line of ITC, which has about 10
PhD graduations per year.
</div>
<div class="col-sm-4 portfolio-item">
<h3>AUEB</h3>
The Athens University of Economics and Business (AUEB) is one of the
top business schools in SE Europe. The Doctoral Program of the
Department of Management Science and Technology, where the students
will be enrolled, is committed to fostering and cultivating high
impact academic research.
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h3>Software Improvement Group</h3>
Leading IT management advisory firm, operating an ISO/IEC 17025
certified software analysis lab, advising customers on application
portfolio rationalization, software migration, and all aspects of
software quality, including maintainability, security, reliability,
transferability. SME based in Amsterdam with offices in Denmark,
Germany, Switzerland, Belgium.
</div>
<div class="col-sm-4 portfolio-item">
<h3>Bitergia</h3>
Bitergia is start-up specialized in helping companies to understand
the software development process with special focus on open source
projects. Bitergia uses data analytics techniques to produce
dashboards, reports and other types of specialized information.
Bitergia also provides tools and means to track all of these aspects
and to help in the decision making process.
</div>
<div class="col-sm-4 portfolio-item">
<h3>Singular Logic</h3>
Leading Software and Integrated IT Solutions Group in Greece. The
European Projects Department of Singular Logic works on the design
and implementation of innovative applications and platforms targeting
different business sectors (with a special focus on innovative
e-Health solutions) as well as on the engineering and management of
business services. Products: ERP, CRM, BI tools.
</div>
</div>
</section>
<!-- Workshops Section -->
<section id=workshops>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Workshops</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<!-- Workshops in 2016 -->
<div class="col-sm-4 portfolio-item">
<h3>Cloud security and infrastructure management workshop</h3>
AUEB and Singularlogic, two of the SENECA consortium
partners organize a two-day workshop with the goal to
introduce to young scientists and professionals in the
field of software-engineering, some of the current
trends and technologies for the security and operational
management of cloud services.
<br>
<br>
<a href="workshop-cloud/index.html">More info</a>
</div>
<!-- Workshops in 2017 -->
<div class="col-sm-4 portfolio-item">
<h3>Seminar Series on Advanced Techniques and Tools for Software Evolution</h3>
SATToSE is a three-day academic workshop. It is a very hands-on event, particularly targetted to PhD students, which
usually attend with their advisors. SENECA fellows had the opportunity to
present their work in the context of this workshop, and to benefit from its
environment, and talks targeted to young researchers. The 11th edition
was organized by URJC, specifically by researchers participating in SENECA.
<br>
<br>
<a href="http://sattose.org/2017">More info</a>
</div>
<div class="col-sm-4 portfolio-item">
<h3>Training Activity co-located with SATToSE 2017</h3>
The activity was structured as four talks and one 2-hour tutorial.
The activity was organized by URJC and Bitergia, two of the SENECA
consortium partners, and aimed to let young scientists and professionals learn
about future careers in the field of software engineering, and into how to
increase their success with publications and dissemination of results.
<br>
<br>
<a href="http://sattose.org/2017:seneca">More info</a>
</div>
<div class="col-sm-4 portfolio-item">
<h3>Training Activity in Amsterdam 2018</h3>
The activity was organized by SIG and TU Delft, two of the SENECA
consortium partners. The activity was planned such that participants could
also benefit from other international conferences taking place in Amsterdam
during the same week, such as <a href="https://conf.researchr.org/home/issta-2018">ISSTA</a>, <a href="https://2018.ecoop.org/">ECOOP</a>
and <a href="http://www.curry-on.org/2018/">Curry On</a>.
<br>
<br>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-6">
<h3>Around the Web</h3>
<ul class="list-inline">
<li>
<a href="http://github.com/senecaproject/" class="btn-social btn-outline"><i class="fa fa-fw fa-github"></i></a>
</li>
<li>
<a href="https://twitter.com/seneca_project" class="btn-social btn-outline"><i class="fa fa-fw fa-twitter"></i></a>
</li>
<li>
<!--<a href="https://medium.com/seneca-project"><img class="img-responsive" src="img/medium.png" width="100%" alt=""></a>-->
<a href="https://medium.com/seneca-project" class="btn-social btn-outline"><i class="fa fa-fw fa-medium"><img class="img-responsive" src="img/medium.png" width="120%"></i></a>
</li>
</ul>
</div>
<div class="footer-col col-md-6">
<h3>About Seneca Project</h3>
<p>EU Funded project - Marie Skłodowska-Curie actions</p>
<p>More info at the <a href="http://ec.europa.eu/research/mariecurieactions/index_en.htm">European Commission portal</a></p>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Copyright © Seneca Project 2015-2018
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll visible-xs visble-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- PhD Students extra info -->
<!-- Impact of code review in cloud computing development - Marco di Biase -->
<div class="portfolio-modal modal fade" id="marcodibiase" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Marco di Biase</h3>
<h4>Impact of code review in cloud computing development</h4>
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
Marco di Biase is a Researcher at Software Improvement Group in Amsterdam, working with Delft University of Technology in the context of the European SENECA project focusing on software product quality.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
Software development is all about the product, people, and processes. In this scenario, most projects use code review as a way to improve the final quality of their codebases. Although been proven to be useful, research still lacks knowledge on how it can be effectively applied in real-world scenarios, and how this affects other important parameters in the development phase. By analyzing software products and mining both their review data and linked information about development, the aim is to get a better insight on how code review can affect the product, the people, and the process. Furthermore, the target is to assess if and where the review process has some issues, which are its causes and to what extent this impacts different software metrics.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications</h4>
<ul>
<li>Marco di Biase, Magiel Bruntink, Alberto Bacchelli. A security perspective on code review: The case of Chromium. In Proceedings of SCAM 2016 (16th IEEE International Working Conference on Source Code Analysis and Manipulation), pp. 21-30. 2016 </li>
</ul>
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Improving cloud-related testing practices - Davide Spadini -->
<div class="portfolio-modal modal fade" id="davidespadini" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Davide Spadini</h3>
<h4>Improving cloud-related testing practices</h4>
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
My name is Davide Spadini and I am 26 years old. I am an Italian PhD student at the University of Technology of Delft and I am currently working as a researcher at SIG in Amsterdam. During my master at Trento and my bachelor in Verona, two beautiful cities in north Italy, I specialized on Distributed Systems and Algorithms. During my master thesis I collaborated with the Hive-Streaming company located in Stocholm, developing a peer-to-peer Peer Sampling Service (PSS). Now, with this project, I am working in the cloud field to understand what can be improved in terms of testing.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
<b>Mock or Not to Mock</b><br />In general software testers need to test classes that include a lot of dependencies. To not rely on these dependencies, which slow down the testing process, devs use mock objects. We want to present a qualitative and quantitave study that investigate how mocks are currently used in open-source projects. We analyze how the usage of mocking frameworks affect test quality and conduct qualitative research to understand why/what/when developers use mocks.<br /><br />
<b>Qualitative study on "Collaborative Testing" </b><br />
With this research I want to investigate what can be improved in terms of testing in the cloud, especially taking in consideration the aspect of collaboration. I am doing a qualitative research study interviewing developers from various companies, asking how they test in the cloud and which tool they use to collaborate withing their team.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications/Events</h4>
- Testdag: introduction on "collaborative testing"<br />
- BENEVOL: "Studying the co-evolution of production and testing code in open-source projects that use Mockito"
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Data driven development software in cloud-related software development projects - Luca Pascarella -->
<div class="portfolio-modal modal fade" id="lucapascarella" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Luca Pascarella</h3>
<h4>Data driven development software in cloud-related software development projects</h4>
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
Luca Pascarella is a PhD candidate of the European SENECA project. He started his PhD at University Delft University of Technology (TU Delft) in The Netherlands in January 2016. The main focus of his research is how data can help the development of software, especially in the cloud.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
Researchers are investigating a large number of approaches to support quality of software products. One of the latest deep improvements comes with the practice of Modern Code Review. It is systematic examination aimed to discover mistakes, improve the overall quality of software, and enhance transfer knowledge. Although code review has been proven to be useful in its base nature, some improvements may be applied to enhance the quality of the software and obtain better benefits from that process. In this track, we tackle aspects of the code review and connected topics to improve this process.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications</h4>
<ul>
<li><h6>Classifying code comments in Java open-source software systems</h6>
Luca Pascarella and Alberto Bacchelli<br/>
In Proceedings of MSR 2017 (14th International Conference on Mining Software Repositories), 2017 ACM SIGSOFT Distinguished Paper Award
</li>
<li><h6>Investigating Type Declaration Mismatches in Python</h6>
Luca Pascarella, Achyudh Ram, Azqa Nadeem, Dinesh Bisesser, Norman Knyazev, and Alberto Bacchelli<br/>
In Proceedings of MaLTeSQuE 2018 (Workshop on Machine Learning Techniques for Software Quality Evaluation), 2018
</li>
<li><h6>Re-evaluating Method-Level Bug Prediction</h6>
Luca Pascarella, Fabio Palomba, and Alberto Bacchelli<br/>
In Proceedings of SANER 2018 (25th International Conference on Software Analysis, Evolution and Reengineering), 2018
</li>
<li><h6>Self-Reported Activities of Android Developers</h6>
Luca Pascarella, Franz-Xaver Geiger, Fabio Palomba, Dario Di Nucci, Ivano Malavolta, and Alberto Bacchelli<br/>
In Proceedings of MOBILESoft 2018 (5th IEEE/ACM International Conference on Mobile Software Engineering and Systems), May 27-28 2018 | Gothenburg, Sweden
</li>
<li><h6>A Graph-based Dataset of Commit History of Real-World Android apps</h6>
Franz-Xaver Geiger, Ivano Malavolta, Luca Pascarella, Fabio Palomba, Dario Di Nucci, and Alberto Bacchelli<br/>
In Proceedings of MSR 2018 (15th International Conference on Mining Software Repositories), May 27-28 2018 | Gothenburg, Sweden
</li>
<li><h6>How Is Video Game Development Different from Software Development in Open Source?</h6>
Luca Pascarella, Fabio Palomba, Massimiliano Di Penta, and Alberto Bacchelli<br/>
In Proceedings of MSR 2018 (15th International Conference on Mining Software Repositories), May 27-28 2018 | Gothenburg, Sweden
</li>
<li><h6>Classifying code comments in Java Mobile Applications</h6>
Luca Pascarella<br/>
In Proceedings of MOBILESoft 2018 (5th IEEE/ACM International Conference on Mobile Software Engineering and Systems). Student Research Competition, May 27-28 2018 | Gothenburg, Sweden
</li>
</ul>
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Bad process smells in software development repositories -->
<div class="portfolio-modal modal fade" id="notassigned" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Not Assigned</h3>
<h4>Bad process smells in software development repositories</h4>
TBD
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
TBD
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
TBD
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications</h4>
TBD
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Quality assurance of software-defined cloud infrastructure - -->
<div class="portfolio-modal modal fade" id="notassigned" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Not assigned</h3>
<h4>Quality assurance of software-defined cloud infrastructure</h4>
TBD
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
TBD
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
TBD
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications</h4>
TBD
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Quality assurance of software-defined cloud infrastructure - Ahmed Zerouali -->
<div class="portfolio-modal modal fade" id="ahmedzerouali" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Ahmed Zerouali</h3>
<h4>Quality assurance of software-defined cloud infrastructuret</h4>
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
Ahmed Zerouali is currently working within the European SENECA project as a Software Researcher at <a href="https://bitergia.com">Bitergia</a>. He is a PhD candidate at the University of Mons/Universidad Rey Juan Carlos.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
Software development practices have evolved quite a lot since the early days of
programming. Most software projects today, especially in the open source software
community, are using distributed and agile development practices. In addition, heavily
rely on reusing external software libraries to realise part of their functionality,
rather than needing to implement these functionalities themselves. The goal of this
research is to empirically study how software library are used in open source projects,
and to recommend improvements in such library usage by providing automated tools
to support developers of software projects and software libraries.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications</h4>
<ul>
<li> SATToSE2017: Zerouali, A. Analysis And Observations Of The Evolution Of Testing Library Usage. </li>
<li>Zerouali, A., and Mens, T. (2017, February). Analyzing the evolution of testing library usage in open source Java projects. In Software Analysis, Evolution and Reengineering (SANER), 2017 IEEE 24th International Conference on (pp. 417-421). IEEE.</li>
<li>Zerouali, A., and Mens, T. (2017, July). An empirical comparison of the development history of cloudstack and eucalyptus. In Proceedings of the 2017 International Conference on Smart Digital Environment (pp. 116-121). ACM.</li>
</ul>
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Characterization of performance in key parameters of software development - Dorealda Dalipaj -->
<div class="portfolio-modal modal fade" id="dorealdadalipaj" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Dorealda Dalipaj</h3>
<h4>Characterization of performance in key parameters of software development</h4>
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
Dorealda Dalipaj is a Researcher and PHD candidate, working within the European SENECA project, at Universidad Rey Juan Carlos, Madrid. For more than 8 years she has been working for ICT companies designing and managing infrastructure projects and ICT solutions, both in Italy and Albania. Her latest position was Lecturer in a private university of Albania, where she collaborated with a NGO ICT institution as Board Member. Her expertise concerns Aplication Development/Support and Technology Planning/Management. Various carried out projects included CMS, LMS and LCMS Systems.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
When looking at the performance in software development, several parameters are of relevance like effort in development and maintenance, effort in code review, time in fixing errors, time to design and implement new specifications, etc. In the case of a cloud software, where continuous deployment and continuous development are common, time-to-deployment is usually a very important metric. It involves changes to the source code that fix bugs or implement new features. In this research line, we are interested in exploring those metrics, and what impacts them, with the scope of to raising specific indicators that characterize performance in these processes. The reasons that guided the choice is that software product line development is still a time and effort consuming activity, partly due to the complicated mapping between model and implementation.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications</h4>
<ul>
<li> Dorealda Dalipaj, Jesus M. Gonzalez-Barahona, Daniel Izquierdo-Cortazar. Software engineering artifact in software development process – linkage between issues and code review processes. In the Proceedings of the 15th International Conference on Intelligent Software Methodologies, Tools and Techniques (SOMET), 2016. Volume 286 of the series Frontiers in Artificial Intelligence and Applications, pp 115-122. </li>
<li> Dorealda Dalipaj. A Quantitative Analysis of Performance in the Key Parameter in Code Review – Individuation of Defects. In the Proceedings of the Doctoral Consortium at the 12th International Conference on Open Source Systems (OSS), 2016. In the series Skövde University Studies in Informatics, ISSN ISSN 1653-2325 ; 2016:1, pp 14-24. </li>
<li> Gema Rodriguez-Perez , Jesus M. Gonzalez-Barahona, Gregorio Robles, Dorealda Dalipaj, Nelson Sekitoleko. BugTracking: A Tool to Assist in the Identification of Bug Reports. In the Proceedings of the 12th International Conference on Open Source Systems - Integrating Communities. Volume 472 of the series IFIP Advances in Information and Communication Technology, pp 192-198. </li>
</ul>
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Configuration management and administration of cloud computing systems - Tushar Sharma -->
<div class="portfolio-modal modal fade" id="tusharsharma" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Tushar Sharma</h3>
<h4>Configuration management and administration of cloud computing systems</h4>
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
Tushar Sharma is currently a researcher and PhD candidate, within the SENECA project, at Athens University of Economics and Business, Athens, Greece. Earlier, he worked with Siemens Research and Technology Center, Bangalore, India for more than 7 years. The topics related to software design, refactoring, code and design quality, technical debt, change impact analysis, and infrastructure as code (IaC) define his career interests. He has co-authored three books including "Refactoring for Software Design Smells: Managing Technical Debt". He is an IEEE senior member.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Current Research </h4>
An increasing number of artifacts are now being produced in digital form. Apart from software code, examples include books, ledgers, microchips, 3D printed objects, and films. The quality of an artifact's digital representation can affect both its external quality and the efficiency of associated processes, especially if it is frequently used, reused, or edited. Towards this goal, the fellow is exploring diverse alternatives to propose an internal quality assessment models. Developing a quality model for diverse digital artifacts presents a unique challenge as the model must be applicable to heterogeneous domains yet must handle the intricate domain details affecting the quality of the artifact. Initial exploration has revealed a few alternatives; specifically, quality analysis approach based on cognition, the theory of "order", and statistical inference. The fellow plans to carry out a deep dive comparative study into each of the alternative approaches. Based on the results of the comparison, the fellow plans to focus on one approach, implement corresponding tool support, and perform a detailed evaluation.
</div>
<div class="col-sm-4 portfolio-item">
<h4>Publications</h4>
<ul>
<li>Tushar Sharma, Marios Fragkoulis, and Diomidis Spinellis. Does your configuration code smell?. In Proceedings of the 13th International Workshop on Mining Software Repositories (MSR '16). ACM, New York, NY, USA, 189-200. DOI=http://dx.doi.org/10.1145/2901739.2901761</li></ul>
</div>
</div>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Energy-efficiency of cloud computing systems - Stefanos Georgiou -->
<div class="portfolio-modal modal fade" id="stefanosgeorgiou" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-body">
<h3>Stefanos Georgiou</h3>
<h4>Energy-efficiency of cloud computing systems</h4>
<hr>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h4>Bio</h4>
Stefanos Georgiou is a PhD Candidate in SENECA (Software ENineering in Enterprise Cloud Applications) project.
In the context of his European Industrial Doctorate (EID) he is expected to conduct his research at
AUEB (Athens University of Economics and Business) and TU Deflt (Delft University) as academic partners
and with SLG (Singular Logic) as industrial partner.
He holds a BSc in Networks and Systems Programming from University of Cyprus and a MSc in PERCCOM
(PERvasive Computing and COMmunications for sustainable development), a joint Master Degree from four
different Universities (i.e., University of Lorraine, Lappeenranta University of Technology, Lulea University of Technology,
and ITMO University of Saint Petersburg).
His research interests lie at Green IT, Cloud Computing, Distributed Applications,Big Data Transfer,
and IoT (Internet of Things)
</div>