-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
655 lines (581 loc) · 21.5 KB
/
index.html
File metadata and controls
655 lines (581 loc) · 21.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mark Lifson - AI Research & Tools</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Helvetica, Arial, sans-serif;
background: #0a0e27;
color: #fff;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
/* Animated background */
.bg-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.bg-animation::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 20% 80%, #1a1f4e 0%, transparent 50%),
radial-gradient(circle at 80% 20%, #2d1b69 0%, transparent 50%),
radial-gradient(circle at 40% 40%, #1e3a5f 0%, transparent 50%);
animation: rotate 30s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
.bg-animation::before {
animation: none;
}
}
/* Grid overlay */
.grid-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size: 50px 50px;
z-index: -1;
}
/* Main container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
position: relative;
z-index: 1;
}
/* Header */
.header {
text-align: center;
margin-bottom: 60px;
animation: fadeInDown 0.8s ease;
}
.title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 20px;
letter-spacing: -1px;
}
.subtitle {
font-size: 1.25rem;
color: #94a3b8;
font-weight: 300;
letter-spacing: 0.5px;
}
/* Navigation tabs */
.nav-tabs {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 50px;
flex-wrap: wrap;
}
.nav-tab {
padding: 12px 28px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 30px;
color: #94a3b8;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
}
.nav-tab:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff;
}
.nav-tab.active {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
border-color: transparent;
}
/* Section */
.section {
margin-bottom: 60px;
}
.section-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 30px;
}
.section-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
}
.section-icon.presentations {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
border: 1px solid rgba(102, 126, 234, 0.3);
}
.section-icon.webapps {
background: linear-gradient(135deg, rgba(74, 226, 192, 0.2) 0%, rgba(33, 150, 243, 0.2) 100%);
border: 1px solid rgba(74, 226, 192, 0.3);
}
.section-title {
font-size: 1.5rem;
font-weight: 600;
color: #fff;
}
.section-subtitle {
font-size: 0.9rem;
color: #64748b;
margin-top: 4px;
}
/* Cards grid */
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 25px;
}
/* Card */
.card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
animation: fadeInUp 0.8s ease;
animation-fill-mode: both;
backdrop-filter: blur(10px);
position: relative;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
.card.presentation::before {
background: linear-gradient(90deg, #667eea, #764ba2);
}
.card.webapp::before {
background: linear-gradient(90deg, #4AE2C0, #2196F3);
}
.card:hover::before {
transform: scaleX(1);
}
.card:hover {
transform: translateY(-4px);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.card-link {
display: block;
text-decoration: none;
color: inherit;
padding: 25px;
}
.card-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 15px;
}
.card-badge {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
padding: 4px 10px;
border-radius: 6px;
}
.card.presentation .card-badge {
color: #667eea;
background: rgba(102, 126, 234, 0.15);
}
.card.webapp .card-badge {
color: #4AE2C0;
background: rgba(74, 226, 192, 0.15);
}
.card-arrow {
width: 20px;
height: 20px;
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
color: #94a3b8;
}
.card:hover .card-arrow {
opacity: 1;
transform: translateX(0);
}
.card-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 10px;
line-height: 1.3;
color: #fff;
}
.card-description {
font-size: 0.95rem;
color: #94a3b8;
line-height: 1.6;
margin-bottom: 15px;
}
.card-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.tag {
display: inline-block;
padding: 3px 10px;
background: rgba(100, 116, 139, 0.15);
border: 1px solid rgba(100, 116, 139, 0.25);
border-radius: 15px;
font-size: 0.7rem;
color: #94a3b8;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.card-actions {
display: flex;
gap: 10px;
padding: 0 25px 25px 25px;
}
.card-action-btn {
flex: 1;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 10px 14px;
border-radius: 8px;
text-decoration: none;
font-size: 0.8rem;
font-weight: 500;
transition: all 0.3s ease;
}
.btn-download {
background: rgba(74, 226, 192, 0.1);
border: 1px solid rgba(74, 226, 192, 0.25);
color: #86efac;
}
.btn-download:hover {
background: rgba(74, 226, 192, 0.2);
border-color: rgba(74, 226, 192, 0.4);
transform: translateY(-2px);
}
/* External link indicator */
.external-indicator {
font-size: 0.7rem;
color: #64748b;
margin-left: 6px;
}
/* Animations */
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.15s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.25s; }
/* Footer */
.footer {
text-align: center;
padding: 40px 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 60px;
}
.footer-text {
color: #64748b;
font-size: 0.875rem;
}
.footer-link {
color: #667eea;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-link:hover {
color: #764ba2;
}
/* Responsive */
@media (max-width: 768px) {
.container {
padding: 40px 20px;
}
.cards-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.nav-tabs {
gap: 6px;
}
.nav-tab {
padding: 10px 20px;
font-size: 0.9rem;
}
}
/* Glow effect */
.glow {
position: fixed;
width: 400px;
height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
pointer-events: none;
transform: translate(-50%, -50%);
transition: opacity 0.3s ease;
z-index: 0;
}
/* Focus styles for accessibility */
.card-link:focus-visible,
.card-action-btn:focus-visible,
.nav-tab:focus-visible,
.footer-link:focus-visible {
outline: 3px solid #667eea;
outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
.card,
.header {
animation: none;
}
.card:hover {
transform: none;
}
}
</style>
</head>
<body>
<div class="bg-animation"></div>
<div class="grid-overlay"></div>
<div class="glow" id="glow"></div>
<div class="container">
<header class="header">
<h1 class="title">Mark Lifson</h1>
<p class="subtitle">AI Research Oversight Tools & Presentations</p>
</header>
<!-- Presentations Section -->
<section class="section" id="presentations">
<div class="section-header">
<div class="section-icon presentations">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24" style="color: #667eea;">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"></path>
</svg>
</div>
<div>
<h2 class="section-title">Presentations</h2>
<p class="section-subtitle">Interactive slide decks on AI research oversight</p>
</div>
</div>
<div class="cards-grid">
<div class="card presentation">
<a href="/presentations/NCI2025-AI-Oversight_Framework/dist/" class="card-link">
<div class="card-header">
<span class="card-badge">NCI 2025</span>
<svg class="card-arrow" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
</svg>
</div>
<h3 class="card-title">AI Research Oversight: Building an Effective Framework</h3>
<p class="card-description">
Comprehensive framework for IRB review of AI research protocols, addressing ethics, safety, and regulatory compliance.
</p>
<div class="card-tags">
<span class="tag">AI Ethics</span>
<span class="tag">IRB</span>
<span class="tag">Healthcare</span>
<span class="tag">Interactive</span>
</div>
</a>
<div class="card-actions">
<a href="/presentations/NCI2025-AI-Oversight_Framework/AI Research Oversight_ Building an Effective Framework.pdf"
class="card-action-btn btn-download"
download>
<svg width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10"></path>
</svg>
PDF (3.7 MB)
</a>
</div>
</div>
<div class="card presentation">
<a href="/presentations/CoreTrainingWorkshop/dist/" class="card-link">
<div class="card-header">
<span class="card-badge">Core Training 2025</span>
<svg class="card-arrow" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
</svg>
</div>
<h3 class="card-title">Core Training Workshop: AI Research Essentials</h3>
<p class="card-description">
Condensed workshop covering clinical phases, IRB criteria, risk assessment, and the oversight framework.
</p>
<div class="card-tags">
<span class="tag">Workshop</span>
<span class="tag">AI Ethics</span>
<span class="tag">IRB</span>
<span class="tag">Interactive</span>
</div>
</a>
<div class="card-actions">
<a href="/presentations/CoreTrainingWorkshop/Core-Training-Workshop-AI.pdf"
class="card-action-btn btn-download"
download>
<svg width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10"></path>
</svg>
PDF (1.5 MB)
</a>
</div>
</div>
</div>
</section>
<!-- Web Apps Section -->
<section class="section" id="webapps">
<div class="section-header">
<div class="section-icon webapps">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24" style="color: #4AE2C0;">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
</svg>
</div>
<div>
<h2 class="section-title">Web Applications</h2>
<p class="section-subtitle">Interactive tools for AI research oversight</p>
</div>
</div>
<div class="cards-grid">
<div class="card webapp">
<a href="https://malathon.github.io/ai-oversight-tools/" class="card-link" target="_blank" rel="noopener">
<div class="card-header">
<span class="card-badge">SvelteKit 5</span>
<svg class="card-arrow" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</div>
<h3 class="card-title">AI Oversight Tools Suite</h3>
<p class="card-description">
Complete toolkit with Risk Matrix, Reviewer Checklist, Innovator Self-Assessment, and Traceability Editor.
</p>
<div class="card-tags">
<span class="tag">Risk Matrix</span>
<span class="tag">Checklists</span>
<span class="tag">Graph Editor</span>
<span class="tag">600+ Controls</span>
</div>
</a>
</div>
<div class="card webapp">
<a href="/presentations/irb-rules-engine/dist/" class="card-link">
<div class="card-header">
<span class="card-badge">React + Cytoscape</span>
<svg class="card-arrow" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
</svg>
</div>
<h3 class="card-title">IRB Rules Engine</h3>
<p class="card-description">
Visual rule builder for protocol assessment with graph visualization and risk-based controls.
</p>
<div class="card-tags">
<span class="tag">Rule Builder</span>
<span class="tag">Graph Viz</span>
<span class="tag">IndexedDB</span>
</div>
</a>
</div>
</div>
</section>
<footer class="footer">
<p class="footer-text">
Built with modern web technologies •
<a href="https://github.com/MALathon" class="footer-link">GitHub</a> •
<a href="https://github.com/MALathon/presentations" class="footer-link">View Source</a>
</p>
</footer>
</div>
<script>
// Mouse glow effect
const glow = document.getElementById('glow');
let mouseX = 0;
let mouseY = 0;
let currentX = 0;
let currentY = 0;
document.addEventListener('mousemove', (e) => {
mouseX = e.clientX;
mouseY = e.clientY;
});
function animate() {
currentX += (mouseX - currentX) * 0.1;
currentY += (mouseY - currentY) * 0.1;
glow.style.left = currentX + 'px';
glow.style.top = currentY + 'px';
requestAnimationFrame(animate);
}
// Respect reduced motion preference
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
animate();
}
// Hide glow when mouse leaves window
document.addEventListener('mouseout', (e) => {
if (!e.relatedTarget) {
glow.style.opacity = '0';
}
});
document.addEventListener('mouseover', () => {
glow.style.opacity = '1';
});
</script>
</body>
</html>