-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
667 lines (599 loc) · 31.7 KB
/
Copy pathhome.html
File metadata and controls
667 lines (599 loc) · 31.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="color-scheme" content="light">
<meta name="theme-color" content="#F7FAFB">
<title>Vibe Rounds — Clinical Reasoning Learning Tools</title>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-541054383"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-541054383');
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root{
--bg:#F7FAFB;
--panel:#FFFFFF;
--panel-sunken:#F3F6F8;
--ink:#0B2530;
--ink-dim:#5B7480;
--ink-faint:#94A7AE;
--line:#DCE7EA;
--line-soft:rgba(11,37,48,0.08);
--bronze:#5B7480;
--bronze-dim:#43606B;
--bronze-bright:#0A6E85;
--ember:#0891B2;
--ember-dim:#0A6E85;
--ember-bright:#0A6E85;
--ember-glow:rgba(8,145,178,0.22);
--alert:#C2410C;
--alert-soft:#FCE9DD;
--display:'Inter',sans-serif;
--mono:'IBM Plex Mono','JetBrains Mono',ui-monospace,Menlo,Consolas,monospace;
--shadow-sm:0 1px 2px rgba(11,37,48,.04), 0 8px 24px -16px rgba(11,37,48,.08);
--shadow-md:0 4px 14px rgba(11,37,48,.08), 0 12px 28px -12px rgba(11,37,48,.12);
--shadow-lg:0 10px 30px rgba(11,37,48,.10), 0 24px 48px -18px rgba(11,37,48,.16);
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
html{-webkit-text-size-adjust:100%;}
body{
background:var(--bg);color:var(--ink);font-family:var(--display);
font-size:15px;line-height:1.6;min-height:100vh;-webkit-font-smoothing:antialiased;
}
a{color:var(--bronze-bright);}
a:hover{color:var(--ember-bright);}
::selection{background:rgba(8,145,178,0.20);color:var(--ink);}
.wrap{max-width:1100px;margin:0 auto;padding:40px 20px 90px;}
header.top{margin-bottom:8px;}
.kicker{
font-family:'DM Mono','IBM Plex Mono',monospace;color:var(--bronze-bright);
letter-spacing:.14em;text-transform:uppercase;font-size:11.5px;margin-bottom:14px;font-weight:600;
display:flex;align-items:center;gap:9px;flex-wrap:wrap;
}
.kicker .gr{color:var(--ember-bright);letter-spacing:.04em;font-family:var(--display);text-transform:none;}
.kicker .sep{color:var(--line);}
h1{font-family:var(--display);font-weight:700;font-size:clamp(30px, 5vw, 44px);margin:0 0 12px;color:var(--ink);letter-spacing:-0.01em;line-height:1.16;}
h1 em{font-style:normal;color:var(--ember-bright);}
.subhead{color:var(--ink-dim);font-size:15px;max-width:66ch;}
.top-links{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px;}
.top-links a{
display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:700;
color:var(--ember-bright);background:var(--panel-sunken);border:1px solid var(--line);
border-radius:999px;padding:6px 12px;text-decoration:none;transition:background .12s,color .12s,border-color .12s;
}
.top-links a:hover{background:var(--ember);color:#fff;border-color:var(--ember);}
.disclaimer{
margin-top:20px;font-size:13.5px;color:var(--ink-dim);
border-left:3px solid var(--bronze-bright);padding:12px 16px;
background:var(--panel);border-radius:0 10px 10px 0;
border:1px solid var(--line);border-left:3px solid var(--bronze-bright);
}
.disclaimer strong{color:var(--ink);}
.video-note{
margin-top:14px;font-size:14.5px;font-weight:600;color:var(--ink);
background:linear-gradient(135deg, var(--ember-glow), rgba(8,145,178,0.06));
border:1px solid var(--ember-dim);border-radius:10px;
padding:12px 16px;display:flex;align-items:center;gap:10px;
}
.video-note::before{content:'▶';font-size:12px;color:#fff;background:var(--ember);
width:24px;height:24px;min-width:24px;border-radius:50%;display:inline-flex;
align-items:center;justify-content:center;padding-left:2px;}
.video-note strong{color:var(--ember-bright);}
.pro-tip{
margin-top:14px;font-size:13.5px;color:var(--ink);
background:var(--panel-sunken);border:1px solid var(--line);border-radius:10px;
padding:12px 16px;display:flex;align-items:flex-start;gap:10px;
}
.pro-tip .emoji{font-size:14px;flex:none;line-height:1.5;}
.pro-tip strong{color:var(--bronze-bright);}
.ornament{
display:flex;align-items:center;gap:12px;margin:22px 0 26px;color:var(--bronze);font-size:13px;user-select:none;
}
.ornament::before,.ornament::after{content:'';flex:1;height:1px;background:linear-gradient(90deg, transparent, var(--line-soft));}
.ornament::after{background:linear-gradient(90deg, var(--line-soft), transparent);}
.tool-grid{display:grid;grid-template-columns:1fr;gap:16px;}
.section-title{
font-family:var(--display);font-size:13px;letter-spacing:.08em;text-transform:uppercase;
color:var(--bronze-bright);font-weight:700;margin:32px 0 14px;display:flex;align-items:center;gap:10px;
}
.section-title::after{content:'';flex:1;height:1px;background:linear-gradient(90deg, var(--line-soft), transparent);}
/* tabs */
.tab-bar{display:flex;gap:5px;flex-wrap:wrap;border-bottom:1px solid var(--line);margin-bottom:22px;padding-bottom:0;}
.tab-btn{
font-family:var(--display);background:transparent;border:1px solid transparent;border-bottom:none;
color:var(--ink-dim);padding:10px 16px;font-size:13.5px;font-weight:600;
letter-spacing:.01em;cursor:pointer;border-radius:9px 9px 0 0;position:relative;
bottom:-1px;transition:color .12s, background .12s;white-space:nowrap;touch-action:manipulation;
}
.tab-btn:hover{color:var(--ink);background:var(--panel-sunken);}
.tab-btn.active{color:var(--ember-bright);background:var(--panel);border-color:var(--line);border-bottom:2px solid var(--ember);}
.tab-panel{display:none;}
.tab-panel.active{display:block;animation:fadein .18s ease;}
@keyframes fadein{from{opacity:0;transform:translateY(3px);}to{opacity:1;transform:translateY(0);}}
/* video tab */
.video-status{font-size:13px;color:var(--ink-dim);margin-top:10px;min-height:14px;}
.video-status.err{color:var(--alert);}
.video-group{margin-bottom:26px;}
.video-group-title{
font-family:var(--display);font-size:13px;letter-spacing:.06em;text-transform:uppercase;
color:var(--bronze-bright);font-weight:700;margin-bottom:12px;display:flex;align-items:center;gap:8px;
}
.video-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(560px,680px));gap:18px;justify-content:start;}
.video-card{
background:var(--panel);border:1px solid var(--line);border-radius:10px;overflow:hidden;
box-shadow:var(--shadow-sm);transition:box-shadow .15s;
}
.video-card:hover{box-shadow:var(--shadow-md);}
.video-card .thumb-wrap{position:relative;width:100%;aspect-ratio:16/9;background:var(--panel-sunken);}
.video-card iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.video-card .video-meta{padding:10px 13px 12px;display:flex;align-items:center;gap:8px;}
.video-card .video-title{font-size:13px;color:var(--ink);font-weight:600;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.video-remove{
flex:none;background:transparent;border:1px solid var(--line);color:var(--ink-faint);
border-radius:50%;width:22px;height:22px;font-size:12px;cursor:pointer;line-height:1;
display:flex;align-items:center;justify-content:center;transition:background .12s,color .12s,border-color .12s;
}
.video-remove:hover{background:var(--alert);color:#fff;border-color:var(--alert);}
.empty-note{color:var(--ink-dim);font-size:13px;font-style:italic;padding:6px 0 0;}
.tool-card{
background:var(--panel);border:1px solid var(--line);border-radius:10px;
padding:22px 24px;box-shadow:var(--shadow-sm);transition:box-shadow .15s,transform .15s;
display:flex;gap:16px;align-items:flex-start;text-decoration:none;color:inherit;
}
.tool-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px);}
.tool-card .num{
font-family:var(--display);font-weight:700;color:#fff;background:var(--ember);
font-size:14px;width:34px;height:34px;min-width:34px;border-radius:50%;
display:inline-flex;align-items:center;justify-content:center;
}
.tool-card .body{flex:1;min-width:0;}
.tool-card .title-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;margin-bottom:6px;}
.tool-card .title{font-family:var(--display);font-size:17px;font-weight:700;color:var(--ink);}
.tool-card .go{
margin-left:auto;font-family:var(--mono);font-size:11.5px;color:var(--ink-faint);
background:var(--panel-sunken);border:1px solid var(--line);border-radius:20px;padding:3px 10px;
white-space:nowrap;transition:background .12s,color .12s,border-color .12s;
}
.tool-card:hover .go{background:var(--ember);color:#fff;border-color:var(--ember);}
.tool-card .desc{color:var(--ink-dim);font-size:13.5px;}
footer{margin-top:50px;font-size:11.5px;color:var(--ink-dim);text-align:center;font-weight:500;}
footer a{color:var(--ink-dim);}
@media (max-width:640px){
.wrap{padding:22px 14px 60px;}
h1{font-size:clamp(24px,7.5vw,30px);}
.subhead{font-size:14px;}
.kicker{font-size:11px;}
.tool-card{flex-direction:column;padding:16px 16px;gap:10px;}
.tool-card .num{margin-bottom:2px;}
.tool-card .go{margin-left:0;}
.top-links a{font-size:11.5px;padding:6px 10px;}
.tab-btn{padding:9px 12px;font-size:13px;}
.video-list{grid-template-columns:1fr;gap:16px;}
.video-group-title{font-size:12.5px;}
.disclaimer{font-size:13px;padding:11px 14px;}
.video-note{font-size:13.5px;padding:11px 14px;}
footer{font-size:11px;padding:0 6px;}
}
@media (max-width:400px){
h1{font-size:22px;}
.wrap{padding:18px 12px 50px;}
}
</style>
<!-- ===== VibeRounds Suite Bar ===== -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
.vr-suitebar{
background: linear-gradient(160deg, #EFF6FF 0%, #F0FDFA 65%);
border-bottom: 1px solid #E2E8F0;
padding: 12px 20px;
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 10px 16px;
}
.vr-suitebar .vr-brand{
font-family: 'DM Mono','IBM Plex Mono',monospace;
font-weight: 700; font-size: 14px; letter-spacing: -0.01em;
color: #0F172A; text-decoration: none; display:flex; align-items:center; gap:0;
}
.vr-suitebar .vr-brand span{ color: #0891B2; }
.vr-suitebar .vr-nav{ display:flex; gap:6px; flex-wrap:wrap; }
.vr-suitebar .vr-nav a{
font-family:'DM Mono','IBM Plex Mono',monospace; font-size:11px; letter-spacing:.04em; text-transform:uppercase;
color:#475569; text-decoration:none; padding:6px 10px; border-radius:999px;
border:1px solid #E2E8F0; background:#FFFFFF; transition:.15s ease;
}
.vr-suitebar .vr-nav a:hover{ color:#fff; background:#0891B2; border-color:#0891B2; }
.vr-suitebar .vr-nav a.active{ color:#fff; background:#0E7490; border-color:#0E7490; }
@media (max-width:640px){
.vr-suitebar{ padding:10px 14px; }
.vr-suitebar .vr-nav a{ padding:5px 8px; font-size:10px; }
}
</style>
</head>
<body>
<header class="vr-suitebar">
<a class="vr-brand" href="https://avi33tbtt.github.io/">Vibe<span>Rounds</span></a>
<nav class="vr-nav">
<a href="https://avi33tbtt.github.io/home.html" class="active">Home</a>
<a href="https://avi33tbtt.github.io/bench.html">Case Bench</a>
<a href="https://avi33tbtt.github.io/bench_lite.html">Bench Lite</a>
<a href="https://avi33tbtt.github.io/case-simulator.html">Case Simulator</a>
<a href="https://avi33tbtt.github.io/case-practice.html">Clinical Practice</a>
<a href="https://avi33tbtt.github.io/clinical-polemos.html">Clinical Polemos</a>
<a href="https://avi33tbtt.github.io/case-lens.html">Case Lens</a>
<a href="https://avi33tbtt.github.io/sdm-lens.html">SDM Lens</a>
<a href="https://avi33tbtt.github.io/ebm.html">EBM Query Generator</a>
<a href="https://avi33tbtt.github.io/ccos-builder.html">CCOS Builder</a>
</nav>
</header>
<div class="wrap">
<header class="top">
<div class="kicker"><span class="gr">Vibe Rounds</span><span class="sep">·</span>Learner Tools</div>
<h1>Clinical reasoning tools, built on the <em>Vibe Rounds</em> paradigm</h1>
<div class="subhead">A set of AI-assisted learning tools for case-based Socratic learning, multi-angle critical thinking, shared decision-making practice, and debate-style reasoning — each one built to sharpen judgment through questions, not to hand you answers.</div>
<div class="top-links">
<a href="https://avi33tbtt.github.io/" target="_blank" rel="noopener">Project website</a>
<a href="https://www.linkedin.com/in/dravinashkumargupta/" target="_blank" rel="noopener">Dr. Avinash — LinkedIn</a>
</div>
<div class="disclaimer">
<strong>Bring your own key.</strong> Every tool here runs entirely in your browser — your API key is stored only in local storage and sent directly from your browser to your chosen provider, never through any server of ours. These are educational reasoning aids, not diagnostic tools and not for real patient care.
</div>
<div class="video-note" onclick="showTab('videos')" role="button" tabindex="0" style="cursor:pointer;" onkeydown="if(event.key==='Enter')showTab('videos')">New here? Watch the <strong>Videos</strong> tab for a quick walkthrough of each tool →</div>
<div class="pro-tip"><span class="emoji">👍</span><span><strong>Pro tip:</strong> Upload your text output into any LLM and ask it to create an HTML or PDF file so you can save it as your notes. Enjoy AI-enhanced learning with Vibe Rounds.</span></div>
</header>
<div class="ornament">◆</div>
<div class="tab-bar">
<button class="tab-btn active" data-tab="tools" onclick="showTab('tools')">Tools</button>
<button class="tab-btn" data-tab="videos" onclick="showTab('videos')">Videos</button>
<button class="tab-btn" data-tab="training" onclick="showTab('training')">Training</button>
</div>
<div class="tab-panel active" id="panel-tools">
<a class="tool-card" href="https://avi33tbtt.github.io/hub.html" style="margin-bottom:20px;background:linear-gradient(135deg, var(--ember-glow), rgba(8,145,178,0.05));border:1.5px solid var(--ember);box-shadow:var(--shadow-md);">
<div class="num" style="background:linear-gradient(135deg, var(--ember), var(--bronze-bright));">★</div>
<div class="body">
<div class="title-row"><span class="title">Tool Hub</span><span style="font-family:var(--mono);font-size:10.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#fff;background:var(--ember);border-radius:20px;padding:3px 10px;">Flagship</span><span class="go">Open →</span></div>
<div class="desc">All your common tools in one place — the combined workspace bringing them together into a single flow.</div>
</div>
</a>
<div class="tool-grid">
<a class="tool-card" href="https://avi33tbtt.github.io/bench.html">
<div class="num">1</div>
<div class="body">
<div class="title-row"><span class="title">Case Bench</span><span class="go">Open →</span></div>
<div class="desc">A tool for case-based Socratic learning, MCQs, and clinical reasoning analytics.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/case-simulator.html">
<div class="num">2</div>
<div class="body">
<div class="title-row"><span class="title">Case Simulator</span><span class="go">Open →</span></div>
<div class="desc">An interactive tool for running through simulated patient cases.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/case-practice.html">
<div class="num">3</div>
<div class="body">
<div class="title-row"><span class="title">Clinical Practice</span><span class="go">Open →</span></div>
<div class="desc">A focused drill tool for practicing clinical cases.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/clinical-polemos.html">
<div class="num">4</div>
<div class="body">
<div class="title-row"><span class="title">Clinical Polemos</span><span class="go">Open →</span></div>
<div class="desc">A debate-style exercise for discussion and reasoning.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/case-lens.html">
<div class="num">5</div>
<div class="body">
<div class="title-row"><span class="title">Case Lens</span><span class="go">Open →</span></div>
<div class="desc">A tool for critical thinking around clinical cases from multiple analytical angles.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/sdm-lens.html">
<div class="num">6</div>
<div class="body">
<div class="title-row"><span class="title">SDM Lens</span><span class="go">Open →</span></div>
<div class="desc">A tool focused on shared decision-making scenarios.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/ebm.html">
<div class="num">7</div>
<div class="body">
<div class="title-row"><span class="title">EBM Query Generator</span><span class="go">Open →</span></div>
<div class="desc">Generate a structured set of critical-appraisal queries.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/ccos-builder.html">
<div class="num">8</div>
<div class="body">
<div class="title-row"><span class="title">Clinical Cognition OS (CCOS) — Module Order Builder</span><span class="go">Open →</span></div>
<div class="desc">Build and order modules for the Clinical Cognition OS.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/case-analytics.html">
<div class="num">9</div>
<div class="body">
<div class="title-row"><span class="title">Case Analytics</span><span class="go">Open →</span></div>
<div class="desc">Analytics tool for reviewing clinical reasoning performance.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/case-reading.html">
<div class="num">10</div>
<div class="body">
<div class="title-row"><span class="title">Case Reading</span><span class="go">Open →</span></div>
<div class="desc">A tool for guided reading and analysis of clinical cases.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/critical-hub-node-navigation.html">
<div class="num">11</div>
<div class="body">
<div class="title-row"><span class="title">Critical Hub-Node Navigation</span><span class="go">Open →</span></div>
<div class="desc">The Avinash Principle · find the handful of nodes that decide the outcome</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/complex-flow-builder.html">
<div class="num">12</div>
<div class="body">
<div class="title-row"><span class="title">Complex Flow Builder</span><span class="go">Open →</span></div>
<div class="desc">A tool for mapping and building out complex clinical decision flows.</div>
<div class="desc">Replace case placeholder with your case data or link, or mention attached file.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/cqm-router.html">
<div class="num">13</div>
<div class="body">
<div class="title-row"><span class="title">CQM Router</span><span class="go">Open →</span></div>
<div class="desc">Clinical query/module router for directing cases to the right tool or pathway.</div>
</div>
</a>
<a class="tool-card" href="http://avi33tbtt.github.io/case-question-bank.html">
<div class="num">14</div>
<div class="body">
<div class="title-row"><span class="title">Case Question Bank</span><span class="go">Open →</span></div>
<div class="desc">A bank of clinical case questions for practice and review.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/lesson_bench.html">
<div class="num">15</div>
<div class="body">
<div class="title-row"><span class="title">Lesson Bench</span><span class="go">Open →</span></div>
<div class="desc">Get a structured lesson, then keep the conversation going.</div>
</div>
</a>
</div>
<div class="section-title">Courses</div>
<div class="tool-grid">
<a class="tool-card" href="https://avi33tbtt.github.io/courseware/">
<div class="num">16</div>
<div class="body">
<div class="title-row"><span class="title">Courseware</span><span class="go">Open →</span></div>
<div class="desc">Structured course material and modules for guided clinical learning.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/ebm/">
<div class="num">17</div>
<div class="body">
<div class="title-row"><span class="title">EBM</span><span class="go">Open →</span></div>
<div class="desc">A course on evidence-based medicine — critically appraising and applying clinical evidence.</div>
</div>
</a>
<a class="tool-card" href="https://avi33tbtt.github.io/cc/">
<div class="num">18</div>
<div class="body">
<div class="title-row"><span class="title">Clinical Cognition</span><span class="go">Open →</span></div>
<div class="desc">Course content on critical care reasoning and decision-making.</div>
</div>
</a>
</div>
<div class="section-title">Tutor</div>
<div class="tool-grid">
<a class="tool-card" href="https://avi33tbtt.github.io/#tutor-panel">
<div class="num">19</div>
<div class="body">
<div class="title-row"><span class="title">Tutor</span><span class="go">Open →</span></div>
<div class="desc">A set of interactive, drill-style tools for practicing clinical reasoning.</div>
</div>
</a>
</div>
<div class="section-title">Article</div>
<div class="tool-grid">
<a class="tool-card" href="https://avi33tbtt.github.io/article.html">
<div class="num">20</div>
<div class="body">
<div class="title-row"><span class="title">Article</span><span class="go">Open →</span></div>
<div class="desc">Background reading on the Vibe Rounds paradigm and its approach to clinical reasoning.</div>
</div>
</a>
</div>
<div class="section-title">Research</div>
<div class="tool-grid">
<a class="tool-card" href="https://avi33tbtt.github.io/bench_lite.html">
<div class="num">21</div>
<div class="body">
<div class="title-row"><span class="title">Research</span><span class="go">Open →</span></div>
<div class="desc">Run a Socratic learning session, then hit Submit at the end — it helps us gather data for research.</div>
</div>
</a>
</div>
</div>
<div class="tab-panel" id="panel-videos">
<div style="max-width:640px;margin:40px auto;text-align:center;padding:32px 24px;background:var(--panel-sunken);border-radius:14px;">
<p style="font-size:15px;color:var(--ink);margin:0 0 18px;">All video walkthroughs live on our YouTube channel. Explore the <strong>Tools</strong> tab for hands-on tools, and check the channel for lectures and information.</p>
<a href="https://www.youtube.com/@geeky_dr" target="_blank" rel="noopener" style="display:inline-block;padding:12px 26px;background:var(--ember);color:#fff;border-radius:8px;font-weight:600;text-decoration:none;font-size:14px;">Visit the YouTube Channel →</a>
</div>
</div>
<div class="tab-panel" id="panel-training">
<div style="max-width:760px;margin:32px auto 0;">
<p style="font-size:15px;color:var(--ink);margin:0 0 18px;">Reading the framework gets you the "what." A live session with Dr. Avinash gets you the "how" — running an actual case, live, with a group asking the same questions you are.</p>
<div class="section-title">Two ways to train</div>
<div class="tool-grid" style="margin-bottom:24px;">
<div class="tool-card" style="cursor:default;">
<div class="num">🖥️</div>
<div class="body">
<div class="title-row"><span class="title">Online — Zoom sessions with Avinash</span></div>
<div class="desc">Live, small-group walkthroughs run directly by Dr. Avinash. Bring a real (deidentified) case; leave with a pipeline you built yourself.</div>
</div>
</div>
<div class="tool-card" style="cursor:default;">
<div class="num">🏥</div>
<div class="body">
<div class="title-row"><span class="title">Offline — on-site for departments</span></div>
<div class="desc">In-person sessions for a medical school, residency program, or department wanting the framework taught to a cohort.</div>
</div>
</div>
</div>
<div class="section-title">Access to the builder community</div>
<p style="font-size:14.5px;color:var(--ink);margin:0 0 24px;">Training seats also come with access to a small, ongoing group of educators, clinicians, and researchers who are building on the same framework — comparing modules they've written, pipelines they've tested on real cases, and what's worked (and hasn't) in their own teaching. It's a working group, not a broadcast channel.</p>
<div style="text-align:center;padding:24px;background:var(--panel-sunken);border-radius:14px;">
<p style="font-size:14.5px;color:var(--ink);margin:0 0 16px;"><strong>Interested in a session?</strong> Email <a href="mailto:avi33tbtt@gmail.com">avi33tbtt@gmail.com</a> or reach out on WhatsApp — <a href="https://wa.me/9779817599973">+977 981 759 9973</a> / <a href="https://wa.me/917318510434">+91 731 851 0434</a> — mention online/offline, your group size, and (if you have one) the use case you want the session built around.</p>
<a href="https://wa.me/9779817599973" target="_blank" rel="noopener" style="display:inline-block;padding:12px 26px;background:var(--ember);color:#fff;border-radius:8px;font-weight:600;text-decoration:none;font-size:14px;">Connect for session (WhatsApp) →</a>
</div>
</div>
</div>
<footer>Vibe Rounds · clinical reasoning learning tools · bring your own key · for medical education, not clinical advice.</footer>
</div>
<script>
const TOOLS = ["What is Vibe Rounds?","Tools","Case Bench","Case Simulator","Clinical Polemos","Case Lens","SDM Lens","EBM for techies","Clinical Cognition Course","Cognitive Analytics Series"];
// Note: TOOLS drives the Videos tab groups only; the Critical Hub-Node Navigation tool card was added to the Tools grid (#11) and does not have a curated video group.
const STORAGE_KEY = "viberounds_hub_videos";
const TITLE_CACHE_KEY = "viberounds_hub_video_titles";
// Curated default videos (in required order) for each group.
const DEFAULT_VIDEOS = {
"What is Vibe Rounds?": [{ id: "mcyhVlqgrP0", title: "What is Vibe Rounds?" }],
"Tools": [{ id: "pYuqkx8zzrE", title: "Tools" }],
"Case Bench": [{ id: "--ooVySiPtE", title: "Case Bench" }],
"Case Simulator": [{ id: "qV8UgDmxHBo", title: "Case Simulator" }],
"Clinical Polemos": [{ id: "nBOFr287FYg", title: "Clinical Polemos" }],
"Case Lens": [{ id: "q7zFw9ygTpM", title: "Case Lens" }],
"SDM Lens": [{ id: "U_424Z41kzQ", title: "SDM Lens" }],
"EBM for techies": [{ id: "ND05GIAl28o", title: "EBM for techies" }],
"Clinical Cognition Course": [{ id: "mBGtxCPKHs4", title: "Clinical Cognition Course" }],
"Cognitive Analytics Series": [{ id: "aSGeEvOlMC0", title: "Cognitive Analytics Series" }]
};
function seedDefaultVideos(){
const data = loadVideos();
let changed = false;
TOOLS.forEach(tool => {
if(!data[tool] || data[tool].length === 0){
data[tool] = DEFAULT_VIDEOS[tool].slice();
changed = true;
}
});
if(changed) saveVideos(data);
}
function loadTitleCache(){
try{ return JSON.parse(localStorage.getItem(TITLE_CACHE_KEY) || '{}'); }catch(e){ return {}; }
}
function saveTitleCache(cache){ localStorage.setItem(TITLE_CACHE_KEY, JSON.stringify(cache)); }
function fetchRealTitle(id, cardEl){
const cache = loadTitleCache();
if(cache[id]){
const titleEl = cardEl.querySelector('.video-title');
if(titleEl){ titleEl.textContent = cache[id]; titleEl.title = cache[id]; }
return;
}
fetch(`https://www.youtube.com/oembed?format=json&url=${encodeURIComponent('https://www.youtube.com/watch?v=' + id)}`)
.then(r => r.ok ? r.json() : null)
.then(data => {
if(data && data.title){
const cache2 = loadTitleCache();
cache2[id] = data.title;
saveTitleCache(cache2);
const titleEl = cardEl.querySelector('.video-title');
if(titleEl){ titleEl.textContent = data.title; titleEl.title = data.title; }
}
})
.catch(() => {});
}
function showTab(name){
document.querySelectorAll('.tab-btn').forEach(b => b.classList.toggle('active', b.dataset.tab === name));
document.getElementById('panel-tools').classList.toggle('active', name === 'tools');
document.getElementById('panel-videos').classList.toggle('active', name === 'videos');
document.getElementById('panel-training').classList.toggle('active', name === 'training');
if(name === 'videos') renderVideos();
}
function loadVideos(){
try{ return JSON.parse(localStorage.getItem(STORAGE_KEY) || '{}'); }catch(e){ return {}; }
}
function saveVideos(data){ localStorage.setItem(STORAGE_KEY, JSON.stringify(data)); }
function extractYouTubeId(url){
if(!url) return null;
url = url.trim();
const patterns = [
/(?:youtube\.com\/watch\?v=)([\w-]{11})/,
/(?:youtu\.be\/)([\w-]{11})/,
/(?:youtube\.com\/embed\/)([\w-]{11})/,
/(?:youtube\.com\/shorts\/)([\w-]{11})/
];
for(const p of patterns){
const m = url.match(p);
if(m) return m[1];
}
return null;
}
function removeVideo(tool, index){
const data = loadVideos();
if(data[tool]){
data[tool].splice(index, 1);
saveVideos(data);
renderVideos();
}
}
function renderVideos(){
const container = document.getElementById('videoGroups');
if(!container) return;
const data = loadVideos();
container.innerHTML = '';
TOOLS.forEach(tool => {
const list = data[tool] || [];
const group = document.createElement('div');
group.className = 'video-group';
const titleRow = document.createElement('div');
titleRow.className = 'video-group-title';
titleRow.textContent = tool;
group.appendChild(titleRow);
if(list.length === 0){
const empty = document.createElement('div');
empty.className = 'empty-note';
empty.textContent = 'No videos added yet.';
group.appendChild(empty);
} else {
const listEl = document.createElement('div');
listEl.className = 'video-list';
list.forEach((v, i) => {
const card = document.createElement('div');
card.className = 'video-card';
card.innerHTML = `
<div class="thumb-wrap">
<iframe src="https://www.youtube.com/embed/${v.id}" title="${v.title}" allowfullscreen loading="lazy"></iframe>
</div>
<div class="video-meta">
<span class="video-title" title="${v.title}">${v.title}</span>
<button class="video-remove" title="Remove" onclick="removeVideo('${tool}', ${i})">✕</button>
</div>`;
listEl.appendChild(card);
fetchRealTitle(v.id, card);
});
group.appendChild(listEl);
}
container.appendChild(group);
});
}
document.addEventListener('DOMContentLoaded', () => {
seedDefaultVideos();
renderVideos();
});
</script>
</body>
</html>