-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1630 lines (1471 loc) · 50.5 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" />
<meta keywords="#100DaysOfCode, 100DaysOfCode, code, raihan ahamd" />
<meta description="I have completed the #100DaysOfCode challenge." />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<meta name="msapplication-tap-highlight" content="no" />
<script src="https://kit.fontawesome.com/10cadfa54c.js" crossorigin="anonymous"></script>
<title>#100DaysOfCode</title>
</head>
<body>
<!-- Header Section -->
<header id="main-header">
<div id="header-div">
<div class="title-div">
<a
class="header-title"
href="#"
>
<h1>Hi, I'm Reethik</h1>
<p>Web Developer</p>
<a
class="my-name"
target="_blank"
href="http://reethik.ml/"
>
<span style="font-size: 48px; color: #e4205d;">
<i class="fas fa-code"></i>
</span></a
>
<div class="">
<div class="flex-container">
<a href="https://twitter.com/reethikprasad" target="#" id="qwe">
<i class="fab fa-twitter fa-2x" id="qwe"></i>
</a> <a href="https://github.com/reethikprasad" target="#" id="qwe">
<i class="fab fa-github fa-2x" id="qwe"></i>
</a>
<a href="https://www.linkedin.com/in/reethik-prasad-224602171/" target="#" id="qwe">
<i class="fab fa-linkedin fa-2x" id="qwe"></i>
</a>
<a href="https://www.behance.net/reethikprasad" target="#" id="qwe"><i class="fab fa-behance fa-2x" id="qwe"></i></a>
<a href="https://www.instagram.com/reethik.codes/" target="#" id="qwe">
<i class="fab fa-instagram fa-2x" id="qwe"></i>
</a>
</div>
</div>
</div>
<div class="gradient-animation">
<h1>#100DaysOfCode</h1>
</div>
</div>
<p class="cet">100 days of code is a challenge where I set myself the goal to programm for 100 days.The only rules where I had to do it at least for 1 hour and it had to be for personal projects and selfdevelopment only.</p>
<!-- Navbar -->
<nav id="navbar">
<div class="projects-link">
<a href="index.html" id="blinks_me">DAYS</a>
</div>
<div class="days-link">
<a class="a-current-green-light" id="blink_me" href="projects.html"
>PROJECTS →</a
>
</div>
</nav>
</header>
<!-- #100DaysOfCode -->
<section id="days-section">
<div class="days-container">
<article class="day">
<h3 class="day-title">Day: 100 </h3>
<p class="day-p">
Finally done with
#100DaysOfCode
<br />
The time invested in Those days of codng has helped me a lot to gain some confidence in Coding<br />
“The more that you read, the more things you will know. Look what a lot of things there are to learn.”
<a target="_blank" href="https://www.100daysofcode.com/"
>#100DaysOfCode.</a
>
</p>
<div class="day-img">
<img src="https://media1.giphy.com/media/4SU2Cf0g3zPDG/200w.webp?cid=ecf05e47y5kqa0e3ni4avggg0fv8c55lbaydz3a7ngod93r5&rid=200w.webp" alt="day-99" />
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 99 - JSX</h3>
<p class="day-p">
Went through JSX expression and Conditional rendering <br /><br />
This is a part of ongoing react project
<br />
<a
target="_blank"
href="https://github.com/reethikprasad/Indecision"
>Indecison</a
>
</p>
<div class="day-img">
<img src="https://miro.medium.com/max/975/1*rJB4Tcz_ZZnliNxYmdfGqw.jpeg" alt="day-99" />
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 98 - Babeljs</h3>
<p class="day-p">
Working on the jsx part <br />
<br />
Babblejs helps a lottttt!. In converting to JSX<br>
I am exciteed
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*uHfsgDL4wCKszR7jh8dbYg.png"
alt="day-98"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 97 - ReactJS</h3>
<p class="day-p">
Started with reactjs I legit wasted an hour figuring out why yarn is
not installing globally The Yarn installer was getting stuckPleading
face <br />
<br />
After a lot of googling had to do a fresh install of Nodejs to use
npm globally
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*WA_9JsyqFkge2HwYKcdJQw.png"
alt="day-97"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 96 - Bootstrap</h3>
<p class="day-p">
Started with another bootstrap project of full landing page<br />
Been working on bootsstrap for a while<br /><br />
Building strong hold on it
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/2378/1*2FuvyYyAMU6ltKl26zQGPQ.png"
alt="day-95"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 95 - Bootstrap</h3>
<p class="day-p">
Working on Full landing page of a book review website
<br />
<br />Made using sass , html and sass
<a href="https://t.co/RNMDV0Mx53?amp=1" target="#"> Mindo</a>
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/Ek8YhZbU8AEJz2y?format=jpg&name=large"
alt="day-96"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 94 - GCP</h3>
<p class="day-p">
Started with Google cloud <br />
<br />
- Yep, also I'm learning new things.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/936/1*COzjCLTX2liPee-1JYsf_w.png"
alt="day-94"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day 92 and 93</h3>
<p class="day-p">
Not much did a few JS learning and that's all
<br />Again rewinding everythings
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*LyZcwuLWv2FArOumCxobpA.png"
alt="day-92"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 91</h3>
<p class="day-p">
WIll be winding-up the with the website soon Taking baby steps into
JS again <br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*LyZcwuLWv2FArOumCxobpA.png"
alt="day-91"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 90 Worked</h3>
<p class="day-p">
Exploring Google Cloud
<br />
Still working on the previous websiteYawning face
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*7EGr3eJd0HVnrIUudssdMA.png"
alt="day-90"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 89</h3>
<p class="day-p">
FP GROWTH ALGORITHM and APRIORI ALGORITHM in Data mining and
analytics<br />
I have an exam tomorrowGrimacing face
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-89"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 88</h3>
<p class="day-p">DOM manipulations Exploding head in javascript</p>
<div class="day-img">
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Unofficial_JavaScript_logo_2.svg/197px-Unofficial_JavaScript_logo_2.svg.png"
alt="day-88"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 87</h3>
<p class="day-p">
Will be busy with javascript for few days as one of my course "The
WEB development Bootcamp" got full updated by Colt Steele
<br />
If you are also taking this course express your thought on this new
update
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*LyZcwuLWv2FArOumCxobpA.png"
alt="day-87"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day 85 & 86</h3>
<p class="day-p">
Working on the responsiveness of a website Using Bootstrap with
SASS<br /><br />
- Yeah, it's refreshing my memory. And I'm realigning many things.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1025/1*HFYKWq92BcXJIdata7d-JQ.png"
alt="day-85"
/>
</div>
</article>
<!-- <article class="day">
<h3 class="day-title">Day: 85 Reviewed: 7.15 hours</h3>
<p class="day-p">
* (HTML & CSS) full course another review completed. It contains a
lot of information. I'm impressed I remember pretty much everything.
And this time I realize something cool. * Started reviewing
javascript. Whatever I have learned.
</p>
<div class="day-img">
<img src="./img/day-85.jpg" alt="day-85" />
</div>
</article> -->
<article class="day">
<h3 class="day-title">Day: 84</h3>
<p class="day-p">
Still working on the previous site
<br /><br />
<br /><br />
Added new section
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/Ej_FCy9U4AAKm0j?format=jpg&name=small"
alt="day-84"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 83 - Bootstrap</h3>
<p class="day-p">
Continuing with the next website Bootstrap really saves a lot of
time <br />
<br />- I have to make a pretty website.
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/Ej4-V8FUcAArbu9?format=jpg&name=small"
alt="day-83"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 82</h3>
<p class="day-p">
Done with bootstrap implementation<br />
<br />
- Yep, design takes time. I have to improve it a little bit.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/2378/1*2FuvyYyAMU6ltKl26zQGPQ.png"
alt="day-82"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 81 Reviewed: 3.30 hours</h3>
<p class="day-p">
Started with the implementation of bootstrap on new website <br />
<br />* I'm gonna start asome bootstrap projects.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/2378/1*2FuvyYyAMU6ltKl26zQGPQ.png"
alt="day-81"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 80</h3>
<p class="day-p">
Working with Bootstrap
<br />I have to get a strong hold on the front-end part of web
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/2378/1*2FuvyYyAMU6ltKl26zQGPQ.png"
alt="day-80"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 79</h3>
<p class="day-p">
Finallyyyyyy The website is ready took me straight two weeks on
this<br />
The whole website is created using HTML, CSS, and SASS Fully
responsive
<a href="https://t.co/k2uvygYIbf?amp=1" target="#">Univtrips</a>
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EjWNaCfVoAIHkST?format=png&name=small"
alt="day-79"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 78</h3>
<p class="day-p">
Working on the responsiveness of the website Will unleash it by
tomorrow <br /><br />
This whole website is being made ewithout using any framework
<br />
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EjWNub5VoAUDqML?format=jpg&name=large"
alt="day-78"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 77</h3>
<p class="day-p">
Solved sum questions of binary tree<br />
<br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-77"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 76</h3>
<p class="day-p">
Done with 90% of website The remaining 5% is navigation and 5 % is
responsiveness
<br />
<br />
* & reviewed #javascript DOM section in the course.
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EjWNlCkVcAA6KBg?format=jpg&name=large"
alt="day-76"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 75</h3>
<p class="day-p">
Learning Cloud Computing
<br />
* & I started learning Google cloud computing on thw qwickslab
platform
<br />
- I'm feeling a little complicated. ---It's gonna be Okay.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*7EGr3eJd0HVnrIUudssdMA.png"
alt="day-75"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day 74</h3>
<p class="day-p">
>Learned Animation and video section in CSS <br />
>Continued with queue and deque in C++
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/Eistv_iWkAYKQ73?format=jpg&name=small"
alt="day-74"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day 72 and 73</h3>
<p class="day-p">
* Today I learned: <br />
Worked on Binary Tree in C++ >pre,in,post order <br />
>count,height,diameter and all <br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-73"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 71</h3>
<p class="day-p">>Applied some advanced CSS on the ongoing project</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/0*quq1H1FL0hg3gH_X"
alt="day-71"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 70</h3>
<p class="day-p">
Continued working on the traveling website JUST FRONT_END
<br /><br />
- I working hard and learning many things.
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/Eic1I6-U8AAhYqN?format=jpg&name=small"
alt="day-70"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 69</h3>
<p class="day-p">
Worked on chart.js to make graphs<br /><br />Chart.js is a popular
open source library that helps us to plot data in web
applications.<br /><br /><br />
It is highly customizable, but configuring all of its options
remains a challenge for some people.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*CPSTzfUTCCpUbllyiPvl_A.jpeg"
alt="day-69"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 68</h3>
<p class="day-p">
Done with this Chatbot thing<br />
<br />
* And I started another web app.
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EiI_LKLU4AAX1PY?format=png&name=small"
alt="day-68"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 67</h3>
<p class="day-p">
Working on a chat Bot
<br />Using IBM watson <br />On the topic covid healthcare
#JavaScript project
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*y9Rrku0-oSNdWJI8i5_lTw.jpeg"
alt="day-67"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">DDay 64 to 66</h3>
<p class="day-p">
>Still working on my Travelling site<br />
>Did some stacks problem in C++ <br />
<br />
>exploring Chat Bots
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-66"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 63</h3>
<p class="day-p">
Learned how to work with Sass locally and Implemented on the
outgoing project<br />
<br />
- Thank you so much,Brad traversy
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1025/1*HFYKWq92BcXJIdata7d-JQ.png"
alt="day-63"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 62</h3>
<p class="day-p">
Working my hands on SASS<br />
<br />
Sass help a lot when you dont wwant to messs up your code
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1025/1*HFYKWq92BcXJIdata7d-JQ.png"
alt="day-62"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 61</h3>
<p class="day-p">
Started working on the frontend part of a Tour Website
<br />
<br />
CSS Clip path maker is cool
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*XR3rTO1O_RM69jFDcez7cw.gif"
alt="day-61"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 60</h3>
<p class="day-p">
Being grinding my skills . <br />
Went through:<br />
>STL in LinkedList <br />
>STL in Stack. <br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-60"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 59</h3>
<p class="day-p">
Did some question on Geeks for Geeks and aptitude based problems
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-59"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 58</h3>
<p class="day-p">
>LinkedList Floyd cycle<br />
>Circular LinkedList - insertion and deletion<br />
<br />
And so on
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-58"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 57</h3>
<p class="day-p">
Insertion, deletion, searching, reversing and recursive reverse in
LinkedList <br />
#youshouldknow >Iterative reversing of LinkedList is more optimized
than the recursive approach <br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-57"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 56</h3>
<p class="day-p">
Still working on linkedlist
<br />
* Reviewed fundamentals. Which I learned before.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-56"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 55 Learned: 7.05 hours</h3>
<p class="day-p">
* Today I Learned: <br />
Studied Linkedlist
<br />
LinkedList is blaaaaaahhhhh<br />
And so on...
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-55"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 54 Learned: 6 hours</h3>
<p class="day-p">
Done with another Website "Quazzu"
<br />
Will be improving it on the go.
<a href="https://reethik-quazzu.netlify.app">Quazzu</a>
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/Ee6y_L4UYAAnbAb?format=jpg&name=small"
alt="day-54"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 53</h3>
<p class="day-p">
* Today I learned: <br />
Did two problems of recursion <br />
>Tower of Hanoi<br />
>Ladder problem <br />
also revised LinkedList<br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-53"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 52</h3>
<p class="day-p">
Did some basic level question of array @geeksforgeeks Went through
Recursion <br />
- Website:
<br />
<br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*Dyu63sMUVL-gYEZISOE2BQ.jpeg"
alt="day-52"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 51</h3>
<p class="day-p">
Finally done with all the projects Responsive Web Design
@freeCodeCamp
<br />
<a href="reethik.netlify.app">Portfolio</a>
<br />
<a href="tributepage-fcc-daniel.netlify.app">Tribute Page</a>
<br />
<a href="reethik-landingpage.netlify.app">Landing page</a>
<br />
<a href="reethikdoc.netlify.app">Documentation site</a>
<br />
<a href="https://reethik-surveyform.netlify.app">Survey Form</a>
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/Eet8OC5VoAIdwqz?format=png&name=small"
alt="day-51"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 50</h3>
<p class="day-p">
Finally Done with my first portfolio Started from scratch
<br />
<br />
I'm learning many things.
<a
href="https://reethik.netlify.app
"
>Portfolio</a
>
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EerVi4iUMAAv1zE?format=png&name=small"
alt="day-50"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 49</h3>
<p class="day-p">
Studied about the time and space complicity and how to optimize
code<br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*CWM5omSsQVUpMREJwHQUzQ.jpeg"
alt="day-49"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 48</h3>
<p class="day-p">
Practiced some basic problem on recursion like power of nos,
Fibonacci, factorial...
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*CWM5omSsQVUpMREJwHQUzQ.jpeg"
alt="day-48"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 47</h3>
<p class="day-p">
Done with my first website made with
<br />
@MaterializeCSS I just wanna say I'm super excited & motivated.
<br />
<a href="https://reet-dreamvilla.netlify.app" target="#">DreamVilla</a>
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EeMcQGdUYAEQQAP?format=jpg&name=small"
alt="day-47"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 46</h3>
<p class="day-p">
Working on the landing page using materialize CSS
<br />
I really like this design <br />
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EeHJnybUwAYQnkT?format=jpg&name=small"
alt="day-46"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 45</h3>
<p class="day-p">
Almost done with materialize CSS Will start working on the website
<br />
<br />
- I learned maerialize css pretty much.
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*3u_bdiJarKcXbAcUcNcLhQ.png"
alt="day-45"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 44</h3>
<p class="day-p">
Started with Materialize CSS UI is flat and simple<br />
Any suggestions <br />
<br />
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/0*G3oVjFZC3hIK5Ebo.jpg"
alt="day-44"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 43</h3>
<p class="day-p">
Done with "The Pig Dice Game" learnt a lot of javascript during this
project<br />
Only rule the first to get 30 wins
</p>
<div class="day-img">
<img
src="https://pbs.twimg.com/media/EdyUnuGVoAEX8Du?format=png&name=small"
alt="day-43"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 42</h3>
<p class="day-p">
Almost done with my portfolio will be sharing it soon
<br />
Just doing some last-minute finishing
</p>
<div class="day-img">
<img
src="https://miro.medium.com/max/1050/1*XR3rTO1O_RM69jFDcez7cw.gif"
alt="day-42"
/>
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 41</h3>
<p class="day-p">
Started Working on my Portfolio page (late) Target is to get it done
by Tomorrow
<br />
<a target="_blank" href="https://bit.ly/2wF3O4f">WebPageLink</a>
</p>
<div class="day-img">
<img src="./img/day-41.jpg" alt="day-41" />
</div>
</article>
<article class="day">
<h3 class="day-title">Day: 40</h3>
<p class="day-p">