-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
701 lines (651 loc) · 25.5 KB
/
index.html
File metadata and controls
701 lines (651 loc) · 25.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--primary-teal: #2d5a5a;
--light-teal: #4a8080;
--accent-orange: #ff9f45;
--gradient-bg: linear-gradient(135deg, #2d5a5a 0%, #1a4040 100%);
--card-bg: rgba(255, 255, 255, 0.98);
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
color: #333;
background: var(--gradient-bg);
line-height: 1.6;
min-height: 100vh;
padding: 16px;
margin: 0;
}
.logo {
height: 80px;
display: block;
margin: 0 auto 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
background: var(--card-bg);
border-radius: 16px;
padding: 32px 28px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.header {
text-align: center;
margin-bottom: 40px;
}
.main-title {
color: var(--primary-teal);
font-size: 2.4rem;
font-weight: 800;
margin-bottom: 10px;
background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
text-align: center;
color: var(--light-teal);
font-size: 1.15rem;
font-weight: 600;
margin-bottom: 6px;
}
.attribution {
color: #666;
font-size: 1rem;
}
.week-section {
background: white;
border-radius: 12px;
padding: 24px;
margin-bottom: 24px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
border-left: 5px solid var(--accent-orange);
}
.week-title {
color: var(--primary-teal);
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 12px;
}
.week-number {
background: var(--accent-orange);
color: white;
width: 34px;
height: 34px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1rem;
flex-shrink: 0;
}
.week-description {
background: rgba(255, 159, 69, 0.08);
padding: 14px 16px;
border-radius: 8px;
margin-bottom: 20px;
border-left: 3px solid var(--accent-orange);
font-size: 0.95rem;
}
.main-demo {
background: linear-gradient(135deg, rgba(45, 90, 90, 0.08), rgba(74, 128, 128, 0.04));
border: 1.5px solid var(--light-teal);
border-radius: 10px;
padding: 16px 18px;
margin-bottom: 20px;
}
.main-demo h4 {
color: var(--primary-teal);
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.main-demo h4 a {
color: var(--primary-teal);
text-decoration: none;
}
.main-demo h4 a:hover {
text-decoration: underline;
}
.main-demo p {
color: #555;
font-size: 0.9rem;
line-height: 1.5;
}
.demo-badge {
background: var(--primary-teal);
color: white;
padding: 3px 10px;
border-radius: 16px;
font-size: 0.7rem;
font-weight: 700;
white-space: nowrap;
}
.main-demo .video-thumb {
height: 140px;
}
.other-demos h4.section-label {
color: #555;
font-size: 0.95rem;
margin-bottom: 12px;
font-weight: 600;
}
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 12px;
}
.video-card {
background: #f8f9fa;
border-radius: 8px;
padding: 14px 16px;
border: 1px solid #e9ecef;
transition: box-shadow 0.2s ease;
}
.video-card:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.video-card h4 {
font-size: 0.95rem;
font-weight: 600;
margin-bottom: 6px;
line-height: 1.4;
}
.video-card h4 a {
color: var(--primary-teal);
text-decoration: none;
}
.video-card h4 a:hover {
text-decoration: underline;
}
.video-card p {
color: #666;
font-size: 0.82rem;
line-height: 1.45;
}
.video-thumb {
display: block;
width: 100%;
height: 100px;
object-fit: cover;
border-radius: 6px;
margin-bottom: 10px;
filter: saturate(0.8);
opacity: 0.92;
transition: filter 0.3s ease, opacity 0.3s ease;
}
.video-card:hover .video-thumb,
.main-demo:hover .video-thumb {
filter: saturate(1) brightness(1);
opacity: 1;
}
.software-highlight {
background: rgba(255, 159, 69, 0.15);
padding: 1px 5px;
border-radius: 3px;
color: #cc7a00;
font-weight: 600;
}
.external-badge {
background: #6c757d;
color: white;
padding: 1px 6px;
border-radius: 10px;
font-size: 0.6rem;
font-weight: 600;
vertical-align: middle;
margin-left: 4px;
}
.footer {
margin-top: 40px;
text-align: center;
padding-top: 24px;
border-top: 2px solid rgba(74, 128, 128, 0.2);
color: #666;
font-size: 0.9rem;
}
@media (max-width: 600px) {
body {
padding: 10px;
}
.container {
padding: 18px 14px;
border-radius: 12px;
}
.main-title {
font-size: 1.8rem;
}
.week-section {
padding: 16px 14px;
}
.week-title {
font-size: 1.25rem;
}
.video-grid {
grid-template-columns: 1fr;
}
.video-thumb {
height: 80px;
}
.main-demo .video-thumb {
height: 110px;
}
}
</style>
<title>Generative AI for Work & Research - Course Guide</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index,follow" />
</head>
<body>
<div class="container">
<div class="header">
<img src="https://raw.githubusercontent.com/the-graph-courses/aiw_materials/refs/heads/main/assets/graph_courses_logo.png"
alt="The Graph Courses Logo" class="logo" />
<h1 class="main-title">Generative AI for Work & Research</h1>
<p class="subtitle">Course Materials & Video Demonstrations</p>
<p class="attribution">thegraphcourses.org</p>
</div>
<!-- ——— WEEK 1 ——— -->
<div class="week-section">
<h3 class="week-title"><span class="week-number">1</span>Websites, Documents & Presentations</h3>
<div class="week-description">
<p><strong>Week Focus:</strong> Create professional content with AI-powered tools. Learn to build
websites,
generate documents, and design presentations using AI assistance.</p>
</div>
<div class="main-demo">
<h4><span class="demo-badge">MAIN DEMO</span>
<a href="https://vimeo.com/1082918016" target="_blank" rel="noopener">Simple Websites with ChatGPT
Canvas &
GitHub Pages</a>
</h4>
<a href="https://vimeo.com/1082918016" target="_blank" rel="noopener"><img
src="https://vumbnail.com/1082918016.jpg" alt="Video thumbnail" class="video-thumb" /></a>
<p>It's surprisingly simple and free to create websites with AI and deploy them on
<a href="https://pages.github.com/" target="_blank" rel="noopener" class="software-highlight">GitHub
Pages</a>.
No coding experience required.
</p>
</div>
<div class="other-demos">
<h4 class="section-label">Additional Tools & Techniques</h4>
<div class="video-grid">
<div class="video-card">
<a href="https://www.youtube.com/watch?v=5YFL5F-oAis" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/5YFL5F-oAis/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=5YFL5F-oAis" target="_blank" rel="noopener">LaTeX,
AI &
Overleaf for PDF Documents</a> <span class="external-badge">EXTERNAL</span></h4>
<p>LaTeX creates beautiful academic papers, CVs, posters and reports, but it's hard to learn. AI
can write
LaTeX for you, and <a href="https://www.overleaf.com/" target="_blank" rel="noopener"
class="software-highlight">Overleaf</a> makes it easy to use online.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=KcbXKUR7-a0" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/KcbXKUR7-a0/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=KcbXKUR7-a0" target="_blank" rel="noopener">Gamma
for AI
Presentations</a> <span class="external-badge">EXTERNAL</span></h4>
<p>Everyone keeps asking "where is ChatGPT for PowerPoint?"
<a href="https://gamma.app/" target="_blank" rel="noopener"
class="software-highlight">Gamma</a> is the
best "ChatGPT for PowerPoint" available right now.
</p>
</div>
</div>
</div>
</div>
<!-- ——— WEEK 2 ——— -->
<div class="week-section">
<h3 class="week-title"><span class="week-number">2</span>Automated Data Analysis</h3>
<div class="week-description">
<p><strong>Week Focus:</strong> Automate data analysis tasks using AI-powered coding assistants. Learn
to process
data, create visualizations, and generate insights without manual coding.</p>
</div>
<div class="main-demo">
<h4><span class="demo-badge">MAIN DEMO</span>
<a href="https://vimeo.com/1084743903" target="_blank" rel="noopener">Cursor Coding Agent for R</a>
</h4>
<a href="https://vimeo.com/1084743903" target="_blank" rel="noopener"><img
src="https://vumbnail.com/1084743903.jpg" alt="Video thumbnail" class="video-thumb" /></a>
<p>With the right prompts, you can automate data analysis tasks using an AI-powered IDE
<a href="https://www.cursor.so/" target="_blank" rel="noopener"
class="software-highlight">Cursor</a>. The AI
writes code, runs it on your data, observes output and errors, then updates based on mistakes.
</p>
</div>
<div class="other-demos">
<h4 class="section-label">Alternative Tools & Approaches</h4>
<div class="video-grid">
<div class="video-card">
<a href="https://www.youtube.com/watch?v=0zU80cHUPcg" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/0zU80cHUPcg/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=0zU80cHUPcg" target="_blank" rel="noopener">ChatGPT
Code
Interpreter for Simple Data Analysis</a> <span class="external-badge">EXTERNAL</span>
</h4>
<p><a href="https://chat.openai.com/" target="_blank" rel="noopener"
class="software-highlight">ChatGPT</a> can run code to generate simple data analyses.
Great for quick
data exploration and simple visualizations.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=8TcWGk1DJVs" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/8TcWGk1DJVs/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=8TcWGk1DJVs" target="_blank"
rel="noopener">WindSurf Coding
Agent</a> <span class="external-badge">EXTERNAL</span></h4>
<p><a href="https://www.windsurf.ai/" target="_blank" rel="noopener"
class="software-highlight">Windsurf</a> is an alternative to Cursor with a decent free
plan. Worth
exploring if you're not ready to pay for Cursor.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=1vz6EkUhbOg" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/1vz6EkUhbOg/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=1vz6EkUhbOg" target="_blank" rel="noopener">Bricks
AI for
Spreadsheet & Dashboard Automation</a> <span class="external-badge">EXTERNAL</span>
</h4>
<p><a href="https://thebricks.com/" target="_blank" rel="noopener"
class="software-highlight">TheBricks.com</a> lets you use natural-language prompts to
manipulate
spreadsheets and build simple dashboards without writing formulas.</p>
</div>
</div>
</div>
</div>
<!-- ——— WEEK 3 ——— -->
<div class="week-section">
<h3 class="week-title"><span class="week-number">3</span>GenAI for Text Processing & Research</h3>
<div class="week-description">
<p><strong>Week Focus:</strong> Use AI for text processing and research tasks. Learn to classify text,
analyze
sentiment, summarize documents, and conduct research using AI tools.</p>
</div>
<div class="main-demo">
<h4><span class="demo-badge">MAIN DEMO</span>
<a href="https://vimeo.com/1086807545" target="_blank" rel="noopener">Text Classification, Sentiment
Analysis
& Summarization</a>
</h4>
<a href="https://vimeo.com/1086807545" target="_blank" rel="noopener"><img
src="https://vumbnail.com/1086807545.jpg" alt="Video thumbnail" class="video-thumb" /></a>
<p>Using LLMs in a loop lets you automate lots of text-processing tasks, and spreadsheets are a great
way to do
this. Learn to integrate <a href="https://openrouter.ai/" target="_blank" rel="noopener"
class="software-highlight">OpenRouter</a> with <a href="https://www.google.com/sheets/about/"
target="_blank" rel="noopener" class="software-highlight">Google Sheets</a> for scalable text
analysis.</p>
</div>
<div class="other-demos">
<h4 class="section-label">Research & Literature Review Tools</h4>
<div class="video-grid">
<div class="video-card">
<a href="https://www.youtube.com/watch?v=jPR1NEerdEk" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/jPR1NEerdEk/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=jPR1NEerdEk" target="_blank" rel="noopener">OpenAI
Deep
Research</a> <span class="external-badge">EXTERNAL</span></h4>
<p>Let AI do the googling for you. <a href="https://chat.openai.com/" target="_blank"
rel="noopener" class="software-highlight">ChatGPT's</a> deep-research mode will search
the web repeatedly and compile
comprehensive reports on any topic.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=rJJPS-EvNfk" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/rJJPS-EvNfk/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=rJJPS-EvNfk" target="_blank" rel="noopener">Simple
Literature
Reviews with Elicit</a> <span class="external-badge">EXTERNAL</span></h4>
<p><a href="https://elicit.com/" target="_blank" rel="noopener"
class="software-highlight">Elicit</a> lets
you search academic literature and get AI-powered summaries of research papers, making
literature reviews
much faster.</p>
</div>
</div>
</div>
</div>
<!-- ——— WEEK 4 ——— -->
<div class="week-section">
<h3 class="week-title"><span class="week-number">4</span>Custom GPTs & Chatbots</h3>
<div class="week-description">
<p><strong>Week Focus:</strong> Build custom AI assistants and chatbots. Learn to create specialized AI
tools for
your organization and deploy interactive chatbots for various use cases.</p>
</div>
<div class="main-demo">
<h4><span class="demo-badge">MAIN DEMO</span>
<a href="https://vimeo.com/1092191232" target="_blank" rel="noopener">Creating & Embedding
Interactive
Chatbots with Botpress</a>
</h4>
<a href="https://vimeo.com/1092191232" target="_blank" rel="noopener"><img
src="https://vumbnail.com/1092191232.jpg" alt="Video thumbnail" class="video-thumb" /></a>
<p><a href="https://botpress.com/" target="_blank" rel="noopener"
class="software-highlight">Botpress</a> is one
of the most mature yet easiest-to-use platforms for building bots with modern LLMs. Build a simple
bot and
embed it on your website.</p>
</div>
<div class="other-demos">
<h4 class="section-label">Custom AI Assistant Solutions</h4>
<div class="video-grid">
<div class="video-card">
<a href="https://www.youtube.com/watch?v=0Q1AQAxpdGg" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/0Q1AQAxpdGg/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=0Q1AQAxpdGg" target="_blank" rel="noopener">Custom
GPTs</a>
<span class="external-badge">EXTERNAL</span>
</h4>
<p>Custom GPTs in <a href="https://chat.openai.com/" target="_blank" rel="noopener"
class="software-highlight">ChatGPT</a> let you build internal AI assistants with custom
knowledge bases
and instructions. Great for team-specific tasks.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=-Nl6hz2nYFA" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/-Nl6hz2nYFA/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=-Nl6hz2nYFA" target="_blank"
rel="noopener">NotebookLM</a>
<span class="external-badge">EXTERNAL</span>
</h4>
<p>Upload documents to <a href="https://notebooklm.google/" target="_blank" rel="noopener"
class="software-highlight">Google's NotebookLM</a> and query them like a database. It
can even turn
documents into podcast-style audio.</p>
</div>
</div>
</div>
</div>
<!-- ——— WEEK 5 ——— -->
<div class="week-section">
<h3 class="week-title"><span class="week-number">5</span>AI for Task Automation</h3>
<div class="week-description">
<p><strong>Week Focus:</strong> Traditional automation gets much more powerful with AI in the mix. Learn
to build
intelligent automation systems that can make decisions and handle complex tasks.</p>
</div>
<div class="main-demo">
<h4><span class="demo-badge">MAIN DEMO</span>
<a href="https://vimeo.com/1092196500" target="_blank" rel="noopener">Intro to Workflow Automation
with
Make.com</a>
</h4>
<a href="https://vimeo.com/1092196500" target="_blank" rel="noopener"><img
src="https://vumbnail.com/1092196500.jpg" alt="Video thumbnail" class="video-thumb" /></a>
<p><a href="https://www.make.com/" target="_blank" rel="noopener"
class="software-highlight">Make.com</a> is a
popular workflow-automation platform with affordable pricing and a decent free plan. Takes some
getting used
to, but it's a valuable skill.</p>
</div>
<div class="other-demos">
<h4 class="section-label">Other Automation Tools & Use Cases</h4>
<div class="video-grid">
<div class="video-card">
<a href="https://www.youtube.com/watch?v=GgBAMFvnkQI" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/GgBAMFvnkQI/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=GgBAMFvnkQI" target="_blank"
rel="noopener">Real-World
Make.com Automations</a> <span class="external-badge">EXTERNAL</span></h4>
<p>Explore real-world example use cases and see how different organizations use
<a href="https://www.make.com/" target="_blank" rel="noopener"
class="software-highlight">Make.com</a> for
their automation needs.
</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=bPtFxASiunA" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/bPtFxASiunA/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=bPtFxASiunA" target="_blank" rel="noopener">Make AI
Agents</a>
<span class="external-badge">EXTERNAL</span>
</h4>
<p><a href="https://www.make.com/" target="_blank" rel="noopener"
class="software-highlight">Make.com</a>
now has an interface for building AI agents that choose their own tools, rather than
following a fixed
sequence.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=XQt47wxozL8" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/XQt47wxozL8/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=XQt47wxozL8" target="_blank" rel="noopener">Build
Your Own AI
Team with Relay.app</a> <span class="external-badge">EXTERNAL</span></h4>
<p><a href="https://relay.app/" target="_blank" rel="noopener"
class="software-highlight">Relay.app</a>
lets anyone create AI agents that work like co-workers—proactive, reliable, and
getting better over
time with feedback. No code required.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=6x1PjxuDz00" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/6x1PjxuDz00/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=6x1PjxuDz00" target="_blank"
rel="noopener">Automating Your
First Workflow with Relay.app</a> <span class="external-badge">EXTERNAL</span></h4>
<p>A step-by-step walkthrough of building your first automated workflow in
<a href="https://relay.app/" target="_blank" rel="noopener"
class="software-highlight">Relay.app</a>,
including triggers, AI steps, conditional paths, and human-in-the-loop approvals.
</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=YJtmFpth_nE" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/YJtmFpth_nE/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=YJtmFpth_nE" target="_blank"
rel="noopener">Shortwave: AI
Inbox Assistant</a> <span class="external-badge">EXTERNAL</span></h4>
<p><a href="https://www.shortwave.com/" target="_blank" rel="noopener"
class="software-highlight">Shortwave</a> brings an AI copilot straight to Gmail and
Outlook. Search your
inbox intelligently, draft replies, summarise threads and more.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=3G2lAyjkasw" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/3G2lAyjkasw/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=3G2lAyjkasw" target="_blank"
rel="noopener">Serif.ai: AI
Email Drafts</a> <span class="external-badge">EXTERNAL</span></h4>
<p><a href="https://www.serif.ai/" target="_blank" rel="noopener"
class="software-highlight">Serif.ai</a>
listens to short voice notes and wakes you up to an organised inbox: replies drafted,
follow-ups sent,
meetings scheduled.</p>
</div>
</div>
</div>
</div>
<!-- ——— WEEK 6 ——— -->
<div class="week-section">
<h3 class="week-title"><span class="week-number">6</span>AI for Graphics</h3>
<div class="week-description">
<p><strong>Week Focus:</strong> Use AI to create and edit visual content. Learn to generate images with
Canva AI,
create SVG graphics with LLMs, and bring those graphics into PowerPoint for further editing.</p>
</div>
<div class="other-demos">
<h4 class="section-label">Tools & Techniques</h4>
<div class="video-grid">
<div class="video-card">
<a href="https://www.youtube.com/watch?v=OfgU9f1KHAE" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/OfgU9f1KHAE/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=OfgU9f1KHAE" target="_blank" rel="noopener">Canva
AI for Image
Generation</a> <span class="external-badge">EXTERNAL</span></h4>
<p><a href="https://www.canva.com/" target="_blank" rel="noopener"
class="software-highlight">Canva</a> now
has powerful AI image generation built in. Create professional graphics, social media
visuals, and more
with simple text prompts.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=kBCXqQCsm7A" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/kBCXqQCsm7A/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=kBCXqQCsm7A" target="_blank"
rel="noopener">Creating SVG
Graphics with AI</a> <span class="external-badge">EXTERNAL</span></h4>
<p>LLMs like Claude can generate professional SVG diagrams and graphics from simple
descriptions. SVGs scale
to any size without losing quality—perfect for presentations and marketing.</p>
</div>
<div class="video-card">
<a href="https://www.youtube.com/watch?v=gSn11NJlfjg" target="_blank" rel="noopener"><img
src="https://img.youtube.com/vi/gSn11NJlfjg/mqdefault.jpg" alt="Video thumbnail"
class="video-thumb" /></a>
<h4><a href="https://www.youtube.com/watch?v=gSn11NJlfjg" target="_blank"
rel="noopener">Converting SVG to
Editable PowerPoint Shapes</a> <span class="external-badge">EXTERNAL</span></h4>
<p>Once you have an SVG from AI, you can import it into PowerPoint and convert it to editable
shapes.
Customize colors, text, and layout without needing Illustrator.</p>
</div>
</div>
</div>
</div>
<div class="footer">
<p><strong>thegraphcourses.org</strong> • Generative AI for Work & Research</p>
<p>Data and AI skills for health and life sciences</p>
</div>
</div>
</body>
</html>