-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
1694 lines (1671 loc) · 103 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" prefix="og: https://ogp.me/ns#">
<head>
<meta property="og:title" content="Git Commit Show | Pursuit of mastery for developers | Since 2019" />
<meta property="og:description"
content="Git Commit Show is the leading online tech conference where senior engineers, researchers, scientists, and professors meet while being at home. Volunteer or Join as a speaker now!" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gitcommit.show" />
<!-- <meta property="og:image" itemprop="image"
content="https://media-exp1.licdn.com/dms/image/C4E0BAQGwt575dKu_1g/company-logo_200_200/0?e=2159024400&v=beta&t=LSb8HTqG9m-9JOaln3HiJGFzld5RARQ3FyqmzhZkH00" /> -->
<meta property="og:image" itemprop="image"
content="assets/img/UPreview.png" />
<meta property="og:image:secure_url" itemprop="image"
content="https://media-exp1.licdn.com/dms/image/C4E0BAQGwt575dKu_1g/company-logo_200_200/0?e=2159024400&v=beta&t=LSb8HTqG9m-9JOaln3HiJGFzld5RARQ3FyqmzhZkH00" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@gitcommitshow" />
<meta name="twitter:creator" content="@Invide_Labs" />
<meta name="twitter:description" content="Live show for developers to achieve mastery. Started in 2019. Live Masterclass, Live Breakthrough Showcase, Live Career Talk, Giveaways for developers and more." />
<!-- <meta name="twitter:image"
content="https://media-exp1.licdn.com/dms/image/C4E0BAQGwt575dKu_1g/company-logo_200_200/0?e=2159024400&v=beta&t=LSb8HTqG9m-9JOaln3HiJGFzld5RARQ3FyqmzhZkH00" /> -->
<meta name="twitter:image"
content="assets/img/UPreview.png" />
<title>Git Commit Show | Leading online tech conference | Since 2019</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="assets/img/invide.png" />
<link rel="apple-touch-icon" href="assets/img/invide.png">
<link rel="icon" href="assets/img/invide.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
media="all" />
<link rel="stylesheet" type="text/css" href="assets/css/index.css" media="all" />
<link rel="stylesheet" type="text/css" href="assets/slick/slick.css" media="all">
<link rel="stylesheet" type="text/css" href="assets/css/slick-carousel.css" media="all">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"
media="all">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Git Commit Show 2021",
"startDate": "2021-10-22T19:00:00-05:00",
"endDate": "2021-10-23T23:00-05:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
"location": {
"@type": "VirtualLocation",
"url": "https://gitcommit.show/"
},
"image": [
"https://github.com/Git-Commit-Show/landing-page/blob/master/assets/img/invide.png"
],
"description": "Git Commit Show is the leading online tech conference where senior engineers, researchers, scientists, and professors meet while being at home",
"organizer": {
"@type": "Organization",
"name": "Invide Labs",
"url": "https://www.invidelabs.com/"
}
}
</script>
</head>
<body>
<link itemprop="thumbnailUrl"
href="https://media-exp1.licdn.com/dms/image/C4E0BAQGwt575dKu_1g/company-logo_200_200/0?e=2159024400&v=beta&t=LSb8HTqG9m-9JOaln3HiJGFzld5RARQ3FyqmzhZkH00">
<span itemprop="thumbnail" itemscope itemtype="http://schema.org/ImageObject">
<link itemprop="url"
href="https://media-exp1.licdn.com/dms/image/C4E0BAQGwt575dKu_1g/company-logo_200_200/0?e=2159024400&v=beta&t=LSb8HTqG9m-9JOaln3HiJGFzld5RARQ3FyqmzhZkH00">
</span>
<!-- NAVBAR SECTION-->
<nav class="navbar navbar-expand-lg fixed-top navbar-light">
<a class="navbar-brand" href="https://gitcommit.show/" target="_blank" rel="noopener noreferrer"><img id='logo'
src="assets/img/invide.png" alt="logo" />
</a>
<button class="navbar-toggler" id='toggle-menu-btn' type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30"
viewBox="0 0 30 30">
<path stroke="#E71D2B" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"
d="M4 7h22M4 15h22M4 23h22"></path>
</svg>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav navbar-right ml-auto" id="nav-ul">
<li class="nav-item pr-3">
<a class="nav-link navstyle" target="_blank" href="http://push.gitcommit.show">Register Now</a>
</li>
<li class="nav-item pr-3">
<a class="nav-link navstyle" href="#highlights">Highlights</a>
</li>
<!--li class="nav-item dropdown pr-3">
<a class="nav-link dropdown-toggle navstyle" data-toggle="dropdown">Add to Calender</a>
<div class="dropdown-menu">
<a class="dropdown-item" target="_blank" rel="noopener noreferrer"
href="https://calendar.google.com/calendar/u/0/r/eventedit?text=Git+Commit+Show&dates=20211127T090000/20211128T180000&uid=61697d8cdd355400c598c693&details=Git+Commit+Show+is+the+leading+online+tech+conference+where+senior+engineers,+researchers,+scientists+and+professors+meet+while+being+at+home.%0AA+2-day+long,+online+meetup+where+carefully+curated+senior+developers+and+researchers+share+their+knowledge+and+breakthrough+projects.%0AUnlike+other+online+conferences,+it+is+fully+interactive+with+opportunities+to+connect+with+speakers+and+fellow+attendees+face+to+face.%0AGit+Commit+Show+started+in+2019+to+provide+a+better+alternative+to+physical+conferences+by+being+open,+free+and+inclusive+of+people+who+come+from+remote+locations+and+modest+backgrounds.%0A%0ALink:+https://gitcommit.show&ctz=Asia/Calcutta">Google
Calender
</a>
<a class="dropdown-item" target="_blank" rel="noopener noreferrer"
href="https://outlook.live.com/owa/?path=/calendar/action/compose&rru=eventable&subject=Git%20Commit%20Show&startdt=20211127T033000Z&enddt=20211128T123000Z&uid=61697d8cdd355400c598c693&body=Git%20Commit%20Show%20is%20the%20leading%20online%20tech%20conference%20where%20senior%20engineers%2C%20researchers%2C%20scientists%20and%20professors%20meet%20while%20being%20at%20home.%0AA%202-day%20long%2C%20online%20meetup%20where%20carefully%20curated%20senior%20developers%20and%20researchers%20share%20their%20knowledge%20and%20breakthrough%20projects.%0AUnlike%20other%20online%20conferences%2C%20it%20is%20fully%20interactive%20with%20opportunities%20to%20connect%20with%20speakers%20and%20fellow%20attendees%20face%20to%20face.%0AGit%20Commit%20Show%20started%20in%202019%20to%20provide%20a%20better%20alternative%20to%20physical%20conferences%20by%20being%20open%2C%20free%20and%20inclusive%20of%20people%20who%20come%20from%20remote%20locations%20and%20modest%20backgrounds.%0A%0ALink%3A%20https%3A%2F%2Fgitcommit.show">Outlook
Calender
</a>
<a class="dropdown-item" target="_blank" rel="noopener noreferrer" href="https://calendar.yahoo.com/?v=60&view=d&title=Git%20Commit%20Show&st=20211127T033000Z&dur=3300&desc=Git%20Commit%20Show%20is%20the%20leading%20online%20tech%20conference%20where%20senior%20engineers%2C%20researchers%2C%20scientists%20and%20professors%20meet%20while%20being%20at%20home.%0AA%202-day%20long%2C%20online%20meetup%20where%20carefully%20curated%20senior%20developers%20and%20researchers%20share%20their%20knowledge%20and%20breakthrough%20projects.%0AUnlike%20other%20online%20conferences%2C%20it%20is%20fully%20interactive%20with%20opportunities%20to%20connect%20with%20speakers%20and%20fellow%20attendees%20face%20to%20face.%0AGit%20Commit%20Show%20started%20in%202019%20to%20provide%20a%20better%20alternative%20to%20physical%20conferences%20by%20being%20open%2C%20free%20and%20inclusive%20of%20people%20who%20come%20from%20remote%20locations%20and%20modest%20backgrounds.%0A%0ALink%3A%20https%3A%2F%2Fgitcommit.show&url=https%3A%2F%2Fgitcommit.show">Yahoo Calender
</a>
<a class="dropdown-item" href="assets/myEvent.ics" target="_blank"
rel="noopener noreferrer">iCal</a>
</div>
</li -->
<li class="nav-item pr-3"><a style="background-color: #e71d2b;" class="nav-link" href="https://discord.gg/JFWP8c2gPG">Join our Discord</a></li>
<li class="nav-item pr-3 yl-4">
<a href="https://www.youtube.com/channel/UCw0-LetPQsqO70O-8QN8MVA" class="fa fa-youtube fa-footer pr-3"
target="_blank" rel="noopener noreferrer"></a>
<a class="nav-link navstyle border border-white"
href="https://www.youtube.com/channel/UCw0-LetPQsqO70O-8QN8MVA">Watch On YouTube</a></li>
</ul>
</div>
</nav>
<div style="top: 70px; color: black; position: fixed; width: 100%; z-index: 100; letter-spacing: 1px;" class="alert alert-light text-center onHold" role="alert">
Announcement: Call for Proposals Now Open — <a href="http://push.gitcommit.show" target="_blank">Submit Your Speaker Applications</a> Today
</div>
<!-- NAVBAR SECTION END -->
<!---HOME SECTION -->
<div id="home">
<div id="home-left">
<div id="home-left-text">
<p>GIT</p>
<p>COMMIT</p>
<p>SHOW<sup><sup><sup class="copyright">TM</sup></sup></sup>
<span>/season#04</span>
</p>
</div>
<div id="home-left-date">
<p>Coming Soon...</p>
</div>
<p id="home-left-text-2">Pursuit of mastery</p>
</div>
<div id="mountain-1-1">
<div id="register-button-1">
<button onclick="location.href='http://push.gitcommit.show'" type="button">
Register for Season 04
</button>
<!-- <button onclick="location.href='https://live.gitcommit.show'" type="button">
Join Live Now
</button> -->
</div>
</div>
</div>
<!---HOME SECTION END -->
<!---BANNER SECTION -->
<div id="banner" class="mx-auto p-3">
<div id="banner-parrent" class="row p-3 justify-content-center text-center">
<div class="banner-child" id="banner-masterclass" class="col-lg-2 p-3">
<img src="assets/img/materclass.png" height="115" alt="masterclass">
<p class="banner-text-head"> MASTERCLASS </p>
<p class="banner-text-child"> Learn from engineers and researchers<br /> via live & interactive talk
</p>
</div>
<div class="banner-child" id="banner-breakthrough" class="col-lg-2 p-3">
<img src="assets/img/breakthrough.png" alt="breakthrough">
<p class="banner-text-head"> BREAKTHROUGH SHOWCASE </p>
<p class="banner-text-child"> Watch engineers, researchers and scientists present their breakthrough,
live </p>
</div>
<div class="banner-child" id="banner-entertainment" class="col-lg-3 p-3">
<img src="assets/img/career_downsized.png" alt="entertainment">
<p class="banner-text-head"> CAREER TALK </p>
<p class="banner-text-child"> Witness leaders sharing their journey of choosing different career paths and how they navigated through their challenges </p>
</div>
<div class="banner-child" id="banner-network" class="col-lg-3 p-5">
<img src="assets/img/network.png" alt="network">
<p class="banner-text-head"> NETWORK </p>
<p class="banner-text-child"> Engage with speakers and attendees face to face </p>
</div>
<div class="banner-child" id="banner-giveaway" class="col-lg-2 p-3">
<img src="assets/img/giveaway.png" alt="giveaway">
<p class="banner-text-head"> GIVEAWAYS </p>
<p class="banner-text-child"> Exclusive rewards for developers </p>
</div>
</div>
<div id="mountain-1-2"></div>
<div id="banner-div">
<span id="banner-span">
<hr id="banner-hr">
</span>
<p id="banner-p">
<span>Git Commit Show</span> is the leading online tech conference where <b>senior engineers</b>,
<b>researchers</b>,
<b>scientists</b>, and <b>professors</b> meet while being at home
</p>
</div>
<!-- CountDown Timer -->
<!-- <div id="timer-div" class="container-timer text-center">
<ul class="timer">
<li class="timer"><span id="days"></span>Days</li>
<li class="timer"><span id="hours"></span>HRS</li>
<li class="timer"><span id="minutes"></span>MINS</li>
<li class="timer"><span id="seconds"></span>SECS</li>
</ul>
</div> -->
<!--a class="thanks-giving" style="color: #efefef;" href="http://zc.vg/dSFJG">We welcome you to Git Commit show Season 3.
Register now for free and join us live on Nov 27/28.</a-->
<!--div id="register-button-3" class="text-center">
<button onclick="location.href='https://live.gitcommit.show/'" type="button">
Join Live On NOV 27/28
</button>
</div-->
<div id="register-button-3">
<button onclick="location.href='http://push.gitcommit.show'" type="button">
Register for Season 04
</button>
<!-- <button onclick="location.href='https://live.gitcommit.show'" type="button">
Join Live Now
</button> -->
</div>
</div>
<!-- BANNER SECTION END -->
<!-- SPEAKERS SECTION -->
<div id="speakers">
<div>
<img id="mountain-2" src="assets/img/mountain2.png" alt="mountain-image-1">
</div>
<!-- <p id="schedule-text">
GIT COMMIT SHOW 2021 SCHEDULE
</p>
-->
<!--
<p class="timezone-text"><span>*</span>Time Shown is in IST timezone (GMT +5.30)</p>-->
<div id="schedule-date">
<p>PAST TALKS</p>
</div>
<div style="position: relative; left: 400px; top: -100px;">
<span id="allTalks" style="cursor: pointer;backdrop-filter: contrast(0.2%); border: 1px solid;" class="badge">All</span>
<span id="masterTalk" data-talk="/masterclass" style="cursor: pointer; backdrop-filter: contrast(0.2%); border: 1px solid" class="badge">Masterclass</span>
<span id="showTalk" data-talk="/showcase" style="cursor: pointer; backdrop-filter: contrast(0.2%); border: 1px solid" class="badge">Showcase</span>
<span id="careerTalk" data-talk="/careertalk" style="cursor: pointer;backdrop-filter: contrast(0.2%); border: 1px solid" class="badge">Careertalk</span>
</div>
<div id="past-talk-details">
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Daniel.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">How curl became most widely used software(installed on every computer device)</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Daniel Stenberg</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Daniel is founder and lead developer of the curl project. He has many years of experience with protocol development in curl and libcurl and the Firefox web browser, SSH/SCP/SFTP as maintainer of the libssh2 project. He is author of the "http2 explained" and "HTTP/3 Explained" documents. He has Participated in the IETF in protocol development, design and documentation.
He is winner of the Polhem Prize 2017, Sweden's #2 developer 2016 (by Techworld), Nordic Free Software Award winner 2009
<br>
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/roger-dannenberg-0a33b3/" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Roger_Dannenberg.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">How I built a creative computer music creation system</p>
<p class="speakers-data-2"><b>/showcase</b></p>
<p class="speakers-data-3">Prof. Roger Dannenberg</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">
Roger explores the intersection of computation and music, including programming languages, interactive systems, sound synthesis, and music understanding. His current focus is on Human-Computer Music Performance -- getting computers to perform with humans.
He is an active classical, jazz, and experimental trumpet player and composer. He is music prodigy aiming to help thousands of beginning musicians and Proxor, aiming to help software developers launch a successful career.
<br>
#HCI
#CognitiveScience
#SignalProcessing
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/manaswini-das/" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Manasi_Das.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Dependency management using git</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Manaswini Das</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Manaswani is a young and passionate engineer at Red Hat. She is an avid open source contributor.
She has built a POC to single-source documentation using git subtree and git submodule for a new open source project Kogito. She even used the same to manage project dependencies for Droolsjbpm-build-bootstrap project which depends on several external dependencies.
<br>
#Version Control
#Development Workflow
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/arpansview" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Arpan.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Can data science lead us to the grand unified theory of brain function?</p>
<p class="speakers-data-2"><b>/showcase</b></p>
<p class="speakers-data-3">Arpan Banerjee</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">
Arpan is Cognitive/ Computational Neuroscientist at NBRC. He has established and led projects in studying human cognition using eye-tracking, behavioral techniques, multimodal brain imaging. He is an Expert in applying machine learning, artificial intelligence, image and signal processing, statistical modelling on big data sets. He has developed linear and nonlinear time series analysis tools, simulation platforms for model validation, nonlinear dynamical systems models.
<br>
#NeuroScience
#DataScience
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/shanselman" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Scott.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Building your brand online as a developer.</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Scott Hanselman</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Scott is a programmer,teacher and speaker. He is a blogger and writes about technology, culture, gadgets, diversity, code, the web, where we're going and where he's been. He is excited about community, social equity, media, entrepreneurship and above all, the open web.
He has three podcasts and a YouTube channel. One podcast is a weekly talk show on tech, one an occasional one hour essay on developer's lives, and one on a social media and tech culture show.
<br>
#PersonalBranding
#Networking
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/ericnormand" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Eric.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">A theory of functional programming</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Eric Normand</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">
Author of book Grokking Simplicity - Taming complex software with functional thinking
<br>
#NeuroScience
#DataScience
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/imahsanayaz" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Muhammad.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Mastering web performance audits with Github Actions & LightHouse</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Muhammad Ahsan Ayaz</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Muhammad is Google Developers Expert (GDE) in Angular & Web Technologies. He has experience in JS based frameworks and libraries such as JQuery, BackboneJS, AngularJS, Angular2+ , MEAN STACK, Loopback3 while hands-on, in-depth experience with task managers like Gulp,Grunt, Webpack and preprocessors like SASS/LESS/SCSS for styling.
<br>
#Web
#Performance
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/nileshtrivedi" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Nilesh.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Get started with ActivityPub, decentralized social networking protocol</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Nilesh Trivedi</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Nilesh has been making software for the Web and mobile for 15 years with projects ranging from fintech, healthtech, developer tools, data science, robotic kitchen appliances, blockchains, physics & mathematics. He has worked with tech startups in roles as diverse as co-founder, engineering, and product management. Besides his main work as engineering leader at ClearTax, he is also a part of interesting communities:LearnAwesome.Org, Polyglot.Network and DhiMath. He enjoys reading books and playing guitar.
<br>
#DecentralizedComputing
#SocialNetworking
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/philsturgeon" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Phil.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Design-first approach to write APIs</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Phil Sturgeon</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Phil builds API Design tools for Stoplight.io. He has written articles and books about pragmatic API design and systems architecture. He is crazy about bike trips.
For the last decade, he has contributed to countless open-source projects. He has been responsible in part or entirely for projects like the JSON Schema, OpenAPI, The League of Extraordinary Packages, PHP The Right Way, PHP-FIG, CodeIgniter, FuelPHP, PyroCMS, and a bunch of other stuff.
<br>
#API
#Architecture
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/saarthakv" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Saarthak.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Enabling speed and confidence with testing</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Saarthak Vats</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Saarthak is VP at Noon, which is an ecommerce company in UAE. He has hands-on experience in building engineering system. He loves classical music and can play tabla.
<br>
#Testing
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/sandeepgiri" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Sandeep.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">How I built an SDK to recognize faces using computer vision</p>
<p class="speakers-data-2"><b>/showcase</b></p>
<p class="speakers-data-3">Sandeep Giri</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Sandeep loves to code, tweak, hack, doodle, create, teach, walk and sometimes learn music with my 6-year-old.
Seasoned, hands-on machine learning scientist with 16+ years of strong experience in building world-class software products, Machine Learning and churning humongous data.
Founder of AI startup and a leading teacher of machine learning and data science.
<br>
#ComputerVision
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/farberbrodsky" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Maya.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">How I made an app that alerts when you touch your face</p>
<p class="speakers-data-2"><b>/showcase</b></p>
<p class="speakers-data-3">Maya Farber Brodsky</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">16 yr old student from Tel Aviv University
<br>
#ComputerVision
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="http://www.twitter.com/hcatlin" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Hampton.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Learning to lead for developers</p>
<p class="speakers-data-2"><b>/careertalk</b></p>
<p class="speakers-data-3">Hampton Lintorn Catlin</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Over 15+ years in leadership, Hampton has helped at least 20 engineers transition into leadership and at least 5 transition back out of it.
Hampton is VP of Engineering at Rent the Runway where he oversees internal engineering teams. Hampton has run and built teams in the past from 1-130. Being one of the few LGBT senior engineering leaders in the industry, he learned how to address identity head-on and give people safe places to be themselves.
<br>
#Career
#Leadership
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/saurabh-gupta-a3262319/" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Saurabh.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Becoming Developer Advocate for developers</p>
<p class="speakers-data-2"><b>/careertalk</b></p>
<p class="speakers-data-3">Saurabh Gupta</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Sr. Developer Advocate at Digital Ocean
<br>
#Career
#DevRel
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/gauravnemade/" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Namede.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Becoming Product Manager for developers</p>
<p class="speakers-data-2"><b>/careertalk</b></p>
<p class="speakers-data-3">Gaurav Nemade</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Product manager at google
<br>
#Career
#ProductManagement
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/usha-rengaraju-b570b7a2/" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Usha.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Get started with DeepLearning Using TensorFlow 2.0</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Usha Rengaraju</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">India's first women Kaggle Grandmaster
<br>
#DeepLearning
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/altanai" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Atlanta.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">How I improved my autonomous cleaning robot further</p>
<p class="speakers-data-2"><b>/showcase</b></p>
<p class="speakers-data-3">Altanai Bisht</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Specialist in real time communication - webrtc
<br>
#Robotics
#ComputerVision
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/A_Aspuru_Guzik" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/sumner.jpeg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">How I made quantum science faster with fine spirits</p>
<p class="speakers-data-2"><b>/showcase</b></p>
<p class="speakers-data-3">Sumner Alperin-Lea</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Sumner Alperin-Lea is a 3rd year Ph.D student in the Matter Lab at the University of Toronto, in the department of Chemistry, under Alan Aspuru-Guzik. He received his Bs. in Chemistry, Biophysics, and Philosophy from Brandeis University in 2018. His current research focuses on algorithmic development for near-term quantum computers and quantum machine learning, with a particular emphasis on applications to chemistry and physical simulation.
<br>
#QuantumComputing
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">16:00</p> -->
<hr class="jun27-hr">
<a href="https://twitter.com/rob_rich" title="Follow me on Twitter" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Rob Richardson.png" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">The definitive deep dive into the .git folder</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Rob Richardson</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4"> Software craftsman building web properties in ASP.NET and
Node,
React and Vue.He’s a Microsoft MVP, published author, frequent speaker at
conferences, user groups, and community events, and a diligent teacher and student
of high quality software development.
<br> #Git #Opensource
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://www.polywork.com/kamalshree" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/kamal Shree.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Future is opensource</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Kamal Shree S</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4"> Google Developer Expert (Flutter & Dart) With over 12 years
of experience in Web Technologies and being a Google Dev Expert, Kamal is mentoring
developers on their journey through her Youtube Channel (whatsupcoders) and as a
mentor @mentorcruise.
<br> #Flutter #Dart
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">13:00</p> -->
<hr class="jun27-hr">
<a href="https://pachicodes.com" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Pachi Carlson.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Leveling up as a dev with content creation</p>
<p class="speakers-data-2"><b>/careertalk</b></p>
<p class="speakers-data-3">Pachi Parra</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Developer Relations Engineer at New Relic and founder of
feministech. Pachi works as Developer Relations Engineer at New Relic and is a
Streamer and Co-Founder of Feministech, an online community for Brazilian women and
non-binary people who share and learn tech with live coding.
Her passions include community building, hyping her friends and live coding on
Twitch.
<br> #Feministech
#ContentCreation
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">14:00</p> -->
<hr class="jun27-hr">
<a href="https://kilianvalkhof.com" title="Visit my website" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/kilian-largephoto.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Beyond responsive design: new and future media queries</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Kilian Valkhof</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4"> Creator of Polypane, the browser for building websites. He
wrote his first article on mobile web design all the way back in 2008 (with an
exciting look ahead at "media features"!) and hasn't stopped thinking about
responsive websites since.
Kilian is a solo developer building his and hopefully your dream browser, he writes
about the web on kilianvalkhof.com and anywhere else he's allowed to, and is an
active open source contributor.
<br>
#Polypane
#ResponsiveDesign
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">14:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/hiddedevries/" title="Connect on LinkedIn" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon"
src="https://pbs.twimg.com/profile_images/1232603114219458560/Zmx3NA7n_400x400.jpg"
alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Accelerating accessibility in a component-based world</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3"> Hidde de Vries</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4"> Hidde is a front-end web developer and accessibility
specialist. On
his blog he writes about HTML, CSS, JavaScript and accessibility. As a freelancer,
he helps
organisations create fast, scalable and accessible front-end solutions for their end
users.
His clients include Mozilla, W3C, the Dutch government and the European Commission.
He used
to be involved with Fronteers, the professional association for Dutch front-end
developers,
organising meet-ups, workshops and conferences.
<br>
#Accessibility
#ResponsiveDesign
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">12:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/kensoh" title="Connect on LinkedIn" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/kensh.jfif" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">RPA using open-source TagUI</p>
<p class="speakers-data-2"><b>/showcase</b></p>
<p class="speakers-data-3">Ken shoh</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4"> Ken is the creator of TagUI and Python rpa package, an
Opensource RPA tool. He is working and maintaining this project as a Product
Engineer at AI Singapore. He is a huge believer of decentralised software systems
and is working actively in this area.
<br> #TagUI #Python
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">13:00</p> -->
<hr class="jun27-hr">
<a href="#" title="Connect on LinkedIn" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Praveen.png"
alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Using React.js to Solve our everyday problems</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Praveen Kumar Purushothaman</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Praveen Kumar is a Full Stack JavaScript Specialist from
London, England, originally from Chennai, India, specialising in React and Node JS,
working for one of the top two banks in the UK, which he resigned recently. He’s got
about a decade of experience in the Industry. He’s a Web Specialist, Careers Coach
Mentor, exMicrosoft Most Valuable Professional, Speaker, Author, and also a Guinness
Record Holder with Microsoft AppFest. Oh, and out of techie stuff, he’s a Cat Lover.
<br> #ReactJS
#DevelopmentSkills
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">13:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/karansingh7" title="Connect on Linkedin" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon"
src="https://miro.medium.com/fit/c/262/262/1*0pXDHIYRXhfqlDidy4K1tw.png" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Github Actions + Kubernetes : The recipe to Level Up your software
development skills</p>
<p class="speakers-data-2"><b>/masterclass</b></p>
<p class="speakers-data-3">Karan Singh</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Karan Singh is a Senior Principal Architect & Developer
Evangelist at
Red Hat. In his role, Karan focuses on architecting and developing cloud-native
composable
solutions on Kubernetes. Part of his responsibilities is to enable developers and
builders
with rapidly changing cloud-native technologies. He holds a strong background in
infrastructure, SRE, DevOps, data services, and data analytics. Karan is specialized
in
designing and building scalable and cloud-native distributed & event-driven systems
and he
believes that better software deserves better architecture. He is also a published
author, a
frequent speaker at conferences, and an avid blogger at https://ksingh7.medium.com.
<br> #Kubernetes
#DevelopmentSkills
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">14:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/hrangan/" title="Connect on LinkedIn" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/Hemant SM Red.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Successful self-publishing and the challenges of publishing a book
</p>
<p class="speakers-data-2"><b>/careertalk</b></p>
<p class="speakers-data-3"> Hemant Rangan</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4"> Hemant Rangan is an IT professional with 21 years of
managerial experience, turned interculturalist. Having led multi-national teams over
two decades delivering large & complex IT programmes and projects for Fortune 500
companies globally, he studied and gained deep insights into the intercultural
psychology behind the work dynamics and decided to share these real life experiences
in a book called ‘The Indian Mind At Work’.
<br>
#Bookwriting
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">13:00</p> -->
<hr class="jun27-hr">
<a href="https://www.linkedin.com/in/rangoli-agrawal-218600118/" title="Connect on LinkedIn" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/rangoli.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Scope of data journalism for developers</p>
<p class="speakers-data-2"><b>/careertalk</b></p>
<p class="speakers-data-3">Rangoli agrawal</p>
<div class="wrap">
<div class="truncate">
<p class="speakers-data-4">Rangoli has been a data journalist from past 2.5 years during
where she has published in Hindustan Times, Mint, and Caravan. Prior to this she has
also been a professional journalist from last six years with published articles in
DNA, Asia Times, Indiaspend, Zee, and Firstpost. She is proficient in skills like R,
Python, and Excel and uses them on a daily basis to churn stories.
<br> #DataJournalsim
#DevelopmentSkills
</p>
</div>
</div>
</div>
</div>
<div class="past-talk-details-list">
<div>
<!-- <p class="speakers-time">14:00</p> -->
<hr class="jun27-hr">
<a href="" title="" target="_blank"
rel="noopener noreferrer">
<img class="speakers-icon" src="assets/img/speakers/drvaralat.jpg" alt="speaker">
</a>
</div>
<div>
<p class="speakers-data-1">Research Publications – An add value to your CV
</p>
<p class="speakers-data-2"><b>/careertalk</b></p>
<p class="speakers-data-3"> Dr. Varalatchoumy M</p>
<div class="wrap">
<div class="truncate">