forked from rhythm-gupta/rhythm-gupta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
1518 lines (1438 loc) · 82.6 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>
<head>
<title>Niharika Arora - Developer Relations Engineer</title>
<meta property='twitter:title' content="Official Website of Niharika Arora, theDroidLady."/>
<meta property='twitter:image' content="https://github.com/niharika2810/niharika2810.github.io/raw/master/Images/profile_pic.png"/>
<meta name="twitter:card" content="summary_large_image"/>
<META name="keywords"
content="Niharika, niharika, Niharika Arora, Arora Niharika, arora niharika, niharikaarora, android developer, theDroidLady, thedroidlady, niharika2810, niharika 1mg, androiddev, TheDroidLady, Thedroidlady">
<META name="description"
content="Official Website of Niharika Arora, theDroidLady.">
<link rel="shortcut icon" href="Images/profile_pic.png" type="image/jpeg"/>
<link rel="canonical" href="https://droidlady.com/"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/modernizr.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<meta property="og:title"
content="Niharika Arora, theDroidLady :Googler, Ex-Google Developer Expert for Android, Ex-Android Engineer@1mg, Blogger, Speaker, Open Source Contributor, Mentor, WomenTech Global Ambassador, Gold Medalist, Fitness Freak">
<meta property="og:image"
content="https://github.com/niharika2810/niharika2810.github.io/raw/master/Images/profile_pic.png">
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<nav id="myNavbar" class="navbar navbar-expand-lg navbar-dark sticky-top">
<a class="navbar-brand" href="index.html">theDroidLady Blog</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#biography">Biography</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#activities">Activities</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#experience">Current Organization</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#education">Education</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#subscribe">Get Latest feed</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#myWork">My Work</a>
</li>
</ul>
</div>
</nav>
<!-- Home Section START -->
<section id="home" style="margin-top: 0%; padding-top: 60px;">
<img class="rounded-circle d-block mx-auto m-3" src="Images/profile_pic.png" height="240"
width="230"
data-aos="zoom-in-up">
<div class="h2 mt-2 text-center" style="color: #FFFFFF">Niharika Arora</div>
<div class="cd-intro m-3 text-center">
<h4 class="cd-headline slide">
<span class="cd-words-wrapper">
<b class="is-visible">💻 Googler</b>
<b>❤️ Ex-Google Dev Expert</b>
<b>❤️ Android</b>
<b>✈️ Kotlin</b>
<b>😍 OpenSource</b>
<b>💻 Enthusiast</b>
<b>😍 FitnessFreak</b>
<b>💻 Mentor</b>
<b>🇮🇳 Indian</b>
</span>
</h4>
</div>
<div class="container-fluid d-block mx-auto text-center" style="width:fit-content;"
data-aos="fade-up"
data-aos-anchor-placement="top-bottom">
<a href="https://nik-arora8059.medium.com/" target="_blank" href="#"
class="fab fa-medium-m rounded-circle"></a>
<a href="mailto: nik.arora8059@gmail.com" href="#"
class="far fa-envelope rounded-circle"></a>
<a href="https://www.facebook.com/nik.arora59" target="_blank"
class="fab fa-facebook-f rounded-circle"></a>
<a href="https://twitter.com/theDroidLady" target="_blank" href="#"
class="fab fa-twitter rounded-circle"></a>
<a href="https://www.instagram.com/nik.arora59/" target="_blank" href="#"
class="fab fa-instagram rounded-circle"></a>
<a href="https://www.linkedin.com/in/thedroidlady/" target="_blank" href="#"
class="fab fa-linkedin-in rounded-circle"></a>
<a href="https://github.com/niharika2810" target="_blank" href="#"
class="fab fa-github-alt rounded-circle"></a>
<a href="https://dev.to/thedroidlady">
<i class="fab fa-dev fa-9x" title="thedroidlady's DEV Profile"></i>
</a>
</div>
</section>
<!-- Home Section END -->
<!-- About Section START -->
<section id="biography">
<div class="justify-content-center">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-user-alt mr-2"></i><b>Biography</b></div>
<div class="d-flex align-items-center">
<div class="p text-monospace d-block mx-auto p-2 larger align-self-center"
data-aos="zoom-in-down">
Niharika Arora is currently working as a Developer Relations Engineer for Android at Google and was a Google Developer Expert for Android.
She started her career as an Android Developer with company like myPAT Delhi,
Cube26 & 1mg.<br/>
She is an open source contributor, mentor and started her journey as a speaker from Android
Developers group,Delhi. She is a also a prolific blogger for Medium. She had completed her graduation from JCBOSE
YMCAUST,Faridabad has received Chancellor Gold Medal for JCBOSE,YMCAUST 2011-2015 Batch by Honourable State Governor Sh. Kaptan Singh Solanki ji.<br/>
She is an interactive person ,a good listener and can convey her thoughts clearly. A
big time fitness freak and an avid partygoer who love to dance, adds a wow factor in
her persona ,she can handle the questions well and is a Solution seeker which
creates a healthy environment in her workplace .<br/>
You can find her contributions <a href="https://www.notion.so/Community-Experience-98d3f312a1c442628c78b33792a1ce78">here</a>.<br/>
She is self taught developer and make apps, libraries/APIs under Developer Name: <a
href="https://www.linkedin.com/in/thedroidlady/">theDroidLady</a>.<br>
</div>
</div>
</div>
</section>
<!-- About Section END -->
<!-- Skills Section START -->
<section id="skills">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-star"></i>My <b>Skills</b>
</div>
<div class="container-fluid d-block mx-auto text-center" style="width:fit-content;">
<div class="h4 mt-4">Languages:</div>
<div class="row justify-content-center align-items-center" data-aos="fade-down"
data-aos-easing="linear"
data-aos-duration="500">
<div class="skill" style="color: #e43e00">
<div class="fab fa-java p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Java</div>
</div>
<div class="skill" style="color: #cf4237">
<div class="fas fa-code p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Kotlin</div>
</div>
</div>
<div class="h4 mt-4">Technologies/Frameworks:</div>
<div class="row justify-content-center align-items-center" data-aos="fade-down"
data-aos-easing="linear"
data-aos-duration="500">
<div class="skill" style="color: #29bf0f">
<div class="fab fa-android p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Android</div>
</div>
</div>
<div class="h4 mt-4">Databases:</div>
<div class="row justify-content-center align-items-center" data-aos="fade-down"
data-aos-easing="linear"
data-aos-duration="500">
<div class="skill" style="color: #6685e4">
<div class="fas fa-database p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">SQL</div>
</div>
<div class="skill" style="color: #FFA000">
<div class="fas fa-database p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Room</div>
</div>
</div>
<div class="h4 mt-4">Tools:</div>
<div class="row justify-content-center align-items-center" data-aos="fade-down"
data-aos-easing="linear"
data-aos-duration="500">
<div class="skill" style="color: #ffffff">
<div class="fab fa-git-square p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Git</div>
</div>
<div class="skill" style="color: #ffffff">
<div class="fab fa-github-square p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">GitHub</div>
</div>
</div>
<div class="h4 mt-4">Other:</div>
<div class="row justify-content-center align-items-center" data-aos="fade-down"
data-aos-easing="linear"
data-aos-duration="500">
<div class="skill" style="color: #ffffff">
<div class="fas fa-pen-alt p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Technical Writing</div>
</div>
<div class="skill" style="color: #ffffff">
<div class="fab fa-teamspeak p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Public Speaking</div>
</div>
<div class="skill" style="color: #ffffff">
<div class="fas fa-chalkboard-teacher p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Mentor</div>
</div>
<div class="skill" style="color: #ffffff">
<div class="fas fa-user-friends p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Team Management</div>
</div>
<div class="skill" style="color: #ffffff">
<div class="fas fa-users p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Team Leadership</div>
</div>
</div>
</div>
</section>
<!-- Skills Section END -->
<!-- Activities Section START -->
<section id="activities">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-tasks mr-2"></i>My <b>Activities</b>
</div>
<ul class="list-group p-3 mx-auto" style="width: fit-content;" data-aos="zoom-in-down">
<li class="list-group-item" style=" background: transparent;">
<div class="small" style="color: #b7b6bb">2015 - PRESENT</div>
<div class="large mt-2">Developing Android mobiles apps or APIs under Developer Name :
<a
href="https://github.com/niharika2810" target="_blank">theDroidLady</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Oct, 2021</div>
<div class="large mt-2">Networking Speaker at<a
href="https://twitter.com/theDroidLady/status/1450086306378248197">Google India Devfest 2021</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Oct, 2021</div>
<div class="large mt-2">Featured in <a
href="https://mentorcruise.com/blog/niharika-arora-meet-the-mentor-c6d00/">Meet the Mentor series by MentorCruise</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Oct, 2021</div>
<div class="large mt-2">Talking about <a
href="https://twitter.com/i/lists/220463074">Open Source at MAIT</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Oct, 2021</div>
<div class="large mt-2">Featured in Official<a
href="https://twitter.com/i/lists/220463074">Official Google's Android Developers Team on Twitter</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Sep, 2021</div>
<div class="large mt-2">Mentor at Scaler<a
href="https://twitter.com/i/lists/220463074">Official Google's Android Developers Team on Twitter</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2021</div>
<div class="large mt-2">Tech Editor for<a
href="https://twitter.com/theDroidLady/status/1425151321695408131"> article- Activity Recognition API Tutorial for Android: Getting Started at Raywenderlich.</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">June, 2021</div>
<div class="large mt-2">Speaker at <a
href="https://twitter.com/GoogleDevsIN/status/1407578821977542662">Google for Startups to talk about Making an app production ready.</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">June, 2021</div>
<div class="large mt-2">Panellist at <a
href="https://www.youtube.com/watch?v=ju_q6IfosEo&ab_channel=mtechviral">CodeAid to talk about "FOMO in Android development</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">March, 2021</div>
<div class="large mt-2">Tech Editor at <a
href="https://twitter.com/theDroidLady/status/1370751126556004363">raywenderlich.com</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">February, 2021</div>
<div class="large mt-2">Tech reviewer at <a
href="https://www.youtube.com/watch?v=ju_q6IfosEo&ab_channel=mtechviral">Packt Publishing for Making building Apps with Kotlin</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">January, 2021</div>
<div class="large mt-2">Featured on <a
href="https://twitter.com/AndroidDev/status/1345565549783343110">Android Developers Official Twitter page</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">December, 2020</div>
<div class="large mt-2">Speaker at <a
href="https://www.droidcon.com/media-detail?video=4910190622">Droidcon APAC 2020 </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">December, 2020</div>
<div class="large mt-2">Featured in <a
href="http://corporateinsight.online/?p=202">Corporate Insight Simply TWO Book Series </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Novemeber, 2020</div>
<div class="large mt-2">Judge at <a
href="https://twitter.com/dscciet/status/1329115972372893696">OctaHacks 3.0 </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Novemeber, 2020</div>
<div class="large mt-2">Speaker at <a
href="https://dsc.community.dev/events/details/developer-student-clubs-punjab-university-college-of-information-technology-presents-become-an-android-developer/">DSC Android Study Jams </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Novemeber, 2020</div>
<div class="large mt-2">Speaker at <a
href="https://www.youtube.com/watch?v=OuafF5Q_qUg&t=365s&ab_channel=KotlinKolkata">Kotlin Kolkata for talk </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Novemeber, 2020</div>
<div class="large mt-2">Article on <a
href="https://twitter.com/theDroidLady/status/1326086062880403458">How RecyclerView works internally? shared in Korean language. </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Featured in <a
href="https://proandroiddev.com/proandroiddev-weekly-digest-android-data-binding-jetpack-compose-more-b8660a813f8d">ProAndroidDev Weekly Digest </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">One of the Expert panellist for <a
href="https://twitter.com/DevfestIndia/status/1317073679885324289">Google DevFest India 2020 </a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Podcast unwrapping AarogyaSetu BLE architecture and
Implementation. See <a
href="https://open.spotify.com/episode/2RvfZfX1iaJUEKcCojH5GO?si=4FRCAyb6SHyGCbzV7NnHMg">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">2020</div>
<div class="large mt-2">One of the contributor for Government of India's Contact
Tracing App: AarogyaSetu App. See <a
href="https://github.com/nic-delhi/AarogyaSetu_Android/graphs/contributors">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Invited for Interview on AarogyaSetu with Pawan Kumar(GDE) on
MtechViral Youtube Live Streaming for Android Stream Day. See <a
href="https://www.youtube.com/watch?v=EaW-27DRRwQ&ab_channel=MTECHVIRAL">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Sep, 2020</div>
<div class="large mt-2">Recro Webinar on Unit Testing- Why, What and How. Attended by
176 people with approx. 350 registrations
See <a
href="https://speakerdeck.com/niharika28/unit-testing-what-why-and-how">here for Slides</a> and <a
href="https://www.youtube.com/watch?v=JC2s8iCoQm8&t=4s&ab_channel=Recro">here for PPT</a>
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">July, 2020</div>
<div class="large mt-2">Podcast on story behind the inception of Aarogya Setu.
See <a
href="https://www.truepush.com/blog/podcast-ep-9-the-story-behind-the-inception-of-indias-aarogya-setu-app/?fbclid=IwAR11V2TB4bSId8Uup3nUTpZ5L38m-E6mEbjkS21JKWqO_kckKjo3SwurpfY">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">July, 2020</div>
<div class="large mt-2">Webinar on Understanding the core of AarogyaSetu App:
Bluetooth on July 11th,2020 at Android Developers Group,Delhi meetup. See
<a
href="https://www.youtube.com/watch?v=K4SLf3y6zmE&feature=youtu.be&ab_channel=ADG-Delhi">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Feb, 2020</div>
<div class="large mt-2">Speaker at Android Developers Group,Delhi meetup: *Unit Testing
in Android * on Feb 22, 2020. See <a
href="https://www.meetup.com/adg-delhi/events/268419995/">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Sep, 2020</div>
<div class="large mt-2">Article on Android Learning Resources featured in Dor Moshe's
Android Learning resources. See <a
href="https://dormoshe.io/newsletters/ag/android/19?utm_source=twitter&utm_campaign=twitter">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Article on Android Scoped Storage Demistyfied featured in Dor
Moshe's Android Newsletter. See <a
href="https://dormoshe.io/newsletters/ag/android/18?utm_source=twitter&utm_campaign=twitter7">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Article on Android’s Attribute android:allowBackup Demystified
got featured in OnCreate Digest Android newsletter. See <a
href="http://www.oncreatedigest.com/issues/oncreate-digest-issue-18-270712">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Library for fixing Toast BadTokenException has approx. 100
downloads so far within 2 months.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Featured in Droidcon Today's Highlight for article on <a
href="https://proandroiddev.com/constraintlayout-vs-other-layouts-a-battle-towards-performance-part-1-14d8116e876e">A
Battle towards Performance- Constraint Layout vs Other Layouts(Part -1)</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">July, 2020</div>
<div class="large mt-2">Featured in Droidcon Today's Highlight for article on <a
href="https://proandroiddev.com/how-i-resolved-windowmanager-badtokenexception-for-toast-handleshow-2308203ebb91">How
I resolved WindowManager.BadTokenException for Toast#handleShow()?</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">July, 2020</div>
<div class="large mt-2">Featured in Medium Daily Digest Today's Highlight for the
article Pitfalls in Android WebView Implementation. See <a
href="https://ibb.co/Z1YDJY2">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">Septmeber, 2020</div>
<div class="large mt-2">Appointed as <a
href="https://www.linkedin.com/company/womentech-network/mycompany/">WomenTech
Global Ambassador</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Recognized by IndiaMentor for her
contributions towards the community. See <a
href="https://www.linkedin.com/posts/thedroidlady_hardwork-rewards-sharingknowledge-activity-6696836835148132352-9d2B/">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">July, 2020</div>
<div class="large mt-2">People mentioning her guidance & teachings in their <a
href="https://www.researchime.in/post/the-third-part-of-aviraj-s-journey">article</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Interview with Flutter GDE Pawan Kumar on AarogyaSetu. See <a
href="https://www.youtube.com/watch?v=dEubcuKACTU&feature=youtu.be">here</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">October, 2020</div>
<div class="large mt-2">Speaker at <a
href="https://twitter.com/GoogleDevsIN/status/1309349408547373061">DevFest India 2020</a>.
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">October, 2020</div>
<div class="large mt-2">Library wrapper for fixing <a
href="https://ibb.co/R3WHggK">Toast BadTokenException</a> has more than 250 downloads so far within few months. (Image may be old when you visit my profile.)
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Featured for guidance around <a
href="https://www.researchime.in/post/the-third-part-of-aviraj-s-journey">BLE architecture</a>
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Featured in Dor Moshe's Android Newsletter for <a
href="https://dormoshe.io/newsletters/ag/android/19?utm_source=twitter&utm_campaign=twitter">Android Learning Resources</a>
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Featured in Dor Moshe's Android Newsletter for <a
href="https://dormoshe.io/newsletters/ag/android/18?utm_source=twitter&utm_campaign=twitter7">Android Scoped Storage Demistyfied</a>
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">August, 2020</div>
<div class="large mt-2">Featured in OnCreate Digest Android Newsletter for <a
href="http://www.oncreatedigest.com/issues/oncreate-digest-issue-18-270712">Android’s Attribute android:allowBackup Demystified</a>
</div>
</li>
</ul>
</section>
<!-- Activities Section END -->
<!-- Experience Section START -->
<section id="experience">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-briefcase"></i><b> Current
Organization</b>
</div>
<div class="d-flex align-items-center">
<ul class="list-group p-3 mx-auto" style="width: fit-content;" data-aos="zoom-in-down">
<li class="list-group-item">
<div class="row">
<div class="col-auto">
<img class="img-responsive rounded m-2 pr-2 pl-2"
style="background-color: #ff6f61;"
src="https://res.cloudinary.com/du8msdgbj/image/upload/v1571306929/logo_k1p18f.svg"
width="64" height="64"/>
</div>
<div class="col-auto">
<div class="small" style="color: #b7b6bb">07/2018 - PRESENT</div>
<div class="large font-weight-bold font-italic mt-2"
style="color: #FFFFFF;">Senior Software
Engineer
</div>
<div class="large mt-2" style="color: #fff;"><a
class="text-decoration-none"
href="https://www.1mg.com/" target="_blank">1mg</a></div>
<div class="small" style="color: #b7b6bb">Gurgaon, Haryana</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- Experience Section END -->
<!-- Education Section START -->
<section id="education">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-graduation-cap"></i>My <b>Education</b>
</div>
<div class="d-flex align-items-center">
<ul class="list-group p-3 mx-auto" data-aos="zoom-in-down">
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">2012 - 2015</div>
<div class="large font-weight-bold mt-2" style="color: #FFFFFF;">JCBOSE, YMCAUST of
Science and Technology
</div>
<div class="small" style="color: #b7b6bb">Faridabad, Haryana</div>
<div class="font-weight-light mt-1" style="color: #7b7a7f">Btech in Computer
Engineering
</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">2009 - 2012</div>
<div class="large font-weight-bold mt-2" style="color: #FFFFFF;">Government
Polytechnic, Nilokheri
</div>
<div class="small" style="color: #b7b6bb">Karnal, Haryana</div>
<div class="font-weight-light mt-1" style="color: #7b7a7f">Diploma in Computer
Engineering
</div>
</li>
</ul>
</div>
</section>
<!-- Education Section END -->
<section id="subscribe">
<div class="justify-content-center">
<div class="h1 text-center" data-aos="zoom-in-up"><b>Subscribe</b>
</div>
<div class="d-flex align-items-center">
<div class="p text-monospace d-block mx-auto p-2 larger align-self-center"
data-aos="zoom-in-down">
<div class="newsletter-container">
<!-- <p class="newsletter-text"></p> -->
<form class="newsletter-form" action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=thedroidlady', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<p class="newsletter-text text-center">Get new posts to your inbox</p>
<input type="hidden" value="thedroidlady" name="uri" />
<input type="hidden" name="loc" value="en_US" />
<input class="newsletter-email" type="text" name="email" placeholder="name@example.com" />
<input class="newsletter-submit" type="submit" value="Subscribe" />
</form>
</div>
</div>
</div>
</div>
</section>
<!-- My Work Section START -->
<section id="myWork">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-laptop-code"></i>My
<b>Work</b></div>
<nav>
<div class="nav nav-pills nav-fill" id="nav-tab" role="tablist">
<a class="nav-item nav-link bordered-nav ml-1 mr-1 active" id="nav-apps-tab"
data-toggle="tab"
href="#nav-apps" role="tab" aria-controls="nav-apps" aria-selected="true">
<div class="fa fa-mobile-alt mr-2"></div>
Apps
</a>
<a class="nav-item nav-link bordered-nav ml-1 mr-1" id="nav-os-tab" data-toggle="tab"
href="#nav-os"
role="tab" aria-controls="nav-os" aria-selected="false">
<div class="fab fa-github-alt mr-2 p-0 m-0" style="width: fit-content"></div>
Open Source
</a>
<a class="nav-item nav-link bordered-nav ml-1 mr-1" id="nav-articles-tab"
data-toggle="tab"
href="#nav-articles" role="tab" aria-controls="nav-articles" aria-selected="false">
<div class="fa fa-pen-alt mr-2"></div>
Articles
</a>
</div>
</nav>
<div class="tab-content" id="nav-tabContent" data-aos="zoom-in-down">
<div class="tab-pane fade show active" id="nav-apps" role="tabpanel"
aria-labelledby="nav-apps-tab">
<!-- START APPS -->
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/Article/aarogya_setu.png"
height="400"
alt="Aarogya Setu">
<div class="card-body">
<h5 class="card-title font-weight-bold">Aarogya Setu App</h5>
<p class="card-text">Aarogya Setu is a mobile application developed by the
Government of India to connect essential health services with the people
of India in our combined fight against COVID-19. The App is aimed at
augmenting the initiatives of the Government of India, particularly the
Department of Health, in proactively reaching out to and informing the
users of the app regarding risks, best practices and relevant advisories
pertaining to the containment of COVID-19.
The app is with more than <b>170 million downloads</b></p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&hl=en_IN"
target="_blank"
class="btn btn-outline-primary">View App</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/one_mg.png"
height="400"
alt="1mg">
<div class="card-body">
<h5 class="card-title font-weight-bold">1mg App</h5>
<p class="card-text">1mg is a complete health app for all your medical needs:
<br/>
- View Medicine Information<br/>
- Buy Medicines Online<br/>
- Book Lab Tests & Health Check-ups<br/>
- Consult Doctors Online<br/>
- Read Regular Health Tips</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.aranoah.healthkart.plus&hl=en_IN"
target="_blank"
class="btn btn-outline-primary">View App</a>
</div>
</div>
</div>
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/Article/my_pat.png"
height="400"
alt="myPAT">
<div class="card-body">
<h5 class="card-title font-weight-bold">myPAT App</h5>
<p class="card-text">myPAT is a JEE Main preparation app, JEE Advanced preparation app, BITSAT preparation app, NTSE preparation app, KVPY preparation app, Class 10 preparation app, Class 12 preparation app. With superior insightful analytics, myPAT has helped students improve their test scores up to 27%. Our exam preparation app helps in boosting the test scores of students studying in class 9, class 10, class 11, class 12.</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.mypat&hl=en_IN"
target="_blank"
class="btn btn-outline-primary">View App</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/glen_mst.png"
height="400"
alt="Glen MST">
<div class="card-body">
<h5 class="card-title font-weight-bold">Glen MST App</h5>
<p class="card-text">Glen MST allows sales team to add their sales activities more effectively.
<br/>
The application provides following functionality
<br/>
- Reporting of field force (Attendance and meetings conducted)<br/>
- Target assignment and tracking<br/>
- Order booking<br/>
- Expense Tracking<br/>
- Dealer/Distributor sales tracking</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.gaps.glen.sales_tracker&hl=en_IN"
target="_blank"
class="btn btn-outline-primary">View App</a>
</div>
</div>
</div>
<!-- END APPS -->
</div>
<div class="tab-pane fade" id="nav-os" role="tabpanel" aria-labelledby="nav-os-tab">
<!-- START Open Source -->
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/Article/toast.png"
style="height:300px;"
alt="Toast Handler Library">
<div class="card-body">
<h5 class="card-title font-weight-bold">ToastHandler Library </h5>
<p class="card-text">An Android library for handling Toast BadTokenException
happening on Android API level 25 and showing Toast smoothly on All
Android versions.</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/ToastHandler" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/movie_tray.jpeg"
style="height:300px;"
alt="MovieTray">
<div class="card-body">
<h5 class="card-title font-weight-bold">MovieTray</h5>
<p class="card-text">An application built to play around JetPack components.This app is currently built using,
The entire codebase is in Kotlin
Android Navigation Component,
Kotlin Coroutines & flow,
MVVM Architecture by Architecture Components. Room, ViewModel,
Paging3,
Dependency injection using Dagger with Hilt Android,
MotionLayout,
DataStore,
Retrofit for networking,
Android DataBinding & ViewBinding,
CI configured using Github actions</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/MovieTray" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/scan.jpeg"
style="height:300px;" alt="Zxing scan">
<div class="card-body">
<h5 class="card-title font-weight-bold">Custom Zxing Scanner </h5>
<p class="card-text">An Android Application for generating QR code using
Json Web Token (JWT) and Custom Scanner with scanning rectangle for more
focus to scan the QR code.
</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/ZxingPlusJjwtSample"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/Unit_test.png"
style="height:300px;"
alt="Unit Testing">
<div class="card-body">
<h5 class="card-title font-weight-bold">Unit Testing in
MVVM-Koin-Coroutines</h5>
<p class="card-text">A Sample Android Application for writing Unit tests in
MVVM architecture using Koin as dependency injection framework and
Coroutines for network call(Long blocking tasks).</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/UnitTesting-MVVM-Kotlin-Koin-Coroutines-Sample"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
</div>
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/OpenSource/mvp_dagger.jpg"
style="height:300px;"
alt="MVP Dagger">
<div class="card-body">
<h5 class="card-title font-weight-bold">MVP-Dagger-Retrofit Sample</h5>
<p class="card-text">A Sample Application demonstrating implementation of
MVP architecture using Dagger as dependency injection framework and
Retrofit for network call.</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/MVP-Dagger-Retrofit-Sample-App"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/rendering.png"
style="height:300px;"
alt="Layout Performance">
<div class="card-body">
<h5 class="card-title font-weight-bold">Layout Performance Analysis</h5>
<p class="card-text">A Demo Application with different XMLs developed using
different viewgroups for same UI screens to measure layout
performance.</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/LayoutPerformance-Analysis-App"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top"
src="Images/OpenSource/SectionedRecyclerViewExample.png"
style="height:300px;"
alt="Sectioned Recycler View">
<div class="card-body">
<h5 class="card-title font-weight-bold">SectionedRecyclerView</h5>
<p class="card-text">📱A Sample project explaining how to create sections in
Recyclerview with Pixel perfect UI, given a sample input.</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/SectionedRecyclerView-Sample"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
</div>
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/Article/interview.png"
style="height:300px;"
alt="Android Interview Questions">
<div class="card-body">
<h5 class="card-title font-weight-bold">Android-DS-Java Interview
Questions.</h5>
<p class="card-text">A repository containing interview questions on DS, Java
& Android based on my experiences💳💸.Explore and contribute</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/android-interview-questions"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/best_practice.jpeg"
style="height:300px;"
alt="Best Practice">
<div class="card-body">
<h5 class="card-title font-weight-bold">Android Development: Best Practices
📱</h5>
<p class="card-text">📱With best practices under your fingertips, you will
not lose precious time on reinventing the wheel. Instead, you can focus
on writing quality code and getting the job done.</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/android-development-best-practices"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
</div>
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/Article/scoped.jpeg"
style="height:300px;"
alt="Scoped Storage">
<div class="card-body">
<h5 class="card-title font-weight-bold">Scoped Storage Demo</h5>
<p class="card-text">A sample project explaining Scoped storage with
different operations performed on file as well as Image.</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/ScopedStorageDemo"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/learning.jpg"
style="height:300px;"
alt="Android learning Resources">
<div class="card-body">
<h5 class="card-title font-weight-bold">Android Learning Resources</h5>
<p class="card-text">A repository containing link/resources to small, basic
as well as specific android concepts.</p>
</div>
<div class="card-body">
<a href="https://github.com/niharika2810/android-learning-resources"
target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
</div>
</div>
<!-- END Open Source -->
<div class="tab-pane fade" id="nav-articles" role="tabpanel"
aria-labelledby="nav-articles-tab">
<!-- START Articles -->
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/Article/data_binding_three_two.png"
style="height:300px;"
alt="DataBinding Internals">
<div class="card-body">
<h5 class="card-title font-weight-bold">Android Data Binding: Under the Hood (Part 3)</h5>
<p class="card-text"><b>Medium Link:</b>
<a href="https://proandroiddev.com/android-data-binding-under-the-hood-part-3-7c5378f360eb"
target="_blank"
class="card-link">ProAndroidDev</a><br><br>
Let's talk about the magic happening between the Binding Adapter and Data Binding communication. </p>
</div>
<div class="card-body">
<a href="https://thedroidlady.com/2020-12-28-Android-DataBinding-Under-the-hood-part3"
target="_blank" class="btn btn-outline-primary">View</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/data_binding_two.jpg"
style="height:300px;"
alt="DataBinding Internals">
<div class="card-body">
<h5 class="card-title font-weight-bold">Android Data Binding: Under the Hood (Part 2)</h5>
<p class="card-text"><b>Medium Link:</b>
<a href="https://proandroiddev.com/android-data-binding-under-the-hood-part-2-fdcbb0f54700"
target="_blank"
class="card-link">ProAndroidDev</a><br><br>
Let's talk about the magic happening behind the dynamic data updates and click actions when we use data binding for our views.
</p>
</div>
<div class="card-body">
<a href="https://thedroidlady.com/2020-12-28-Android-DataBinding-Under-the-hood-part2"
target="_blank" class="btn btn-outline-primary">View</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Article/data_binding.jpg"
style="height:300px;"
alt="DataBinding Internals">