-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1008 lines (936 loc) · 23.9 KB
/
index.html
File metadata and controls
1008 lines (936 loc) · 23.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="otc, events, Our Tech Community" />
<meta name="description" content="OTC's online and in-person events." />
<meta name="author" content="Harsh Kapadia" />
<meta property="og:site_name" content="OTC Events'" />
<meta property="og:title" content="Events" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="OTC's online and in-person events."
/>
<meta property="og:url" content="https://events.ourtech.community" />
<meta
property="og:image"
content="https://events.ourtech.community/static/img/og-img/home.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="600" />
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:image"
content="https://events.ourtech.community/static/img/og-img/home.png"
/>
<script defer src="static/js/script.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="static/css/style.css" />
<link
rel="shortcut icon"
href="static/img/favicon.ico"
type="image/x-icon"
/>
<title>OTC Events</title>
</head>
<body>
<header>
<nav>
<div class="burger-menu">
<div class="line-1"></div>
<div class="line-2"></div>
<div class="line-3"></div>
</div>
<ul class="navbar-ul hide-burger-menu burger-menu-dropdown">
<li><a href="/">Home</a></li>
<li>
<a
href="https://catchup.ourtech.community"
target="_blank"
rel="noreferrer"
>OTC CatchUp</a
>
</li>
<li>
<a
href="https://talks.ourtech.community"
target="_blank"
rel="noreferrer"
>OTC Talks</a
>
</li>
<li>
<a
href="https://meetup.ourtech.community"
target="_blank"
rel="noreferrer"
>OTC MeetUp</a
>
</li>
<li>
<a
href="https://ourtech.community/coc"
target="_blank"
rel="noreferrer"
>Code of Conduct</a
>
</li>
<li>
<a
href="https://ourtech.community/four-years"
target="_blank"
rel="noreferrer"
>Four Years of OTC</a
>
</li>
<li>
<a
href="https://ourtech.community/team"
target="_blank"
rel="noreferrer"
>Our Team</a
>
</li>
<li>
<a
href="https://links.ourtech.community"
target="_blank"
rel="noreferrer"
>All Links</a
>
</li>
</ul>
</nav>
</header>
<h1>OTC Events</h1>
<h2>Online and in-person events</h2>
<div id="cta-wrapper">
<a id="white-bg-cta" href="#upcoming-events">Upcoming Events</a>
<a class="black-bg-cta" href="#past-online-events"
>Past Online Events</a
>
<a class="black-bg-cta" href="#past-in-person-events"
>Past In-person Events</a
>
<a class="black-bg-cta" href="https://catchup.ourtech.community"
>Explore OTC CatchUp</a
>
<a class="black-bg-cta" href="https://meetup.ourtech.community"
>Explore OTC MeetUp</a
>
<a class="black-bg-cta" href="https://talks.ourtech.community"
>Explore OTC Talks</a
>
</div>
<main id="main-content">
<h2 id="upcoming-events">Upcoming Events</h2>
<div class="event">
<h3>OTC CatchUp</h3>
<div class="event-detail">Online</div>
<div class="event-detail">Every Saturday from 10:30 PM IST</div>
<p>
Informal Tech sessions involving project showcases,
networking, Tech discussions and talks.
</p>
<a
href="https://catchup.ourtech.community"
target="_blank"
rel="noreferrer"
>More details</a
>
</div>
<h2 id="past-online-events">Past Online Events</h2>
<div class="event">
<h3>OTC CatchUp</h3>
<div class="event-date">October 2020 to present (Ongoing)</div>
<p>
<a
href="https://catchup.ourtech.community"
target="_blank"
rel="noreferrer"
>OTC CatchUp</a
>
sessions are informal Tech discussions that we conduct every
Saturday from 10:30 PM IST.
</p>
<p>
We've been conducting a session every week since we started
in October 2020 and have an
<a
href="https://mihikagaonkar.github.io/OTC-Dashboard/data_studio"
target="_blank"
rel="noreferrer"
>average session duration of 7.65 hours</a
>.
</p>
<p>
We maintain
<a
href="https://catchup.ourtech.community/summary"
target="_blank"
rel="noreferrer"
>summaries</a
>
for each session as well.
</p>
<p>
<a
href="https://catchup.ourtech.community/attend"
target="_blank"
rel="noreferrer"
>Join in!</a
>
</p>
<div class="event-grid">
<img
src="static/img/otc-catchup/60.jpg"
alt="OTC CatchUp"
loading="lazy"
/>
<img
src="static/img/otc-catchup/63.jpg"
alt="OTC CatchUp"
loading="lazy"
/>
<img
src="static/img/otc-catchup/69.jpg"
alt="OTC CatchUp"
loading="lazy"
/>
<img
src="static/img/otc-catchup/80.jpg"
alt="OTC CatchUp"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>OTC Talks</h3>
<div class="event-date">December 2022 to present (Ongoing)</div>
<p>
<a
href="https://talks.ourtech.community"
target="_blank"
rel="noreferrer"
>OTC Talks</a
>
sessions are lightning talks on any Tech-related topic.
</p>
<p>
<a
href="https://talks.ourtech.community"
target="_blank"
rel="noreferrer"
>Attend and/or give a talk!</a
>
</p>
</div>
<div class="event">
<h3>Project Showcase</h3>
<div class="event-date">23rd January 2022</div>
<p>
We partnered with
<a
href="https://gdsc.community.dev/thadomal-shahani-engineering-college-mumbai"
target="_blank"
rel="noreferrer"
>GDSC TSEC</a
>
and
<a
href="https://www.csitsec.in"
target="_blank"
rel="noreferrer"
>CSI TSEC</a
>
to conduct a project showcasing session.
</p>
<p>
We had a lot of discussions about the technologies used in
the projects, ways to present projects, pros and cons of the
presented projects, etc.
</p>
<p>
<a
href="https://twitter.com/tusharnankanii"
target="_blank"
rel="noreferrer"
>Tushar Nankani</a
>
talked about the importance of
<a
href="https://undirected-graph.netlify.app/posts/presentation"
target="_blank"
rel="noreferrer"
>presentation and documentation</a
>
as well.
</p>
</div>
<div class="event">
<h3>Hacktoberfest 2021</h3>
<div class="event-date">8th to 10th October 2021</div>
<p>
We partnered with
<a
href="https://gdsc.community.dev/thadomal-shahani-engineering-college-mumbai"
target="_blank"
rel="noreferrer"
>GDSC TSEC</a
>
and
<a
href="https://www.tseccodecell.com"
target="_blank"
rel="noreferrer"
>TSEC CodeCell</a
>
to conduct three sessions related to Git and GitHub.
</p>
<ul>
<li>Git and GitHub Workshop</li>
<li>Git Internals - How Does Git Work!?</li>
<li>Working with CI/CD (GitHub Actions)</li>
</ul>
<br />
<div class="event-grid">
<iframe
src="https://www.youtube-nocookie.com/embed/OmZHKCg7qf4"
loading="lazy"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube-nocookie.com/embed/TZRS9llBBYU"
loading="lazy"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube-nocookie.com/embed/nym5fh0Ggrw"
loading="lazy"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
<div class="event">
<h3>Hacktoberfest 2020</h3>
<div class="event-date">11th October 2020</div>
<p>
This was a 2.5 hour session mainly on learning how to open
Pull Requests and the nuances around it.
</p>
<p>
Hacktoberfest and the basics of Open Source, Git and GitHub
were also talked about.
</p>
<div class="event-grid one-event-grid">
<iframe
src="https://www.youtube-nocookie.com/embed/uJdFNksgKJA"
loading="lazy"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
<h2 id="past-in-person-events">Past In-person Events</h2>
<div class="event">
<h3>DevFest Mumbai 2025</h3>
<div class="event-date">20th December 2025</div>
<p>
OTC was proud to be a
<a
href="https://x.com/gdgmad/status/2001306435141988499"
target="_blank"
rel="noreferrer"
>Community Partner</a
>
for
<a
href="https://gdg.community.dev/events/details/google-gdg-mad-presents-devfest-mumbai-2025"
target="_blank"
rel="noreferrer"
>GDG DevFest Mumbai 2025</a
>. The event featured engaging talks and an enthusiastic
crowd of developers and tech enthusiasts. It was great being
part of such a vibrant community experience, with fun moments
like the Tech Housie game.
</p>
<div class="event-grid">
<img
src="static/img/devfest-mumbai-20-12-2025/1.jpeg"
alt="Devfest Mumbai 2025"
loading="lazy"
/>
<img
src="static/img/devfest-mumbai-20-12-2025/2.jpeg"
alt="Devfest Mumbai 2025"
loading="lazy"
/>
<img
src="static/img/devfest-mumbai-20-12-2025/3.jpeg"
alt="Tech Housie Game - Devfest Mumbai 2025"
loading="lazy"
/>
<img
src="static/img/devfest-mumbai-20-12-2025/4.jpeg"
alt="Tech Housie Game - Devfest Mumbai 2025"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>Technical Writing Meetup</h3>
<div class="event-date">18th May 2025</div>
<p>
<a
href="https://x.com/blrwritersroom"
target="_blank"
rel="noreferrer"
>The Writers' Room BLR</a
>
and OTC came together to organize an in-person technical
writing meetup in Mumbai. We had two talks (The Art of
Architecting a Tech Blog, and The Process of Writing a
Research Paper), open stage blog review sessions and good
conversations with over 30 people!
</p>
<p>
<a
href="https://photos.app.goo.gl/FoRBEWAPnBHMsLGe8"
target="_blank"
rel="noreferrer"
>Event pictures</a
>
</p>
<p>
<a
href="https://lu.ma/4zlluv62"
target="_blank"
rel="noreferrer"
>More details</a
>
</p>
<div class="event-grid">
<img
src="static/img/twrblr-otc-may-2025/1.jpg"
alt="The Writers' Room BLR and OTC's Technical Writing Meetup (May 2025)"
loading="lazy"
/>
<img
src="static/img/twrblr-otc-may-2025/2.jpg"
alt="The Writers' Room BLR and OTC's Technical Writing Meetup (May 2025)"
loading="lazy"
/>
<img
src="static/img/twrblr-otc-may-2025/3.jpg"
alt="The Writers' Room BLR and OTC's Technical Writing Meetup (May 2025)"
loading="lazy"
/>
<img
src="static/img/twrblr-otc-may-2025/4.jpg"
alt="The Writers' Room BLR and OTC's Technical Writing Meetup (May 2025)"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>OTC MeetUp #5</h3>
<div class="event-date">12th April 2025</div>
<p>
After about 1.5 years, we successfully hosted our fifth
official in-person event with over 50 people!
</p>
<p>
<a
href="https://meetup.ourtech.community/5"
target="_blank"
rel="noreferrer"
>More details</a
>
</p>
<div class="event-grid">
<video
src="static/img/otc-meetup-5/1.mp4"
alt="OTC MeetUp #5"
loading="lazy"
autoplay=""
muted=""
controls=""
loop=""
></video>
<img
src="static/img/otc-meetup-5/2.jpg"
alt="OTC MeetUp #5"
loading="lazy"
/>
<img
src="static/img/otc-meetup-5/3.jpg"
alt="OTC MeetUp #5"
loading="lazy"
/>
<img
src="static/img/otc-meetup-5/4.jpg"
alt="OTC MeetUp #5"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>OTC MeetUp #4</h3>
<div class="event-date">13th January 2024</div>
<p>
We enjoyed informative talks and meaningful conversations
with over 70 people at our fourth in-person meetup! We also
celebrated completing four years of OTC!
</p>
<p>
<a
href="https://meetup.ourtech.community/4"
target="_blank"
rel="noreferrer"
>More details</a
>
</p>
<div class="event-grid">
<img
src="static/img/otc-meetup-4/1.jpg"
alt="OTC MeetUp #4"
loading="lazy"
/>
<img
src="static/img/otc-meetup-4/2.jpg"
alt="OTC MeetUp #4"
loading="lazy"
/>
<img
src="static/img/otc-meetup-4/3.jpg"
alt="OTC MeetUp #4"
loading="lazy"
/>
<iframe
src="https://www.youtube-nocookie.com/embed/avoPIOjqFfk"
loading="lazy"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
<div class="event">
<h3>OTC MeetUp #3</h3>
<div class="event-date">5th August 2023</div>
<p>
We successfully hosted our third official in-person meetup
with over 75 people! We had an event full of learning and
good conversations, with four lightning talks and some
snacks!
</p>
<p>
<a
href="https://meetup.ourtech.community/3"
target="_blank"
rel="noreferrer"
>More details</a
>
</p>
<div class="event-grid">
<img
src="static/img/otc-meetup-3/1.jpg"
alt="OTC MeetUp #3"
loading="lazy"
/>
<img
src="static/img/otc-meetup-3/2.jpg"
alt="OTC MeetUp #3"
loading="lazy"
/>
<img
src="static/img/otc-meetup-3/3.jpg"
alt="OTC MeetUp #3"
loading="lazy"
/>
<img
src="static/img/otc-meetup-3/4.jpg"
alt="OTC MeetUp #3"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>Women's Day Mumbai 2023</h3>
<div class="event-date">11th March 2023</div>
<p>
<a
href="https://twitter.com/OurTechComm/status/1628769958946803713"
target="_blank"
rel="noreferrer"
>Over 20 communities in Mumbai</a
>
came together for the first time, to celebrate, empathise
and listen.
</p>
<div class="event-grid">
<img
src="static/img/womens-day-mumbai-2023/1.jpg"
alt="Speaker session picture of the event"
loading="lazy"
/>
<img
src="static/img/womens-day-mumbai-2023/2.jpg"
alt="People discussing"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>DevFest Mumbai 2022</h3>
<div class="event-date">5th December 2022</div>
<p>
OTC was approached to be
<a
href="https://twitter.com/WomenCoders01/status/1597695257063608320"
target="_blank"
rel="noreferrer"
>a Community Partner</a
>
for
<a
href="https://gdg.community.dev/events/details/google-gdg-mad-presents-devfest-mumbai-2022"
target="_blank"
rel="noreferrer"
>GDG DevFest Mumbai 2022</a
>. All the talks and discussions were insightful. There were
more than 800 people in attendance. We had a great time with
everyone and we hope you did too!
</p>
<div class="event-grid">
<img
src="static/img/devfest-mumbai-05-12-2022/2.jpg"
alt="Devfest Mumbai 2022 inaguration"
loading="lazy"
/>
<img
src="static/img/devfest-mumbai-05-12-2022/1.jpg"
alt="Devfest Mumbai 2022"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>OTC MeetUp #2</h3>
<div class="event-date">9th October 2022</div>
<p>
We successfully hosted our second meetup with 63 attendees!
</p>
<p>
We had a great time with everyone and we hope you did too!
We started the meetup with
<a
href="https://1drv.ms/p/s!Ai1OliGaJWO-4AXlyjrizGCKx7qV?e=5wc0DL"
target="_blank"
rel="noreferrer"
>introduction and some memorable moments from our 100
catchups</a
>
by
<a
href="https://links.darshanrander.com"
target="_blank"
rel="noreferrer"
>Darshan Rander</a
>.
</p>
<p>
We had a great talk on
<a
href="https://docs.google.com/presentation/d/111Y2dmWjhTurF8u_OK0EvdCWidr0T2IGS3zMPrQnvZQ/edit?usp=drivesdk"
target="_blank"
rel="noreferrer"
><i
>"API Keys, feelings and other vulnerabilities"</i
></a
>
by
<a
href="https://twitter.com/furtado_jaden"
target="_blank"
rel="noreferrer"
>Jaden Furtado</a
>
followed by a talk on
<a
href="https://docs.google.com/presentation/d/1esMk_MfwnoFIkaP_xgcpWhTFK2NAlSASl4ElQqa2Nwk/edit?usp=drivesdk"
target="_blank"
rel="noreferrer"
><i>"Need for Competitive Programming?"</i></a
>
by
<a
href="https://twitter.com/_SaketThota"
target="_blank"
rel="noreferrer"
>Saket Thota</a
>
and a final talk on
<a
href="https://docs.google.com/presentation/d/1-a0FCI-z8pTrmHRq363KG9bxhkuf4zDDr_suuTQe2gg/edit?usp=sharing"
target="_blank"
rel="noreferrer"
><i>"Organizational Culture"</i></a
>
by
<a
href="https://twitter.com/tusharnankanii"
target="_blank"
rel="noreferrer"
>Tushar Nankani</a
>.
</p>
<p>
We closed off the event with snacks and a few hours of
Networking.
</p>
<p>
<a
href="https://meetup.ourtech.community/2"
target="_blank"
rel="noreferrer"
>More details</a
>
</p>
<div class="event-grid">
<img
src="static/img/otc-meetup-2/1.jpg"
alt="OTC MeetUp #2"
loading="lazy"
/>
<img
src="static/img/otc-meetup-2/2.jpg"
alt="OTC MeetUp #2"
loading="lazy"
/>
<img
src="static/img/otc-meetup-2/3.jpg"
alt="OTC MeetUp #2"
loading="lazy"
/>
<img
src="static/img/otc-meetup-2/4.png"
alt="100 written with images of catchups"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>OTC MeetUp #1</h3>
<div class="event-date">26th June 2022</div>
<p>
We successfully hosted our first official in-person event
with 62 people!
</p>
<p>
We all had fun listening to an awesome talk on Community
Principles and an insightful panel discussion on
Communities, Learning and Progressing in Tech. We closed off
the event with snacks and a few hours of Networking.
</p>
<p>
<a
href="https://meetup.ourtech.community/1"
target="_blank"
rel="noreferrer"
>More details</a
>
</p>
<div class="event-grid">
<img
src="static/img/otc-meetup-1/1.jpg"
alt="OTC MeetUp #1"
loading="lazy"
/>
<img
src="static/img/otc-meetup-1/2.jpg"
alt="OTC MeetUp #1"
loading="lazy"
/>
<img
src="static/img/otc-meetup-1/3.jpg"
alt="OTC MeetUp #1"
loading="lazy"
/>
<iframe
src="https://www.youtube-nocookie.com/embed/C0naS65ejik"
loading="lazy"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
<div class="event">
<h3>Mumbai Meetup</h3>
<div class="event-date">7th May 2022</div>
<p>
<a
href="https://twitter.com/omtalk"
target="_blank"
rel="noreferrer"
>Omkar Khair</a
>
came to Mumbai to meet
<a
href="https://www.linkedin.com/in/anilharwani"
target="_blank"
rel="noreferrer"
>Anil Harwani</a
>, so we decided to call upon a few OTC people for a meetup.
</p>
<div class="event-grid one-event-grid">
<img
src="static/img/mumbai-meetup-07-05-2022/1.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>Mumbai Meetup</h3>
<div class="event-date">1st April 2022</div>
<p>
<a
href="https://twitter.com/ishandeveloper"
target="_blank"
rel="noreferrer"
>Ishan Sharma</a
>
and
<a
href="https://twitter.com/thehacklady"
target="_blank"
rel="noreferrer"
>Medha Gupta</a
>
were in Mumbai, so we decided to call upon a few OTC people
for a meetup.
</p>
<div class="event-grid">
<img
src="static/img/mumbai-meetup-01-04-2022/1.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
<img
src="static/img/mumbai-meetup-01-04-2022/2.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
<img
src="static/img/mumbai-meetup-01-04-2022/3.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
<img
src="static/img/mumbai-meetup-01-04-2022/4.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>Mumbai Meetup</h3>
<div class="event-date">12th March 2022</div>
<p>
<a
href="https://twitter.com/adityaoberai1"
target="_blank"
rel="noreferrer"
>Aditya Oberai</a
>
was in Mumbai for
<a
href="https://www.tseccodecell.com/tsec-hacks"
target="_blank"
rel="noreferrer"
>TSEC Hacks 2022</a
>, so he called upon people for a meetup. A lot of people
from OTC turned up for the event!
</p>
<div class="event-grid">
<img
src="static/img/mumbai-meetup-12-03-2022/1.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
<img
src="static/img/mumbai-meetup-12-03-2022/2.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
<img
src="static/img/mumbai-meetup-12-03-2022/3.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
<img
src="static/img/mumbai-meetup-12-03-2022/4.jpg"
alt="Mumbai Meetup"
loading="lazy"
/>
</div>
</div>
<div class="event">
<h3>TSEC Hacks 2022</h3>
<div class="event-date">10th March 2022</div>
<p>
Although
<a
href="https://www.tseccodecell.com/tsec-hacks"
target="_blank"
rel="noreferrer"
>TSEC Hacks 2022</a
>
was not an OTC event, a lot of people from OTC had gathered
at the hackathon.
</p>
<div class="event-grid">
<img
src="static/img/tsec-hacks-2022-10-03-2022/1.jpg"
alt="TSEC Hacks 2022"
loading="lazy"
/>
<img
src="static/img/tsec-hacks-2022-10-03-2022/2.jpg"
alt="TSEC Hacks 2022"
loading="lazy"
/>
</div>
</div>
</main>