-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3150 lines (2433 loc) · 151 KB
/
index.html
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
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Diary</title>
<!-- font awesome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Container -->
<div class="container light">
<!-- Navbar hidden in the start -->
<div class="navbar hidden light">
<div class="menu-btn" id="menu-btn"><i class="fa-solid fa-bars"></i></div>
<div class="nav-image">
<img src="images/diary2.png" alt="diary logo">
</div>
<div class="name" id="nav-name">
<a href="#Dev-Diary">Aditya Chandel</a>
</div>
<div class="theme-toggle">
<input class="theme-toggle-btn" type="checkbox">
</div>
</div>
<!-- left column -->
<div class="left-column">
<div class="image">
<img src="images/diary2.png" alt="diary logo">
</div>
<div class="wrapper">
<div class="theme-toggle">
<input class="theme-toggle-btn-2" type="checkbox">
</div>
<div class="name">
<a href="#Dev-Diary">Aditya Chandel</a>
</div>
</div>
<div class="search-box">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" placeholder="Search page....">
</div>
<!-- Search list container with all search items -->
<div class="search-list-container">
<div class="search-list-item default-active">
<a href="#Dev-Diary">
<p>What is Dev Diary?</p>
</a>
</div>
<div class="search-list-item">
<a href="#Consistency">
<p>Consistency</p>
</a>
</div>
<div class="search-list-item">
<a href="#How-to-start">
<p>How to start?</p>
</a>
</div>
<div class="search-list-item">
<a href="#Procastination">
<p>Procastination</p>
</a>
</div>
<div class="search-list-item">
<a href="#Time-management">
<p>Time management</p>
</a>
</div>
<div class="search-list-item">
<a href="#Podcast">
<p>Podcast</p>
</a>
</div>
<div class="search-list-item">
<a href="#Youtube-channels">
<p>Youtube channels</p>
</a>
</div>
<div class="search-list-item">
<a href="#Networking">
<p>Networking</p>
</a>
</div>
<div class="search-list-item">
<a href="#Project-building">
<p>Project building</p>
</a>
</div>
<div class="search-list-item">
<a href="#Problem-solving">
<p>Problem solving</p>
</a>
</div>
<div class="search-list-item">
<a href="#Dedication">
<p>Dedication</p>
</a>
</div>
<div class="search-list-item">
<a href="#Git">
<p>Git & Github</p>
</a>
</div>
<div class="search-list-item">
<a href="#Mental-health">
<p>Mental health</p>
</a>
</div>
<div class="search-list-item">
<a href="#Physical-health">
<p>Physical health</p>
</a>
</div>
<div class="search-list-item">
<a href="#Productivity">
<p>Productivity</p>
</a>
</div>
<div class="search-list-item">
<a href="#Awareness">
<p>Awareness</p>
</a>
</div>
<div class="search-list-item">
<a href="#Competition">
<p>Competition</p>
</a>
</div>
<div class="search-list-item">
<a href="#Chatgpt">
<p>Chatgpt</p>
</a>
</div>
<div class="search-list-item">
<a href="#Hobbies">
<p>Hobbies</p>
</a>
</div>
<div class="search-list-item">
<a href="#Music">
<p>Music</p>
</a>
</div>
<div class="search-list-item">
<a href="#My-journey">
<p>My coding journey</p>
</a>
</div>
<div class="search-list-item">
<a href="#Mindset">
<p>Mindset</p>
</a>
</div>
<div class="search-list-item">
<a href="#Curiosity">
<p>Curiosity</p>
</a>
</div>
<div class="search-list-item">
<a href="#Journey">
<p>Journey</p>
</a>
</div>
<div class="search-list-item">
<a href="#Skills">
<p>Skills</p>
</a>
</div>
<div class="search-list-item">
<a href="#Soft-skills">
<p>Soft Skills</p>
</a>
</div>
<div class="search-list-item">
<a href="#Burnout">
<p>Burnout</p>
</a>
</div>
<div class="search-list-item">
<a href="#Growth">
<p>Growth</p>
</a>
</div>
<div class="search-list-item">
<a href="#Discipline">
<p>Discipline</p>
</a>
</div>
<div class="search-list-item">
<a href="#Open-source">
<p>Open source</p>
</a>
</div>
</div>
<!-- Not found message -->
<div class="not-found">
<p>Oops! We couldn't find what you're looking for. Try a different keyword!</p>
<img src="images/error.png" alt="error-img">
</div>
</div>
<!-- right column -->
<div class="right-column">
<!-- All pages -->
<div class="page" id="Dev-Diary">
<div class="heading">
<h3>What is Dev Diary?</h3>
</div>
<hr>
<div class="image">
<img src="images/diary.jpg" alt="diary-img">
</div>
<div class="text-content">
<p>Personal bits of learning, open for everyone :)</p>
<ul>
<li>🛠️ Explore this <a target="_blank" href="https://github.com/TonyStark-19/Dev-Diary">Dev
Diary on
GitHub.</a> And if you found something
useful? ⭐ <a target="_blank" href="https://github.com/TonyStark-19/Dev-Diary">Star the
repo</a> and help it
grow!</li>
<li>Welcome to my Dev Diary! This is a space where I document my coding journey—projects,
lessons, challenges, and useful insights I pick up along the way. Whether you're a beginner
or an experienced developer, I hope you find something useful here.</li>
<li>🗺️ Explore any topic you find interesting on the list!</li>
<li>📣 <a target="_blank" href="https://tonystark-19.github.io/Portfolio-Website/">Reach out</a>
if you want to
chat!</li>
<li>💬 Got feedback or ideas? <a target="_blank"
href="https://github.com/TonyStark-19/Dev-Diary/issues">Create
an issue on GitHub</a>!</li>
<li>Thanks for stopping by! I appreciate your support and would love to hear your thoughts.
</li>
</ul>
</div>
<hr>
<div class="images-links">
<p>Photes by <a target="_blank" href="https://www.pexels.com/">pexels</a> and <a target="_blank"
href="https://pngtree.com/">pngtree.</a></p>
</div>
<hr>
<div class="footer">
<p>Project inspiration : <a target="_blank"
href="https://handbook.davidgasquez.com/README">Handbook</a> by <a target="_blank"
href="https://github.com/davidgasquez">David Gasquez</a></p>
</div>
</div>
<div class="page hidden" id="Consistency">
<div class="heading">
<h3>Consistency : </h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>Consistency is a cornerstone of success, and <a href="#My-journey">my coding journey</a>
has been a
testament to
this
principle.</p>
</li>
<ul class="inner-list">
<li>Taking on the <strong>#100DaysOfCode</strong> challenge was one of the best
decisions
I’ve made—it gave me the structure and accountability to stay on track.</li>
<li>By coding every single
day and sharing my progress on <a target="_blank"
href="https://linkedin.com/in/aditya-chandel-223bb3308">LinkedIn</a> and <a
target="_blank" href="https://twitter.com/iamaditya_3">Twitter</a>,
the
habit
became second nature.</li>
<li>At
first,
it required effort and <a href="#Discipline">discipline</a>, but over time, it evolved
into
something I
genuinely
looked
forward to, like a positive addiction. Each day, as I posted my updates and saw my
<a href="#Growth">growth</a>, I
felt motivated to keep going.
</li>
</ul>
<li>
<p>Consistency is not just about showing up; it’s about showing up with intent and focus.
When
you
commit to improving, even by just one percent every day, you set yourself apart.</p>
</li>
<ul class="inner-list">
<li>Over time,
these small, consistent efforts compound, placing you in the top one percent of
achievers in
your field.</li>
<li>It’s easy to be motivated on day one, but it’s consistency on days 50, 75, or 100
that truly builds expertise and confidence.</li>
</ul>
<li>
<p>For anyone struggling with consistency, my advice is simple: don’t overthink it, and
don’t
wait
for the “perfect moment.” <a href="#How-to-start">Start</a> where you are with what you
have.</p>
</li>
<ul class="inner-list">
<li>Challenges like
<strong>#100DaysOfCode</strong> are invaluable because they create an environment of
accountability and progress.
</li>
<li>The trick is to make it a part of your daily
routine—whether
it’s
coding, writing, learning, or any <a href="#Skills">skill</a> you want to improve.</li>
</ul>
<li>
<p>The beauty of consistency is that it rewires your <a href="#Mindset">mindset</a>. Over
time, it
stops being a
chore
and
becomes a lifestyle.</p>
</li>
<ul class="inner-list">
<li> With each step forward, you’re not just improving your skills;
you’re
also
building resilience, self-discipline, and a sense of achievement. It’s a
powerful
cycle—progress
fuels motivation, and motivation sustains consistency.</li>
</ul>
<li>
<p>Remember, you don’t need to be perfect; you just need to keep moving. Success isn’t built
on
monumental leaps but on the steady and persistent steps you take every single day.</p>
</li>
</ul>
</div>
<hr>
<div class="footer">
<p>Inspired to stay consistent? Join the <strong>#100DaysOfCode</strong> challenge today!</p>
<p>Here is my <a target="_blank"
href="https://linkedin.com/in/aditya-chandel-223bb3308">LinkedIn</a> and <a target="_blank"
href="https://twitter.com/iamaditya_3">Twitter</a> , Let's connect here :)</p>
</div>
</div>
<div class="page hidden" id="How-to-start">
<div class="heading">
<h3>How to start?</h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>Starting something new, whether it's learning to code, picking up a <a
href="#Skills">skill</a>,
or making a
significant life change, is often the hardest step—but it’s also the most crucial. </p>
</li>
<ul class="inner-list">
<li>Many people fall into the trap of endlessly manifesting or dreaming about their goals,
thinking that the perfect moment will come to begin.</li>
<li>While visualization and planning can provide clarity and motivation, they are only the
starting blocks, not the race itself. Action is what bridges the gap between dreams and
reality.</li>
<li>Sitting on the sidelines, overthinking and waiting, can be mentally exhausting because
all the energy goes into imagining instead of doing.</li>
</ul>
<li>
<p>The power lies in simply starting. It’s not about having everything figured out from the
beginning; it’s about taking that first imperfect step.</p>
</li>
<ul class="inner-list">
<li>Progress and clarity come with time and experience, not before it</li>
<li>Once you take the leap, you'll realize that what once felt overwhelming slowly
integrates into your routine, becoming a natural and fulfilling part of your life.</li>
<li>You don’t have to be perfect or even particularly skilled when you
start—you just have
to
begin.</li>
</ul>
<li>
<p>A powerful <a href="#Mindset">mindset</a> shift is to turn "one day" into "day one." This
transformation allows
you to stop postponing and start creating. </p>
</li>
<ul class="inner-list">
<li>The first day might be messy, challenging, or uncertain, but it sets you on a path of
progress and builds momentum.</li>
<li>As you continue, you'll not only learn and <a href="#Growth">grow</a>, but you’ll also
develop
resilience,
<a href="#Discipline">discipline</a>, and confidence.
</li>
<li>The journey of starting is less about perfection and more about persistence, and before
you know it, you’ll look back and see how far you’ve come.</li>
</ul>
<li>
<p>So stop waiting for the stars to align, and make today the day you begin. Success comes
not from waiting for the perfect moment, but from taking the moment and making it
perfect.</p>
</li>
</ul>
</div>
<hr>
<div class="footer">
<p>What will your 'Day One' look like? Start now and take the first step!</p>
</div>
</div>
<div class="page hidden" id="Procastination">
<div class="heading">
<h3>Procastination : </h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>Procrastination is often seen as a harmless habit, but its impact on <a
href="#Productivity">productivity</a>,
learning, and <a href="#Growth">personal growth</a> can be significant. It is the
tendency to
delay tasks
despite knowing that doing so might lead to stress, poor performance, or missed
opportunities.</p>
</li>
<ul class="inner-list">
<li>At its core, procrastination is fueled by a mix of fear, perfectionism, or even a false
sense of comfort in having more time than is actually available</li>
<li>However, this habit can trap individuals in a cycle of unpreparedness and mediocrity, as
last-minute efforts rarely match the quality of work achieved through <a
href="#Consistency">consistent</a>,
deliberate action.</li>
</ul>
<li>
<p>The danger of procrastination lies not just in missed deadlines but also in the
diminished opportunities for learning and reflection.</p>
</li>
<ul class="inner-list">
<li>Rushing to complete tasks at the eleventh hour often results in work that lacks depth
and creativity.</li>
<li>Moreover, the stress caused by procrastination can have a ripple effect, reducing
confidence and motivation for future endeavors. It’s a self-sabotaging loop that feeds
on itself, making it harder to break free.</li>
</ul>
<li>
<p>Overcoming procrastination begins with understanding its root causes. Sometimes, the task
may seem overwhelming, leading to avoidance.</p>
</li>
<ul class="inner-list">
<li>In such cases, breaking the task into smaller, manageable chunks can make it feel less
daunting. Starting small builds momentum, which is often all that’s needed to keep
going.</li>
<li>Additionally, setting realistic deadlines and celebrating progress along the way can
transform the act of starting into a rewarding experience.</li>
</ul>
<li>
<p>A key strategy to combat procrastination is reframing how you view time. Instead of
seeing deadlines as distant targets, treat every day as an opportunity to make
incremental progress.</p>
</li>
<ul class="inner-list">
<li>Adopting the <a href="#Mindset">mindset</a> of <a href="#How-to-start">“starting
now”</a> rather than
“someday” shifts the
focus from
waiting to acting.</li>
<li>This approach not only improves the quality of the work but also reduces stress, as
tasks are completed at a steady and thoughtful pace.</li>
</ul>
<li>
<p>In my own experience, the realization that procrastination led to subpar results was a
wake-up call.</p>
</li>
<ul class="inner-list">
<li>I learned that starting early not only provided me with enough time to refine my work
but also allowed me to explore ideas and approaches that I would have missed if I had
rushed.</li>
<li>The output was not just better—it was more meaningful, and the process itself became a
learning <a href="#Journey">journey.</a></li>
</ul>
<li>
<p> By choosing to act today rather than waiting for tomorrow, you take the first step
toward breaking free from procrastination and achieving your fullest potential.</p>
</li>
</ul>
</div>
<hr>
<div class="footer">
<p>Start today! What task will you tackle now?</p>
</div>
</div>
<div class="page hidden" id="Time-management">
<div class="heading">
<h3>Time management : </h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>Time management is an essential <a href="#Skills">skill</a> that plays a vital role in
achieving
success,
especially when embarking on a new endeavor or working on a long-term <a
href="#Project-building">project.</a></p>
</li>
<ul class="inner-list">
<li>It is a common misconception that there is never enough time to accomplish everything.
However, the real challenge often lies in the inability to set clear priorities and
establish firm boundaries.</li>
<li>By dedicating just 30 minutes a day to focused, undistracted work, you can lay the
foundation for a <a href="#Productivity">productive</a> habit. Small, <a
href="#Consistency">consistent</a>
efforts are often underestimated,
yet they have the potential to yield significant results over time.</li>
<li>Consistency is key, as it fosters <a href="#Discipline">discipline</a> and allows
you to make
progress steadily
without feeling overwhelmed.</li>
</ul>
<li>
<p>It is important to recognize that leisure activities, such as browsing social media,
watching entertainment, or relaxing with friends, are not inherently bad.</p>
</li>
<ul class="inner-list">
<li> In fact, they are necessary for <a href="#Mental-health">mental</a> rejuvenation and
maintaining a
healthy balance.
The key is to ensure that these activities do not take precedence over your goals or
consume more time than intended.</li>
<li>Allocating specific blocks of time for such activities while prioritizing your
commitments ensures that you remain productive without sacrificing relaxation or
enjoyment.</li>
<li>Starting small, such as dedicating a short period daily to focused work, can gradually
build your endurance for longer, more intensive sessions. This incremental approach
reduces the risk of <a href="#Burnout">burnout</a> and makes the <a
href="#Journey">journey</a> less
daunting.</li>
</ul>
<li>
<p>Over time, what begins as a modest effort transforms into a powerful habit that enhances
both your skills and overall productivity. It instills a sense of achievement and
momentum that motivates you to tackle more complex tasks with confidence.</p>
</li>
<ul class="inner-list">
<li>The discipline developed through consistent time management spills over into other areas
of life, creating a ripple effect that improves decision-making, reduces stress, and
boosts overall efficiency.</li>
</ul>
<li>
<p>Ultimately, managing your time effectively is not just about getting things done but
about designing a life that aligns with your aspirations, ensuring that every moment
spent contributes meaningfully to your <a href="#Growth">growth</a> and happiness.</p>
</li>
</ul>
</div>
<hr>
<div class="footer">
<p>"Studies show that people who plan their days are 20-25% more productive."</p>
<p>“Take five minutes now to plan your next 24 hours. Note down your priorities!”</p>
<p>And if you're wondering how to start? Read <a href="#How-to-start">this page.</a></p>
</div>
</div>
<div class="page hidden" id="Podcast">
<div class="heading">
<h3>Podcast : </h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>Podcasts are a dynamic and enriching medium for personal development, offering an
accessible way to learn, <a href="#Growth">grow</a>, and gain inspiration.</p>
</li>
<ul class="inner-list">
<li>They cater to diverse needs, whether you aim to enhance your <a
href="#Mental-health">mental
health</a>, advance your
career, or cultivate a success-oriented <a href="#Mindset">mindset</a>.</li>
<li>Mindset-focused podcasts are particularly impactful, guiding listeners toward adopting
<a href="#Productivity">productive</a> thinking patterns and fostering <a
href="#Awareness">self-awareness.</a>
</li>
<li>On the other hand, interview-style podcasts provide profound insights into the lives of
individuals, especially successful people, revealing habits, strategies, and
philosophies that contribute to their achievements.</li>
</ul>
<li>
<p>Listening to these life stories not only inspires but also uncovers recurring
patterns—like meticulous planning, embracing challenges, and finding joy in the <a
href="#Journey">journey.</a>
</p>
</li>
<ul class="inner-list">
<li>Such lessons can help you reflect on your own life, refine your decision-making, and
develop a more thoughtful, <a href="#Growth">growth-oriented</a> perspective.</li>
<li> Moreover, podcasts encourage rational and intentional thinking, offering guidance in
areas such as <a href="#Time-management">time management</a>, emotional resilience, and
goal-setting.
</li>
</ul>
<li>
<p>They are a reservoir of knowledge that can be tapped into anytime—during a walk, commute,
or relaxation.</p>
</li>
<ul class="inner-list">
<li>Either you're exploring success stories, seeking practical tips, or simply looking for
motivation, podcasts provide an immersive and transformative experience.</li>
</ul>
<li>
<p>Here is the podcasts which i listen to : </p>
</li>
<ul class="inner-list">
<li><a target="_blank"
href="https://open.spotify.com/show/5NUTEH8N6zey7rjPth1lsy?si=2f209a61e27b4126">The
Mindset show with Daksh Jindal</a> to help to build a mindset.</li>
<li><a target="_blank" href="https://www.youtube.com/@beerbiceps">Youtube podcasts by
Ranveer Allahbadia aka
BeerBiceps</a> His channel is
filled with numerous personal interviews of very known and interesting people where you
can learn from their life experiences.</li>
</ul>
</ul>
</div>
<hr>
<div class="footer">
<p>"Have a favorite podcast which has helped you in your journey? You can share your recommendations
in my <a target="_blank" href="https://twitter.com/iamaditya_3">Twitter</a>"
</p>
</div>
</div>
<div class="page hidden" id="Youtube-channels">
<div class="heading">
<h3>Youtube channels : </h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>YouTube channels are a transformative resource in today's digital age, offering a wealth
of information and opportunities for <a href="#Skills">skill</a> development to anyone
willing
to invest their
time and <a href="#Dedication">dedication.</a></p>
</li>
<ul class="inner-list">
<li>In this era where knowledge is at our fingertips, YouTube bridges the gap between
traditional education and modern learning.</li>
<li>It becomes especially crucial when quality teachers or resources are not easily
accessible in schools, universities, or local institutions. By simply searching for the
right channels, learners can connect with some of the best educators and practitioners
in any field, all available for free or minimal cost.</li>
</ul>
<li>
<p>The platform's versatility is unmatched, catering to an audience with diverse interests.
Whether you're seeking tutorials, lectures, career advice, creative inspiration, or
technical know-how, there's a channel for everything.</p>
</li>
<ul class="inner-list">
<li>The only prerequisite is having the <a href="#Discipline">discipline</a> and <a
href="#Mindset">mindset</a>
to <a href="#How-to-start">start</a> learning and apply
that knowledge <a href="#Consistency">consistently.</a></li>
<li>With YouTube, the barriers to learning are reduced significantly, empowering individuals
to achieve their goals, learn new <a href="#Skills">skills</a>, and explore
their passions at
their own pace.
</li>
</ul>
<li>
<p>Here is my list of youtube channels which i found useful : </p>
</li>
<ul class="inner-list">
<li><a target="_blank" href="https://www.youtube.com/@ApnaCollegeOfficial">Apna College</a>
A great channel
for beginners to advanced learners focusing on coding, Data Structures, and Development.
</li>
<li><a target="_blank" href="https://www.youtube.com/@AmanDhattarwal">Aman
Dhattarwal</a>Covers tech
updates, career guidance, and motivational content.</li>
<li><a target="_blank" href="https://www.youtube.com/@beerbiceps">beerbiceps</a> Offers
engaging <a href="">podcasts</a>
with thought leaders, life lessons, and self-improvement advice.</li>
</ul>
</ul>
</div>
<hr>
<div class="footer">
<p>"Have a favorite youtube channel which has helped you in your journey? You can share your
recommendations
in my <a target="_blank" href="https://twitter.com/iamaditya_3">Twitter</a>"</p>
</div>
</div>
<div class="page hidden" id="Networking">
<div class="heading">
<h3>Networking : </h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>Networking is an essential component for <a href="#Growth">career growth</a>,
particularly in
fields like tech.
It allows you to connect with like-minded individuals who share similar goals, ideas,
and <a href="#Skills">skills.</a></p>
</li>
<ul class="inner-list">
<li>Through networking, you can collaborate on <a href="#Project-building">projects</a>,
exchange knowledge,
and gain
valuable insights from others who are on a similar <a href="#Journey">journey.</a></li>
<li>Platforms like <a target="_blank"
href="https://linkedin.com/in/aditya-chandel-223bb3308">LinkedIn</a>
and <a target="_blank" href="https://twitter.com/iamaditya_3">Twitter</a> are powerful
tools for this,
enabling you to
showcase your progress, share your work, and engage with a community of professionals
who can help you grow.</li>
</ul>
<li>
<p>By <a href="#Consistency">consistently</a> sharing your learning and achievements on
these platforms,
you not only
improve your visibility but also attract the attention of potential collaborators,
mentors, and even employers.</p>
</li>
<ul class="inner-list">
<li>Networking can lead to opportunities that you wouldn't find otherwise, such as project
collaborations or job referrals.</li>
<li>In fact, many people land jobs or get hired through referrals within their network
because others have seen their <a href="#Dedication">dedication</a> and growth
firsthand.</li>
</ul>
<li>
<p>As you build a strong network of connections, you're essentially building a support
system that can offer advice, guidance, and opportunities that will accelerate your
career.</p>
</li>
<ul class="inner-list">
<li>The key is to stay consistent, be authentic in your interactions, and actively seek to
add value to the people you connect with.</li>
</ul>
<li>
<p>By doing so, you'll create relationships that go beyond just professional gain and foster
a community where you can continuously learn and grow.</p>
</li>
</ul>
</div>
<hr>
<div class="footer">
<p>"Your network is your net worth." – Porter Gale</p>
<p>"Start building your network today! Connect with me on <a target="_blank"
href="https://linkedin.com/in/aditya-chandel-223bb3308">LinkedIn</a> or <a target="_blank"
href="https://twitter.com/iamaditya_3">Twitter</a>, and let's learn and
grow together."</p>
</div>
</div>
<div class="page hidden" id="Project-building">
<div class="heading">
<h3>Project building : </h3>
</div>
<hr>
<div class="text-content">
<ul class="outer-list">
<li>
<p>Project building is a vital process for transforming abstract ideas into practical,
real-world applications. It plays a key role in showcasing your <a
href="#Skills">skills</a>,
deepening your
understanding of the technology, and contributing value to society.</p>
</li>
<ul class="inner-list">
<li>For beginners, starting with small and straightforward projects, such as mini HTML and
CSS designs, is essential.</li>