-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProfessor.html
More file actions
947 lines (890 loc) · 69.2 KB
/
Copy pathProfessor.html
File metadata and controls
947 lines (890 loc) · 69.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DASH LAB - Professor Simon S. Woo Profile</title>
<!-- External Libraries -->
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<!-- Custom Shared Resources -->
<link rel="stylesheet" href="css/style.css">
<script src="js/common.js"></script>
</head>
<body class="bg-gray-50 flex flex-col min-h-screen">
<!-- Navbar is injected here by common.js -->
<div class="container mx-auto px-4 pt-8 pb-20 max-w-6xl flex-grow">
<!-- PREMIUM PROFILE HERO -->
<div class="profile-hero">
<div class="flex flex-col md:flex-row gap-8 items-center md:items-start relative z-10">
<!-- Image Side -->
<div class="profile-image-container flex-shrink-0">
<img src="" onerror="this.src=getImg('img/member_images/SimonWoo_new.jpg')"
class="rounded-3xl w-44 h-auto object-cover" alt="Simon S. Woo">
</div>
<!-- Info Side -->
<div class="flex-grow text-center md:text-left space-y-4">
<div class="space-y-1">
<h3 class="text-4xl font-black mb-0 tracking-tight leading-tight text-gray-900">Simon S. Woo
</h3>
<div
class="inline-flex items-center px-3 py-1 bg-blue-50 rounded-full text-blue-600 text-sm font-bold border border-blue-100">
Associate Professor
</div>
</div>
<p class="text-xl text-blue-800 font-bold">Sungkyunkwan University (SKKU)</p>
<div class="grid sm:grid-cols-2 gap-4 max-w-2xl mx-auto md:mx-0">
<div class="glass-card flex items-center gap-4">
<div class="w-10 h-10 bg-blue-50 rounded-xl flex items-center justify-center">
<i class="fas fa-envelope text-blue-500"></i>
</div>
<div class="text-left">
<p
class="text-[10px] text-gray-400 uppercase font-black tracking-widest leading-none mb-1">
Email</p>
<p class="text-sm font-mono truncate text-gray-800">swoo @ g.skku.edu</p>
</div>
</div>
<div class="glass-card flex items-center gap-4">
<div class="w-10 h-10 bg-blue-50 rounded-xl flex items-center justify-center">
<i class="fas fa-map-marker-alt text-blue-500"></i>
</div>
<div class="text-left">
<p
class="text-[10px] text-gray-400 uppercase font-black tracking-widest leading-none mb-1">
Office</p>
<p class="text-sm text-gray-800">N Center 86401, SKKU</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 1. RESEARCH PHILOSOPHY (FULL WIDTH HERO SECTION) -->
<div class="dash-card border-t-4 border-t-blue-600 mb-12">
<h4 class="section-accent text-xl font-black text-gray-900 mb-8">Research Philosophy</h4>
<div class="grid md:grid-cols-3 gap-12">
<div class="relative pl-8">
<div
class="absolute left-0 top-0 bottom-0 w-1 bg-gradient-to-b from-blue-600 to-blue-400 rounded-full">
</div>
<p class="text-lg font-black text-gray-900 mb-3">Breaking Boundaries.</p>
<p class="text-gray-600 leading-relaxed italic text-[13px]">
My mission is to guide students beyond their comfort zones, fostering intellectual growth that
transcends technical expertise.
I encourage them to embrace diverse perspectives and challenge conventional thinking,
cultivating both professional excellence and personal development.
</p>
</div>
<div class="relative pl-8">
<div
class="absolute left-0 top-0 bottom-0 w-1 bg-gradient-to-b from-blue-400 to-indigo-400 rounded-full">
</div>
<p class="text-lg font-black text-gray-900 mb-3">Global Excellence.</p>
<p class="text-gray-600 leading-relaxed italic text-[13px]">
Our vision extends far beyond institutional or national recognition. I am committed to
developing globally competitive scholars who contribute meaningfully to the international
research community, establishing themselves as leaders in their fields.
</p>
</div>
<div class="relative pl-8">
<div
class="absolute left-0 top-0 bottom-0 w-1 bg-gradient-to-b from-indigo-400 to-purple-400 rounded-full">
</div>
<p class="text-lg font-black text-gray-900 mb-3">Diversity as Strength.</p>
<p class="text-gray-600 leading-relaxed italic text-[13px]">
Having experienced two decades as an immigrant and minority scholar, I have witnessed firsthand
the transformative power of diversity and mutual respect.
I am dedicated to creating synergistic collaborations between Korean and international students,
where different backgrounds and perspectives become catalysts for innovation and growth.
</p>
</div>
</div>
</div>
<!-- 2. PROFESSIONAL JOURNEY (INTEGRATED FULL WIDTH SECTION) -->
<div class="dash-card mb-12">
<div class="flex flex-col lg:flex-row gap-16">
<!-- Left Side: Work Experience -->
<div class="lg:w-3/5">
<h4 class="section-accent text-xl font-black text-gray-900 mb-10">Work Experience</h4>
<div class="space-y-12">
<!-- SKKU Entry -->
<div class="relative pl-8 border-l-2 border-blue-600">
<div
class="absolute -left-[9px] top-0 w-4 h-4 bg-blue-600 rounded-full border-4 border-white">
</div>
<div class="mb-4">
<h5 class="text-xl font-black text-gray-900 leading-tight">Associate Professor</h5>
<p class="text-sm font-bold text-blue-600 uppercase tracking-wide mt-1">Sungkyunkwan
University (SKKU)</p>
<p class="text-xs text-gray-400 font-bold mt-1">2019 - Present</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-x-6 gap-y-2">
<p class="text-[12px] font-bold text-gray-600 flex items-center gap-2">
<span class="w-1 h-1 bg-blue-400 rounded-full"></span> Applied Data Science
(데이터사이언스)
</p>
<p class="text-[12px] font-bold text-gray-600 flex items-center gap-2">
<span class="w-1 h-1 bg-blue-400 rounded-full"></span> <a
href="https://swb.skku.edu/security2020/index.do" target="_blank"
class="hover:text-blue-600 hover:underline">CSE (소프트웨어/융합보안대학원)</a>
</p>
<p class="text-[12px] font-bold text-gray-600 flex items-center gap-2">
<span class="w-1 h-1 bg-blue-400 rounded-full"></span> <a
href="https://skb.skku.edu/skkuaai/index.do" target="_blank"
class="hover:text-blue-600 hover:underline">Applied AI Dept. (인공지능융합학과)</a>
</p>
<p class="text-[12px] font-bold text-gray-600 flex items-center gap-2">
<span class="w-1 h-1 bg-blue-400 rounded-full"></span> <a href="https://ai.skku.edu"
target="_blank" class="hover:text-blue-600 hover:underline">AI (인공지능학과)</a>
</p>
<p class="text-[12px] font-bold text-gray-600 flex items-center gap-2">
<span class="w-1 h-1 bg-blue-400 rounded-full"></span> <a
href="https://intelligentsw.skku.edu/intelligentsw/index.do" target="_blank"
class="hover:text-blue-600 hover:underline">지능형소프트웨어학과</a>
</p>
</div>
</div>
<!-- Mid Career -->
<div class="relative pl-8 border-l-2 border-gray-200">
<div
class="absolute -left-[9px] top-0 w-4 h-4 bg-gray-200 rounded-full border-4 border-white">
</div>
<div class="grid md:grid-cols-2 gap-10">
<div>
<h5 class="text-base font-black text-gray-800 leading-tight">Research Assistant
Professor</h5>
<p class="text-[11px] font-bold text-gray-500 uppercase tracking-widest mt-1">Stony
Brook University (SBU)</p>
<p class="text-[10px] text-gray-400 font-bold mt-1">Stonybrook, NY | 2017 - 2019</p>
</div>
<div>
<h5 class="text-base font-black text-gray-800 leading-tight">Assistant Professor
</h5>
<p class="text-[11px] font-bold text-gray-500 uppercase tracking-widest mt-1">SUNY
Korea</p>
<p class="text-[10px] text-gray-400 font-bold mt-1">2017 - 2019</p>
</div>
</div>
</div>
<!-- NASA -->
<div class="relative pl-8 border-l-2 border-gray-200">
<div
class="absolute -left-[9px] top-0 w-4 h-4 bg-gray-200 rounded-full border-4 border-white">
</div>
<div>
<h5 class="text-base font-black text-gray-800 leading-tight">Member of Technical Staff
</h5>
<p class="text-[11px] font-bold text-gray-500 uppercase tracking-widest mt-1">NASA Jet
Propulsion Lab (JPL)</p>
<p class="text-[10px] text-gray-400 font-bold mt-1">Pasadena, CA | 2005 - 2014</p>
</div>
</div>
<!-- Previous and Others -->
<div class="relative pl-8 border-l-2 border-gray-200">
<div
class="absolute -left-[9px] top-0 w-4 h-4 bg-gray-200 rounded-full border-4 border-white">
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-8">
<div>
<h5 class="text-sm font-black text-gray-800 leading-tight">Researcher</h5>
<p class="text-[10px] font-bold text-gray-500 uppercase tracking-widest mt-1">
Verisign Research Lab, Reston, VA</p>
<p class="text-[10px] text-gray-400 font-bold mt-1">2016</p>
</div>
<div>
<h5 class="text-sm font-black text-gray-800 leading-tight">Co-op Intern</h5>
<p class="text-[10px] font-bold text-gray-500 uppercase tracking-widest mt-1">Intel
Corp</p>
<p class="text-[10px] text-gray-400 font-bold mt-1">2001, 2002</p>
</div>
</div>
</div>
<div class="pt-4 border-t border-gray-50">
<p class="text-[11px] text-gray-400 italic font-medium leading-relaxed">
Note: Part-time cook at Burger King, Waiter & Dishwasher, once upon a time in
highschool/college years.
</p>
</div>
</div>
</div>
<!-- Right Side: Education Timeline -->
<div class="lg:w-2/5 lg:border-l border-gray-100 lg:pl-16">
<h4 class="section-accent text-xl font-black text-gray-900 mb-8">Education</h4>
<div class="space-y-8">
<div class="timeline-item">
<div class="flex items-center gap-3 mb-1">
<span class="w-3 h-3 bg-blue-600 rounded-full ring-4 ring-blue-50"></span>
<p class="text-sm font-black text-blue-600 uppercase tracking-tighter">Tenure</p>
</div>
<p class="font-bold text-gray-900">Early Tenure Granted, 2024</p>
</div>
<div class="timeline-item">
<div class="flex items-center gap-3 mb-1">
<span class="w-3 h-3 bg-blue-600 rounded-full ring-4 ring-blue-50"></span>
<p class="text-sm font-black text-blue-600 uppercase tracking-tighter">Fellowship</p>
</div>
<p class="font-bold text-gray-900 leading-snug">SKKU Fellowship Professor, 2022 <a
href="https://cs.skku.edu/ko/edures/education/view/7054" target="_blank"
class="text-blue-500 hover:underline italic font-sans">(News)</a></p>
</div>
<div class="space-y-6 pt-4">
<div class="timeline-item pb-1">
<p
class="text-[10px] font-black text-gray-400 uppercase tracking-widest leading-none mb-2">
Ph.D.</p>
<p class="text-base font-black text-gray-800 mb-1">Computer Science</p>
<p class="text-xs text-gray-500 font-medium leading-tight">University of Southern
California (USC),<br>Los Angeles, CA</p>
</div>
<div class="timeline-item pb-1">
<p
class="text-[10px] font-black text-gray-400 uppercase tracking-widest leading-none mb-2">
M.S.</p>
<p class="text-base font-black text-gray-800 mb-1">Computer Science</p>
<p class="text-xs text-gray-500 font-medium leading-tight">University of Southern
California (USC),<br>Los Angeles, CA</p>
</div>
<div class="timeline-item pb-1">
<p
class="text-[10px] font-black text-gray-400 uppercase tracking-widest leading-none mb-2">
M.S.</p>
<p class="text-base font-black text-gray-800 mb-1">Electrical and Computer Engineering
</p>
<p class="text-xs text-gray-500 font-medium leading-tight">University of California, San
Diego (UCSD), CA</p>
</div>
<div class="timeline-item pb-1">
<p
class="text-[10px] font-black text-gray-400 uppercase tracking-widest leading-none mb-2">
B.S.</p>
<p class="text-base font-black text-gray-800 mb-1">Electrical Engineering</p>
<p class="text-xs text-gray-500 font-medium leading-tight">University of Washington
(UW), Seattle, WA</p>
</div>
<div class="timeline-item pb-1">
<p
class="text-[10px] font-black text-gray-400 uppercase tracking-widest leading-none mb-2">
High School</p>
<p class="text-base font-black text-gray-800 mb-1">Lynnwood High School</p>
<p class="text-xs text-gray-500 font-medium leading-tight">Lynnwood, WA, USA</p>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-100/60">
<div class="flex items-center gap-4 text-gray-700">
<div
class="w-10 h-10 bg-indigo-50 rounded-xl flex items-center justify-center text-indigo-600">
<i class="fas fa-language"></i>
</div>
<p class="text-sm font-black italic">Fluent in Korean and English</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 3. RESEARCH LANDSCAPE -->
<div class="grid lg:grid-cols-2 gap-8 mb-12">
<!-- Interests -->
<div class="dash-card">
<h4 class="section-accent text-xl font-black text-gray-900 mb-8">Research Interests</h4>
<div class="space-y-6">
<div
class="group p-6 bg-gradient-to-br from-purple-50/50 to-white rounded-3xl border border-purple-100/50 hover:shadow-lg transition-all">
<div class="flex items-center gap-4 mb-4">
<div
class="w-12 h-12 bg-purple-100 rounded-2xl flex items-center justify-center text-purple-600 group-hover:bg-purple-600 group-hover:text-white transition-all">
<i class="fas fa-brain text-xl"></i>
</div>
<p class="text-lg font-black text-gray-900">Generative AI Model</p>
</div>
<div class="flex items-center gap-3 ml-16">
<span class="w-1.5 h-1.5 bg-purple-400 rounded-full"></span>
<p class="text-[11px] font-black text-gray-500 italic tracking-wide uppercase">Media
Coverage</p>
<p class="text-[13px] font-bold text-purple-900/60 font-sans">
<a href="https://www.joongang.co.kr/article/25140582#home" target="_blank"
class="hover:text-purple-600 hover:underline">중앙일보</a>,
<a href="https://sports.khan.co.kr/entertainment/sk_index.html?art_id=202306220218003&sec_id=540201&pt=nv"
target="_blank" class="hover:text-purple-600 hover:underline">경향신문</a>,
<a href="https://www.arirang.com/tv/37/archive?board=147&id=28137&sort=episode"
target="_blank" class="hover:text-purple-600 hover:underline">아리랑TV</a>
</p>
</div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div
class="interest-tag flex items-center gap-3 p-4 bg-gray-50/50 rounded-2xl border border-gray-100 hover:bg-white hover:border-red-200 transition-all">
<i class="fas fa-shield-alt text-red-500"></i> <span
class="text-xs font-bold leading-tight">AI Security</span>
</div>
<div
class="interest-tag flex items-center gap-3 p-4 bg-gray-50/50 rounded-2xl border border-gray-100 hover:bg-white hover:border-blue-200 transition-all">
<i class="fas fa-eye text-blue-500"></i> <span
class="text-xs font-bold leading-tight">Deepfake Detection and Generation</span>
</div>
<div
class="interest-tag flex items-center gap-3 p-4 bg-gray-50/50 rounded-2xl border border-gray-100 hover:bg-white hover:border-emerald-200 transition-all">
<i class="fas fa-chart-line text-emerald-500"></i> <span
class="text-xs font-bold leading-tight">Time Series Analysis / Anomaly Detection</span>
</div>
<div
class="interest-tag flex items-center gap-3 p-4 bg-gray-50/50 rounded-2xl border border-gray-100 hover:bg-white hover:border-indigo-200 transition-all">
<i class="fas fa-lock text-indigo-500"></i> <span
class="text-xs font-bold leading-tight">Computer Security <span class="font-medium text-gray-500">(Usable Security, Blockchain, Intrusion/Anomaly Detection)</span></span>
</div>
<div
class="interest-tag flex items-center gap-3 p-4 bg-gray-50/50 rounded-2xl border border-gray-100 hover:bg-white hover:border-sky-200 transition-all">
<i class="fas fa-satellite text-sky-500"></i> <span
class="text-xs font-bold leading-tight">Satellite Image Processing <span class="font-medium text-gray-500">(Object Detection, Communications and Protocols)</span></span>
</div>
<div
class="interest-tag flex items-center gap-3 p-4 bg-gray-50/50 rounded-2xl border border-gray-100 hover:bg-white hover:border-orange-200 transition-all">
<i class="fas fa-database text-orange-500"></i> <span
class="text-xs font-bold leading-tight">Data Science</span>
</div>
</div>
</div>
</div>
<!-- Visualization -->
<div class="dash-card">
<h4 class="section-accent text-xl font-black text-gray-900 mb-8">Research Visualization</h4>
<div class="rounded-3xl overflow-hidden shadow-2xl border border-gray-100 relative group">
<img src="" onerror="this.src=getImg('img/교수님_기사사진.jpg')" alt="Deepfake Research Media"
class="w-full h-auto transition-transform duration-1000 group-hover:scale-105" />
<div
class="absolute inset-x-0 bottom-0 bg-gradient-to-t from-black/90 via-black/40 to-transparent p-10 pt-24">
<a href="https://www.joongang.co.kr/article/25344739" target="_blank" class="block group/link">
<p
class="text-white text-xl font-black leading-tight mb-4 drop-shadow-lg leading-snug group-hover/link:text-red-400 transition-colors">
영국 BBC도 도움 요청했다…'딥페이크 범죄' 잡는 韓교수
</p>
</a>
<div class="flex items-center justify-between">
<div class="flex items-center gap-3">
<span class="w-10 h-[2px] bg-red-500"></span>
<p class="text-white/80 text-[11px] font-black uppercase tracking-widest">[출처:중앙일보]</p>
</div>
<a href="https://www.joongang.co.kr/article/25344739" target="_blank"
class="px-5 py-2.5 bg-red-600 text-white text-[11px] font-black rounded-xl hover:bg-white hover:text-red-600 hover:shadow-lg hover:-translate-y-0.5 transition-all">
READ ARTICLE <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- 4. INTERNATIONAL HONORS AND AWARDS -->
<div class="dash-card mb-12">
<h4 class="section-accent text-xl font-black text-gray-900 mb-10">International Honors and Awards</h4>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Award 1 -->
<div
class="flex gap-4 items-start p-6 bg-amber-50/20 rounded-3xl border border-amber-100/50 group hover:bg-amber-50 hover:border-amber-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🏆</span>
<div>
<p class="text-xs font-black text-amber-700 uppercase tracking-widest mb-1">WACV • 2026</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
<a href="https://sites.google.com/view/synrdinbaswacv2026" target="_blank"
class="hover:text-amber-700 hover:underline">SAFE: Image Edit Detection and Localization Challenge</a> (Workshop,
2nd Place)
</p>
</div>
</div>
<!-- Award 2 -->
<div
class="flex gap-4 items-start p-6 bg-amber-50/20 rounded-3xl border border-amber-100/50 group hover:bg-amber-50 hover:border-amber-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🏆</span>
<div>
<p class="text-xs font-black text-amber-700 uppercase tracking-widest mb-1">ICCV • 2025</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
<a href="https://sites.google.com/berkeley.edu/apai-iccv2025" target="_blank"
class="hover:text-amber-700 hover:underline">SAFE: Synthetic Video Detection Challenge</a> (Workshop – APAI,
2nd Place)
</p>
</div>
</div>
<!-- Award 3 -->
<div
class="flex gap-4 items-start p-6 bg-amber-50/20 rounded-3xl border border-amber-100/50 group hover:bg-amber-50 hover:border-amber-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🏆</span>
<div>
<p class="text-xs font-black text-amber-700 uppercase tracking-widest mb-1">PAKDD • 2024</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
<a href="https://pakdd2024.org/award24awardpakdd24/" target="_blank"
class="hover:text-amber-700 hover:underline">PAKDD Best Paper Running-Up Award</a> (2nd
Place out of 720 papers)
</p>
</div>
</div>
<!-- Award 4 -->
<div
class="flex gap-4 items-start p-6 bg-blue-50/20 rounded-3xl border border-blue-100/50 group hover:bg-blue-50 hover:border-blue-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🏆</span>
<div>
<p class="text-xs font-black text-blue-700 uppercase tracking-widest mb-1">ACM SAC • 2023</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
<a href="https://www.sigapp.org/sac/sac2023/" target="_blank"
class="hover:text-blue-700 hover:underline">ACM/SIGAPP SAC Best Paper Award</a> (AI and
Agents)
<span class="block mt-1 text-[11px]"><a
href="https://www.acm.org/conferences/best-paper-awards" target="_blank"
class="text-blue-600 hover:underline">ACM Best Paper Awards Archive</a></span>
</p>
</div>
</div>
<!-- Award 5 -->
<div
class="flex gap-4 items-start p-6 bg-gray-50/40 rounded-3xl border border-gray-100 group hover:bg-white hover:border-blue-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🎓</span>
<div>
<p class="text-xs font-black text-gray-700 uppercase tracking-widest mb-1">Invitation • 2023</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
Invited for Schloss Dagstuhl (Leibniz Center for Informatics) on 23021 Media Forensics and the Challenge of Big Data
</p>
</div>
</div>
<!-- KSC 2022 -->
<div
class="flex gap-4 items-start p-6 bg-amber-50/20 rounded-3xl border border-amber-100/50 group hover:bg-amber-50 hover:border-amber-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🏆</span>
<div>
<p class="text-xs font-black text-amber-700 uppercase tracking-widest mb-1">KSC • 2022</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
<a href="https://sw.skku.edu/sw/news.do?mode=view&articleNo=150622&article.offset=10&articleLimit=10&srSearchVal=%EC%9A%B0%EC%82%AC%EC%9D%B4%EB%A8%BC"
target="_blank" class="hover:text-amber-700 hover:underline">KSC 2022 Best Paper
Award</a>
</p>
</div>
</div>
<!-- Award 6 -->
<div
class="flex gap-4 items-start p-6 bg-blue-50/20 rounded-3xl border border-blue-100/50 group hover:bg-blue-50 hover:border-blue-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🏆</span>
<div>
<p class="text-xs font-black text-blue-700 uppercase tracking-widest mb-1">KDD • 2021</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
<a href="https://sw.skku.edu/sw/news.do?mode=view&articleNo=150622&article.offset=10&articleLimit=10&srSearchVal=%EC%9A%B0%EC%82%AC%EC%9D%B4%EB%A8%BC"
target="_blank" class="hover:text-blue-700 hover:underline">PLP 2021 Best Paper Award</a>, 27th ACM SIGKDD (KDD)
</p>
</div>
</div>
<!-- Award 7 -->
<div
class="flex gap-4 items-start p-6 bg-amber-50/20 rounded-3xl border border-amber-100/50 group hover:bg-amber-50 hover:border-amber-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🏆</span>
<div>
<p class="text-xs font-black text-amber-700 uppercase tracking-widest mb-1">WISA • 2016</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
The 17th World Conference on Information Security Applications (WISA), Best Paper Award, Korea
</p>
</div>
</div>
<!-- Award 8 -->
<div
class="flex gap-4 items-start p-6 bg-indigo-50/40 rounded-3xl border border-indigo-100/50 group hover:bg-indigo-50 hover:border-indigo-300 hover:shadow-xl hover:-translate-y-1 transition-all duration-300">
<span class="text-4xl transition-all">🎓</span>
<div>
<p class="text-xs font-black text-indigo-700 uppercase tracking-widest mb-1">Scholar • 2003</p>
<p class="text-[13px] text-gray-800 leading-relaxed font-bold">
Mary Gates Scholar, University of Washington, Seattle, USA
</p>
</div>
</div>
</div>
</div>
<!-- PROFESSIONAL SERVICES -->
<div class="dash-card">
<h4 class="section-accent text-xl font-black text-gray-900 mb-10">Professional Services</h4>
<div class="space-y-12">
<!-- Leadership -->
<div class="relative pl-10 border-l-4 border-blue-600">
<div class="absolute -left-[11px] top-0 w-5 h-5 bg-blue-600 rounded-full border-4 border-white">
</div>
<div class="flex items-center gap-3 mb-6">
<i class="fas fa-crown text-blue-600/30 text-lg"></i>
<h5 class="text-base font-black text-blue-600 uppercase tracking-wide">Leadership Roles
(2024–2025)</h5>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div
class="p-4 bg-blue-50/40 rounded-2xl border border-blue-100/50 hover:bg-white transition-all">
<p class="text-[13px] font-bold text-gray-700">KDD Research Track Area Chair</p>
</div>
<div
class="p-4 bg-blue-50/40 rounded-2xl border border-blue-100/50 hover:bg-white transition-all">
<p class="text-[13px] font-bold text-gray-700">CIKM Senior PC on Resource/Demo Track</p>
</div>
<div
class="p-4 bg-blue-50/40 rounded-2xl border border-blue-100/50 hover:bg-white transition-all">
<p class="text-[13px] font-bold text-gray-700">IJCAI Web Chair</p>
</div>
<div
class="p-4 bg-blue-50/40 rounded-2xl border border-blue-100/50 hover:bg-white transition-all">
<p class="text-[13px] font-bold text-gray-700">ACML Area Chair</p>
</div>
</div>
</div>
<!-- Chairing -->
<div class="relative pl-10 border-l-4 border-gray-200">
<div class="absolute -left-[11px] top-0 w-5 h-5 bg-gray-200 rounded-full border-4 border-white">
</div>
<div class="flex items-center gap-3 mb-6">
<i class="fas fa-users-cog text-gray-300 text-lg"></i>
<h5 class="text-sm font-black text-gray-800 uppercase tracking-wider">Conference/Workshop
Chairing</h5>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-3 max-w-3xl">
<div class="p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<div class="flex items-start justify-between gap-2 mb-2">
<p class="text-[12px] font-black text-gray-800 leading-snug">ACM CoNext Finance Chair</p>
</div>
<div class="flex flex-wrap gap-1">
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2017</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<div class="flex items-start justify-between gap-2 mb-2">
<p class="text-[12px] font-black text-gray-800 leading-snug">EAI CyDiP Technical Program Committee Chair</p>
</div>
<div class="flex flex-wrap gap-1">
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2021</span>
</div>
</div>
</div>
</div>
<!-- TPC -->
<div class="relative pl-10 border-l-4 border-gray-200">
<div class="absolute -left-[11px] top-0 w-5 h-5 bg-gray-200 rounded-full border-4 border-white">
</div>
<div class="flex items-center gap-3 mb-6">
<i class="fas fa-list-ul text-gray-300 text-lg"></i>
<h5 class="text-sm font-black text-gray-800 uppercase tracking-wider">Technical Program
Committees</h5>
</div>
<div class="flex flex-wrap items-center gap-2 mb-6 pb-4 border-b border-gray-100">
<span class="text-[10px] font-black text-gray-400 uppercase tracking-widest mr-2">Areas:</span>
<span class="px-2.5 py-1 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-full border border-indigo-100">Vision</span>
<span class="px-2.5 py-1 bg-rose-50 text-rose-700 text-[10px] font-black rounded-full border border-rose-100">ML & AI</span>
<span class="px-2.5 py-1 bg-amber-50 text-amber-700 text-[10px] font-black rounded-full border border-amber-100">Data Mining</span>
<span class="px-2.5 py-1 bg-red-50 text-red-700 text-[10px] font-black rounded-full border border-red-100">Security</span>
<span class="px-2.5 py-1 bg-sky-50 text-sky-700 text-[10px] font-black rounded-full border border-sky-100">Web</span>
<span class="ml-auto text-[10px] font-black text-amber-500"><i class="fas fa-star"></i> Tier-1 venue</span>
</div>
<div class="space-y-6">
<!-- Computer Vision -->
<div>
<div class="flex items-center gap-2 mb-3">
<div class="w-7 h-7 bg-indigo-50 rounded-lg flex items-center justify-center">
<i class="fas fa-eye text-indigo-600 text-xs"></i>
</div>
<h6 class="text-[11px] font-black text-indigo-700 uppercase tracking-widest">Computer Vision</h6>
<span class="text-[10px] text-gray-400 font-bold">7 venues</span>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3">
<div class="p-4 bg-white rounded-2xl border border-indigo-100 shadow-sm hover:border-indigo-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">CVPR</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2023</span>
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-indigo-100 shadow-sm hover:border-indigo-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">ICCV</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2023</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-indigo-100 shadow-sm hover:border-indigo-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">ECCV</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2020</span>
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-indigo-100 shadow-sm hover:border-indigo-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">ACCV</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2021</span>
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-indigo-100 shadow-sm hover:border-indigo-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">BMVC</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2022</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-indigo-100 shadow-sm hover:border-indigo-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">WACV</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2021</span>
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2022</span>
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-indigo-100 shadow-sm hover:border-indigo-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">ICPR</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-indigo-50 text-indigo-700 text-[10px] font-black rounded-md border border-indigo-100">2024</span>
</div>
</div>
</div>
</div>
<!-- Machine Learning & AI -->
<div>
<div class="flex items-center gap-2 mb-3">
<div class="w-7 h-7 bg-rose-50 rounded-lg flex items-center justify-center">
<i class="fas fa-brain text-rose-600 text-xs"></i>
</div>
<h6 class="text-[11px] font-black text-rose-700 uppercase tracking-widest">Machine Learning & AI</h6>
<span class="text-[10px] text-gray-400 font-bold">4 venues</span>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3">
<div class="p-4 bg-white rounded-2xl border border-rose-100 shadow-sm hover:border-rose-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">NeurIPS</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2023</span>
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-rose-100 shadow-sm hover:border-rose-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">ICML</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2023</span>
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-rose-100 shadow-sm hover:border-rose-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">AAAI</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2022</span>
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2023</span>
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-rose-100 shadow-sm hover:border-rose-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">IJCAI</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2022</span>
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2023</span>
<span class="px-2 py-0.5 bg-rose-50 text-rose-700 text-[10px] font-black rounded-md border border-rose-100">2024</span>
</div>
</div>
</div>
</div>
<!-- Data Mining -->
<div>
<div class="flex items-center gap-2 mb-3">
<div class="w-7 h-7 bg-amber-50 rounded-lg flex items-center justify-center">
<i class="fas fa-database text-amber-600 text-xs"></i>
</div>
<h6 class="text-[11px] font-black text-amber-700 uppercase tracking-widest">Data Mining</h6>
<span class="text-[10px] text-gray-400 font-bold">3 venues</span>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3">
<div class="p-4 bg-white rounded-2xl border border-amber-100 shadow-sm hover:border-amber-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">KDD</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2022</span>
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2023</span>
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-amber-100 shadow-sm hover:border-amber-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">CIKM</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2020</span>
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2021</span>
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2022</span>
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2023</span>
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-amber-100 shadow-sm hover:border-amber-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">SDM</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-amber-50 text-amber-700 text-[10px] font-black rounded-md border border-amber-100">2024</span>
</div>
</div>
</div>
</div>
<!-- Security & Privacy -->
<div>
<div class="flex items-center gap-2 mb-3">
<div class="w-7 h-7 bg-red-50 rounded-lg flex items-center justify-center">
<i class="fas fa-shield-alt text-red-600 text-xs"></i>
</div>
<h6 class="text-[11px] font-black text-red-700 uppercase tracking-widest">Security & Privacy</h6>
<span class="text-[10px] text-gray-400 font-bold">4 venues</span>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3">
<div class="p-4 bg-white rounded-2xl border border-red-100 shadow-sm hover:border-red-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">SecureComm</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-red-50 text-red-700 text-[10px] font-black rounded-md border border-red-100">2019</span>
<span class="px-2 py-0.5 bg-red-50 text-red-700 text-[10px] font-black rounded-md border border-red-100">2020</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-red-100 shadow-sm hover:border-red-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">SOUPS</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-red-50 text-red-700 text-[10px] font-black rounded-md border border-red-100">2020</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-red-100 shadow-sm hover:border-red-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">ACM SAC ML App Track</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-red-50 text-red-700 text-[10px] font-black rounded-md border border-red-100">2020</span>
<span class="px-2 py-0.5 bg-red-50 text-red-700 text-[10px] font-black rounded-md border border-red-100">2021</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-red-100 shadow-sm hover:border-red-300 hover:shadow-md transition-all">
<p class="text-[12px] font-black text-gray-800 mb-1">CSET Workshop</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-red-50 text-red-700 text-[10px] font-black rounded-md border border-red-100">2021</span>
</div>
</div>
</div>
</div>
<!-- Web -->
<div>
<div class="flex items-center gap-2 mb-3">
<div class="w-7 h-7 bg-sky-50 rounded-lg flex items-center justify-center">
<i class="fas fa-globe text-sky-600 text-xs"></i>
</div>
<h6 class="text-[11px] font-black text-sky-700 uppercase tracking-widest">Web</h6>
<span class="text-[10px] text-gray-400 font-bold">1 venue</span>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3">
<div class="p-4 bg-white rounded-2xl border border-sky-100 shadow-sm hover:border-sky-300 hover:shadow-md transition-all relative">
<i class="fas fa-star absolute top-2 right-2 text-amber-400 text-[9px]" title="Tier-1 venue"></i>
<p class="text-[12px] font-black text-gray-800 mb-1 pr-4">TheWebConf (WWW)</p>
<div class="flex flex-wrap gap-1 mt-2">
<span class="px-2 py-0.5 bg-sky-50 text-sky-700 text-[10px] font-black rounded-md border border-sky-100">2020</span>
<span class="px-2 py-0.5 bg-sky-50 text-sky-700 text-[10px] font-black rounded-md border border-sky-100">2021</span>
<span class="px-2 py-0.5 bg-sky-50 text-sky-700 text-[10px] font-black rounded-md border border-sky-100">2022</span>
<span class="px-2 py-0.5 bg-sky-50 text-sky-700 text-[10px] font-black rounded-md border border-sky-100">2024</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Editorial -->
<div class="relative pl-10 border-l-4 border-gray-200">
<div class="absolute -left-[11px] top-0 w-5 h-5 bg-gray-200 rounded-full border-4 border-white">
</div>
<div class="flex items-center gap-3 mb-6">
<i class="fas fa-feather-alt text-gray-300 text-lg"></i>
<h5 class="text-sm font-black text-gray-800 uppercase tracking-wider">Editorial Boards</h5>
</div>
<div class="grid grid-cols-1 sm:grid-cols-3 gap-6">
<div class="p-5 bg-white rounded-2xl border border-gray-100 shadow-sm text-center">
<p class="text-[10px] font-black text-blue-600 uppercase tracking-widest mb-1">TIIS Editor
</p>
<p class="text-sm font-bold text-gray-800">2019 - 2021</p>
</div>
<div class="p-5 bg-white rounded-2xl border border-gray-100 shadow-sm text-center">
<p class="text-[10px] font-black text-blue-600 uppercase tracking-widest mb-1">IEEE TIFS</p>
<p class="text-sm font-bold text-gray-800">2019</p>
</div>
<div class="p-5 bg-white rounded-2xl border border-gray-100 shadow-sm text-center">
<p class="text-[10px] font-black text-blue-600 uppercase tracking-widest mb-1">AIAA JAIS</p>
<p class="text-sm font-bold text-gray-800">2020</p>
</div>
</div>
</div>
<!-- Session Chair -->
<div class="relative pl-10 border-l-4 border-gray-200">
<div class="absolute -left-[11px] top-0 w-5 h-5 bg-gray-200 rounded-full border-4 border-white">
</div>
<div class="flex items-center gap-3 mb-6">
<i class="fas fa-microphone text-gray-300 text-lg"></i>
<h5 class="text-sm font-black text-gray-800 uppercase tracking-wider">Session Chair</h5>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-3">
<div class="p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<div class="flex items-start justify-between gap-2 mb-2">
<p class="text-[12px] font-black text-gray-800 leading-snug">ACM SAC MLA</p>
</div>
<div class="flex flex-wrap gap-1">
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2021</span>
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<div class="flex items-start justify-between gap-2 mb-2">
<p class="text-[12px] font-black text-gray-800 leading-snug">TheWebConf</p>
</div>
<div class="flex flex-wrap gap-1">
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2021</span>
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2024</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<div class="flex items-start justify-between gap-2 mb-2">
<p class="text-[12px] font-black text-gray-800 leading-snug">ACM CCS</p>
</div>
<div class="flex flex-wrap gap-1">
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2021</span>
</div>
</div>
<div class="p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<div class="flex items-start justify-between gap-2 mb-2">
<p class="text-[12px] font-black text-gray-800 leading-snug">PAKDD</p>
</div>
<div class="flex flex-wrap gap-1">
<span class="px-2 py-0.5 bg-blue-50 text-blue-700 text-[10px] font-black rounded-md border border-blue-100">2024</span>
</div>
</div>
</div>
</div>
<!-- Workshop -->
<div class="relative pl-10 border-l-4 border-gray-200">
<div class="absolute -left-[11px] top-0 w-5 h-5 bg-gray-200 rounded-full border-4 border-white">
</div>
<div class="flex items-center gap-3 mb-8">
<i class="fas fa-flask text-gray-300 text-lg"></i>
<h5 class="text-sm font-black text-gray-800 uppercase tracking-wider">Workshop Organizer</h5>
</div>
<div class="space-y-8">
<div class="p-6 bg-gray-50/50 rounded-2xl border border-gray-100">
<p class="text-sm font-black text-gray-900 mb-4">ACM AsiaCCS Workshop on the Security Implications of Deepfakes and Cheapfakes (WDC)</p>
<div class="flex flex-wrap gap-2">
<a href="https://sites.google.com/view/wdc-2022/" target="_blank" rel="noopener noreferrer"
class="px-5 py-2 bg-white text-blue-600 text-[11px] font-black rounded-lg border border-blue-100 hover:bg-blue-600 hover:text-white transition-all shadow-sm">2022</a>
<a href="https://sites.google.com/view/wdc-2023/" target="_blank" rel="noopener noreferrer"
class="px-5 py-2 bg-white text-blue-600 text-[11px] font-black rounded-lg border border-blue-100 hover:bg-blue-600 hover:text-white transition-all shadow-sm">2023</a>
<a href="https://sites.google.com/view/wdc-2024/" target="_blank" rel="noopener noreferrer"
class="px-5 py-2 bg-white text-blue-600 text-[11px] font-black rounded-lg border border-blue-100 hover:bg-blue-600 hover:text-white transition-all shadow-sm">2024</a>
</div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div class="flex items-center gap-3 p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<span class="w-1.5 h-1.5 bg-blue-400 rounded-full"></span>
<p class="text-[12px] font-bold text-gray-700 leading-tight"><a href="https://sites.google.com/view/ansd23?pli=1" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline">The 1st International Workshop on Anomaly and Novelty Detection in Satellite and Drones Systems (ANSD)</a> at <a href="https://uobevents.eventsair.com/cikm2023/" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline">CIKM 2023</a>, Birmingham UK</p>
</div>
<div class="flex items-center gap-3 p-4 bg-white rounded-2xl border border-gray-100 shadow-sm">
<span class="w-1.5 h-1.5 bg-blue-400 rounded-full"></span>
<p class="text-[12px] font-bold text-gray-700 leading-tight">The First International Workshop on AI-Driven Modeling and Management of Data (AIMM 2024) at <a href="https://insights.sei.cmu.edu/news/international-conference-on-conceptual-modeling-er-2024-opens-call-for-papers/" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline">International Conference on Conceptual Modeling (ER) 2024</a>, Carnegie Mellon University, PA, USA</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer is injected here by common.js -->
</body>
</html>