-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
1469 lines (1460 loc) · 98.9 KB
/
schedule.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 class="wide" lang="en">
<head>
<title>Hack This Fall 1.0 | Build And Solve</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="images/hhf/HTF-Logo-FT.png" type="image/x-icon">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Barlow%7CBarlow+Condensed:300,400,500,600,700,900">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/style.css">
<style>
.ie-panel {
display: none;
background: #212121;
padding: 10px 0;
box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
clear: both;
text-align: center;
position: relative;
z-index: 1;
}
html.ie-10 .ie-panel,
html.lt-ie-10 .ie-panel {
display: block;
}
</style>
</head>
<body>
<div class="ie-panel"><a href="http://windows.microsoft.com/en-US/internet-explorer/"><img
src="images/ie8-panel/warning_bar_0000_us.jpg" height="42" width="820"
alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."></a>
</div>
<div class="preloader">
<div class="preloader-body">
<div class="cssload-container">
<div class="cssload-speeding-wheel"></div>
</div>
<p>Loading...</p>
</div>
</div>
<div class="page">
<!-- Section Header Default-->
<header class="section page-header">
<!--RD Navbar-->
<div class="rd-navbar-wrap">
<nav class="rd-navbar rd-navbar-classic" data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed"
data-md-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-static"
data-lg-device-layout="rd-navbar-static" data-xl-layout="rd-navbar-static"
data-xl-device-layout="rd-navbar-static" data-xxl-layout="rd-navbar-static"
data-xxl-device-layout="rd-navbar-static" data-lg-stick-up-offset="46px" data-xl-stick-up-offset="46px"
data-xxl-stick-up-offset="76px" data-lg-stick-up="true" data-xl-stick-up="true" data-xxl-stick-up="true">
<div class="rd-navbar-main-outer">
<div class="rd-navbar-main">
<!--RD Navbar Panel-->
<div class="rd-navbar-panel">
<!--RD Navbar Toggle-->
<button class="rd-navbar-toggle" data-rd-navbar-toggle=".rd-navbar-nav-wrap"><span></span></button>
<!--RD Navbar Brand-->
<div class="rd-navbar-brand">
<!--Brand--><a class="brand" href="index.html"><img class="brand-logo-light"
src="images/hhf/HTF-Logo-T.png" style="height: 50px;" /></a>
</div>
</div>
<!-- Rd Navbar Navigation-->
<div class="rd-navbar-main-element">
<div class="rd-navbar-nav-wrap">
<ul class="rd-navbar-nav">
<li class="rd-nav-item"><a class="rd-nav-link" href="index.html" style="color: #212121;">Home</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#26oct" style="color: #212121;">26 October</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#27oct" style="color: #212121;">27 October</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#28oct" style="color: #212121;">28 October</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#29oct" style="color: #212121;">29 October</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#30oct" style="color: #212121;">30 October</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#31oct" style="color: #212121;">31 October</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#1nov" style="color: #212121;">1 November</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#2nov" style="color: #212121;">2 November</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#contact" style="color: #212121;">Contact</a>
</li>
</ul>
</div>
</div>
<!-- RD Navbar Collapse-->
<!-- <div class="rd-navbar-collapse"><a class="button button-primary" href="#" data-triangle=".button-overlay"><span>Buy Tickets</span><span class="button-overlay"></span></a>
</div> -->
</div>
</div>
</nav>
</div>
</header>
<!-- Breadcrumbs-->
<section class="breadcrumbs-custom bg-image context-dark" style="background-color: #212121;">
<div class="container">
<ul class="breadcrumbs-custom-path">
<li><a style="font-size: 20px; color: #ff6b00;">Hack This Fall</a></li>
</ul>
<h2 class="breadcrumbs-custom-title" style="color: #ffece1; margin-bottom: -20px;">Schedule</h2>
</div>
</section>
<!-- Section Schedule : 1 -->
<section class="section section-lg bg-default text-center" id="26oct">
<div class="container">
<div class="tabs-custom tabs-horizontal tabs-corporate" id="tabs-1">
<!--Nav tabs-->
<ul class="nav nav-tabs">
<li class="nav-item" role="presentation"><a class="nav-link nav-link nav-link-secondary-darker"
href="#tabs-1-1" data-toggle="tab" data-triangle=".nav-link-overlay">
<span class="nav-link-overlay"></span>
<span class="nav-link-cite">
<h5 style="color: #FF6D00;"><b>First Day of Workshop</b></h5>
</span><span class="nav-link-title">
<h4 style="color: black;">October 26, 2020</h4>
</span></a></li>
</ul>
<!--Tab panes-->
<div class="tab-content">
<div class="tab-pane fade" id="tabs-1-1">
<div class="card-group-custom card-group-corporate" id="accordion1" role="tablist"
aria-multiselectable="false">
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion1-card-head-1" data-toggle="collapse"
data-parent="#accordion1" href="#accordion1-card-body-1" aria-controls="accordion1-card-body-1"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/marc.jpg" alt=""
width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">03:00 PM IST onwards</span><span
class="schedule-classic-title heading-4">Use Jupyter Notebooks in the cloud</span>
<span class="schedule-classic-author">by <span class="schedule-classic-author-name">Marc
Cohen</span> • Developer Advocate, GCP -
Google.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion1-card-body-1" aria-labelledby="accordion1-card-head-1"
data-parent="#accordion1" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
Notebooks are awesome. Perhaps you've used them in your classes. But one problem is there are so
many.
Just at Google we have Colab, Cloud AI Platform Notebooks, and Kaggle Kernels. Several major
cloud providers offer Notebook services,
and then there are open source efforts like Binder, Jupyter Hub, and a whole ecosystem of
tooling. So which should you use? The answer, as usual, is "it depends".
This session will summarize your options and try to help you choose the best notebook services
and tools for your needs.</p>
<p>🔸Speaker Bio:<br>
Marc is an American software engineer working on Google’s Developer Relations team in London.
His mission is building tools, demos, tutorials, and other educational artifacts to make
computing
and data science more accessible and inclusive. Before joining Google, He spent 30 years
building products
and managing engineering teams in the Telecom industry (Bell Labs, AT&T, Lucent Technologies,
and Alcatel-Lucent).</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-marc-cohen" target="_blank">Click here to
watch the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion1-card-head-2" data-toggle="collapse"
data-parent="#accordion1" href="#accordion1-card-body-2" aria-controls="accordion1-card-body-2"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/aanisha.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">04:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Horizons of GitHub</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Aanisha Mishra</span> • Engineer-II,
Cisco.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion1-card-body-2" aria-labelledby="accordion1-card-head-2"
data-parent="#accordion1" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
In this speaker session you will get to know more about how you can use Git and GitHub for
almost everything you do on your computer.</p>
<p>🔸Speaker Bio:<br>
Aanisha is an Engineer at Cisco, developing a Terraform Provider using GoLang. She support open
source. Apart from hanging out with IDEs,
she also nurture her hobbies of traveling, cooking, and writing blogs.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-aanisha" target="_blank">Click here to
watch the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion1-card-head-3" data-toggle="collapse"
data-parent="#accordion1" href="#accordion1-card-body-3" aria-controls="accordion1-card-body-3"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/akanksha.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">05:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">The New Era of Voice</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Akanksha Bhasin</span> • Chapter Founder, Women
in Voice India.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion1-card-body-3" aria-labelledby="accordion1-card-head-3"
data-parent="#accordion1" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
In this session Akanksha will be talking about the paradigm shift of voice, the real-life use
case,
the latest trends, and future possibilities. She will also Introduce you all to Women in Voice
India
and other programs related to voice tech.</p>
<p>🔸Speaker Bio:<br>
Akanksha Bhasin is the chapter founder of Women in Voice India. She is a community advocate and
a former DSC Lead.
She is currently the Alexa Student Influencer Lead and a believer of #VoiceFirst and has helped
a lot of people in
starting with voice tech. She has given 20+ sessions and has also mentored students in the
Google Code-In.
She was also a speaker at Voice Global this year.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-akanksha" target="_blank">Click here to
watch the session.</a>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<!-- Section Schedule : 2 -->
<section class="section section-lg bg-default text-center" id="27oct">
<div class="container">
<div class="tabs-custom tabs-horizontal tabs-corporate" id="tabs-2">
<!--Nav tabs-->
<ul class="nav nav-tabs">
<li class="nav-item" role="presentation"><a class="nav-link nav-link nav-link-secondary-darker"
href="#tabs-2-1" data-toggle="tab" data-triangle=".nav-link-overlay">
<span class="nav-link-overlay"></span>
<span class="nav-link-cite">
<h5 style="color: #FF6D00;"><b>Second Day of Workshop</b></h5>
</span><span class="nav-link-title">
<h4 style="color: black;">October 27, 2020</h4>
</span></a></li>
</ul>
<!--Tab panes-->
<div class="tab-content">
<div class="tab-pane fade" id="tabs-2-1">
<div class="card-group-custom card-group-corporate" id="accordion2" role="tablist"
aria-multiselectable="false">
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion2-card-head1" data-toggle="collapse"
data-parent="#accordion2" href="#accordion2-card-body-1" aria-controls="accordion2-card-body-1"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/shivay.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">03:00 PM IST onwards</span><span
class="schedule-classic-title heading-4">Introduction to Tensorflow.JS</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Shivay Lamba</span> • Lead Engineer,
Darkhorse.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion2-card-body-1" aria-labelledby="accordion2-card-head-1"
data-parent="#accordion2" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
This talk gives an introduction to students about Tensorflow.JS which is an open source
Javascript Library
that allows running machine learning models on the browser itself and helps integrate the models
with web applications.
Using TF.JS in hackathons is particularly amazing because you can get quick machine learning
model applications for your project.</p>
<p>🔸Speaker Bio:<br>
Shivay Lamba is an Open Source Enthusiast, Google Summer of Code Mentor, MLH Fellow and
Tensorflow.JS SIG and Community Member,
currently working at Darkhorse a soccer analytics startup as a Lead Engineer.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-shivay" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion2-card-head2" data-toggle="collapse"
data-parent="#accordion2" href="#accordion2-card-body-2" aria-controls="accordion2-card-body-2"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/vraj.png" alt=""
width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">04:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Machine Learning with SwiftUI</span>
<span class="schedule-classic-author">by <span class="schedule-classic-author-name">Vraj
Patel</span> • iOS Developer.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion2-card-body-2" aria-labelledby="accordion2-card-head-2"
data-parent="#accordion2" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
Let's Dive into the workings of Accessibility in SwiftUI, with a look at how Apple harnesses
machine learning in its technology.
Machine learning provides system the ability to learn automatically and improve from experience
without being explicitly programmed.
Learn how to build, train, and deploy machine learning models into SwiftUI and Other Apple
Platforms. Bring on-device machine learning
features, like object detection in images and video, language analysis to your app with just a
few lines of code.</p>
<p>🔸Speaker Bio:<br>
Vraj is a Final Year Student. He is a Web Developer and iOS Developer too, and more passionate
about technology.
He enjoys exploring new technologies and build creative projects on it. Apart from this, he is
part of the
Microsoft Learn Student Ambassador Program and a member of the Mozilla Community. </p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-vraj" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion2-card-head3" data-toggle="collapse"
data-parent="#accordion2" href="#accordion2-card-body-3" aria-controls="accordion1-card-body-6"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/john.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">05:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Intro to DevOps and GitLab</span>
<span class="schedule-classic-author">by <span class="schedule-classic-author-name">John
Coghlan</span> • Developer Evangelism,
GitLab.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion2-card-body-3" aria-labelledby="accordion2-card-head-3"
data-parent="#accordion2" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
Learn the basics of DevOps and how GitLab can help you achieve your DevOps goals.</p>
<p>🔸Speaker Bio:<br>
John leads the Developer Evangelism team at GitLab. His passion is to help people love their
work. In his free time, he likes to surf.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-john" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<!-- Section Schedule : 3 -->
<section class="section section-lg bg-default text-center" id="28oct">
<div class="container">
<div class="tabs-custom tabs-horizontal tabs-corporate" id="tabs-3">
<!--Nav tabs-->
<ul class="nav nav-tabs">
<li class="nav-item" role="presentation"><a class="nav-link nav-link nav-link-secondary-darker"
href="#tabs-3-1" data-toggle="tab" data-triangle=".nav-link-overlay">
<span class="nav-link-overlay"></span>
<span class="nav-link-cite">
<h5 style="color: #FF6D00;"><b>Third Day of Workshop</b></h5>
</span><span class="nav-link-title">
<h4 style="color: black;">October 28, 2020</h4>
</span></a></li>
</ul>
<!--Tab panes-->
<div class="tab-content">
<div class="tab-pane fade" id="tabs-3-1">
<div class="card-group-custom card-group-corporate" id="accordion3" role="tablist"
aria-multiselectable="false">
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion3-card-head1" data-toggle="collapse"
data-parent="#accordion3" href="#accordion3-card-body-1" aria-controls="accordion3-card-body-1"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/abhi.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">03:00 PM IST onwards</span><span
class="schedule-classic-title heading-4">Build Beautiful Apps Using Flutter</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Abhishek Doshi</span> • Flutter
Developer.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion3-card-body-1" aria-labelledby="accordion3-card-head-1"
data-parent="#accordion3" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
In this talk, you will get an introduction of Flutter. Participants will get insights of what is
Flutter and how beneficial it is.
Live coding session of an app which has Material UI with some awesome animations.
Participants will also get insights of how to use different packages in Flutter.
They will be able to understand how to implement UI from dribbble or any other UI image.</p>
<p>🔸Speaker Bio:<br>
Abhishek is a simple CSE Student who loves to create beautiful apps with Flutter and help
people, develop great apps and spread knowledge!
He is also the Semi-Finalist for Build For Digital India, 2020 organized by Google India. He
have participated in 25+ hackathons.
He love to solve daily life problems by creating apps for the same and have created 30+ apps
using Flutter (small to big ones).
Got featured in Android Live Stream too for one of the app named Productly! In short, he is a
part-time student and a full time Flutter Developer</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-abhishek" target="_blank">Click here to
watch the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion3-card-head2" data-toggle="collapse"
data-parent="#accordion3" href="#accordion3-card-body-2" aria-controls="accordion3-card-body-2"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/praveen.webp"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">04:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Static Site Generation using
JavaScript</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Praveen Kumar</span> • Full Stack JS
Developer.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion3-card-body-2" aria-labelledby="accordion3-card-head-2"
data-parent="#accordion3" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
Currently he have his events website generated manually for all the events. We should be having
a single source of truth, which is,
the information for the whole website should be coming from only one place. To make things
better,
we'll be using a JSON data and with that, we will be generating the complete website using Node
JS.</p>
<p>🔸Speaker Bio:<br>
Praveen Kumar is a Full Stack JavaScript Developer specialising in React JS & Node JS, ex
Microsoft MVP and a Mentor with more
than a decade of experience in Web Development field. He has started his YouTube journey
recently and has been creating a lot of
internship opportunities for people around the world.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-praveen" target="_blank">Click here to
watch the session.</a>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<!-- Section Schedule : 4 -->
<section class="section section-lg bg-default text-center" id="29oct">
<div class="container">
<div class="tabs-custom tabs-horizontal tabs-corporate" id="tabs-4">
<!--Nav tabs-->
<ul class="nav nav-tabs">
<li class="nav-item" role="presentation"><a class="nav-link nav-link nav-link-secondary-darker"
href="#tabs-4-1" data-toggle="tab" data-triangle=".nav-link-overlay">
<span class="nav-link-overlay"></span>
<span class="nav-link-cite">
<h5 style="color: #FF6D00;"><b>Fourth Day of Workshop</b></h5>
</span><span class="nav-link-title">
<h4 style="color: black;">October 29, 2020</h4>
</span></a></li>
</ul>
<!--Tab panes-->
<div class="tab-content">
<div class="tab-pane fade" id="tabs-4-1">
<div class="card-group-custom card-group-corporate" id="accordion4" role="tablist"
aria-multiselectable="false">
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion4-card-head1" data-toggle="collapse"
data-parent="#accordion4" href="#accordion4-card-body-1" aria-controls="accordion4-card-body-1"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/aritra.png"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">03:00 PM IST onwards</span><span
class="schedule-classic-title heading-4">The Count-Down is 3</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Aritra Mukherjee</span> • CG Generalist,
Zebu.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion4-card-body-1" aria-labelledby="accordion4-card-head-1"
data-parent="#accordion4" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
Real-time technologies have shaped how product is built, how businesses operate and what it
means to meet consumer expectations.
Let us understand how we can employ some incredible workflows on modern product development
inspired from principles enforced from
the video games industry which is 10 times larger than Hollywood.</p>
<p>🔸Speaker Bio:<br>
He is a self taught indie game-developer, C# programmer who has worked on several game projects.
Slylad Interactive startup founder,
maker of Burnscape, 2019 invite-only alumni of Google Indie Accelerator, Former Trainer and
Ambassador at Unity Technologies.
He was also a Smart India Hackathon'20 Mentor.
He have been training and motivating technical students towards the adoption of extended
reality,
modern learning experiences and inspiring the new generation to chase a career of love,
enthusiasm and empathy. </p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-aritra" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion4-card-head2" data-toggle="collapse"
data-parent="#accordion4" href="#accordion4-card-body-2" aria-controls="accordion4-card-body-2"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/jimish.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">04:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Unequivocal Rise of Blockchain in Healthcare
world</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Jimish Parekh</span> • Founder, Pedals
Up.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion4-card-body-2" aria-labelledby="accordion4-card-head-2"
data-parent="#accordion4" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
Healthcare Industry is something that is very crucial and game changing for each and every
country on this dear planet earth,
Billions of dollars are being used for health care of each developed and developing country but
is it sufficient?
Blockchain can play a unique and very advantageous to each and every aspect of the healthcare
world by bringing a
transparent transaction system as well as privacy at its core. We do not think about our data
being used by some multi
billion or trillion dollar firm and how it can advantage them. So I am going to take the
audience on a possible tour where
each aspect of blockchain and healthcare is chained with each other.</p>
<p>🔸Speaker Bio:<br>
Jimish is Founder of Pedals Up, a small startup in Ahmedabad India. Apart from that he is a
nomad traveller and crazy mountain kid.
As A full-stack engineer, front-end jedi, backend geek, and Android ninja, he has just the right
experience to build a solid foundation
and architecture required to scale MIHO Learn. With over 5 years of experience in product
development and management, he has
problem-solving at the core of his professional career which enables him to make the right tech
decisions for our product to be
robust and flexible.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-jimish" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion4-card-head3" data-toggle="collapse"
data-parent="#accordion4" href="#accordion4-card-body-3" aria-controls="accordion1-card-body-6"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/eddie.jpg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">05:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Why you should get involved in Open Source
and how you can make money?</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Eddie Jaoude</span> • Open Source
DevRel.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion4-card-body-3" aria-labelledby="accordion4-card-head-3"
data-parent="#accordion4" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
In this talk Eddie will cover <br>
• what is Open Source (it is not just about code)<br>
• why you should get into open source<br>
• getting involved in Open Source will help your skills and career<br>
• how to get involved in Open Source<br>
• making money from Open Source<br>
</p>
<p>🔸Speaker Bio:<br>
Eddie believes Open Source is for everyone, yes you! Eddie has over 15+ years experience as a
Fullstack Developer and
has been selected by GitHub as one of their Stars - currently there are 14 Stars out of 40+
million people on Github.
Spending most of his time on GitHub or YouTube you can usually find him contributing to Open
Source, editing a video or
live streaming encouraging you to get into Open Source</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-eddie" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion3-card-head3" data-toggle="collapse"
data-parent="#accordion3" href="#accordion3-card-body-3" aria-controls="accordion1-card-body-6"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/cherish.jpg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">06:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Starting with DevRel</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Cherish Santoshi</span> • Program Manager,
HackerEarth.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion3-card-body-3" aria-labelledby="accordion3-card-head-3"
data-parent="#accordion3" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
This talk is for people who understand tech and can communicate ideas clearly. In this talk we
will learn about the powerful significance of
building developer communities and their affect on the eco-system.</p>
<p>🔸Speaker Bio:<br>
Cherish Santoshi is a writer, speaker and a Program Manager. He is currently working with
HackerEarth, managing programs for a community of 4.5
million developers globally. He started working in DevRel space 6 years ago and have strategized
& managed programs for companies like Google,
Microsoft, Amazon, Government of India, etc. In the last year, he worked directly with over
100,000 developers and 50+
companies to create meaningful products.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-cherish" target="_blank">Click here to
watch the session.</a>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<!-- Section Schedule : 5 -->
<section class="section section-lg bg-default text-center" id="30oct">
<div class="container">
<div class="tabs-custom tabs-horizontal tabs-corporate" id="tabs-5">
<!--Nav tabs-->
<ul class="nav nav-tabs">
<li class="nav-item" role="presentation"><a class="nav-link nav-link nav-link-secondary-darker"
href="#tabs-5-1" data-toggle="tab" data-triangle=".nav-link-overlay">
<span class="nav-link-overlay"></span>
<span class="nav-link-cite">
<h5 style="color: #FF6D00;"><b>Fifth Day of Workshop</b></h5>
</span><span class="nav-link-title">
<h4 style="color: black;">October 30, 2020</h4>
</span></a></li>
</ul>
<!--Tab panes-->
<div class="tab-content">
<div class="tab-pane fade" id="tabs-5-1">
<div class="card-group-custom card-group-corporate" id="accordion5" role="tablist"
aria-multiselectable="false">
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion5-card-head1" data-toggle="collapse"
data-parent="#accordion5" href="#accordion5-card-body-1" aria-controls="accordion5-card-body-1"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/harshit.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">03:00 PM IST onwards</span><span
class="schedule-classic-title heading-4">Dos and Don'ts Of Hack-A-Thon</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Harshit Singh</span> • SDE, Amazon
India.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion5-card-body-1" aria-labelledby="accordion5-card-head-1"
data-parent="#accordion5" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
"Most people will agree, that we always begin the hack with lots of enthusiasm, right planning,
correct idea, and directed
thoughts but at last we find miles away from the leaderboards or may have to be satisfied with
doing a digit binary position.
What's that one spice that we miss ? There's a saying by someone (i.e, me :p)<br>
""Hackathons are not only about inculcating huge tech or complex problem statements. These are
more of horizontal development, end product served with a cool USP catering huge market
necessity"".
Confused ? <br>
Nevertheless, in the session you will come to know exactly what people are looking at your hack
and how to stand top on their expectations."</p>
<p>🔸Speaker Bio:<br>
An avid Software Developer at Amazon India, who loves connecting with tech communities and
mentoring with the right mindset to take the less travelled by path.
I've been mentored/judged across 20+ hackathons and also been associated with student
communities like CodeAsylums Community, GDG Ranchi, and also a
co-founder for AWS UG Ranchi. Having a deep interest in Big Data Ecosystem deployed in the
Containers world, I can help you to think of ways to
make your hack a scalable startup idea. You can also, ping me to brainstorm your leisure tech
thoughts if you feel serious about them.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-harshit" target="_blank">Click here to
watch the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion5-card-head2" data-toggle="collapse"
data-parent="#accordion5" href="#accordion5-card-body-2" aria-controls="accordion5-card-body-2"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/rafael.png"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">04:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Reactron - Using react with electron desktop
apps</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Rafael Lagunas Guitrón</span> • Platzi Master
Coach.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion5-card-body-2" aria-labelledby="accordion5-card-head-2"
data-parent="#accordion5" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
30 minsWith reactron you can use react.js for developing interfaces and views in electron
desktop apps.</p>
<p>🔸Speaker Bio:<br>
He is Platzi Master Coach, Global Shaper of World Economic Forum, Github Campus Expert. He also
won State Science and Technology Award in 2019.
He has 4 apps published at playstore, has 3 patents and have appeared in many tv networks.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-rafael" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion5-card-head3" data-toggle="collapse"
data-parent="#accordion5" href="#accordion5-card-body-3" aria-controls="accordion1-card-body-6"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/harsh.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">05:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">World's first water museum developed using
Next.JS</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Harsh Shah</span> • Tech Lead, Pedals
Up.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion5-card-body-3" aria-labelledby="accordion5-card-head-3"
data-parent="#accordion5" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
How do you container water and build a museum around it when your planet is 70% water and you
are just acquiring 30% of the planet?
An idea emerged by PhD Sara Ahmed in Ahmedabad, India to have built the water museum where one
could find stories related to different
water bodies and all kinds of resources around water. After doing a lot of research on
technology, Next.JS got suited best technology to
build such an amazing platform for this purest idea. After fighting all odds and issues, He have
developed a whole museum using next.js.</p>
<p>🔸Speaker Bio:<br>
He is a self-taught Full Stack Developer, Currently working at Startup Called “Pedalsup” as a
CTO. Community contributor,
He is an Organizer of GDG Cloud Ahmedabad and Pydata Ahmedabad. He is a two-time GSoC-er (Google
Summer of Code )
under the organization “Wikimedia” & “KDE”. He was also part of the MIT Media Lab India
Initiative 2015. Active Open-Source Contributor, Tech Speaker and Hackathon freak.</p>
<div class="unit unit-spacing-xxs">
<div class="unit-left">
<svg class="svg-icon-sm svg-icon-primary" role="img">
<a href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA" target="_blank"
class="m-2"><img src="images/hhf/youtube.png" alt="YouTube" style="height: 24px;"></a>
</svg>
</div>
<div class="unit-body">
<h5>Workshop on YouTube</h5>
<a class="font-secondary" href="https://bit.ly/htf-harsh" target="_blank">Click here to watch
the session.</a>
</div>
</div>
</div>
</div>
</article>
<!--Bootstrap card-->
<article class="card card-custom card-corporate">
<div class="card-header" role="tab">
<div class="card-title"><a class="collapsed" id="accordion5-card-head4" data-toggle="collapse"
data-parent="#accordion5" href="#accordion5-card-body-4" aria-controls="accordion1-card-body-6"
aria-expanded="false" role="button"><span class="schedule-classic"><span
class="unit unit-spacing-md align-items-center d-block d-md-flex"><span
class="unit-left"><span class="schedule-classic-img"><img src="images/hhf/dmitry.jpeg"
alt="" width="122" height="122" /></span></span><span class="unit-body"><span
class="schedule-classic-content">
<span class="schedule-classic-time">07:30 PM IST onwards</span><span
class="schedule-classic-title heading-4">Web3 is a cake with QuikNode</span>
<span class="schedule-classic-author">by <span
class="schedule-classic-author-name">Dmitry Shklovsky</span> • Co Founder,
Quiknode.</span></span></span></span></span></a></div>
</div>
<div class="collapse" id="accordion5-card-body-4" aria-labelledby="accordion5-card-head-4"
data-parent="#accordion5" role="tabpanel">
<div class="card-body">
<p>🔸Talk Description:<br>
In this session learn about some basic concepts of Blockchain, how things work and how one can
use
QuikNode to make their Blockchain journey much simpler.</p>
<p>🔸Speaker Bio:<br>
Dmitry Shklovsky is Co-Founder of QuikNode, with 10+ Years MSP & CDN experience he is now
dedicated
to make #Web3 space more reachable for developers and companies.</p>