-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path2026-01.html
More file actions
643 lines (558 loc) · 22.6 KB
/
2026-01.html
File metadata and controls
643 lines (558 loc) · 22.6 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>모두의연구소 2026년 1월 LAB 시간표</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #fff0f5;
min-height: 100vh;
padding: 10px;
margin: 0;
overflow-x: auto;
}
.container {
width: 100%;
max-width: none;
margin: 0 auto;
background: white;
border-radius: 15px;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
overflow: hidden;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.header {
background: #F1585C;
color: white;
text-align: center;
padding: 15px;
flex-shrink: 0;
}
.header h1 {
font-size: clamp(1.2rem, 2vw, 2rem);
font-weight: 700;
margin-bottom: 5px;
}
.header p {
font-size: 1rem;
opacity: 0.9;
margin: 0;
}
.legend {
display: flex;
justify-content: center;
gap: 20px;
padding: 10px;
background: #f8f9fa;
flex-wrap: wrap;
flex-shrink: 0;
}
.legend-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
}
.legend-color {
width: 16px;
height: 16px;
border-radius: 50%;
}
.legend-gangnam {
background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
}
.legend-yeoksam {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.legend-online {
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}
.legend-tech-for-impact {
background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
}
.schedule-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
gap: 1px;
background: #e0e0e0;
margin: 0;
flex: 1;
font-size: clamp(0.7rem, 1vw, 1rem);
}
.day-column {
background: white;
display: flex;
flex-direction: column;
overflow: hidden;
}
.day-header {
background: #f5f5f5;
color: #000000;
text-align: center;
padding: 10px;
font-weight: 700;
font-size: 1.1rem;
flex-shrink: 0;
}
.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: #000000;
}
.lab-item:hover {
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.lab-item:active {
transform: translateY(0px);
}
.gangnam {
background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
color: #000000;
}
.yeoksam {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
color: #000000;
}
.online {
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
color: #000000;
}
.tech-for-impact {
background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
color: #000000;
}
.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;
}
.room-number {
position: absolute;
top: 4px;
right: 4px;
background: rgba(255,255,255,0.9);
color: #333;
padding: 1px 4px;
border-radius: 4px;
font-size: 0.6rem;
font-weight: 600;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.modal-content {
background-color: white;
margin: 5% auto;
padding: 0;
border-radius: 15px;
width: 90%;
max-width: 600px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
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, #F1585C 0%, #ff8a80 100%);
color: white;
padding: 25px;
}
.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-info-row:last-child {
border-bottom: none;
}
.modal-label {
font-weight: bold;
color: #F1585C;
margin-bottom: 8px;
font-size: 0.9em;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.modal-value {
color: #333;
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;
line-height: 1;
}
.close:hover {
transform: rotate(90deg);
}
.emoji-icon {
font-size: 1.5em;
margin-right: 10px;
}
@media (max-width: 1400px) {
.header h1 {
font-size: 1.8rem;
}
.lab-name {
font-size: 0.75rem;
}
.lab-info {
font-size: 0.65rem;
}
}
@media (max-width: 1200px) {
.header h1 {
font-size: 1.6rem;
}
.lab-name {
font-size: 0.7rem;
}
.lab-info {
font-size: 0.6rem;
}
.room-number {
font-size: 0.55rem;
}
}
@media (max-width: 768px) {
body {
padding: 5px;
}
.container {
min-height: 100vh;
height: auto;
}
.header {
padding: 10px;
}
.header h1 {
font-size: 1.4rem;
}
.day-header {
padding: 8px;
font-size: 1rem;
}
.lab-item {
margin: 3px;
padding: 6px;
}
.lab-name {
font-size: clamp(0.55rem, 1.5vw, 0.7rem);
-webkit-line-clamp: 3;
line-clamp: 3;
}
.lab-info {
font-size: clamp(0.45rem, 1vw, 0.6rem);
}
.legend {
gap: 10px;
padding: 8px;
font-size: 0.8rem;
}
.schedule-grid {
font-size: clamp(0.6rem, 2vw, 0.9rem);
}
.modal-content {
width: 95%;
margin: 10% auto;
}
.modal-header {
padding: 20px;
}
.modal-body {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>모두의연구소</h1>
<p>2026년 1월 LAB 시간표</p>
</div>
<div class="legend">
<div class="legend-item">
<div class="legend-color legend-gangnam"></div>
<span>강남캠퍼스</span>
</div>
<div class="legend-item">
<div class="legend-color legend-yeoksam"></div>
<span>역삼캠퍼스</span>
</div>
<div class="legend-item">
<div class="legend-color legend-online"></div>
<span>온라인</span>
</div>
<div class="legend-item">
<div class="legend-color legend-tech-for-impact"></div>
<span>테크포임팩트/사이드임팩트 LAB</span>
</div>
<div class="legend-item" style="margin-left: 20px; color: #666;">
<span>💡 LAB을 클릭하면 상세정보를 볼 수 있습니다</span>
</div>
</div>
<div class="schedule-grid">
<div class="day-column">
<div class="day-header">월</div>
<div class="day-content" id="monday-meetings"></div>
</div>
<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>
<div class="day-column">
<div class="day-header">일</div>
<div class="day-content" id="sunday-meetings"></div>
</div>
</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] : '';
}
// 2026년 1월 기준 활성화 된 LAB 리스트 (요청사항: 목요일 DE LAB, 토요일 AI-Recreation 삭제)
var meetings = `월 온라인, 10:30 10:30 ~ 12:30 데이터 기반 강사 매칭 플랫폼 연구 LAB 오정민 교육 컨설팅 데이터를 기반으로 강사–학생 매칭 알고리즘과 플랫폼 구조를 연구·설계
월 온라인, 20:00 20:00 - 22:00 HAE-RAE LAB 손규진 PAPER , OPEN_SOURCE
격주 월 온라인, 20:00 20:00 ~ 22:00 Infosys LAB 어경권 PAPER
격주 월 온라인, 13:00 13:00 ~ 15:00 ss LAB 김동균 PAPER
월 온라인, 20:00 20:00 ~ 22:00 교육 콘텐츠 제작을 자동화하는 AI LAB 오정민 학원 운영자를 위한 블로그·SNS 자동화 AI 플랫폼을 함께 개발하는 실전 Lab입니다.
월 온라인, 19:00 19:00 ~ 21:00 OpenNN LAB Season 2 윤주영 University of Southern California LLM Training Dynamics 및 Optimization 연구
격주 월 온라인, 20:00 20:00 ~ 22:00 무허가 지능낭비 연구소 LAB 임주왕 취미로 연구하는 사람들의 모임
월 온라인, 20:00 20:00 ~ 22:00 AI-AI Lab : #3 LAB 임주왕 예술&기술 융합을 연구하는 AI-Art Interaction Lab의 3번째 연구입니다.
화 강남캠M2, 19:30 19:30 ~ 21:30 All Sense LAB 김재욱 논문, 대회참가
화 온라인, 19:00 19:00 ~ 21:00 TourGenie LAB 정기용 PAPER, OPEN_SOURCE
화 온라인, 19:30 19:30 ~ 21:30 image generation LAB 김형섭 ETC
화 강남캠C2, 19:30 19:30 ~ 21:30 Web3 AI 시즌3 LAB 김민현 OPEN_SOURCE
화 강남캠C4, 19:30 19:30 ~ 21:30 Creative Vibe Coding LAB 한태재 코딩없는 Creative Vibe Coding
화 강남캠C3, 19:00 19:00 - 22:00 [테크포임팩트 2기] 다정 LAB 김승희 자립 준비 청년들의 실제 니즈를 파악하고, 브라더스키퍼와 함께 현장에서 바로 사용 가능한 MVP를 개발
수 온라인, 20:00 20:00 - 22:00 Game AI LAB 서동해 OPEN_SOURCE , PAPER
격주 수 강남캠M4, 19:30 19:30 ~ 21:30 HR Case-Study LAB 서승민 BOOK, ETC
수 강남캠M1 - 2, 19:30 19:30 ~ 21:30 AI 에이전트 LAB(Season 2) LAB 최규남 OPEN_SOURCE, PAPER
격주 수 온라인, 20:00 20:00 ~ 22:00 NVIDIA - Data Science with RAPIDS LAB Season2 이제영 가톨릭 대학교 Computer Vision & Machine Intelligence lab 1호 박사
격주 수 강남캠C3, 19:30 19:30 ~ 21:30 BlockBIM LAB 김재성 OPEN_SOURCE, PAPER
수 온라인, 19:00 19:00 ~ 21:00 MAAP LAB 고준영 Music AI Assemble People
수 강남캠C4, 19:00 19:00 - 22:00 [테크포임팩트 2기] 동접 LAB 조현욱 AI 기반 이미지 분석을 통해 매장 내부의 접근성 요소를 자동으로 추출하고 평가하는 시스템을 개발
목 온라인, 18:00 18:00 ~ 20:00 지식추적모델과 추천시스템으로 학습지원 서비스 제작 LAB 함인아 지식추적 모델과 추천시스템을 결합하여 실제 사람의 학습에 적용한 서비스의 개발
목 온라인, 19:00 19:00 - 21:00 AI-driven Aerospace LAB 이동우 PAPER
목 강남캠C4, 19:30 19:30 - 21:30 [테크포임팩트 2기] B-Peach LAB 황윤경 느린 학습자를 위한 쉬운 우리말 번안기 제작
목 강남캠C1, 19:00 19:00 - 21:00 [테크포임팩트 2기] 온소리 LAB 정효정, 이호준 AI 음성 합성 기술을 활용하여 일상 단어와 환경음 인식 훈련이 가능한 웹 기반 도구를 개발
토 강남캠C2, 14:00 14:00 ~ 17:30 모두의 로보틱스 LAB 조인령 일상에 범용적으로 쓰일 수 있는 로봇을 연구합니다
토 강남캠M4, 10:30 10:30 - 12:30 Quantum Computing LAB Season 4 LAB 이진호 BOOK, PAPER
토 온라인, 10:30 10:30 ~ 12:30 MirrorMind Lab 오승환 OPEN_SOURCE , COMPETITION
토 온라인, 12:00 12:00 ~ 14:00 Urban LAB 장기문 PAPER
토 온라인, 14:30 14:30 ~ 16:30 FREE LAB 신기성 PAPER, COMPETITION
토 온라인, 14:00 14:00 ~ 16:00 무드톡 프로젝트 LAB 이수경 COMPETITION, ETC
토 강남캠C4, 10:30 10:30 ~ 12:30 Multi-Agent LLM Trading LAB 성민석 PAPER, BOOK
토 온라인, 11:00 11:00 ~ 13:00 Poetics Machine LAB 윤주호 LLM을 활용해 이야기의 플롯을 만드는 애플리케이션 개발 및 관련 연구 진행
토 강남캠C2, 10:30 10:30 ~ 12:30 반려로봇랩 시즌5 LAB 현청천 반려로봇랩은 모든 가정이 로봇과 함께 살아가는 '퍼스널 로봇 시대'를 준비하는 랩입니다.
토 강남캠M3, 14:00 14:00 ~ 16:00 DE LAB Season 3 전민규 NLP, 이미지 AI, 그리고 LLM 에이전트 등 AI관련 다양한 분야의 연구를 진행합니다
토 강남캠M1, 10:30 10:30 ~ 12:30 DR4R LAB Season 8 LAB 박철 Physical AI Study and Implementation
토 강남캠C1, 19:00 19:00 - 22:00 [테크포임팩트 2기] 가방싸 LAB 최미연 테크포임팩트 캠퍼스에서 개발된 "가방으로 살아남기" 게임을 완성도 높은 교육 도구로 고도화
토 강남캠C3, 10:30 10:30 - 13:00 [테크포임팩트 2기] 이을 LAB 최재훈 AR과 GPS를 활용한 게임화된 지역 참여 시스템을 통해 관계인구의 활동을 질적으로 데이터화
토 강남캠C3, 13:00 13:00 - 17:00 [테크포임팩트 2기] 유어덴티티 LAB 김성준 학교 밖 청소년들의 다양한 매력과 개성을 표현할 수 있는 PWA 기반 커뮤니티 플랫폼을 개발
일 온라인, 19:30 19:30 ~ 21:00 Biomedical Signal Processing LAB 조현우 PAPER, COMPETITION`.split('\n');
var data = [];
for (var i = 0; i < meetings.length; i++) {
var parts = meetings[i].split('\t');
if (parts.length >= 6) {
var loc = parts[1].split(',')[0].trim();
data.push({
day: parts[0].replace('격주 ', ''),
location: loc,
room: getRoom(loc),
type: getLocationType(loc),
time: parts[2],
name: parts[3],
leader: parts[4],
description: parts[5],
// [테크포임팩트] 혹은 [사이드임팩트] 키워드가 모임명에 포함되어 있으면 강조
isTech: parts[3].indexOf('[테크포임팩트') >= 0 || parts[3].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]);
}
for (var key in organized) {
organized[key].sort(function(a, b) {
return getMinutes(a.time) - getMinutes(b.time);
});
}
var satMeetings = organized.saturday;
var midPoint = Math.ceil(satMeetings.length / 2);
var saturday1 = satMeetings.slice(0, midPoint);
var saturday2 = satMeetings.slice(midPoint);
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 + (meeting.room ? ' ' + meeting.room : '');
document.getElementById('modal-description').textContent = meeting.description;
document.getElementById('meetingModal').style.display = 'block';
};
})(m);
container.appendChild(div);
}
}
renderMeetings(organized.monday, 'monday-meetings');
renderMeetings(organized.tuesday, 'tuesday-meetings');
renderMeetings(organized.wednesday, 'wednesday-meetings');
renderMeetings(organized.thursday, 'thursday-meetings');
renderMeetings(saturday1, 'saturday1-meetings');
renderMeetings(saturday2, 'saturday2-meetings');
renderMeetings(organized.sunday, 'sunday-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>