forked from Roxie2003/GDSC-Official-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport-ml-study-jams.html
1216 lines (1192 loc) · 53.5 KB
/
report-ml-study-jams.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, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="keywords" content="" />
<link
rel="icon"
href="assets/images/favicons-32x32.png"
sizes="32x32"
type="image/png"
/>
<title>GDSC GES–COENGG</title>
<link rel="stylesheet" href="assets/css/all.min.css" />
<link rel="stylesheet" href="assets/css/flaticon.css" />
<link rel="stylesheet" href="assets/css/animate.min.css" />
<link rel="stylesheet" href="assets/css/aos.min.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/jquery.fancybox.min.css" />
<link rel="stylesheet" href="assets/css/perfect-scrollbar.css" />
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/responsive.css" />
<!-- Revolution Style Sheets -->
<link rel="stylesheet" href="assets/css/revolution/settings.css" />
<!-- Revolution Layers Styles -->
<link rel="stylesheet" href="assets/css/revolution/layers.css" />
<!-- Revolution Navigation Styles -->
<link rel="stylesheet" href="assets/css/revolution/navigation.css" />
</head>
<body>
<main>
<header class="style1 w-100">
<div class="topbar bg-color4 w-100">
<div class="container">
<div
class="topbar-inner d-flex flex-wrap align-items-center justify-content-between w-100"
>
<ul
class="top-info-links d-inline-flex flex-wrap align-items-center list-unstyled mb-0"
>
<li>
<i class="flaticon-email"></i
><a href="mailto:[email protected]" title=""
>
</li>
</ul>
<div
class="social-cart d-inline-flex flex-wrap align-items-center"
>
<div class="social-links d-inline-flex flex-wrap">
<a
href="https://www.youtube.com/channel/UCjZ_VIKp8faR6mXptKtvxRQ/"
title="Youtube"
target="_blank"
><i class="flaticon-youtube"></i
></a>
<a
href="https://www.linkedin.com/company/gdsc-ges-coengg/"
title="Linkedin"
target="_blank"
><i class="flaticon-linkedin"></i
></a>
<a
href="https://discord.gg/PsKs6m5mmk"
title="Discord"
target="_blank"
><i class="fab fa-discord"></i
></a>
<a
href="https://github.com/GDSC-GES-COENGG"
title="Github"
target="_blank"
><i class="fab fa-github"></i
></a>
<a
href="https://www.instagram.com/gdsc_gescoengg/"
title="Instagram"
target="_blank"
><i class="fab fa-instagram"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- Topbar -->
<div class="menubar w-100">
<div class="container">
<div
class="menubar-inner d-flex flex-wrap align-items-center justify-content-between w-100"
>
<div class="logo">
<h1 class="mb-0">
<a href="index.html" title="Home"
><img
width="120"
src="assets/images/resources/4GDSClogo.png"
alt="Logo"
/></a>
</h1>
</div>
<!-- Logo -->
<nav>
<ul
class="d-inline-flex flex-wrap align-items-center mb-0 list-unstyled"
>
<li><a href="index.html" title="">Home</a></li>
<li><a href="about-us.html" title="">About us</a></li>
<li><a href="teams.html" title="">Teams</a></li>
<li><a href="gallery.html" title="">Gallery</a></li>
<li><a href="events.html" title="">Events</a></li>
<li><a href="projects.html" title="">Projects</a></li>
<li><a href="blog.html" title="">Blogs</a></li>
<li><a href="faq.html" title="">FAQs</a></li>
<!--
<li><a href="certification.html" title="">Certification </a>
</li>
-->
<li><a href="contact.html" title="">Contacts</a></li>
</ul>
</nav>
</div>
</div>
</div>
<!-- Menubar -->
</header>
<!-- Header -->
<div class="sticky-header style1 w-100">
<div class="container">
<div
class="menubar-inner d-flex flex-wrap align-items-center justify-content-between w-100"
>
<div class="logo">
<h1 class="mb-0">
<a href="index.html" title="Home"
><img
width="185"
src="assets/images/resources/4GDSClogo.png"
alt="Logo"
/></a>
</h1>
</div>
<!-- Logo -->
<nav>
<ul
class="d-inline-flex flex-wrap align-items-center mb-0 list-unstyled"
>
<li><a href="index.html" title="">Home</a></li>
<li><a href="about-us.html" title="">About us</a></li>
<li><a href="teams.html" title="">Teams</a></li>
<li><a href="gallery.html" title="">Gallery</a></li>
<li><a href="events.html" title="">Events</a></li>
<li><a href="projects.html" title="">Projects</a></li>
<li><a href="blog.html" title="">Blogs</a></li>
<li><a href="faq.html" title="">FAQs</a></li>
<!--
<li><a href="certification.html" title="">Certification </a>
</li>
-->
<li><a href="contact.html" title="">Contacts</a></li>
</ul>
</nav>
</div>
</div>
</div>
<!-- Sticky Header -->
<!--
<div class="header-search d-flex flex-wrap justify-content-center align-items-center w-100">
<span class="search-close-btn"><i class="flaticon-delete"></i></span>
<form>
<input type="text" placeholder="Search">
</form>
</div> Header Search -->
<div class="responsive-header position-relative w-100">
<div class="responsive-topbar w-100">
<div
class="container d-flex flex-wrap align-items-center justify-content-between"
>
<div class="logo">
<h1 class="mb-0">
<a href="index.html" title="Home"
><img
class="img-fluid"
src="assets/images/resources/4GDSClogo.png"
alt="Logo"
/></a>
</h1>
</div>
<!-- Logo -->
<div class="header-btns d-inline-flex flex-wrap align-items-center">
<a
class="res-menu-btn d-inline-block"
href="javascript:void(0);"
title=""
><i class="fas fa-align-justify"></i
></a>
</div>
</div>
</div>
<!-- Responsive Topbar -->
<div class="responsive-menu w-100">
<div class="logo">
<h1 class="mb-0">
<a href="index.html" title="Home"
><img
class="img-fluid"
src="assets/images/resources/4GDSClogo.png"
alt="Logo"
/></a>
</h1>
</div>
<!-- Logo -->
<ul class="mb-0 list-unstyled w-100">
<li><a href="index.html" title="">Home</a></li>
<li><a href="about-us.html" title="">About us</a></li>
<li><a href="teams.html" title="">Teams</a></li>
<li><a href="gallery.html" title="">Gallery</a></li>
<li><a href="events.html" title="">Events</a></li>
<li><a href="projects.html" title="">Projects</a></li>
<li><a href="blog.html" title="">Blogs</a></li>
<li><a href="faq.html" title="">FAQs</a></li>
<!--
<li><a href="certification.html" title="">Certification </a>
</li>
-->
<li><a href="contact.html" title="">Contacts</a></li>
</ul>
</div>
<!-- Responsive Menu -->
</div>
<!-- Responsive Header -->
<section>
<div class="w-100 position-relative">
<div
class="pg-title-wrap pt-190 pb-80 position-relative w-100 mouse_anim scroll_anim"
>
<img
data-depth="0.80"
class="pg-ttl-shp-img img-fluid position-absolute"
src="assets/images/ttl-bg-shp.png"
alt="Title Background Shape"
height="329"
width="1920"
/>
<div class="container">
<div class="pg-title-inner text-center position-relative w-100">
<span class="pg-title-cate d-inline-block"
><a href="events.html" title="">Event Report</a></span
>
<h1>ML Study-Jams<i class="btm-ln v2 bg-color9"></i></h1>
<ol
class="breadcrumb d-inline-flex justify-content-center align-items-center flex-wrap"
>
<li class="breadcrumb-item">
<a href="index.html" title="Home">Home</a>
</li>
<li class="breadcrumb-item">
<a href="events.html" title="">Events</a>
</li>
<li class="breadcrumb-item">
<a href="" title="ML Study-Jams">ML Study-Jams</a>
</li>
</ol>
</div>
</div>
</div>
<!-- Page Title Wrap -->
</div>
</section>
<section>
<div class="w-100 pt-100 pb-120 position-relative">
<div class="container">
<div class="blog-detail-wrap position-relative w-100">
<div class="post-detail-media videoformate w-100">
<iframe
class="w-100 d-block"
src="https://www.youtube.com/embed/videoseries?list=PLGMaYI7w6ndwGK5XQ4akpE5RD1YO7ny3U"
></iframe>
<!-- Embeded link?autoplay=1&mute=1 -->
</div>
</div>
</div>
</div>
<div class="w-100 pt-0 pb-0 position-relative">
<div class="container">
<div
class="prfsnl-seo-busns-wrap text-center position-relative w-100"
>
<div class="row justify-content-center">
<div class="col-md-12 col-sm-12 col-lg-8">
<div class="text-box pt-3 w-100">
<div class="sec-title text-center w-100 position-relative">
<h2 class="mb-0">Summary of events</h2>
<i class="btm-ln bg-color3"></i>
</div>
<!-- Sec Title -->
<p class="mb-0">
Now, let's get to know an in-depth idea of all the events
we curated and hosted for our participants.<br />
</p>
</div>
</div>
</div>
</div>
<div class="devider bg-color25 mt-25 w-100"></div>
</div>
</div>
<div class="w-100 pt-60 pb-120 position-relative">
<div class="container">
<div class="blog-detail-wrap position-relative w-100">
<div class="post-detail-desc w-100 mb-80 position-relative">
<div class="position-relative pb-1 text-center">
<h3 class="">
1. Info session and Explore ML #1 with Crowdsource
</h3>
<i class="btm-ln w-25 bg-color9"></i>
</div>
<div class="w-100 pt-30">
<h5>Summary of Event:</h5>
<p class="mt-0 mb-2">
GDSC GES-COENGG is back with another campaign that is ML
Study Jams started from 14th May 2022. The first event was
an info session to explore ML and getting started with
crowdsource. The introductory session focused on
introduction to the ML study jams with basics of ML, AI,
Deep Learning and contributing to crowdsource. The career
opportunities in AI and ML were discussed as well. As a
brainstorming part some interesting games were also played
based on the domain along with tasks assigned for students
using Smart Camera. Events timeline. Assessments, judging
criteria, rewards and learning sources were also discussed.
</p>
<span class="fw-bold">Date and Time: </span>
<p>May 14, 7:00 PM (IST)</p>
<span class="fw-bold">Attendees: </span>
<p><span class="counter">270</span>+</p>
<a
class="btn bg-color9 text-uppercase text-color10"
href="https://youtu.be/JUaw7l3lnqY"
title=""
>
<i class="flaticon-youtube"></i> Watch Now >></a
>
</div>
</div>
<!-- Post Navigation -->
<div class="post-detail-desc w-100 mb-80 position-relative">
<div class="position-relative pb-1 text-center">
<h3 class="">2. Explore ML #2 | ML Study Jams</h3>
<i class="btm-ln w-25 bg-color3"></i>
</div>
<div class="w-100 pt-30 position-relative">
<h5>Summary of Event:</h5>
<p class="mt-0 mb-2">
The second session of ML study jams was focused on the
introduction to neural networks and its basics like
artificial neurons, its limits and hidden layers. Important
mathematical concepts like Relu function and perception of
artificial neurons were also discussed and cleared by the
speakers. As a brainstorming part some interesting quizzes
were also taken based on the concepts along with some
hands-on sessions with TensorFlow Playground which made the
whole event interactive.
</p>
<span class="fw-bold">Date and Time: </span>
<p>May 16, 7:00 PM (IST)</p>
<span class="fw-bold">Attendees: </span>
<p><span class="counter">270</span>+</p>
<a
class="btn bg-color3 text-uppercase text-color10"
href="https://youtu.be/g2S5N1wLlOU"
title=""
>
<i class="flaticon-youtube"></i> Watch Now >></a
>
</div>
</div>
<!-- Post Navigation -->
<div class="post-detail-desc w-100 mb-80 position-relative">
<div class="p-100">
<div class="position-relative pb-1 text-center">
<h3 class="">3. Kaggle Course</h3>
<i class="btm-ln w-25 bg-color16"></i>
</div>
<div class="w-100 pt-30">
<div class="row mt-0 mb-2">
<div class="mb-20 col-lg-6">
<h4>Kaggle #1</h4>
<span class="fw-bold">Summary of Event: </span>
<p>
Another session of ML study jams where the Kaggle
platform was introduced to the students. Speakers
explained some important concepts of “Introduction to
ML” course. As a fun part some interesting quizzes
were also taken based on the concepts. Speakers also
taught some hands-on assignments from the same course
which made the whole event interactive.
</p>
<span class="fw-bold">Date and Time: </span>May 16, 7:00
PM (IST)<br />
<span class="fw-bold">Attendees: </span>
<span class="counter">270</span>+<br />
</div>
<div class="mb-20 col-lg-6">
<h4>Kaggle #2 (Pandas)</h4>
<span class="fw-bold">Summary of Event: </span>
<p>
Speakers introduced the Pandas library (Python Data
Analysis Library). Speakers further explained the
scope of Pandas library in Data Science. Speakers also
took some hands-on assignments from the Kaggle
“Pandas” course which made the whole event very
informative.The entire event was a great.
</p>
<span class="fw-bold">Date and Time: </span>May 16, 7:00
PM (IST)<br />
<span class="fw-bold">Attendees: </span>
<span class="counter">270</span>+<br />
</div>
</div>
<a
class="btn bg-color16 text-uppercase text-color10"
href="https://youtu.be/g2S5N1wLlOU"
title=""
>
<i class="flaticon-youtube"></i> Watch Now >></a
>
</div>
</div>
</div>
<!-- Post Navigation -->
<div class="post-detail-desc w-100">
<br />
<h4>Benefits</h4>
<p class="mb-0">
<li>
Students get to Know and explore ML and career opportunities
in ML with developing their interest into the deep learning
and trending domain.
</li>
<li>
Students have to do hands-on labs and to perform quizzes
after every path.
</li>
<li>
Eligible students on successful completion of all the
assessments and tasks get certification.
</li>
<li>
Opportunity to contribute on Google Crowdsource platform.
</li>
<br /><br />
</p>
</div>
<!-- Post Navigation -->
<div class="w-100 pt-120 pb-110 position-relative">
<div
class="fixed-bg"
style="background-image: url(assets/images/bg-shp-6.png)"
></div>
<div class="container">
<div class="testi-wrap position-relative w-100">
<div class="row align-items-center">
<div class="col-md-12 col-sm-12 col-lg-4">
<div class="text-box w-100">
<div class="sec-title w-100 position-relative">
<h2 class="mb-0">
Student's reviews <span>about the event</span>
</h2>
<i class="btm-ln bg-color3"></i>
</div>
<!-- Sec Title -->
</div>
</div>
<div class="col-md-12 col-sm-12 col-lg-8">
<div class="testi-inner w-100">
<div class="row testi-caro">
<div class="col-md-6 col-sm-6 col-lg-6">
<div
class="testi-box position-relative text-center w-100"
>
<div
class="testi-img d-inline-block overflow-hidden rounded-circle"
>
<img
class="img-fluid d-inline-block rounded-circle"
src="assets/images/profile/Parnavi Takane.png"
alt="Testimonial Image 1"
/>
</div>
<div class="testi-info w-100">
<h5 class="mb-0">Parnavi Takane</h5>
<span class="d-block"
>Computer science student</span
>
</div>
<p class="mb-0">
"ML study Jams was Indeed a great Sessions!!
Got to Explore ML right From the Scratch to
Advance level with informative sessions like -
Data Science, Neural Networks, Kaggle :
Pandas. Overall Its Was Very Informative and
Interesting study jams."
</p>
</div>
</div>
<div class="col-md-6 col-sm-6 col-lg-6">
<div
class="testi-box position-relative text-center w-100"
>
<div
class="testi-img d-inline-block overflow-hidden rounded-circle"
>
<img
class="img-fluid d-inline-block rounded-circle"
src="assets/images/profile/Tanvi yeole.jpg"
alt="Testimonial Image 2"
/>
</div>
<div class="testi-info w-100">
<h5 class="mb-0">Tanvi Yeole</h5>
<span class="d-block"
>Computer science student</span
>
</div>
<p class="mb-0">
"It was a great event event like here we
learnt everything about machine learning which
will upskill your knowledge and will put
theory into practice through assignments"
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials Wrap -->
</div>
<!--Recent events-->
<div class="related-posts-wrap mt-45 mb-60 w-100">
<div class="sec-title w-100 position-relative">
<h2 class="mb-0">Recent events</h2>
<i class="btm-ln bg-color3"></i>
</div>
<!-- Sec Title -->
<div class="blog-wrap position-relative w-100">
<div class="row post-caro">
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-info22-23.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/report/SliderInfoSession.jpg);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Info Session - 2022</a
></span
>
<h3 class="mb-0">
<a href="report-info22-23.html" title=""
>Info Session - 2022</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-info22-23.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 12 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-intro-to-web3.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/report/SliderWeb3.png);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Web3 Metaverse</a
></span
>
<h3 class="mb-0">
<a href="report-intro-to-web3.html" title=""
>Intro to Web3 Metaverse</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-intro-to-web3.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 11 wrap -->
<!--
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div class="post-img overflow-hidden position-relative w-100">
<a href="report-ml-study-jams.html" title="">
<div class="d-block"
style="background-image: url(assets/images/report/SliderMLStudyJams.jpg);">
</div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"><a
href="javascript:void(0);" title="">ML Study Jams</a></span>
<h3 class="mb-0"><a href="report-ml-study-jams.html" title="">ML Study
Jams</a></h3>
<a class="simple-link d-inline-block text-uppercase"
href="report-ml-study-jams.html" title="">Read More<i
class="flaticon-right-arrow text-color3"></i></a>
</div>
</div>
</div>
-->
<!-- Post 10 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-web-with-firebase.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/report/SliderFirebase.png);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Firebase Festival</a
></span
>
<h3 class="mb-0">
<a href="report-web-with-firebase.html" title=""
>Web With Firebase</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-web-with-firebase.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 9 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-be-next-gdsc-lead.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/report/SliderLeads.png);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>GDSC Program Insights</a
></span
>
<h3 class="mb-0">
<a href="report-be-next-gdsc-lead.html" title=""
>Be the next GDSC Lead</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-be-next-gdsc-lead.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 8 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-flutter-festival.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/report/SliderFlutterFest.png);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Flutter Development</a
></span
>
<h3 class="mb-0">
<a href="report-flutter-festival.html" title=""
>Flutter Festival</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-flutter-festival.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 7 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-solution-challenge.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/report/SliderSolutionChallenge.png);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Project Development</a
></span
>
<h3 class="mb-0">
<a href="report-solution-challenge.html" title=""
>Solution Challenge</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-solution-challenge.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 6 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-tech-boss-lady-2.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/report/SliderTechBossLady2.jpg);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Women Tech Maker</a
></span
>
<h3 class="mb-0">
<a href="report-tech-boss-lady-2.html" title=""
>Tech Boss Lady #2</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-tech-boss-lady-2.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 5 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-android-study-jam.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/blog-pages/Android-blog.jpeg);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Android Development</a
></span
>
<h3 class="mb-0">
<a href="report-android-study-jam.html" title=""
>Android Study Jam</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-android-study-jam.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 4 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-tech-boss-lady.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/blog-pages/Tech-boss-lady-blog.jpeg);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Women Tech Maker</a
></span
>
<h3 class="mb-0">
<a href="report-tech-boss-lady.html" title=""
>Tech Boss Lady</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-tech-boss-lady.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 3 wrap -->
<!-- Sec Title -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-cloud.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/blog-pages/Cloud-blog.jpeg);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Cloud Computing</a
></span
>
<h3 class="mb-0">
<a href="report-cloud.html" title=""
>30 Days Of Google Cloud</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-cloud.html"
title=""
>Read More<i
class="flaticon-right-arrow text-color3"
></i
></a>
</div>
</div>
</div>
<!-- Post 2 wrap -->
<div class="col-md-6 col-sm-6 col-lg-4">
<div class="post-box brd-rd15 w-100">
<div
class="post-img overflow-hidden position-relative w-100"
>
<a href="report-inauguration.html" title="">
<div
class="d-block"
style="
background-image: url(assets/images/blog-pages/Intro-blog.jpeg);
"
></div>
</a>
</div>
<div class="post-info w-100">
<span class="post-cate d-block text-uppercase"
><a href="javascript:void(0);" title=""
>Inauguration Ceremony</a
></span
>
<h3 class="mb-0">
<a href="report-inauguration.html" title=""
>Info Session - 2021</a
>
</h3>
<a
class="simple-link d-inline-block text-uppercase"
href="report-inauguration.html"
title=""