-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
696 lines (656 loc) · 40.3 KB
/
tools.html
File metadata and controls
696 lines (656 loc) · 40.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Tools Guide for Professionals - Gaurav Meena</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
.tool-card {
transition: all 0.3s ease;
}
.tool-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.feature-tag {
background-color: #f3f4f6;
color: #4b5563;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
display: inline-block;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}
.visit-link {
display: inline-flex;
align-items: center;
color: #4f46e5;
/* indigo-600 */
font-weight: 600;
font-size: 0.875rem;
margin-top: 1rem;
}
.visit-link:hover {
color: #4338ca;
/* indigo-700 */
text-decoration: underline;
}
</style>
</head>
<body class="bg-slate-50 text-slate-800">
<!-- Navigation (Consistent with Main Site) -->
<nav class="bg-white shadow-md fixed w-full z-50 top-0">
<div class="container mx-auto px-6 py-3 md:flex md:justify-between md:items-center">
<div class="flex items-center justify-between">
<a href="index.html" class="text-xl font-bold text-indigo-600">Gaurav Meena</a>
<div class="flex md:hidden">
<button type="button"
class="text-slate-500 hover:text-slate-600 focus:outline-none focus:text-slate-600"
aria-label="toggle menu" id="mobile-menu-button">
<svg viewBox="0 0 24 24" class="h-6 w-6 fill-current">
<path fill-rule="evenodd"
d="M4 5h16a1 1 0 0 1 0 2H4a1 1 0 1 1 0-2zm0 6h16a1 1 0 0 1 0 2H4a1 1 0 0 1 0-2zm0 6h16a1 1 0 0 1 0 2H4a1 1 0 0 1 0-2z">
</path>
</svg>
</button>
</div>
</div>
<div class="md:flex items-center hidden" id="mobile-menu">
<div class="flex flex-col md:flex-row md:mx-6">
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="index.html#home">Home</a>
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="index.html#about">About</a>
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="index.html#projects">Projects</a>
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="index.html#skills">Skills</a>
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="index.html#education">Education</a>
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="places.html">Food Atlas</a>
<a class="my-1 text-sm text-indigo-600 font-bold md:mx-4 md:my-0" href="tools.html">AI Tools</a>
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="resume.html">Resume</a>
<a class="my-1 text-sm text-slate-700 font-medium hover:text-indigo-500 md:mx-4 md:my-0"
href="index.html#contact">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Header -->
<header class="bg-indigo-700 text-white pt-32 pb-12">
<div class="container mx-auto px-6 text-center">
<h1 class="text-3xl md:text-4xl font-bold mb-4">AI Tools Guide for Professionals</h1>
<p class="text-lg md:text-xl text-indigo-100 max-w-3xl mx-auto">
A curated guide on how to leverage specific Artificial Intelligence tools to enhance productivity,
research, and content creation in daily professional operations.
</p>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-6 py-12 max-w-4xl">
<!-- Data Privacy Warning -->
<div class="bg-red-50 border-l-4 border-red-500 rounded-r-lg shadow-sm p-6 mb-8 mt-4">
<div class="flex items-start">
<div class="flex-shrink-0 text-red-500 mt-1 mr-4">
<i class="fas fa-shield-alt text-2xl"></i>
</div>
<div>
<h3 class="text-lg font-bold text-red-800 mb-2">Critical Data Privacy Warning</h3>
<p class="text-red-700 text-sm leading-relaxed">
<strong>NEVER</strong> upload or paste sensitive, confidential, or Personally Identifiable
Information (PII) such as financial records, identification numbers, or private internal
documents into public AI tools (like ChatGPT, Claude, or Perplexity). These models may store and
train on your inputs. Always use approved, enterprise-secured, or offline local AI tools for
sensitive workflows.
</p>
</div>
</div>
</div>
<!-- Search Bar -->
<div class="relative mb-8">
<div class="absolute inset-y-0 left-0 pl-4 flex items-center pointer-events-none">
<i class="fas fa-search text-slate-400 text-lg"></i>
</div>
<input type="text" id="tool-search"
class="w-full pl-12 pr-4 py-4 rounded-xl border border-slate-200 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent shadow-sm text-slate-700 text-lg"
placeholder="Search for a tool or use case (e.g., 'PDF', 'Video', 'Design')...">
</div>
<!-- Section: Popular LLMs -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 mr-4">
<i class="fas fa-robot text-xl"></i>
</div>
Popular LLM Chatbots
</h2>
<p class="text-slate-600 mb-6 font-medium border-b pb-4">A summarized list of popular AI assistants and
their specialized use cases (what separates them from others):</p>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700">ChatGPT:</strong>
<span class="text-slate-700">The most well-known general-purpose conversational AI. Best for
coding, deep data analysis, canvas writing workspaces, and creating Custom GPTs trained on
your instructions.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700">Claude:</strong>
<span class="text-slate-700">Excels in highly nuanced, human-like writing and analyzing
incredibly long documents. Known for producing writing that feels less "robotic" than other
models.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700">Gemini:</strong>
<span class="text-slate-700">Google's natively multimodal model. Fast internet searches,
excellent integration with Google Workspace (Docs, Gmail, Drive), and accepts video/audio
inputs natively.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700">Google AI Studio (aistudio.google.com):</strong>
<span class="text-slate-700">A developer platform, but incredibly useful for non-tech users as
it offers free access to the most powerful Pro versions of Gemini with very high usage
limits and no chat guardrails.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700">Perplexity:</strong>
<span class="text-slate-700">An AI answer engine replacing traditional search. Instead of
providing links, it reads web pages and gives you an exact answer with clickable citations
for deep internet research.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700">Grok:</strong>
<span class="text-slate-700">X's (formerly Twitter) AI model. Its major separator is direct
real-time access to the live X post stream, making it the best for current news and trending
events.</span>
</div>
</li>
</ul>
</div>
<!-- Section: Document & Research -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center text-green-600 mr-4">
<i class="fas fa-book-reader text-xl"></i>
</div>
Deep Research & Document Intelligence
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-green-500"><i class="fas fa-lightbulb"></i></div>
<div>
<strong class="text-green-700">NotebookLM:</strong>
<span class="text-slate-700">Upload your own PDFs, links, or text. The AI answers questions
based <em>strictly</em> on your materials. Perfect for finding information in heavy manuals,
summarizing reports into PPT bullet points, and uniquely generating realistic, multi-lingual
"podcast-style" audio discussions based on the material.</span>
</div>
</li>
</ul>
</div>
<!-- Show More Button -->
<div class="text-center mb-8">
<button id="show-more-btn"
class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-full transition-colors shadow-md">
Show More Useful Tools <i class="fas fa-chevron-down ml-2"></i>
</button>
</div>
<!-- Hidden Section: More Tools -->
<div id="more-tools-section" class="hidden transition-all duration-300">
<!-- Category: Design & Imagery -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center text-pink-600 mr-4">
<i class="fas fa-paint-brush text-xl"></i>
</div>
Design & Imagery
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-pink-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-pink-700"><a href="https://www.remove.bg/" target="_blank"
class="hover:underline">Remove.bg:</a></strong>
<span class="text-slate-700">Instantly removes the background from any image perfectly with
a single click. No Photoshop skills required.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-pink-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-pink-700"><a href="https://www.canva.com/" target="_blank"
class="hover:underline">Canva:</a></strong>
<span class="text-slate-700">The ultimate drag-and-drop design tool for posters, flyers, and
presentations with built-in AI image generation.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-pink-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-pink-700"><a href="https://www.freepik.com/" target="_blank"
class="hover:underline">Freepik:</a></strong>
<span class="text-slate-700">Download high-quality stock photos, vectors, and use their AI
image generator to bring ideas to life.</span>
</div>
</li>
</ul>
</div>
<!-- Category: Audio & Video -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div
class="w-10 h-10 rounded-full bg-orange-100 flex items-center justify-center text-orange-600 mr-4">
<i class="fas fa-photo-video text-xl"></i>
</div>
Audio & Video Presentations
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-orange-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-orange-700"><a href="https://gamma.app/" target="_blank"
class="hover:underline">Gamma.app:</a></strong>
<span class="text-slate-700">AI presentation maker. Type a topic and it generates a fully
formatted, beautifully designed PowerPoint deck instantly.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-orange-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-orange-700"><a href="https://podcast.adobe.com/enhance" target="_blank"
class="hover:underline">Adobe Podcast Enhance:</a></strong>
<span class="text-slate-700">Free tool to drop in a noisy voice recording and instantly
process it to sound like a professional studio.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-orange-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-orange-700"><a href="https://elevenlabs.io/" target="_blank"
class="hover:underline">ElevenLabs:</a></strong>
<span class="text-slate-700">The premier AI voice generation tool for realistic, emotive
human text-to-speech across multiple languages.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-orange-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-orange-700"><a href="https://suno.com/" target="_blank"
class="hover:underline">Suno AI:</a></strong>
<span class="text-slate-700">Type a text description of a song and it writes lyrics,
generates music, and produces a professional-sounding track.</span>
</div>
</li>
</ul>
</div>
<!-- Category: Writing, PDF & Utility -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div class="w-10 h-10 rounded-full bg-teal-100 flex items-center justify-center text-teal-600 mr-4">
<i class="fas fa-file-alt text-xl"></i>
</div>
Writing, PDF & Utilities
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-teal-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-teal-700"><a href="https://quillbot.com/" target="_blank"
class="hover:underline">QuillBot:</a></strong>
<span class="text-slate-700">An excellent paraphrasing tool to rewrite emails or reports to
sound more professional, fluent, or concise.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-teal-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-teal-700"><a href="https://www.deepl.com/translator" target="_blank"
class="hover:underline">DeepL Translator:</a></strong>
<span class="text-slate-700">Highly accurate AI-driven translation tool that significantly
outperforms standard tools in formal language.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-teal-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-teal-700"><a href="https://www.ilovepdf.com/" target="_blank"
class="hover:underline">Ilovepdf.com:</a></strong>
<span class="text-slate-700">Must-have toolkit to merge, split, compress, or convert PDFs
without any heavy desktop software.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-teal-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-teal-700"><a href="https://goblin.tools/" target="_blank"
class="hover:underline">Goblin.tools:</a></strong>
<span class="text-slate-700">Breaks large tasks into small, manageable checklists and judges
the tone of text.</span>
</div>
</li>
</ul>
</div>
<!-- Category: AI App & Web Builders (Prompt-to-Software) -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div
class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 mr-4">
<i class="fas fa-magic text-xl"></i>
</div>
AI App & Web Builders (Prompt-to-Software)
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700"><a href="https://labs.google/stitch" target="_blank"
class="hover:underline">Google Stitch:</a></strong>
<span class="text-slate-700">Google's revolutionary new tool. You describe an interface or
upload a sketch, and it instantly generates a fully responsive UI layout with components
and color schemes. Brilliant for rapid visual prototyping.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700"><a href="https://v0.dev/" target="_blank"
class="hover:underline">v0.dev (by Vercel):</a></strong>
<span class="text-slate-700">The absolute standard for UI generation. Simply type "a modern
dashboard for tracking claims" and it instantly writes the working interface code in
front of your eyes.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700"><a href="https://lovable.dev/" target="_blank"
class="hover:underline">Lovable.dev & Bolt.new:</a></strong>
<span class="text-slate-700">These tools don't just build the design; they build the
<em>entire software application</em>. You can type instructions and deploy a fully
working, database-connected website in 5 minutes with zero engineering
experience.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-indigo-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-indigo-700">Claude Artifacts:</strong>
<span class="text-slate-700">Inside the standard Claude.ai chat, if you ask it to build a
web tool, a game, or a dashboard, an "Artifact" window opens on the right side where the
app runs live instantly.</span>
</div>
</li>
</ul>
</div>
<!-- Category: For the IT & Tech Cell -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-700 mr-4">
<i class="fas fa-code text-xl"></i>
</div>
For the IT & Tech Cell
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-gray-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-gray-800"><a href="https://colab.research.google.com/" target="_blank"
class="hover:underline">Google Colab:</a></strong>
<span class="text-slate-700">Cloud-based Jupyter notebook environment. Write and execute
Python directly in the browser with free GPU access.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-gray-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-gray-800"><a href="https://www.kaggle.com/" target="_blank"
class="hover:underline">Kaggle:</a></strong>
<span class="text-slate-700">The premier platform for data science competitions, hosting
open datasets, and notebooks. Great for learning and collaboration.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-gray-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-gray-800"><a href="https://github.com/" target="_blank"
class="hover:underline">GitHub:</a></strong>
<span class="text-slate-700">The industry standard for code version control and
collaborative development. Essential for storing and sharing code repositories.</span>
</div>
</li>
</ul>
</div>
<!-- Category: Flowcharts & Mind Maps -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div
class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center text-yellow-600 mr-4">
<i class="fas fa-project-diagram text-xl"></i>
</div>
Flowcharts, Mind Maps & Visualization
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-yellow-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-yellow-700"><a href="https://www.napkin.ai/" target="_blank"
class="hover:underline">Napkin AI:</a></strong>
<span class="text-slate-700">Paste in any text and it instantly auto-generates beautiful
flowcharts, infographics, and cycle diagrams. (Magic visualizer).</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-yellow-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-yellow-700"><a href="https://whimsical.com/" target="_blank"
class="hover:underline">Whimsical:</a></strong>
<span class="text-slate-700">The absolute fastest drag-and-drop tool for making mind maps,
wireframes, and flowcharts. Includes an AI mind-map generator.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-yellow-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-yellow-700"><a href="https://app.diagrams.net/" target="_blank"
class="hover:underline">Draw.io (Diagrams.net):</a></strong>
<span class="text-slate-700">The completely free, standard offline tool. Great for
government staff because it requires zero login and saves files securely to your own
hard drive.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-yellow-500"><i class="fas fa-check-circle"></i></div>
<div>
<strong class="text-yellow-700"><a href="https://xmind.app/" target="_blank"
class="hover:underline">XMind:</a></strong>
<span class="text-slate-700">A powerful, dedicated mind-mapping tool for brainstorming and
structuring complex thoughts and projects.</span>
</div>
</li>
</ul>
</div>
<!-- Category: Learning & Basics (YouTube) -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div class="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center text-red-600 mr-4">
<i class="fab fa-youtube text-xl"></i>
</div>
Learning AI & Data Basics (Beginners)
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-red-500"><i class="fas fa-play-circle"></i></div>
<div>
<strong class="text-red-700"><a href="https://course.elementsofai.com/" target="_blank"
class="hover:underline">Elements of AI (Course):</a></strong>
<span class="text-slate-700">A brilliant free course created specifically for non-technical
people to understand what AI is, what it can do, and what it can't.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-red-500"><i class="fas fa-play-circle"></i></div>
<div>
<strong class="text-red-700"><a
href="https://www.youtube.com/playlist?list=PLITMTGnwwu70S0GzeH1_Q13S7o4sR5Awa"
target="_blank" class="hover:underline">IBM Technology - AI Explained:</a></strong>
<span class="text-slate-700">Excellent, bite-sized "whiteboard" videos answering simple
questions like "What is Generative AI?" or "What is a Large Language Model?".</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-red-500"><i class="fas fa-play-circle"></i></div>
<div>
<strong class="text-red-700"><a
href="https://www.youtube.com/watch?v=sT_-pG6XdY8&list=PLrMihLzT059X3oN_sD1H9nI01xQ5hR-d4"
target="_blank" class="hover:underline">CrashCourse: Artificial
Intelligence:</a></strong>
<span class="text-slate-700">A fun, highly visual, fast-paced YouTube series covering the
absolute basics of ML, neural networks, and algorithmic bias.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-red-500"><i class="fas fa-play-circle"></i></div>
<div>
<strong class="text-red-700"><a href="https://www.youtube.com/watch?v=-d2t1XpB108"
target="_blank" class="hover:underline">"AI for Everyone" concepts (Andrew
Ng):</a></strong>
<span class="text-slate-700">The globally recognized standard framework for non-technical
staff to learn how to spot opportunities for AI.</span>
</div>
</li>
</ul>
</div>
<!-- Category: Practical YouTube Tutorials & Advanced Academics -->
<div class="bg-white rounded-xl shadow-md p-8 border border-slate-100 mb-8 transition-all hover:shadow-lg">
<h2 class="text-2xl font-bold text-slate-800 mb-6 flex items-center">
<div
class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-600 mr-4">
<i class="fas fa-graduation-cap text-xl"></i>
</div>
Tutorials & Advanced Academics
</h2>
<ul class="space-y-4">
<li class="flex items-start">
<div class="mt-1 mr-3 text-purple-500"><i class="fas fa-laptop-code"></i></div>
<div>
<strong class="text-purple-700"><a href="https://www.youtube.com/@KevinStratvert"
target="_blank" class="hover:underline">Kevin Stratvert (YouTube):</a></strong>
<span class="text-slate-700">Former Microsoft PM providing the best step-by-step,
screen-recorded tutorials on exactly how to use tools like ChatGPT, NotebookLM, and
Copilot.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-purple-500"><i class="fas fa-laptop-code"></i></div>
<div>
<strong class="text-purple-700"><a href="https://www.youtube.com/@jeffsu" target="_blank"
class="hover:underline">Jeff Su (YouTube):</a></strong>
<span class="text-slate-700">Highly valuable for office professionals. Teaches practical
workflows like using AI to organize Gmail, draft meeting notes, and manage Google
Workspace.</span>
</div>
</li>
<li class="flex items-start">
<div class="mt-1 mr-3 text-purple-500"><i class="fas fa-university"></i></div>
<div>
<strong class="text-purple-700"><a href="https://nptel.ac.in/courses/106102220"
target="_blank" class="hover:underline">IIT Delhi "Artificial Intelligence" (Prof.
Mausam):</a></strong>
<span class="text-slate-700"><strong>Advanced Academic Course:</strong> A highly rigorous,
mathematical NPTEL course covering deep AI computer science concepts (A* search, logic,
MDPs). Excellent for technical mastery, but not for everyday office use.</span>
</div>
</li>
</ul>
</div>
</div> <!-- End of Hidden Section -->
</main>
<!-- Footer (Consistent with Main Site) -->
<footer class="bg-slate-900 text-slate-400 py-8 text-center">
<p>© <span id="currentYear"></span> Gaurav Meena. All rights reserved.</p>
<p class="text-sm mt-2">Built with HTML, Tailwind CSS, and <i class="fas fa-heart text-red-500"></i></p>
</footer>
<!-- Scripts -->
<script>
// Set current year in footer
document.getElementById('currentYear').textContent = new Date().getFullYear();
// Mobile menu toggle logic
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenuButton && mobileMenu) {
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
}
// Show More Tools Toggle
const showMoreBtn = document.getElementById('show-more-btn');
const moreToolsSection = document.getElementById('more-tools-section');
if (showMoreBtn && moreToolsSection) {
showMoreBtn.addEventListener('click', () => {
const isHidden = moreToolsSection.classList.contains('hidden');
if (isHidden) {
moreToolsSection.classList.remove('hidden');
showMoreBtn.innerHTML = 'Show Less Tools <i class="fas fa-chevron-up ml-2"></i>';
} else {
moreToolsSection.classList.add('hidden');
showMoreBtn.innerHTML = 'Show More Useful Tools <i class="fas fa-chevron-down ml-2"></i>';
}
});
}
// Tool Search Logic
const searchInput = document.getElementById('tool-search');
if (searchInput) {
searchInput.addEventListener('input', function (e) {
const searchTerm = e.target.value.toLowerCase();
const toolItems = document.querySelectorAll('li.flex.items-start');
// If searching and there's text, force the hidden section open
if (searchTerm.length > 0 && moreToolsSection && moreToolsSection.classList.contains('hidden')) {
moreToolsSection.classList.remove('hidden');
showMoreBtn.innerHTML = 'Show Less Tools <i class="fas fa-chevron-up ml-2"></i>';
}
toolItems.forEach(item => {
const text = item.textContent.toLowerCase();
if (text.includes(searchTerm)) {
item.style.display = 'flex';
} else {
item.style.display = 'none';
}
});
// Hide entire category sections if all tools inside are hidden
document.querySelectorAll('div.bg-white.rounded-xl.shadow-md.p-8').forEach(section => {
if (section.querySelector('ul')) {
const hasVisibleTools = Array.from(section.querySelectorAll('li.flex.items-start')).some(li => li.style.display !== 'none');
section.style.display = hasVisibleTools ? 'block' : 'none';
}
});
});
}
</script>
</body>
</html>