-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1711 lines (1502 loc) · 91.1 KB
/
index.html
File metadata and controls
1711 lines (1502 loc) · 91.1 KB
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Georgios Koukis - PhD Researcher</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.css" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--bg-color: white;
--text-color: #333;
--header-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--section-bg: #f8f9ff;
--border-color: #e0e4ff;
--primary-color: #667eea;
--secondary-color: #764ba2;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background: var(--bg-gradient);
min-height: 100vh;
padding: 20px;
padding-left: 270px;
transition: padding-left 0.3s ease, background 0.3s ease, color 0.3s ease;
}
body.dark-mode {
--bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
--bg-color: #0f1419;
--text-color: #e4e4e7;
--header-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
--section-bg: #1a1f2e;
--border-color: #2a2f3e;
--primary-color: #818cf8;
--secondary-color: #a78bfa;
}
body.sidebar-collapsed {
padding-left: 20px;
}
/* Dark mode toggle */
.dark-mode-toggle {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
background: var(--primary-color);
color: white;
border: none;
padding: 10px 15px;
border-radius: 25px;
cursor: pointer;
font-size: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
transition: transform 0.3s ease, background 0.3s ease;
}
.dark-mode-toggle:hover {
transform: scale(1.1);
background: var(--secondary-color);
}
/* Language toggle */
.lang-toggle {
position: fixed;
top: 20px;
right: 80px;
z-index: 1000;
background: var(--primary-color);
color: white;
border: none;
padding: 10px 15px;
border-radius: 25px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
transition: transform 0.3s ease, background 0.3s ease;
}
.lang-toggle:hover {
transform: scale(1.1);
background: var(--secondary-color);
}
/* Sidebar toggle */
.sidebar-toggle {
position: fixed;
top: 20px;
left: 260px;
z-index: 1001;
background: var(--primary-color);
color: white;
border: none;
width: 40px;
height: 40px;
border-radius: 8px;
cursor: pointer;
font-size: 18px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
transition: left 0.3s ease, transform 0.3s ease, background 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.sidebar-toggle:hover {
transform: scale(1.05);
background: var(--secondary-color);
}
.sidebar-toggle.collapsed {
left: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: var(--bg-color);
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden;
transition: background 0.3s ease;
}
/* Sidebar */
.sidebar {
width: 250px;
background: var(--section-bg);
padding: 30px 20px;
position: fixed;
top: 0;
left: 0;
height: 100vh;
overflow-y: auto;
border-right: 2px solid var(--border-color);
transition: transform 0.3s ease, background 0.3s ease;
z-index: 1000;
}
.sidebar.collapsed {
transform: translateX(-100%);
}
.sidebar h3 {
color: var(--primary-color);
font-size: 1.1em;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid var(--primary-color);
}
.sidebar nav ul {
list-style: none;
}
.sidebar nav ul li {
margin-bottom: 12px;
}
.sidebar nav ul li a {
color: var(--text-color);
text-decoration: none;
font-size: 0.95em;
transition: all 0.3s ease;
display: block;
padding: 5px 10px;
border-radius: 5px;
}
.sidebar nav ul li a:hover {
color: var(--primary-color);
background: rgba(102, 126, 234, 0.1);
padding-left: 15px;
}
.sidebar nav ul li a.active {
color: white;
background: var(--primary-color);
font-weight: 600;
}
.main-content {
flex: 1;
display: flex;
flex-direction: column;
}
.header {
background: var(--header-bg);
color: white;
padding: 60px 40px;
text-align: center;
}
.header h1 {
font-size: 2.5em;
margin-bottom: 10px;
font-weight: 700;
}
.header .title {
font-size: 1.2em;
opacity: 0.95;
margin-bottom: 10px;
}
.header .affiliation {
font-size: 0.95em;
opacity: 0.85;
margin-bottom: 25px;
}
.header-contact {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.3);
}
.contact-line {
font-size: 0.95em;
opacity: 0.9;
}
.header-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin-top: 20px;
}
.header-link {
color: white;
text-decoration: none;
padding: 8px 16px;
background: rgba(255,255,255,0.2);
border-radius: 20px;
font-size: 0.9em;
font-weight: 500;
transition: background 0.3s ease, transform 0.2s ease;
display: flex;
align-items: center;
gap: 8px;
}
.header-link:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
}
.header-link svg {
width: 18px;
height: 18px;
fill: white;
}
.content {
padding: 40px;
}
.section {
margin-bottom: 40px;
}
.section h2 {
color: var(--primary-color);
font-size: 1.8em;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 3px solid var(--primary-color);
}
.bio {
font-size: 1.05em;
line-height: 1.8;
color: var(--text-color);
text-align: justify;
}
.research-topics {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin-top: 20px;
}
.topic {
background: var(--section-bg);
padding: 15px;
border-radius: 10px;
border-left: 4px solid var(--primary-color);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topic:hover {
transform: translateX(5px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}
.publications {
list-style: none;
}
.publications li {
padding: 15px;
margin-bottom: 10px;
background: var(--section-bg);
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
transition: transform 0.2s ease;
}
.publications li:hover {
transform: translateX(5px);
}
.publications li a {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
}
.publications li a:hover {
text-decoration: underline;
}
.pub-venue {
color: var(--text-color);
opacity: 0.8;
font-size: 0.95em;
margin-top: 5px;
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 20px;
}
.skill-tag {
background: var(--primary-color);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.9em;
font-weight: 500;
}
.education-item, .experience-item, .teaching-item, .skill-item {
padding: 20px;
margin-bottom: 20px;
background: var(--section-bg);
border-radius: 10px;
border-left: 4px solid var(--primary-color);
}
.education-item h3, .experience-item h3, .teaching-item h3, .skill-item h3 {
color: var(--text-color);
font-size: 1.2em;
margin-bottom: 8px;
}
.institution {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 5px;
}
.period {
color: var(--text-color);
opacity: 0.7;
font-size: 0.9em;
margin-bottom: 8px;
font-style: italic;
}
.details, .description {
color: var(--text-color);
opacity: 0.9;
line-height: 1.6;
margin-top: 8px;
}
.membership-item p {
padding: 15px;
background: var(--section-bg);
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
}
.links-inline {
margin-top: 10px;
font-size: 0.95em;
}
.links-inline a {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.links-inline a:hover {
color: var(--secondary-color);
text-decoration: underline;
}
.metrics-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 20px;
}
.metric-card {
background: var(--section-bg);
padding: 25px;
border-radius: 12px;
border: 2px solid var(--border-color);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.metric-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}
.metric-value {
font-size: 2.5em;
font-weight: 700;
color: var(--primary-color);
margin: 10px 0;
}
.metric-label {
font-size: 1.1em;
color: var(--text-color);
opacity: 0.8;
margin-bottom: 15px;
}
.metric-link {
display: inline-block;
margin-top: 10px;
padding: 8px 20px;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 20px;
font-size: 0.9em;
transition: background 0.3s ease;
}
.metric-link:hover {
background: var(--secondary-color);
}
.project-link {
display: inline-block;
margin-top: 10px;
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
font-size: 0.9em;
}
.project-link:hover {
text-decoration: underline;
}
/* Map and Legend */
.map-container {
display: grid;
grid-template-columns: 1fr 300px;
gap: 20px;
margin: 20px 0;
}
#conference-map {
width: 100%;
height: 500px;
border-radius: 12px;
border: 2px solid var(--border-color);
}
.map-legend {
background: var(--section-bg);
border-radius: 12px;
padding: 20px;
border: 2px solid var(--border-color);
max-height: 500px;
overflow-y: auto;
}
.map-legend h4 {
color: var(--primary-color);
font-size: 1.1em;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid var(--primary-color);
display: flex;
align-items: center;
gap: 8px;
}
.legend-section {
margin-bottom: 20px;
}
.legend-section:last-child {
margin-bottom: 0;
}
.legend-title {
font-weight: 600;
color: var(--text-color);
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
font-size: 0.95em;
}
.legend-marker {
width: 20px;
height: 20px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 10px;
flex-shrink: 0;
}
.legend-marker.conference {
background-color: #667eea;
border: 2px solid white;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.legend-marker.plenary {
background-color: #f5576c;
border: 2px solid white;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.legend-item {
padding: 8px 10px;
margin-bottom: 6px;
background: var(--bg-color);
border-radius: 6px;
font-size: 0.85em;
transition: transform 0.2s ease, box-shadow 0.2s ease;
cursor: pointer;
}
.legend-item:hover {
transform: translateX(3px);
box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}
.legend-item-name {
font-weight: 600;
color: var(--text-color);
margin-bottom: 2px;
}
.legend-item-location {
color: var(--text-color);
opacity: 0.7;
font-size: 0.9em;
}
.legend-item-date {
color: var(--primary-color);
font-size: 0.85em;
margin-top: 2px;
}
.conference-list {
margin-top: 30px;
}
.conference-item {
padding: 15px;
margin-bottom: 15px;
background: var(--section-bg);
border-radius: 8px;
border-left: 4px solid var(--primary-color);
}
.conference-item h4 {
color: var(--primary-color);
margin-bottom: 8px;
font-size: 1.1em;
}
.conference-details {
color: var(--text-color);
opacity: 0.9;
font-size: 0.95em;
line-height: 1.6;
}
.conference-location {
color: var(--text-color);
opacity: 0.7;
font-style: italic;
margin-top: 5px;
}
footer {
background: var(--section-bg);
padding: 30px 40px;
text-align: center;
color: var(--text-color);
opacity: 0.8;
font-size: 0.9em;
}
.footer-links {
margin-top: 20px;
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
align-items: center;
}
.footer-links a {
text-decoration: none;
transition: transform 0.3s ease, opacity 0.3s ease;
display: inline-block;
opacity: 0.8;
}
.footer-links a:hover {
transform: translateY(-3px);
opacity: 1;
}
.footer-links a svg {
width: 28px;
height: 28px;
}
.dark-mode .footer-links a svg {
fill: var(--primary-color) !important;
}
@media (max-width: 900px) {
.map-container {
grid-template-columns: 1fr;
}
.map-legend {
max-height: none;
}
}
@media (max-width: 768px) {
body {
padding-left: 20px;
}
.sidebar {
transform: translateX(-100%);
}
.sidebar.open {
transform: translateX(0);
}
.sidebar-toggle {
left: 20px;
}
.sidebar-toggle.open {
left: 260px;
}
.header h1 {
font-size: 2em;
}
.content {
padding: 30px 20px;
}
.section h2 {
font-size: 1.5em;
}
.lang-toggle {
right: 70px;
padding: 8px 12px;
font-size: 12px;
}
.dark-mode-toggle {
padding: 8px 12px;
font-size: 16px;
}
}
</style>
</head>
<body>
<button class="dark-mode-toggle" id="darkModeBtn" title="Toggle Dark Mode">🌙</button>
<button class="lang-toggle" id="langBtn" title="Switch to Greek">EN</button>
<button class="sidebar-toggle" id="sidebarBtn" title="Toggle Navigation">✕</button>
<div class="sidebar" id="sidebar">
<h3 id="nav-title">Navigation</h3>
<nav>
<ul>
<li><a href="#about" id="nav-about">About Me</a></li>
<li><a href="#metrics" id="nav-metrics">Research Metrics</a></li>
<li><a href="#education" id="nav-education">Education</a></li>
<li><a href="#experience" id="nav-experience">Work Experience</a></li>
<li><a href="#teaching" id="nav-teaching">Teaching & Mentoring</a></li>
<li><a href="#memberships" id="nav-memberships">Professional Memberships</a></li>
<li><a href="#professional-skills" id="nav-profskills">Professional Skills</a></li>
<li><a href="#conferences" id="nav-conferences">Conferences & Outreach</a></li>
<li><a href="#research" id="nav-research">Research Topics</a></li>
<li><a href="#publications" id="nav-publications">Selected Publications</a></li>
<li><a href="#projects" id="nav-projects">Projects</a></li>
<li><a href="#skills" id="nav-skills">Technical Skills</a></li>
</ul>
</nav>
</div>
<div class="container">
<div class="main-content">
<div class="header">
<h1>Georgios Koukis</h1>
<div class="title" id="header-title">PhD(c) and Researcher in Electrical & Computer Engineering</div>
<div class="affiliation" id="header-affiliation">Democritus University of Thrace (DUTH) | ATHENA Research Center</div>
<div class="header-contact">
<div class="contact-line">
📧 george.koukis@athenarc.gr | 📍 Xanthi, Greece
</div>
</div>
<div class="header-links">
<a href="https://scholar.google.com/citations?user=E2bGWsUAAAAJ" target="_blank" class="header-link">
<svg viewBox="0 0 24 24"><path d="M5.242 13.769L0 9.5 12 0l12 9.5-5.242 4.269C17.548 11.249 14.978 9.5 12 9.5c-2.977 0-5.548 1.748-6.758 4.269zM12 10a7 7 0 1 0 0 14 7 7 0 0 0 0-14z"/></svg>
Google Scholar
</a>
<a href="https://orcid.org/0009-0005-0116-7296" target="_blank" class="header-link">
<svg viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zM7.369 8.446c.537 0 .97.435.97.972 0 .536-.433.971-.97.971a.971.971 0 0 1-.97-.971c0-.537.434-.972.97-.972zm-.932 8.863V9.473h1.864v7.836H6.437zm3.398 0V9.473h1.803v.955c.421-.66 1.122-1.107 2.092-1.107 1.524 0 2.729 1.205 2.729 3.137v4.851h-1.864v-4.548c0-.955-.421-1.65-1.346-1.65-.879 0-1.55.726-1.55 1.65v4.548h-1.864z"/></svg>
ORCID
</a>
<a href="https://www.researchgate.net/profile/Georgios-Koukis" target="_blank" class="header-link">
<svg viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm3.99 14.43c0 .47-.08.92-.25 1.33-.17.41-.4.77-.71 1.08-.31.31-.68.55-1.1.72-.42.17-.87.25-1.36.25-.98 0-1.83-.32-2.54-.97-.71-.65-1.16-1.58-1.35-2.79h1.8c.1.61.35 1.08.75 1.41.4.33.87.5 1.41.5.31 0 .59-.06.84-.17.25-.11.47-.27.65-.47.18-.2.32-.43.42-.7.1-.27.15-.56.15-.87 0-.31-.05-.59-.14-.85-.09-.26-.23-.49-.4-.68-.18-.19-.39-.35-.64-.47-.25-.12-.53-.18-.84-.18-.42 0-.8.08-1.14.25-.34.17-.61.41-.81.72l-1.61-.19.47-5.13h5.09v1.62h-3.54l-.24 2.53c.24-.14.51-.25.81-.33.3-.08.62-.12.96-.12.51 0 .98.1 1.42.29.44.19.82.46 1.14.8.32.34.57.75.75 1.22.18.47.27.98.27 1.54z"/></svg>
ResearchGate
</a>
<a href="https://linkedin.com/in/georgios-koukis-67876b13a" target="_blank" class="header-link">
<svg viewBox="0 0 24 24"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
LinkedIn
</a>
<a href="https://github.com/gkoukis" target="_blank" class="header-link">
<svg viewBox="0 0 24 24"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
GitHub
</a>
<a href="mailto:georgekouk29702970@hotmail.gr" class="header-link" id="header-email">
<svg viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>
<span>Personal Email</span>
</a>
</div>
</div>
<div class="content">
<!-- About Section -->
<div class="section" id="about">
<h2 id="section-about">About Me</h2>
<p class="bio" id="bio-text">
Georgios Koukis is a PhD candidate at the School of Electrical and Computer Engineering of Democritus University of Thrace (DUTH) and a researcher at the ATHENA Research Center. His research interests focus on network and satellite communications for smart cities and IoT, as well as orchestration and automation of services in cloud and cloud/edge environments. He has conducted experimental evaluations and publications on container-based architectures, utilizing Docker and Kubernetes for development and scaling of microservices. He holds an M.Sc. degree from the Department of Production and Management Engineering and an M.Sc. degree from the Department of Electrical and Computer Engineering (specialization in Microelectronics and Information Systems Technologies / Networks and Internet Systems).
</p>
</div>
<!-- Metrics Section -->
<div class="section" id="metrics">
<h2 id="section-metrics">Research Metrics</h2>
<div class="metrics-section">
<div class="metric-card">
<div class="metric-label" id="metric-pub-label">Publications</div>
<div class="metric-value">11</div>
<a href="https://scholar.google.com/citations?user=E2bGWsUAAAAJ" target="_blank" class="metric-link" id="metric-pub-link">View on Google Scholar</a>
</div>
<div class="metric-card">
<div class="metric-label" id="metric-cite-label">Citations</div>
<div class="metric-value">63</div>
<a href="https://scholar.google.com/citations?user=E2bGWsUAAAAJ" target="_blank" class="metric-link" id="metric-cite-link">View Live Stats</a>
</div>
<div class="metric-card">
<div class="metric-label">h-index</div>
<div class="metric-value">3</div>
<a href="https://scholar.google.com/citations?user=E2bGWsUAAAAJ" target="_blank" class="metric-link" id="metric-h-link">View Profile</a>
</div>
<div class="metric-card">
<div class="metric-label">i10-index</div>
<div class="metric-value">3</div>
<a href="https://scholar.google.com/citations?user=E2bGWsUAAAAJ" target="_blank" class="metric-link" id="metric-i10-link">View Profile</a>
</div>
</div>
</div>
<!-- Education Section -->
<div class="section" id="education">
<h2 id="section-education">Education</h2>
<div class="education-item">
<h3 id="edu-phd-title">PhD in Electrical and Computer Engineering</h3>
<p class="institution" id="edu-phd-inst">Democritus University of Thrace (DUTH), Xanthi, Greece</p>
<p class="details" id="edu-phd-spec">Specialization: Microelectronics and Information Systems Technologies / Networks and Internet Systems</p>
<p class="period">2022 – <span id="edu-phd-present">Present</span></p>
</div>
<div class="education-item">
<h3 id="edu-msc-title">M.Sc. in Electrical and Computer Engineering</h3>
<p class="institution" id="edu-msc-inst">Democritus University of Thrace (DUTH), Xanthi, Greece</p>
<p class="details" id="edu-msc-spec">Specialization: Microelectronics and Information Systems Technologies / Networks and Internet Systems</p>
<p class="period">2020 – 2022</p>
</div>
<div class="education-item">
<h3 id="edu-eng-title">M.Sc. in Production and Management Engineering</h3>
<p class="institution" id="edu-eng-inst">Democritus University of Thrace (DUTH), Xanthi, Greece</p>
<p class="period">2014 – 2020</p>
</div>
</div>
<!-- Experience Section -->
<div class="section" id="experience">
<h2 id="section-experience">Work Experience</h2>
<div class="experience-item">
<h3 id="exp-research-title">Research Associate</h3>
<p class="institution">ATHENA Research & Innovation Information Technologies</p>
<p class="period">2022 – <span id="exp-research-present">Present</span> | Xanthi, Greece</p>
<p class="description" id="exp-research-desc">Working on EU-funded projects including REWIRE, Feed4Cloud, and CODECO, focusing on SDN-based protocols, blockchain for cloud services, and cognitive edge cloud orchestration.</p>
</div>
<div class="experience-item">
<h3 id="exp-intern-title">Assistant Production and Management Engineer (Intern)</h3>
<p class="institution">IKTINOS HELLAS S.A. - Marble Production and Processing Factory</p>
<p class="period">June 2019 – August 2019 | Drama, Greece</p>
<p class="description" id="exp-intern-desc">Production management, information processing & storage, Excel & ERP operations, creation of production monitoring and improvement structures.</p>
</div>
</div>
<!-- Teaching Section -->
<div class="section" id="teaching">
<h2 id="section-teaching">Teaching & Mentoring</h2>
<div class="teaching-item">
<h3 id="teach-lab-title">Lab Associate - Internetworked Systems Lab</h3>
<p class="institution" id="teach-lab-inst">Democritus University of Thrace</p>
<p class="description" id="teach-lab-desc">Laboratory associate for Networks and Computer Networks courses, specializing in NS-3 and Omnet++ simulation tools.</p>
<p class="links-inline">
<a href="http://www.intersys-lab.org/" target="_blank" id="teach-lab-web">🌐 Lab Website</a> |
<a href="https://github.com/Intersys-Lab-ee-DUTH" target="_blank">💻 GitHub</a>
</p>
</div>
<div class="teaching-item">
<h3 id="teach-thesis-title">Theses Lab Assistant</h3>
<p class="institution" id="teach-thesis-inst">Department of Electrical and Computer Engineering, DUTH</p>
<p class="description" id="teach-thesis-desc">Lab assistance for over 5 undergraduate theses and paper writing in areas including network simulation, IoT systems, and cloud technologies.</p>
</div>
<div class="teaching-item">
<h3 id="teach-security-title">Data Security and Privacy</h3>
<p class="institution" id="teach-security-inst">MSc in Biomedical Informatics (BMI), DUTH & ATHENA RC</p>
<p class="period">4th Cycle | 2025-2026</p>
<p class="description" id="teach-security-desc">Lecturer/Teaching for the Data Security and Privacy course, covering topics such as encryption, GDPR compliance, healthcare data protection, etc.</p>
<p class="links-inline">
<a href="https://bmi.med.duth.gr/" target="_blank" id="teach-security-web">🌐 MSc Website</a>
</p>
</div>
</div>
<!-- Memberships Section -->
<div class="section" id="memberships">
<h2 id="section-memberships">Professional Memberships</h2>
<div class="membership-item">
<p><strong>IEEE</strong> - <span id="membership-ieee">Student Member</span></p>
</div>
</div>
<!-- Professional Skills Section -->
<div class="section" id="professional-skills">
<h2 id="section-profskills">Professional Skills</h2>
<div class="skill-item">
<h3 id="skill-pm-title">🎯 Project Management & Leadership</h3>
<p class="description" id="skill-pm-desc">Led Work Packages (WP) in EU-funded research projects, coordinating technical activities, managing deliverables, and ensuring alignment with project objectives and timelines.</p>
</div>
<div class="skill-item">
<h3 id="skill-writing-title">📝 Technical Writing & Documentation</h3>
<p class="description" id="skill-writing-desc">Extensive experience in writing EU project proposals, technical deliverables, and research documentation. Skilled in articulating complex technical concepts for diverse audiences including funding agencies, technical partners, and academic communities.</p>
</div>
<div class="skill-item">
<h3 id="skill-collab-title">🤝 Collaboration & Communication</h3>
<p class="description" id="skill-collab-desc">Proven ability to work in multidisciplinary and multinational teams, facilitating effective communication between technical and non-technical stakeholders across research and industry partnerships.</p>
</div>
</div>
<!-- Conferences Section -->
<div class="section" id="conferences">
<h2 id="section-conferences">Conferences & Outreach</h2>
<div class="map-container">
<div id="conference-map"></div>
<div class="map-legend">
<h4 id="legend-title">📍 Locations</h4>
<div class="legend-section">
<div class="legend-title" id="legend-conf-title">
<span class="legend-marker conference">📍</span>
Conferences
</div>
<div class="legend-item" data-lat="48.8566" data-lon="2.3522">
<div class="legend-item-name">IEEE ISCC 2024</div>
<div class="legend-item-location">Paris, France</div>
<div class="legend-item-date">June 2024</div>
</div>
<div class="legend-item" data-lat="49.2827" data-lon="-123.1207">
<div class="legend-item-name">IEEE INFOCOM 2024</div>
<div class="legend-item-location">Vancouver, Canada</div>
<div class="legend-item-date">May 2024</div>
</div>
<div class="legend-item" data-lat="48.1351" data-lon="11.5820">
<div class="legend-item-name">HiPEAC 2024</div>
<div class="legend-item-location">Munich, Germany</div>
<div class="legend-item-date">January 2024</div>
</div>
<div class="legend-item" data-lat="37.9421" data-lon="23.6463">
<div class="legend-item-name">BalkanCom 2025</div>
<div class="legend-item-location">Piraeus, Greece</div>
<div class="legend-item-date">2025</div>
</div>
<div class="legend-item" data-lat="41.1355" data-lon="24.9207">
<div class="legend-item-name">MEDNIGHT 2025</div>
<div class="legend-item-location">Xanthi, Greece</div>
<div class="legend-item-date">2025</div>
</div>
<div class="legend-item" data-lat="41.1429037" data-lon="24.889284">
<div class="legend-item-name">DUTH/ATH Democamp 2025</div>
<div class="legend-item-location">Xanthi, Greece</div>
<div class="legend-item-date">2025</div>
</div>
</div>
<div class="legend-section">
<div class="legend-title" id="legend-plenary-title">
<span class="legend-marker plenary">🎤</span>
Project Plenaries
</div>
<div class="legend-item" data-lat="40.4168" data-lon="-3.7038">
<div class="legend-item-name">CODECO Plenary</div>
<div class="legend-item-location">Madrid, Spain</div>
</div>
<div class="legend-item" data-lat="37.9838" data-lon="23.7275">
<div class="legend-item-name">CODECO Plenary</div>
<div class="legend-item-location">Athens, Greece</div>
</div>
<div class="legend-item" data-lat="37.9421" data-lon="23.6463">
<div class="legend-item-name">CODECO Plenary</div>
<div class="legend-item-location">Piraeus, Greece</div>
</div>
</div>
</div>
</div>
<div class="conference-list">
<h3 style="color: var(--primary-color); margin-bottom: 20px;" id="conf-presentations-title">Conference Presentations</h3>
<div class="conference-item">
<h4>📍 IEEE INFOCOM 2024 - Vancouver, Canada</h4>
<p class="conference-details">
<strong>Computer and Networking Experimental Research using Testbeds (CNERT) and Intelligent Cloud Computing and Networking (ICCN) Workshops</strong><br>
<span id="conf-infocom-desc">Demonstrated open-source experimentation framework for edge-cloud continuum research (CODEF). Also presented anomaly detection evaluation schemes in edge cloud systems.</span>
</p>
<p class="conference-location">Vancouver, BC, Canada | May 2024</p>
</div>
<div class="conference-item">
<h4>📍 IEEE ISCC 2024 - Paris, France</h4>
<p class="conference-details">
<strong>Edge to Cloud Orchestration (ECO) and Next-Generation Multimedia Services at the Edge (NGMSE) Workshops</strong><br>
<span id="conf-iscc-desc">Presented research on Kubernetes networking and edge computing at the IEEE Symposium on Computers and Communications.</span>
</p>
<p class="conference-location">Paris, France | June 2024</p>
</div>