-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1019 lines (746 loc) · 40.6 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>
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Nick Louloudakis</title>
<meta name="description"
content="The personal website of Dr. Nick Louloudakis, AI Testing Researcher at University of Edinburgh.">
<meta name="author" content="Nick Louloudakis">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/media-queries.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png">
<script>
gen_mail_to_link = function (lhs, rhs, subject) {
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "?subject=" + subject + "\">" + lhs + "@" + rhs + "<\/a>");
}
</script>
</head>
<body>
<!-- Header
================================================== -->
<header id="home">
<div class="grey-layer">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>
<ul id="nav" class="nav main-menu">
<li class="current"><a class="smoothscroll" href="#home">Home</a></li>
<li><a class="smoothscroll" href="#about">About</a></li>
<li><a class="smoothscroll" href="#experience">Experience</a></li>
<li><a class="smoothscroll" href="#education">Education</a></li>
<li><a class="smoothscroll" href="#teaching">Teaching</a></li>
<li><a class="smoothscroll" href="#publications">Publications</a></li>
<li><a class="smoothscroll" href="#awards">Awards</a></li>
<!--li><a class="smoothscroll" href="#portfolio">Portfolio</a></li-->
<li><a class="smoothscroll" href="#contact">Contact</a></li>
</ul> <!-- end #nav -->
</nav> <!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text typewriter">
<h1 class="responsive-headline">Nick Louloudakis</h1>
<div class="description">
<h3>AI Testing Researcher @ University of Edinburgh<br/>
Ph.D., M.Sc., and B.Sc. in Computer Science<br/>
Previously at Oracle, Workable & Accenture<br/>
Enthusiastic Drummer, Avid Traveller & Coffee Aficionado
<hr />
</div>
<ul class="social">
<li><a href="https://www.linkedin.com/in/luludak/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com/nikos.loul/" target="_blank"><i class="fa fa-facebook"></i></a></li>
<!-- <li><a href="https://www.instagram.com/nick__lou/" target="_blank"><i class="fa fa-instagram"></i></a></li> -->
</ul>
</div>
</div>
<p class="scrolldown">
<a class="smoothscroll" href="#about"><i class="icon-down-circle"></i></a>
</p>
</div>
</header> <!-- Header End -->
<!-- About Section
================================================== -->
<section id="about">
<div class="row">
<div class="three columns">
<img class="profile-pic" src="images/profilepic.jpg" alt="" />
</div>
<div class="nine columns main-col">
<h2>About Me</h2>
<p>
My name is Nikos (Nick) and I am an AI Testing Researcher at University of Edinburgh.<br/>
Recently, I obtained my Ph.D. in Informatics from the University of Edinburgh.
Previously, I was employed at Oracle Labs, Workable, Accenture and the Institute of
Computer Science - FORTH, actively working on numerous projects, using state-of-the-art technologies
and principles, both as a researcher and a software engineer.
I have also served as lead technical coordinator at Carbon Glance, a startup building a SaaS related to carbon regulations.<br/>
Regarding my studies, I completed my Master's studies with distinction at the Computer Science Department of
the University of Crete, focused on the fields of Human-Computer Interaction and Multimedia Technologies.
I would like to say that studying Computer Science and working in this fascinating field is a dream fulfilled
for me and that I am happy to constantly learn more and work with enthusiasm and passion, in order to produce
excellent results.
</p>
<div class="row">
<div class="columns download">
<p>
<!-- <a href="" target="_blank" class="button"><i class="fa fa-download"></i>Download Short Resume</a> -->
</p>
</div>
</div> <!-- end row -->
</div> <!-- end .main-col -->
</div>
</section> <!-- About Section End-->
<!-- Experience Section
================================================== -->
<section id="experience" class="resume">
<!-- Work
----------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Experience</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>University of Edinburgh</h3>
<p class="info">AI Testing Researcher<span>•</span> <em class="date">October 2024 - Present</em></p>
<p>Conducting research related to software testing of AI and AI/ML compilers.</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Oracle Labs</h3>
<p class="info">Research Associate/Intern<span>•</span> <em class="date">May 2024 - August 2024</em></p>
<p>Conducting research as a PhD Research Intern at Oracle Labs. Worked on a useful feature of Sandwood compiler. More on this soon...</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Carbon Glance</h3>
<p class="info">Co-Founder<span>•</span> <em class="date">May 2024 - Present</em></p>
<p class="info">Co-Founder & Lead Technical Coordinator<span>•</span> <em class="date">January 2022 - May 2024</em></p>
<p>
Coordinated the design and development of the first two iterations of the Carbon Glance product, as well as provided strategic insights, guidance and consulting to the company.<br/>
As a result, Carbon Glance established a strong development team, capable of delivering successfully towards product development, while the company transitioned from concept to incorporation and clientele growth.<br/>
Key Responsibilities:
<ul>
<li><span>• </span> Established and coordinated a team of talented and strong developers - including two capable technical leaders.</li>
<li><span>• </span> Participated in important decisions and provided insights and guidance related to the product design and development.</li>
<li><span>• </span> Actively attended important events, meetings, potential lead calls and interviews related to the company growth, networking, and collaborations, acting both as company tech representative and co-founder.</li>
</ul>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>The University of Edinburgh</h3>
<p class="info">Doctoral Student & Researcher<span>•</span> <em class="date">January 2021 - November 2024</em></p>
<p>
Obtained a Doctorate in Computer Science (Informatics), with focus on differential testing, fault localization, and repair of perception AI.
My PhD advisors are Prof. Dr. Ajitha Rajan (University of Edinburgh) and Prof. Dr. José Cano Reyes (University of Glasgow).<br/>
I have also served as TA, demonstrator and tutor for the 3rd year undergraduate course "Software Testing", for 3 consecutive years.<br/>
In addition, I led InfMasters, an initiative to engage M.Sc. students with professional topics outside of the university curriculum, and I
supervised 4 M.Sc. Students in their primary projects.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Workable</h3>
<p class="info">Software Engineer<span>•</span> <em class="date">September 2018 - April 2021</em></p>
<p>
Worked as a full-stack Software Engineer (focus on back-end development), using a variety of
technologies and cutting-edge frameworks. Languages used: JavaScript, PHP, Ruby.
My work included, but was not limited to active participation on the development of the custom, brand new <a class="pub"
href="https://www.workable.com" target="_blank">Workable</a> and <a class="pub"
href="https://resources.workable.com" target="_blank">Resources</a> websites,
the implementation of a comprehensive testing suite framework for the marketing assets of the company, enabling CI/CD,
the design and implementation of a custom AMP framework compartible with NextJS/ReactJS for the marketing site of Workable,
the refinement and orchestration the analytics integration mechanism for various marketing-related assets,
and the design and development from scratch of a comprehensive component responsible for the integration with a third-party
search service and the display of real-time results, considering term error-proneness and proper data
manipulation.<br />
It is also worth noting that my work duties involved extensive communication and collaboration of people from different departments and teams,
consisting of professionals with diverse skills and backgrounds, both at technical and non-technical level.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Accenture</h3>
<p class="info">Software Engineer<span>•</span> <em class="date">March 2018 - August 2018</em></p>
<p>
Worked on CMT industry, focused on the area of systems integration, using well-known Oracle technologies.
Additionally, I worked on custom process automation solutions that assisted into productivity increase of my
team.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>PeopleCert Education</h3>
<p class="info">Coding Bootcamp Educator (Contract)<span>•</span> <em class="date">January 2018 - June
2018</em></p>
<p>
Served as an Educator of PeopleCert Education (Previously AFDEmp) 6-month period Coding Bootcamp 4, teaching programming technologies and
principles to new developers of age 20 - 50, mainly coming from totally different professions. My area of
specialization was Front-end development and .NET technologies. I am happy that a very, very large
percentage of my students were employed to well-renown companies (official numbers show that Bootcamp
students employability reaches 95%).
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Hellenic Army</h3>
<p class="info">Software Developer - Analyst<span>•</span> <em class="date">June 2017 - January
2018</em></p>
<p>
Actively contributed on the development of two Content Management Systems, using .NET technologies (C#,
Entity Framework, ASP.NET Razor), SQL and Angular 2.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>ICS - FORTH</h3>
<p class="info">Software Engineer, Graduate Research Associate<span>•</span> <em class="date">June 2014
- May 2017</em></p>
<p>
Worked as a Software Engineer in the Human-Computer Interaction Laboratory, making research and
development on state-of-the-art educational and IOT-enabled smart environments, with a focus on their
programmability and testing.
Technologies used: C#, MEAN Stack (MongoDB, ExpressJS, AngularJS, NodeJS), Entity Framework, WPF, OpenAPI
Swagger Specification, Mocha, Chai, HandlebarsJS, CodeMirror, Tern Code Autocompletion Engine and more.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>JoinWeb</h3>
<p class="info">Web Development Intern<span>•</span> <em class="date">November 2013 - February
2014</em></p>
<p>
Worked as a web development intern in JoinWeb. Worked on five great web projects, using server and client
side web technologies such as PHP, HTML5, CSS3, JavaScript and more, along with well-known Content
Management System and responsive design APIs and Frameworks, following user friendly and responsive design
principles.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>ICS - FORTH</h3>
<p class="info">Undergraduate Research Assistant<span>•</span> <em class="date">June 2013 - February
2014</em></p>
<p>
Implemented User Interface and Transceiver Locating system components for an emergency communications
system. Technologies used: Java, Swing API.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>University of Crete</h3>
<p class="info">Web Development Intern<span>•</span> <em class="date">January 2013 - August 2013</em>
</p>
<p>
Implemented the mobile web application of the University of Crete, including both its front-end and
back-end management system that integrates a smart mechanism of content management and presentation.
Technologies used: PHP, JavaScript, HTML, CSS, JSON, REST APIs.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>StackOverflow</h3>
<p class="info">Established Community Member<span>•</span> <em class="date">September 2013 - October 2023</em></p>
<p>
Volunteered for 10 years as established community member of Stack Overflow, the biggest Q&A community Stack Exchange site for programmers,
with an estimated impact of over 3.4 Million people reached and a reputation of over 5800, consistently ranking at the top 7% of the platform.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>[Volunteer] Association for the Advancement of Artificial Intelligence</h3>
<p class="info">Program Committee Member (Reviewer) - Special Track on Safe, Robust and Responsible AI<span>•</span> <em class="date">August 2023 - Present</em></p>
<p>
Serving as reviewer for the Special Track on Safe, Robust and Responsible AI of AAAI 2024, the flagship conference in AI.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>[Volunteer] KDE</h3>
<p class="info">Junior Contributor<span>•</span> <em class="date">July 2012 - September
2012</em></p>
<p>
Fixed some minor bugs for Telepathy, an Instant Messaging Suite for KDE, version 0.5.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Work -->
</section>
<!-- Education Section
================================================== -->
<section id="education" class="resume">
<div class="row">
<div class="three columns header-col">
<h1><span>Education</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>The University of Edinburgh</h3>
<p class="info">Ph.D., Computer Science, Software Testing and Verification<span>•</span><em class="date">2021 - Present</em></p>
<p>
Doctor of Philosophy studies in Computer Science, with focus on automated software testing and verification, utilizing software analysis and synthesis.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>University of Crete</h3>
<p class="info">M.Sc., Computer Science, Information Systems & Human-Computer Interaction<span>•</span>
9.13/10, "Excellent"<span>•</span> <em class="date">2014 - 2016</em></p>
<p>
Master's Studies on Computer Science, on the fields of Information Systems & Human-Computer Interaction
and Multimedia Technology.
The Master's Studies program of the University of Crete is provided in collaboration with the ICS - FORTH
Research Foundation.
Thesis Title: <a class="pub"
href="https://www.thinkmind.org/index.php?view=article&articleid=elml_2016_5_20_50124"
target="_blank">"AmITest: a framework for semi-automated testing of Ambient Intelligence
environments."</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>University of Crete</h3>
<p class="info">B.Sc., Computer Science, Software & Web Engineering<span>•</span> 7.49/10 (top 3% of
2008 class)<span>•</span> <em class="date">2008 - 2013</em></p>
<p>
Bachelor University Studies on Computer Science, focused mainly on the fields of Software and Web
Engineering.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>TAROT 2023 Summer School on Software Testing, Verification & Validation, London</h3>
<p class="info">Certificate of Completion<span>•</span>Software Testing<span>•</span><em class="date">2023</em></p>
<p>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Programming Language Implementation Summer School 2022</h3>
<p class="info">Certificate of Completion<span>•</span>Programming Languages<span>•</span><em class="date">2022</em></p>
<p>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Advanced Summer School on Service Oriented Computing</h3>
<p class="info">Certificate of Completion<span>•</span> Service Oriented
Computing<span>•</span> 10/10<span>•</span> <em class="date">2014</em></p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Education -->
</section>
<div></div>
<!-- Teaching
----------------------------------------------- -->
<section id="teaching" class="resume">
<div class="row">
<div class="three columns header-col">
<h1><span>Teaching</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>The University of Edinburgh</h3>
<p class="info">Teaching Assistant<span>•</span> <em class="date">February 2022 - January 2024</em></p>
<p class="info">Tutor<span>•</span> <em class="date">February 2021 - May 2021</em></p>
<p>
Employed as Teaching Assistant for the 3rd-year undergraduate course <b>"Software Testing"</b>. <br/>
My responsibilities include lecture delivery, coursework preparation, marking, tutoring and student questions addressing.
Until now, I have designed and implemented 2 coursework projects, and I have answered more than 250 questions.
Each semester, the course is registered from ~150 students, with high attendance remaining until its completion.
</p>
</div>
<div class="twelve columns">
<h3>PeopleCert Education</h3>
<p class="info">Instructor<span>•</span> <em class="date">January 2018 - June 2018</em></p>
<p>
Instructed courses related with Web Develoment and SQL.<br/>
My responsibilities required in-person and online teaching, assignments guidance and insights provision.
</p>
</div>
<div class="twelve columns">
<h3>University of Crete</h3>
<p class="info">Teaching Assistant<span>•</span> <em class="date">June 2014 - April 2017</em></p>
<p>
Tutored in a wide range of courses, including:
<b>
<ul>
<li><span>• </span>Advanced Concepts in Human-Computer Interaction <i>(Postgraduate)</i></li>
<li><span>• </span>Human-Computer Interaction <i>(4th Year Undergraduate)</i></li>
<li><span>• </span>Web Development <i>(3rd Year Undergraduate)</i></li>
<li><span>• </span>Computer Networks <i>(3rd Year Undergraduate)</i></li>
</ul>
</b>
My responsibilities included lecturing, assignments and marks planning, preparation, guidance and examination.<br/>
In addition I supervised laboratory utilization.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Teaching -->
</section>
<div></div>
<!-- Skills
----------------------------------------------- -->
<div class="resume">
<div class="row skill">
<div class="three columns header-col">
<h1><span>Skills</span></h1>
</div>
<div class="nine columns main-col">
<h4>In a few words:</h4>
<p>
Commercial and research experience with a large diversity of technologies such as JavaScript-related stacks, libraries and frameworks, including well-known testing frameworks in combination with Jenkins.
I have also worked with a range of technologies in the .NET framework ecosystem, but also with some Content Management Systems.
I am also proficient on SQL for relational DBMS.
My University and research experience includes Java, C++ and Python, utiliving various code analysis frameworks, such as LLVM/CLANG and SOOT.
</p>
<h4>Technologies worked with (non-exhaustive list):</h4>
<p>SOOT, LLVM/CLANG, C/C++, Python, JavaScript, Ruby, C#, Java, SQL, Ruby on Rails, MongoDB, Express, Angular, Node, React, NextJS, Jenkins, Mocha, Chai, Jest, Puppeteer, .NET Entity
Framework, .NET WPF, ASP.NET, .NET Razor, WordPress, Joomla, HTML, CSS, XQuery, XPath, AMP, Google Tag Manager</p>
</div> <!-- main-col end -->
</div> <!-- End skills -->
</div>
<section id="awards">
<div class="resume">
<div class="row work">
<div class="three columns header-col">
<h1><span>Awards</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h4>Doctoral Sponsorship</h4>
<p class="info">Scottish Informatics & Computer Science Alliance<span>•</span> <em class="date">August 2023</em></p>
</div>
</div>
<div class="row item">
<div class="twelve columns">
<h4>Three-Year Doctoral Scholarship</h4>
<p class="info">University of Edinburgh<span>•</span> <em class="date">January 2021</em></p>
</div>
</div>
<div class="row item">
<div class="twelve columns">
<h4>Security Champion Award</h4>
<p class="info">Workable<span>•</span> <em class="date">December 2020</em></p>
</div>
</div>
</div>
</div>
</section>
<section id="publications">
<div class="resume">
<!-- Work
----------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Publications</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h4><a class="pub" href="https://conf.researchr.org/details/icsme-2023/icsme-2023-industry-track/2/DeltaNN-Assessing-the-Impact-of-Computational-Environment-Parameters-on-the-Performa"
target="_blank">DeltaNN: Assessing the Impact of Computational Environment Parameters on the Performance of Image Recognition Models</a></h4>
<b>N. Louloudakis</b>, P. Gibson, J. Cano, A. Rajan
<p class="info">IEEE ICSME, Industry Track<span>•</span> <em class="date">October 2023</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="https://conf.researchr.org/details/ase-2023/ase-2023-nier-track/18/Fault-Localization-for-Buggy-Deep-Learning-Framework-Conversions-in-Image-Recognition"
target="_blank">Fault Localization for Buggy Deep Learning Framework Conversions in Image Recognition</a></h4>
<b>N. Louloudakis</b>, P. Gibson, J. Cano, A. Rajan
<p class="info">IEEE/ACM ASE, NIER Track<span>•</span> <em class="date">September 2023</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="https://openreview.net/forum?id=-7DjNGvdpx"
target="_blank">Assessing Robustness of Image Recognition Models to Changes in the Computational Environment</a></h4>
<b>N. Louloudakis</b>, P. Gibson, J. Cano, A. Rajan
<p class="info">NeurIPS ML Safety Workshop<span>•</span> <em class="date">December 2022</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="https://arxiv.org/abs/2211.00471"
target="_blank">Exploring Effects of Computational Parameter Changes to Image Recognition Systems</a></h4>
<b>N. Louloudakis</b>, P. Gibson, J. Cano, A. Rajan
<p class="info">ArXiv<span>•</span> <em class="date">November 2022</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="http://www.forth.gr/11th-forth-retreat/posters-ics.html#CollapsiblePanel14"
target="_blank">AmI Solertis: a Web-IDE for Defining the Behaviour of Smart Environments</a></h4>
A. Leonidis, D. Arampatzis, <b>N. Louloudakis</b>, Nikolaos Anifantis, Achilleas Tsiolkas, C. Stephanidis
<p class="info">FORTH-ICS<span>•</span> <em class="date">October 2017</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub"
href="https://www.researchgate.net/publication/319208150_The_AmI-Solertis_System_Creating_User_Experiences_in_Smart_Environments"
target="_blank">The AmI-Solertis System: Creating User Experiences in Smart Environments</a></h4>
A. Leonidis, D. Arampatzis, <b>N. Louloudakis</b>, C. Stephanidis
<p class="info">IEEE WiMob PerCAM 2017<span>•</span> <em class="date">October 2017</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="https://library.iated.org/view/POUTOURIS2017CON" target="_blank">ConstrAct. An
Educator-Oriented Design Studio For Ubiquitous Educational Games</a></h4>
E. Poutouris, M. Korozi, A. Leonidis, <b>N. Louloudakis</b>, C. Stephanidis
<p class="info">EDULEARN17<span>•</span> <em class="date">August 2017</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="https://elocus.lib.uoc.gr/dlib/e/f/b/metadata-dlib-1499846119-176002-29371.tkl"
target="_blank">AmITest: a framework for semi-automated testing of Ambient Intelligence
environments</a></h4>
<b>N. Louloudakis (M.Sc. Thesis)</b>
<p class="info">University of Crete<span>•</span> <em class="date">April 2017</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="https://www.thinkmind.org/index.php?view=article&articleid=elml_2016_5_20_50124"
target="_blank">AmITest: A Testing Framework for Ambient Intelligence Learning Applications</a><a
href="https://www.ics.forth.gr/hci/files/elml2016_a3.pdf" target="_blank"><img class="best-paper"
src="images/award.png" title="Best Paper Award"></img></a></h4>
<b>N. Louloudakis</b>, A. Leonidis, C. Stephanidis
<p class="info">eLmL 2016, The Eighth International Conference on Mobile, Hybrid, and On-line
Learning<span>•</span> <em class="date">April 2016</em></p>
</div>
<div class="twelve columns">
<h4><a class="pub" href="http://ieeexplore.ieee.org/document/7022676/?reload=true"
target="_blank">NaviSoc: A Socially Enhanced Real-time Navigator</a></h4>
<b>N. Louloudakis</b>, V. Theodosiadis, H. Kondylakis, K. Stephanidis
<p class="info"> BASNA @IEEE International Conference on Data Mining (ICDM)<span>•</span> <em
class="date">December 2014</em></p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Work -->
</div>
</section>
<!-- Resume Section End-->
<!-- Portfolio Section
================================================== -->
<section id="portfolio" style="display:none">
<div class="row">
<div class="twelve columns collapsed">
<h1>Check Out Some of My Works.</h1>
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-01" title="">
<img alt="" src="images/portfolio/amitest.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>AmiTest</h5>
<p>A Testing Framework for Ambient Intelligence Learning Applications</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-02" title="">
<img alt="" src="images/portfolio/games.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>The Money Game</h5>
<p>Educational Game System</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end-->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-03" title="">
<img alt="" src="images/portfolio/databases.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Data Storage Framework</h5>
<p>Educational Games Data Storage Framework</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div>
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-04" title="">
<img alt="" src="images/portfolio/uoc.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Mobile Web App</h5>
<p>University of Crete Mobile Web App</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
</div> <!-- portfolio-wrapper end -->
</div> <!-- twelve columns end -->
<!-- Modal Popup -->
<div id="modal-01" class="popup-modal mfp-hide portfolio">
<img class="scale-with-grid" src="images/portfolio/amitest.png" alt="" />
<div class="description-box">
<h4>AmITest: A Testing Framework for Ambient Intelligence Learning Applications</h4>
<p>Designed and developed and evaluated a comprehensive framework for applying extensive testing and smart
simulation on Ambient Intelligence smart environments.Technologies used: JavaScript, HTML5, CSS3, the MEAN
Stack (MongoDB, ExpressJS AngularJS, NodeJS) along with a plethora of APIs and libraries (Swagger, EdgeJS,
HandlebarsJS, TernJS and more).
<br />
<br />
This project is a part of the AmI programme of the HCI laboratory of ICS-FORTH.
<br />
<span class="categories"><i class="fa fa-tag"></i>Development, Testing, Smart Environments</span>
</div>
<div class="link-box">
<a href="https://www.thinkmind.org/index.php?view=article&articleid=elml_2016_5_20_50124" target="_blank">More
Info</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-02" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/games.png" alt="" />
<div class="description-box">
<h4>The Money Game</h4>
<p>Participated on the design, implemented and performed experts evaluation on a comprehensive commercial
educational system of mini games for money transactions and usage learning for children of a small age.
Technologies used: C#, WPF, Database APIs and Middleware Technologies.</p>
<br />
This project is a part of the AmI programme of the HCI laboratory of ICS-FORTH.
<br />
<span class="categories"><i class="fa fa-tag"></i>Education, Games</span>
</div>
<div class="link-box">
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-02 End -->
<div id="modal-03" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/databases.jpg" alt="" />
<div class="description-box">
<h4>Educational Games Data Storage Framework</h4>
<p>Designed, implemented and fully supported a Storage CRUD Framework for Three Mid-Sized Educational Games,
using SQL Express using C#, Entity Framework, SQL and Middleware Technologies.</p>
<br />
This project is a part of the AmI programme of the HCI laboratory of ICS-FORTH.
<br />
<span class="categories"><i class="fa fa-tag"></i>Database, Frameworks</span>
</div>
<div class="link-box">
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-03 End -->
<div id="modal-04" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/uoc.png" alt="" />
<div class="description-box">
<h4>University of Crete Mobile Web App</h4>
<p>Created a Dynamic Mobile Web Application for the University of Crete along with its control panel using
PHP, SQL,DOM, the MVC architecture pattern, XHTML (Validated using W3C validator), JavaScript, CSS and
Mobile Application Design principles along with web services use.</p>
<span class="categories"><i class="fa fa-tag"></i>Mobile, Web</span>
</div>
<div class="link-box">
<a href="http://mobile.mmlab.uoc.gr" target="_blank">Visit Site</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-04 End -->
</div> <!-- row End -->
</section> <!-- Portfolio Section End-->
<!-- Contact Section
================================================== -->
<section id="contact">
<div class="row section-head">
<div class="two columns header-col">
<h1><span>Get In Touch.</span></h1>
</div>
<div class="ten columns">
<div class="columns contact-details">
<div class="big-address">
Nick Louloudakis <span> • </span>
Edinburgh, Scotland<br /><br />
<p>
<script>gen_mail_to_link('nikolaos.louloudakis', 'gmail.com', 'Hello Mr. Louloudakis');</script>
</p>
</div><br />
</div>
</div>
</div>
</div>
<div class="row">
<aside class="one column footer-widgets">
</aside>
</div>
</section> <!-- Contact Section End-->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="twelve columns">
<ul class="social-links">
<li><a href="https://www.linkedin.com/in/luludak/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com/nikos.loul/" target="_blank"><i class="fa fa-facebook"></i></a></li>
<!-- <li><a href="https://www.instagram.com/nick__lou/" target="_blank"><i class="fa fa-instagram"></i></a></li> -->
</ul>
<ul class="copyright">
<li>© Copyright 2021 Nick Louloudakis</li>
<li>Based on template by <a title="Styleshout" href="http://www.styleshout.com/">Styleshout</a></li>
</ul>
</div>
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#home"><i class="icon-up-open"></i></a></div>