-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path2026-02
More file actions
675 lines (582 loc) · 23.2 KB
/
2026-02
File metadata and controls
675 lines (582 loc) · 23.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>모두의연구소 2026년 2월 LAB 시간표</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: url('dubai_cookie.png') no-repeat center center fixed;
background-size: cover;
min-height: 100vh;
padding: 10px;
margin: 0;
overflow-x: auto;
position: relative;
}
/* Cookie Falling Animation */
.cookie-flake {
position: fixed;
top: -10%;
z-index: 9999;
user-select: none;
cursor: default;
animation-name: cookies-fall, cookies-shake;
animation-duration: 10s, 3s;
animation-timing-function: linear, ease-in-out;
animation-iteration-count: infinite, infinite;
animation-play-state: running, running;
/* Cookie Style */
width: 35px;
/* Slightly larger to allow cropping */
height: 35px;
background-image: url('darker_dubai_cookie.png');
background-size: 140%;
/* Zoom in to hide white border */
background-position: center;
background-repeat: no-repeat;
border-radius: 50%;
opacity: 0.95;
}
@keyframes cookies-fall {
0% {
top: -10%;
}
100% {
top: 100%;
}
}
@keyframes cookies-shake {
0%,
100% {
transform: translateX(0) rotate(0deg);
}
50% {
transform: translateX(80px) rotate(180deg);
}
}
.cookie-flake:nth-of-type(1) {
left: 1%;
animation-delay: 0s, 0s;
}
.cookie-flake:nth-of-type(2) {
left: 10%;
animation-delay: 1s, 1s;
}
.cookie-flake:nth-of-type(3) {
left: 20%;
animation-delay: 6s, 0.5s;
}
.cookie-flake:nth-of-type(4) {
left: 30%;
animation-delay: 4s, 2s;
}
.cookie-flake:nth-of-type(5) {
left: 40%;
animation-delay: 2s, 2s;
}
.cookie-flake:nth-of-type(6) {
left: 50%;
animation-delay: 8s, 3s;
}
.cookie-flake:nth-of-type(7) {
left: 60%;
animation-delay: 6s, 2s;
}
.cookie-flake:nth-of-type(8) {
left: 70%;
animation-delay: 2.5s, 1s;
}
.cookie-flake:nth-of-type(9) {
left: 80%;
animation-delay: 1s, 0s;
}
.cookie-flake:nth-of-type(10) {
left: 90%;
animation-delay: 3s, 1.5s;
}
.container {
width: 100%;
max-width: none;
margin: 0 auto;
background: rgba(255, 255, 255, 0.9);
/* Semi transparent for ice effect */
border-radius: 15px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
overflow: hidden;
min-height: 100vh;
display: flex;
flex-direction: column;
backdrop-filter: blur(5px);
z-index: 10;
position: relative;
}
.header {
background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
/* Fresh Green Gradient */
color: white;
text-align: center;
padding: 15px;
flex-shrink: 0;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.header h1 {
font-size: clamp(1.2rem, 2vw, 2rem);
font-weight: 700;
margin-bottom: 5px;
}
.header p {
font-size: 1rem;
opacity: 0.95;
margin: 0;
}
.schedule-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
/* 5 columns: Tue, Wed, Thu, Sat1, Sat2 */
gap: 1px;
background: #b0c4de;
/* Light Steel Blue */
margin: 0;
flex: 1;
font-size: clamp(0.7rem, 1vw, 1rem);
}
.day-column {
background: rgba(255, 255, 255, 0.85);
display: flex;
flex-direction: column;
overflow: hidden;
}
.day-header {
background: #e6f3ff;
/* Very pale blue */
color: #2c3e50;
text-align: center;
padding: 10px;
font-weight: 700;
font-size: 1.1rem;
flex-shrink: 0;
border-bottom: 2px solid #b0c4de;
}
.day-content {
flex: 1;
padding: 0;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.lab-item {
margin: 4px;
border-radius: 8px;
padding: 8px;
position: relative;
transition: all 0.3s ease;
cursor: pointer;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
flex-shrink: 0;
color: #2c3e50;
}
.lab-item:hover {
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
/* Winter Themed Colors for Labs */
.gangnam {
background: linear-gradient(135deg, #a1887f 0%, #8d6e63 100%);
/* Milk Brown */
border: 1px solid #8d6e63;
color: #ffffff;
/* White text */
}
.yeoksam {
background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
/* Lavender Ice */
border: 1px solid #d1c4e9;
}
.online {
background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
/* Silver/Cloud */
border: 1px solid #b0bec5;
}
.tech-for-impact {
background: linear-gradient(135deg, #fff1eb 0%, #ace0f9 100%);
/* Ice Warmth */
border: 1px solid #b3e5fc;
}
.lab-name {
font-weight: 700;
font-size: clamp(0.65rem, 1vw, 0.8rem);
line-height: 1.1;
margin-bottom: 4px;
word-break: keep-all;
hyphens: auto;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.lab-info {
font-size: clamp(0.55rem, 0.8vw, 0.7rem);
line-height: 1.2;
opacity: 0.9;
}
.room-number {
position: absolute;
top: 4px;
right: 4px;
background: rgba(255, 255, 255, 0.8);
color: #0d47a1;
padding: 1px 4px;
border-radius: 4px;
font-size: 0.6rem;
font-weight: 600;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(3px);
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.modal-content {
background-color: rgba(255, 255, 255, 0.95);
margin: 5% auto;
padding: 0;
border-radius: 15px;
width: 90%;
max-width: 600px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: slideIn 0.3s ease;
overflow: hidden;
}
@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.modal-header {
background: linear-gradient(135deg, #66a6ff 0%, #89f7fe 100%);
color: white;
padding: 25px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.modal-header h2 {
margin-bottom: 10px;
font-size: 1.8em;
}
.modal-body {
padding: 30px;
}
.modal-info-row {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #e0e0e0;
}
.modal-label {
font-weight: bold;
color: #0288d1;
/* Strong Blue */
margin-bottom: 8px;
font-size: 0.9em;
text-transform: uppercase;
}
.modal-value {
color: #37474f;
font-size: 1.1em;
line-height: 1.6;
}
.close {
color: white;
float: right;
font-size: 32px;
font-weight: bold;
cursor: pointer;
transition: transform 0.3s ease;
}
.close:hover {
transform: rotate(90deg);
}
@media (max-width: 768px) {
body {
padding: 5px;
}
.header h1 {
font-size: 1.4rem;
}
.day-header {
padding: 8px;
font-size: 1rem;
}
.lab-item {
margin: 3px;
padding: 6px;
}
}
.notice-box {
margin: 20px;
padding: 20px;
background: #e8f5e9;
/* Light Green */
border-left: 5px solid #8d6e63;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
color: #3e2723;
}
.notice-box h3 {
margin-bottom: 10px;
color: #5d4037;
font-size: 1.1em;
}
.notice-box ul {
list-style-type: none;
padding-left: 5px;
}
.notice-box li {
margin-bottom: 5px;
padding-left: 15px;
position: relative;
}
.notice-box li:before {
content: "•";
position: absolute;
left: 0;
color: #8d6e63;
}
</style>
</head>
<body>
<div class="cookie-flakes" aria-hidden="true">
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
<div class="cookie-flake"></div>
</div>
<div class="container">
<div class="header">
<h1>모두의연구소</h1>
<p>2026년 2월 LAB 시간표</p>
</div>
<div class="schedule-grid">
<!-- Monday removed -->
<div class="day-column">
<div class="day-header">화</div>
<div class="day-content" id="tuesday-meetings"></div>
</div>
<div class="day-column">
<div class="day-header">수</div>
<div class="day-content" id="wednesday-meetings"></div>
</div>
<div class="day-column">
<div class="day-header">목</div>
<div class="day-content" id="thursday-meetings"></div>
</div>
<div class="day-column">
<div class="day-header">토(오전)</div>
<div class="day-content" id="saturday1-meetings"></div>
</div>
<div class="day-column">
<div class="day-header">토(오후)</div>
<div class="day-content" id="saturday2-meetings"></div>
</div>
<!-- Sunday removed -->
</div>
<div class="notice-box">
<h3>[ 2월 행사 & 휴관 안내 ]</h3>
<ul>
<li>2/10 (화) LAB 활동 공유회 - NeurIPS 학회 후기</li>
<li>2/11 (수) 모두팝 <테크포임팩트 LAB 2기 기술세미나 & 랩장 패널토크></li>
<li>2/14 (토) 설 연휴로 인한 휴관</li>
</ul>
</div>
</div>
<div id="meetingModal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2 id="modal-title"></h2>
<div id="modal-subtitle"></div>
</div>
<div class="modal-body">
<div class="modal-info-row">
<div class="modal-label"><span class="emoji-icon">👤</span>랩장</div>
<div class="modal-value" id="modal-leader"></div>
</div>
<div class="modal-info-row">
<div class="modal-label"><span class="emoji-icon">⏰</span>시간</div>
<div class="modal-value" id="modal-time"></div>
</div>
<div class="modal-info-row">
<div class="modal-label"><span class="emoji-icon">📍</span>장소</div>
<div class="modal-value" id="modal-location"></div>
</div>
<div class="modal-info-row">
<div class="modal-label"><span class="emoji-icon">📝</span>소개</div>
<div class="modal-value" id="modal-description"></div>
</div>
</div>
</div>
</div>
<script>
function getLocationType(loc) {
if (loc.indexOf('강남캠') >= 0) return 'gangnam';
if (loc.indexOf('역삼캠') >= 0) return 'yeoksam';
return 'online';
}
function getRoom(loc) {
var match = loc.match(/(C\d+|M\d+(?:-\d+)?|\d+)/);
return match ? match[1] : '';
}
function extractTime(locationTime) {
var parts = locationTime.split(',');
if (parts.length < 2) return '';
var timeStr = parts[1].trim();
return timeStr;
}
var csvData = `
월 온라인, 10:30 ~ 12:30 데이터 기반 강사 매칭 플랫폼 연구 LAB 오정민 교육 컨설팅 데이터를 기반으로 강사–학생 매칭 알고리즘과 플랫폼 구조를 연구·설계\n월 온라인, 20:00 - 22:00 HAE-RAE LAB 손규진 \n격주 월 온라인, 20:00 ~ 22:00 Infosys LAB 어경권 \n격주 월 온라인, 13:00 ~ 15:00 ss LAB 김동균 \n월 온라인, 19:00 ~ 21:00 Neural-Superintelligence LAB Season 2 윤주영 University of Southern California LLM Training Dynamics 및 Optimization 연구\n격주 월 온라인, 20:00 ~ 22:00 무허가 지능낭비 연구소 LAB 임주왕 취미로 연구하는 사람들의 모임\n화 강남캠 M2, 19:30 ~ 21:30 All Sense LAB 김재욱 \n화 온라인, 19:30 ~ 21:30 image generation LAB 김형섭 \n일 온라인, 19:30 ~ 21:00 Biomedical Signal Processing LAB 조현우 \n화 강남캠 C2, 19:30 ~ 21:30 Web3 AI 시즌3 LAB 김민현 \n수 온라인, 21:00 - 23:00 Medical AI LAB 이수정 \n격주 수 강남캠 M4, 19:30 ~ 21:30 HR Case-Study LAB 서승민 \n수 강남캠 M1 - 2, 19:30 ~ 21:30 AI 에이전트 LAB(Season 2) LAB 최규남 \n토 강남캠 C2, 14:00 ~ 17:30 모두의 로보틱스 LAB 조인령 일상에 범용적으로 쓰일 수 있는 로봇을 연구합니다\n격주 수 온라인, 20:00 ~ 22:00 NVIDIA - Data Science with RAPIDS LAB Season2 이제영 가톨릭 대학교 Computer Vision & Machine Intelligence lab 1호 박사\n수 강남캠 C3, 19:30 ~ 21:30 BlockBIM LAB (홀수 주 운영) 김재성 \n목 온라인, 19:30 - 21:30 NVIDIA - Foundation Models LAB 김준수 \n토 온라인, 10:00-12:00 Intelligent Agent LAB 이정우 \n토 온라인, 13:30-15:30 무인이동체 LAB 박광수 \n토 강남캠 M4, 13:30-15:30 ISE LAB 남승호 \n토 강남캠 M3, 10:30-12:30 Spiritus LAB 황윤경 \n토 온라인, 14:00-16:00 Bio X Learning LAB 양우정 \n토 온라인, 11:00~13:00 PrompTart LAB 명지윤 \n토 온라인, 12:00 ~ 14:00 Urban LAB 장기문 \n토 온라인, 14:30 ~ 16:30 FREE LAB 신기성 \n토 온라인, 14:00 ~ 16:00 무드톡 프로젝트 LAB 이수경 \n토 온라인, 11:00 ~ 13:00 Poetics Machine LAB 윤주호 LLM을 활용해 이야기의 플롯을 만드는 애플리케이션 개발 및 관련 연구 진행\n토 강남캠 C2, 10:30 ~ 12:30 반려로봇랩 시즌5 LAB 현청천 반려로봇랩은 모든 가정이 로봇과 함께 살아가는 '퍼스널 로봇 시대'를 준비하는 랩입니다.\n목 강남캠 C2-C3, 19:30 ~ 21:30 Creative Vibe Coding LAB 한태재 코딩없는 Creative Vibe Coding\n토 강남캠 M3, 14:00 ~ 16:00 DE LAB Season3 전민규 NLP, 이미지 AI, 그리고 LLM 에이전트 등 AI관련 다양한 분야의 연구를 진행합니다\n토 강남캠 M1-M2, 10:30 ~ 12:30 DR4R LAB Season 8 LAB 박철 Physical AI Study and Implementation\n수 온라인, 19:00 ~ 21:00 MAAP LAB 고준영 Music AI Assemble People\n월 온라인, 20:00 ~ 22:00 AI-AI Lab : #3 LAB 임주왕 예술&기술 융합을 연구하는 AI-Art Interaction Lab의 3번째 연구입니다.\n월 온라인, 20:00 ~ 22:00 Humanoid Robot 3기 LAB 정환석 Humanoid Robot 관련 논문을 직접 구현하고 오픈소스를 실행하며 스터디 합니다.\n월 온라인, 20:00 ~ 22:00 무허가 지능낭비 연구소 LAB 임주왕 취미로 연구하는 사람들의 모임\n토 온라인, 10:30 ~ 12:30 PatentAI (Season 2) LAB 김수형 AI 특허 분석을 활용해 실제 경영 현장에 적용 가능한 인사이트를 연구하는 모임\n토 강남캠 M2, 14:00 ~ 16:00 Hell Maker - 2기 LAB 김도혁 세상에 쓸모 없고 재미난 것을 만드는 모임\n수 온라인, 20:00 ~ 22:00 0xPaper LAB 강건 Deep Papers 스타일로 AI 논문을 깊이 파고들어 구현까지!
`.split('\n');
var data = [];
for (var i = 0; i < csvData.length; i++) {
var parts = csvData[i].split('\t');
if (parts.length >= 5) {
var day = parts[0].replace('격주 ', '').trim();
var locationTime = parts[1];
var loc = locationTime.split(',')[0].trim();
var time = extractTime(locationTime);
data.push({
day: day,
location: loc,
room: getRoom(loc),
time: time,
name: parts[2],
leader: parts[3],
description: parts[4],
type: getLocationType(loc),
isTech: parts[2].indexOf('[테크포임팩트') >= 0 || parts[2].indexOf('[사이드임팩트]') >= 0
});
}
}
var dayMap = { '월': 'monday', '화': 'tuesday', '수': 'wednesday', '목': 'thursday', '토': 'saturday', '일': 'sunday' };
var organized = { monday: [], tuesday: [], wednesday: [], thursday: [], saturday: [], sunday: [] };
for (var i = 0; i < data.length; i++) {
var m = data[i];
var key = dayMap[m.day];
if (key && organized[key]) {
organized[key].push(m);
}
}
function getMinutes(timeStr) {
var match = timeStr.match(/(\d{1,2}):(\d{2})/);
if (!match) return 0;
return parseInt(match[1]) * 60 + parseInt(match[2]);
}
function getRoomRank(room) {
if (!room) return 1000;
var upper = room.toUpperCase();
if (upper.startsWith('C')) {
// C1 -> 101, C10 -> 110
return 100 + parseInt(upper.replace('C', '') || 0);
}
if (upper.startsWith('M')) {
// M1 -> 201
return 200 + parseInt(upper.replace('M', '').split('-')[0] || 0);
}
return 900;
}
for (var key in organized) {
organized[key].sort(function (a, b) {
var rankA = getRoomRank(a.room);
var rankB = getRoomRank(b.room);
if (rankA !== rankB) {
return rankA - rankB;
}
return getMinutes(a.time) - getMinutes(b.time);
});
}
var satMeetings = organized.saturday;
var saturday1 = [];
var saturday2 = [];
for (var i = 0; i < satMeetings.length; i++) {
var m = satMeetings[i];
var startMin = getMinutes(m.time);
if (startMin < 780) { // 13:00 = 780
saturday1.push(m);
} else {
saturday2.push(m);
}
}
function renderMeetings(meetings, containerId) {
var container = document.getElementById(containerId);
for (var i = 0; i < meetings.length; i++) {
var m = meetings[i];
var div = document.createElement('div');
var className = 'lab-item ' + m.type;
if (m.isTech) className += ' tech-for-impact';
div.className = className;
var html = '';
if (m.room) html += '<div class="room-number">' + m.room + '</div>';
html += '<div class="lab-name">' + m.name + '</div>';
html += '<div class="lab-info">' + m.location + ' ' + m.time + '</div>';
div.innerHTML = html;
div.onclick = (function (meeting) {
return function () {
document.getElementById('modal-title').textContent = meeting.name;
document.getElementById('modal-subtitle').textContent = meeting.day + '요일';
document.getElementById('modal-leader').textContent = meeting.leader;
document.getElementById('modal-time').textContent = meeting.time;
document.getElementById('modal-location').textContent = meeting.location;
document.getElementById('modal-description').textContent = meeting.description;
document.getElementById('meetingModal').style.display = 'block';
};
})(m);
container.appendChild(div);
}
}
renderMeetings(organized.tuesday, 'tuesday-meetings');
renderMeetings(organized.wednesday, 'wednesday-meetings');
renderMeetings(organized.thursday, 'thursday-meetings');
renderMeetings(saturday1, 'saturday1-meetings');
renderMeetings(saturday2, 'saturday2-meetings');
document.getElementsByClassName('close')[0].onclick = function () {
document.getElementById('meetingModal').style.display = 'none';
};
window.onclick = function (event) {
if (event.target.id === 'meetingModal') {
document.getElementById('meetingModal').style.display = 'none';
}
};
</script>
</body>
</html>