-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
1628 lines (1576 loc) · 112 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>Shreyas Patil - Android Developer, Web Developer</title>
<META name="keywords"
content="shreyas patil, shreyas, patil, shreyaspatil, patil shreyas, patilshreyas, android developer, web developer, shreyaspatil99, shreyas sharad patil, androiddev, shreyaspatil99, ssp">
<META name="description"
content="Official Website of Shreyas Sharad Patil. Android Developer, Web Developer, Open Source Enthusiast.">
<link rel="shortcut icon" href="Images/profile.jpg" type="image/jpeg" />
<link rel="canonical" href="https://shreyaspatil.dev/" />
<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/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<meta property="og:title" content="Shreyas Patil - Android Developer, Web Developer">
<meta property="og:image"
content="https://github.com/PatilShreyas/PatilShreyas.github.io/raw/master/Images/profile.jpg">
</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">Shreyas Patil</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="#aboutMe">About Me</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse.show">
<a class="nav-link" href="#experience">Experience</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="#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="#myWork">My Work</a>
</li>
</ul>
</div>
</nav>
<!-- Home Section START -->
<section id="home" style="margin-top: 0%; padding-top: 60px;">
<img id="tilt" class="rounded-circle d-block mx-auto m-3" src="Images/profile.png" height="256" width="256"
data-aos="zoom-in-up">
<div class="h2 mt-2 text-center" style="color: #FFFFFF">Shreyas Sharad Patil</div>
<div class="cd-intro m-3 text-center">
<h4 class="cd-headline slide">
<span class="cd-words-wrapper" style="width:200px !important">
<b class="is-visible">❤️ Android</b>
<b>✈️ Kotlin</b>
<b>😍 Open Source</b>
<b>🔥 Firebase</b>
<b>👨🏻💻 Enthusiast</b>
<b>✍️ Technical</b>
<b>🇮🇳 Indian</b>
</span>
</h4>
</div>
<div class="d-flex align-items-center">
<a href="https://drive.google.com/file/d/1RMyErD4VNG2IhoHghwugXm0PGAxcGL0m/view?usp=sharing"
class="btn btn-outline-light d-block mx-auto m-4" target="_blank" role="button"><i
class="fas fa-file mr-2"></i>
View CV</a>
</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="mailto: [email protected]" href="#" class="far fa-envelope rounded-circle"></a>
<a href="https://www.facebook.com/shreyaspatil99" target="_blank"
class="fab fa-facebook-f rounded-circle"></a>
<a href="https://twitter.com/imShreyasPatil" target="_blank"
class="fab fa-twitter rounded-circle"></a>
<a href="https://instagram.com/shreyaspatil.dev/" target="_blank"
class="fab fa-instagram rounded-circle"></a>
<a href="https://www.linkedin.com/in/patil-shreyas" target="_blank"
class="fab fa-linkedin-in rounded-circle"></a>
<a href="https://github.com/PatilShreyas" target="_blank"
class="fab fa-github-alt rounded-circle"></a>
<a href="https://play.google.com/store/apps/dev?id=7315706573700759915" target="_blank"
class="fab fa-google-play rounded-circle"></a>
<a href="https://medium.com/@patilshreyas" target="_blank"
class="fab fa-medium-m rounded-circle"></a>
<a href="https://blog.shreyaspatil.dev" target="_blank"
class="fas fab fa-blog rounded-circle"></a>
</div>
</section>
<!-- Home Section END -->
<!-- About Section START -->
<section id="aboutMe">
<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>About</b> Me
</div>
<div class="d-flex align-items-center">
<div class="p text-monospace d-block mx-auto p-4 larger align-self-center" data-aos="zoom-in-down">
I'm Google Developer Expert for Android with several applications released onto
Google Play Store. <br>
I am self taught developer and make apps, libraries/APIs under Developer Name: <a
href="https://www.facebook.com/spdroid/">SPDroid</a>.<br>
I spend a lot of my development time contributing to open-source projects. <br>
Most of it started by myself which can be found from my GitHub profile. <br>
I share my learnings by writing blogs, sharing posts on social media. <br>
Other than this, I love Music 🎵. I love to sing songs.
</div>
</div>
</div>
</section>
<!-- About Section END -->
<!-- Experience Section START -->
<section id="experience">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-briefcase"></i> My <b>Experience</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" style="background-color: #ffffff;"
src="https://play-lh.googleusercontent.com/vIL5SVs5s307EmCUZ6rWx11YvcoRnk0sMfGB1VCMBD3m78PMGGsZG_3VIwOZoI4TSQ=l64" width="64"
height="64" />
</div>
<div class="col-auto">
<div class="small" style="color: #b7b6bb">09/2024 - PRESENT</div>
<div class="large font-weight-bold font-italic mt-2" style="color: #FFFFFF;">Senior Android Engineer</div>
<div class="large mt-2" style="color: #FFFFFF;"><a class="text-decoration-none"
href="https://deliveroo.co.uk" target="_blank">Deliveroo</a></div>
<div class="small" style="color: #b7b6bb">Hyderabad, Telangana, India</div>
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-auto">
<img class="img-responsive rounded m-2" style="background-color: #ffffff;"
src="https://play-lh.googleusercontent.com/2tH3ybpe3Tb5y2vamr4s0IJ-ffW83ouOFl4qDeZ8qvKdil5OjMN5_kiQviniaIBz420=l64" width="64"
height="64" />
</div>
<div class="col-auto">
<div class="small" style="color: #b7b6bb">09/2021 - 08/2024</div>
<div class="large font-weight-bold font-italic mt-2" style="color: #FFFFFF;">Senior Android Engineer</div>
<div class="large mt-2" style="color: #FFFFFF;"><a class="text-decoration-none"
href="https://paytm.com" target="_blank">Paytm</a></div>
<div class="small" style="color: #b7b6bb">Mumbai, Maharashtra, India</div>
</div>
</div>
</li>
<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: #0eccd8;"
src="Images/Company/scalereal.svg" width="64"
height="64" />
</div>
<div class="col-auto">
<div class="small" style="color: #b7b6bb">05/2020 - 09/2021</div>
<div class="large font-weight-bold font-italic mt-2" style="color: #FFFFFF;">Software Engineer</div>
<div class="large mt-2" style="color: #FFFFFF;"><a class="text-decoration-none"
href="https://scalereal.com/" target="_blank">ScaleReal</a></div>
<div class="small" style="color: #b7b6bb">Pune, Maharashtra, India</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- Experience Section END -->
<!-- Community Section START -->
<section id="community">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-users"></i> My <b>Community</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 m-2 pr-2 pl-2"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Google_%22G%22_logo.svg/768px-Google_%22G%22_logo.svg.png" width="78" />
</div>
<div class="col-auto">
<div class="small" style="color: #b7b6bb">08/2021 - PRESENT</div>
<div class="large font-weight-bold font-italic mt-2" style="color: #FFFFFF;">Category - Android</div>
<div class="large mt-2" style="color: #FFFFFF;"><a class="text-decoration-none"
href="https://g.dev/shreyaspatil" target="_blank">Google Developer Expert</a></div>
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-auto">
<img class="img m-2 pr-2 pl-2"
src="https://pbs.twimg.com/profile_images/1361975143610806272/XvJlVRxW_400x400.jpg" width="78" />
</div>
<div class="col-auto">
<div class="small" style="color: #b7b6bb">11/2020 - 07/2022</div>
<div class="large font-weight-bold font-italic mt-2" style="color: #FFFFFF;">Organizer</div>
<div class="large mt-2" style="color: #FFFFFF;"><a class="text-decoration-none"
href="https://www.meetup.com/Kotlin-Mumbai/" target="_blank">Kotlin User Group: Mumbai</a></div>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- Community 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">2018 - 2021</div>
<div class="large font-weight-bold mt-2" style="color: #FFFFFF;">D. Y. Patil College of Engineering,
Pune</div>
<div class="small" style="color: #b7b6bb">Pune, Maharashtra</div>
<div class="font-weight-light mt-1" style="color: #7b7a7f">Bachelor of Engineering in Information
Technology</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">2015 - 2018</div>
<div class="large font-weight-bold mt-2" style="color: #FFFFFF;">Government Polytechnic, Jalgaon
</div>
<div class="small" style="color: #b7b6bb">Jalgaon, Maharashtra</div>
<div class="font-weight-light mt-1" style="color: #7b7a7f">Diploma in Information Technology</div>
</li>
</ul>
</div>
</section>
<!-- Education 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 class="skill" style="color: #2099df">
<div class="fas fa-code p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Dart</div>
</div>
<div class="skill" style="color: #b2b200">
<div class="fab fa-js-square p-0 m-1" style="font-size: 30px;"></div>
<div class="font-weight-bold">JavaScript</div>
</div>
<div class="skill" style="color: #cf5b1e">
<div class="fab fa-html5 p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">HTML</div>
</div>
<div class="skill" style="color: #559cc4">
<div class="fab fa-css3 p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">CSS</div>
</div>
<div class="skill" style="color: #f3c623">
<div class="fab fa-python p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Python</div>
</div>
<div class="skill" style="color: #597fb2">
<div class="fab fa-php p-0 m-1" style="font-size: 30px;"></div>
<div class="font-weight-bold">PHP</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 class="skill" style="color: #0f96bf">
<div class="fas fa-mobile p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Flutter</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">Micronaut</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">Ktor</div>
</div>
<div class="skill" style="color: #00ff22">
<div class="fab fa-node p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Node.js</div>
</div>
<div class="skill" style="color: #32e0c4">
<div class="fab fa-python p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Django</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: #046e16">
<div class="fas fa-database p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">MongoDB</div>
</div>
<div class="skill" style="color: #FFA000">
<div class="fas fa-fire p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Firebase</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 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 Actions</div>
</div>
<div class="skill" style="color: #FFA000">
<div class="fas fa-fire p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">Firebase</div>
</div>
<div class="skill" style="color: #FFA000">
<div class="fab fa-aws p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">AWS</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="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 class="skill" style="color: #ffffff">
<div class="fas fa-palette p-0 m-1" style="font-size: 30px"></div>
<div class="font-weight-bold">UI/UX Designing</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">2016 - PRESENT</div>
<div class="large mt-2">Developing Android mobiles apps or APIs under Developer Name : <a
href="https://www.facebook.com/spdroid/" target="_blank">SPDroid</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">April, 2017</div>
<div class="large mt-2">Participated and qualified for Grand Finale of <b>Smart India Hackathon
2017</b>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">September, 2017</div>
<div class="large mt-2">Organised a district level and was main Co-ordinator of the event
<b><i>'TechnoFest 2k17'</i></b>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">March, 2018</div>
<div class="large mt-2">Participated and qualified for Grand Finale of <b>Smart India Hackathon
2018</b>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">July - August, 2018</div>
<div class="large mt-2">Designed and developed official website for college <a class="link"
href="http://www.gpjalgaon.org.in" target="_blank">Government Polytechnic, Jalgaon</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">September, 2019</div>
<div class="large mt-2">Volunteer of GDG DevFest Pune 2019. (Mobile Application Development).</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">2019</div>
<div class="large mt-2">Attended Conferences - <b>Firebase India Roadshow 2019</b> and <b>GDG Pune
DevFest19</b></div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">2021</div>
<div class="large mt-2">Became the Youngest Google Developer Expert for Android in India</b></div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">2022</div>
<div class="large mt-2">Reviewed a book, <a href="https://www.packtpub.com/product/simplifying-android-development-with-coroutines-and-flows/9781801816243" target="_blank">Simplifying Android Development with Coroutines and Flows</a> by Packt Publication</b></div>
</li>
</ul>
</section>
<!-- Activities Section END -->
<!-- Sessions Section START -->
<section id="sessions">
<div class="h1 text-center" data-aos="zoom-in-up"><i class="fas fa-user-tie mr-2"></i>My <b>Workshops / Sessions / Webinars</b></div>
<ul class="list-group p-3 mx-auto" style="width: fit-content;" data-aos="zoom-in-down">
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">March, 2016</div>
<div class="large mt-2">Organized a Seminar on 'Android App Development' and taught basic app
development at Government Polytechnic, Jalgaon. See <a
href="https://www.facebook.com/shreyaspatil99/posts/945712815511124">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">September - October, 2019</div>
<div class="large mt-2">Conducted 9-DAYS Beginner Level Hands-on Workshop on Android App Development at
IT Dept., DYPCOE, Pune. See <a href="https://www.facebook.com/shreyaspatil99/posts/2450994571649600"
target="_blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">24 February, 2020</div>
<div class="large mt-2">Conducted One day Hands-on workshop 'Hello Git' under DevClub DYPCOE. See <a
href="https://devclub-dypcoe.github.io/Events/HelloGit/" target="_blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">31 May, 2020</div>
<div class="large mt-2">Conducted webinar on 'Hello Git' for the students and faculties of all the colleges.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">24 October, 2020</div>
<div class="large mt-2">Conducted webinar on <a href="https://docs.google.com/presentation/d/1MNDJz2ChQO7_X_Ix8Et9J_otlbk4WL33kLE1rQtzQT4/edit?usp=sharing" target="_blank">'How to Code CLEAN?'</a> with DSC DYPCOE. Watch session video <a href="https://youtu.be/Tj6q1iD1xfM" target="_blank">here</a> on YouTube.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">12 December, 2020</div>
<div class="large mt-2">Conducted session: <a href="https://dsc.community.dev/events/details/developer-student-clubs-dy-patil-college-of-engineering-presents-android-study-jam-03-kotlin-koans/" target="_blank">'Android Study Jam - 03 - Kotlin Koans'</a> with DSC DYPCOE. Watch session video <a href="https://www.youtube.com/watch?v=2lG5E7sDeC4" target="_blank">here</a> on YouTube.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">19 December, 2020</div>
<div class="large mt-2">Delivered a session on "Beginner's Guide for Kotlin Programming language" for <a href="https://dsc.community.dev/events/details/developer-student-clubs-sandip-institute-of-technology-and-research-centre-presents-get-started-with-android/" target="_blank">Android Study Jams series at DSC SITRC</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">27 December, 2020</div>
<div class="large mt-2">Conducted a Hands-on workshop on Mobile app development in Kotlin at <a href="https://dsc.community.dev/events/details/developer-student-clubs-mlr-institute-of-technology-presents-android-study-jams-2/" target="_blank">Android Study Jams series at DSC MLRIT, Hyderabad</a>. Watch Video <a href="https://www.youtube.com/watch?v=AZEMfMsCDh8" target="blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">23 January, 2021</div>
<div class="large mt-2">Conducted a Hands-on workshop on "Build an Android application with superpower of Kotlin and Coroutines" at <a href="https://dsc.community.dev/events/details/developer-student-clubs-mit-academy-of-engineering-presents-build-an-android-application-with-superpower-of-kotlin-and-coroutines-asj-session-3/" target="_blank">Android Study Jams series at DSC MITAOE, Pune</a>. Watch Video <a href="https://www.youtube.com/watch?v=t3EHKHhZYFM" target="_blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">28 August, 2021</div>
<div class="large mt-2">Conducted a session on "Let's talk Android Dev with Shreyas Patil" at DSC MESCOE, Pune. Watch Video <a href="https://youtu.be/EzImuJIPP4s" target="_blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">23 October, 2021</div>
<div class="large mt-2">Conducted a session on "Navigating screens in Jetpack Compose" at DevFest India 2021. See more about it <a href="https://blog.shreyaspatil.dev/navigating-screens-in-jetpack-compose-devfest-india-2021-mobile-track" target="_blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">18 December, 2021</div>
<div class="large mt-2">Conducted a session on "Introduction to Jetpack Compose" at GDSC VJTI, GDSC UMIT, GDSC MIET & GDSC VIT. See <a href="https://www.youtube.com/watch?v=kh_6TX3iHBI" target="_blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">24 December, 2021</div>
<div class="large mt-2">Conducted a session on "Introduction to Jetpack Compose" at GDSC NIT Delhi. See <a href="https://youtu.be/LpxUUVjnXZ4" target="_blank">here</a>.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">10 January, 2022</div>
<div class="large mt-2">Team GDSC India organized this panel discussion with several Android experts as a part of the closing ceremony of Android Study Jams. We guided leads and facilitators regarding career opportunities in the field of Android development.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">05 February, 2022</div>
<div class="large mt-2">Talked on <a href="https://gdsc.community.dev/events/details/developer-student-clubs-national-institute-of-technology-nit-silchar-presents-tech-talk-with-shreyas-patil/" target="_blank">"Kickstarting career as a student Android developer"</a> organized by GDSC NIT Silchar and GDSC AEC, GDSC NIT Agartala, GDSC IIITG</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">27, 28 August, 2022</div>
<div class="large mt-2">Conducted a two day workshop on "Developing Android Apps with Modern Architecture". See <a href="https://gdg.community.dev/events/details/google-gdg-cloud-pune-presents-android-study-jam-2022-gdg-cloud-pune-1/" target="_blank">Day 1</a> and <a href="https://gdg.community.dev/events/details/google-gdg-cloud-pune-presents-android-study-jam-2022-gdg-cloud-pune-2/" target="_blank">Day 2</a></div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">30 August, 2022</div>
<div class="large mt-2">Conducted workshop on <a href="https://www.commudle.com/communities/moreficent/events/developing-ui-with-jetpack-compose" target="_blank">"Developing UI with Jetpack Compose"</a> organized by Moreficent.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">11 September, 2022</div>
<div class="large mt-2">Conducted workshop on <a href="https://gdsc.community.dev/events/details/developer-student-clubs-national-institute-of-technology-nit-silchar-presents-compose-camp-2022/" target="_blank">"Compose Camp - Introduction to Jetpack Compose"</a> @ GDSC NIT Silchar.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">27 November, 2022</div>
<div class="large mt-2">Delivered session on <a href="https://gdg.community.dev/events/details/google-gdg-gurugram-presents-devfest22-gurugram/" target="_blank">"Adopting Jetpack Compose in your Android apps"</a> @ GDG Gurugram DevFest 2022.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">24 December, 2022</div>
<div class="large mt-2">Delivered session on <a href="https://gdg.community.dev/events/details/google-gdg-gwalior-presents-devfest-2022-gdg-gwalior/" target="_blank">"Adopting Jetpack Compose in your Android apps"</a> @ GDG Gwalior DevFest 2022.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">4 June, 2023</div>
<div class="large mt-2">Delivered a talk on <a href="https://gdg.community.dev/events/details/google-gdg-nagpur-presents-google-io-extended-nagpur/" target="_blank">"Getting Started with Jetpack Compose"</a> @ GDG Nagpur I/O Extended 2023.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">11 June, 2023</div>
<div class="large mt-2">Delivered a talk on <a href="https://gdsc.community.dev/events/details/developer-student-clubs-dy-patil-college-of-engineering-pune-presents-google-io-extended-watch-party-pathway-to-become-a-senior-developer-at-paytm/" target="_blank">"Kickstarting career as a student Android Developer"</a> @ GDSC DYPCOE.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">28 June, 2023</div>
<div class="large mt-2">Delivered a lightning talk on <a href="https://twitter.com/imShreyasPatil/status/1674072269654736896" target="_blank">"Adopting Jetpack Compose at Scale"</a> @ Google I/O Connect Bangalore 2023.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">16 July, 2023</div>
<div class="large mt-2">Delivered a talk on <a href="https://twitter.com/imShreyasPatil/status/1681535446130774021" target="_blank">"Jetpack: One Stop Shop for Android Developers"</a> @ Google I/O Extended New Delhi 2023.</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">4 Nov, 2023</div>
<div class="large mt-2">Delivered a talk on <a href="https://gdg.community.dev/events/details/google-gdg-siliguri-presents-devfest-siliguri-2023/" target="_blank">"Jetpack: One Stop Shop for Android Developers"</a> @ DevFest Siliguri 2023</div>
</li>
<li class="list-group-item">
<div class="small" style="color: #b7b6bb">16 Dec, 2023</div>
<div class="large mt-2">Delivered a talk on <a href="https://youtu.be/RENtdbB2OG4?si=Zo6eQkND50EKc9FO" target="_blank">"Jetpack: One Stop Shop for Android Developers"</a> @ DevFest Bangalore 2023</div>
</li>
</ul>
</section>
<!-- Sessions Section END -->
<!-- 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 / Softwares
</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-osc-tab" data-toggle="tab" href="#nav-osc"
role="tab" aria-controls="nav-osc" aria-selected="false">
<div class="fab fa-github-alt mr-2 p-0 m-0" style="width: fit-content"></div>OSS Contributions
</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/Apps/CProgramming.png" alt="C Programming Course">
<div class="card-body">
<h5 class="card-title font-weight-bold">C Programming Course</h5>
<p class="card-text">C Programming Course is all in one Application to learn C Programming
Language. This is educational app with many features.<br> This app is much popular on
Play Store for learning C Programming and has around <b>510k+ installs</b> till date
(14/08/2020)</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.spdroid.c&hl=en" target="_blank"
class="btn btn-outline-primary">View App</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/PUAlerts.png" alt="PU Alerts">
<div class="card-body">
<h5 class="card-title font-weight-bold">PU Alerts</h5>
<p class="card-text">PU Alerts is all in one app for all students who are pursuing
engineering in SPPU (Pune University) which provides all important latest news, updates
and notifications from SPPU. No need to visit site again and again after using this app.
It has <b>8K Installs</b> till date (14/08/2020).
</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.spdroid.sppu.alerts"
target="_blank" class="btn btn-outline-primary">View App</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/DiplomaAlerts.png" alt="Diploma Alerts">
<div class="card-body">
<h5 class="card-title font-weight-bold">Diploma Alerts</h5>
<p class="card-text">App developed for students of MSBTE board to get in touch with all news
and updates regarding Exam, Syllabus, timetable, Hall tickets, etc. They will not have
any need to check website again and again. All board information will available on app.
It has around <b>45K Installs</b> till date (14/08/2020).
</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.spdroid.diploma&hl=en"
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/Apps/SecurMi.png" alt="SecurMi">
<div class="card-body">
<h5 class="card-title font-weight-bold">SecurMi - Personal Security App</h5>
<p class="card-text">This is a personal security app, which helps you to inform about your
dangerous situation to your trusty persons along with information. View this app for
better understanding.</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.csr.securmi&hl=en"
target="_blank" class="btn btn-outline-primary">View App</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/GoSafe.png"
alt="GoSafe App">
<div class="card-body">
<h5 class="card-title font-weight-bold">GoSafe</h5>
<p class="card-text"><i>A Safety and Real-time Emergency mediator System between Police officials and Citizens of India</i><br><br>
<b>Project:</b> Developed Cross-platform mobile application for Citizen/User app and Web application for Police officials that provides an easy way to report an incident which saves time as well as reduces the efforts which are required in the manual procedure.<br>
<b>Technologies Used :</b> Google Cloud / Firebase, Google Maps API, Flutter - Dart, ReactJS, HTML, CSS, JavaScript, NodeJS, ExpressJS</p>
<a href="https://www.irjet.net/archives/V8/i4/IRJET-V8I4315.pdf" target="_blank"
class="btn btn-outline-primary">View Details</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/PassengerSecurity.png"
alt="Passenger Security - SIH2018">
<div class="card-body">
<h5 class="card-title font-weight-bold">Passenger Security App - Smart India Hackathon 2018
</h5>
<p class="card-text">Our Team TechnoDroid was selected for grand finale in Smart India
Hackathon 2018 - Software Edition.<br><br>
<b>Project:</b> Development of android app for Passenger Security which informs central
ministry about Passenger's panic situation.
Also, FIR can be registered through the app.<br>
<b>Technologies Used :</b> Android, Java, MySQL, Firebase, PHP, Google Maps API</p>
<a href="https://github.com/PatilShreyas/PassengerSecurity-SIH2018" target="_blank"
class="btn btn-outline-primary">View Project</a>
</div>
</div>
</div>
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/Apps/TGApp.png" alt="DYPCOE TG APP">
<div class="card-body">
<h5 class="card-title font-weight-bold">DYPCOE App (For TGs and Students)</h5>
<p class="card-text">Developed app 'DYPCOE Student' and 'DYPCOE TeacherG' for Teacher
Guardian and students interaction. Teacher guardian can see all students details and
contact them and their parents. Whenver TG calls/message parent, automatically that
details are saved into Google Sheets in Google drive. Thus is makes easy for them to
manage and avoids fake reports.<br><br>
<b>Technologies Used :</b> Android-Kotlin, Firebase Authentication, Firebase Cloud
Firestore, Google AppScript, Google Sheets API.</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/DYPITMIS.png" alt="DYPCOE IT MIS">
<div class="card-body">
<h5 class="card-title font-weight-bold">DYPCOE-IT-MIS Android App - Faculty Information
Management System</h5>
<p class="card-text">Developed app 'DYPCOE-IT-MIS' for faculty information management system
where faculties can submit their information through the app. Then this information is
saved directly into the Google Docs Spreadsheet of admin for easy management. Only
approved faculties with the mobile number can use this app by logging in with Phone
Authentication.<br><br>
<b>Technologies Used :</b> Android, Java, Firebase Authentication, Google AppScript,
Google Sheets API.</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/GPJITNoticeboardApp.png"
alt="Passenger Security - SIH2018">
<div class="card-body">
<h5 class="card-title font-weight-bold">E-Noticeboard App for College</h5>
<p class="card-text">Developed app "E-Noticeboard" for College department. In this app,
there are 3 user roles.<br>
1. Student<br>
2. Staff<br>
3. Admin<br><br>
Admin and staff can publish Notices and all users will receives notice on their mobile.
After that if anyone has doubt he/she can interact with commenting on that notice.
Anyone can discuss on published notice.</p>
</div>
<div class="card-body">
<a href="https://goo.gl/RitoQR" 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/Apps/AYUSH.png" alt="AYUSH - SIH2017">
<div class="card-body">
<h5 class="card-title font-weight-bold">App for Ministry of AYUSH - Smart India Hackathon
2017</h5>
<p class="card-text">Our Team TechnoDroid was selected for grand finale in Smart India
Hackathon 2017.<br><br>
<b>Project:</b> Development of official app for the Ministry of AYUSH with reference to
the official website <a href="https://ayush.gov.in">AYUSH</a>.<br>
<b>Technologies Used :</b> Android, Java, HTML, Firebase - Database, FCM</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/CProComm.png" alt="C Programming Community">
<div class="card-body">
<h5 class="card-title font-weight-bold">C Programs - Contribute, Learn, Write, Share Code
</h5>
<p class="card-text">Let's Browse all C Programs developed by users worldwide and also
contribute to make this app as Treasure of C Programs.<br>
Let's learn coding and share coding.
It has <b>13k Installs</b> till date (14/08/2020).
</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.spdroid.cpcom&hl=en"
target="_blank" class="btn btn-outline-primary">View App</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/EMICalc.png" alt="EMI Calculator">
<div class="card-body">
<h5 class="card-title font-weight-bold">Smart EMI Calculator</h5>
<p class="card-text">This was my first basic app which Calculates EMI.</p>
</div>
<div class="card-body">
<a href="https://play.google.com/store/apps/details?id=com.spdroid.emi&hl=en"
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/Apps/JalgaonCoHelp.png" alt="Government Polytechnic, Jalgaon">
<div class="card-body">
<h5 class="card-title font-weight-bold">Jalgaon CoHelp | COVID19 Resources
</h5>
<p class="card-text">A web application which includes the Crowdsourced resources to fight COVID across Jalgaon District. Find hospital beds, oxygen, plasma, and more.
<br><br><b>Technologies Used:</b>
<br> <b>Frontend</b> ReactJS, TypeScript, CSS, Bootstrap
<br> <b>Backend:</b> Kotlin, Ktor, PostgreSQL
<br> <b>Deployment:</b> Heroku, Netlify</p>
</div>
<div class="card-body">
<a href="https://jalgaoncohelp.in" target="_blank" class="btn btn-outline-primary">Visit Site</a>
<a href="https://github.com/Jalgaon-CoHelp" target="_blank" class="btn btn-outline-primary">Source code</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/Apps/GPJSite.png" alt="Government Polytechnic, Jalgaon">
<div class="card-body">
<h5 class="card-title font-weight-bold">Official Website of Government Polytechnic, Jalgaon
</h5>
<p class="card-text">Developed official website for institute Government Polytechnic,
Jalgaon in 2018 <br><b>Technologies Used:</b> HTML, CSS, Bootstrap, Ajax, JQuery,
JavaScript.</p>
</div>
<div class="card-body">
<a href="http://gpjalgaon.org.in" target="_blank" class="btn btn-outline-primary">Visit
Site</a>
</div>
</div>
</div>
<!-- END APPS -->
</div>
<div class="tab-pane fade" id="nav-os" role="tabpanel" aria-labelledby="nav-os-tab">
<div class="text-center m-2">See more projects on <a href="https://github.com/PatilShreyas" target="_blank">my GitHub</a></div>
<!-- START Open Source -->
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="https://opengraph.githubassets.com/0022313ed19414e949c91ca3350e72846717c7c16695ac5f2a3faaf5289fdd5a/PatilShreyas/generative-ai-kmp" alt="generative-ai-kmp">
<div class="card-body">
<h5 class="card-title font-weight-bold">Generative AI SDK for Kotlin Multiplatform</h5>
<p class="card-text">✨Generative AI SDK for Kotlin Multiplatform (Supports: JVM, Android, iOS, Desktop, Web JS, Wasm)</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/generative-ai-kmp" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="https://raw.githubusercontent.com/PatilShreyas/Foodium-KMM/main/readme-media/graphic.png" alt="Foodium-KMM">
<div class="card-body">
<h5 class="card-title font-weight-bold">Foodium - KMM</h5>
<p class="card-text">📱Sample application built to demonstrate the use of Kotlin Multiplatform Mobile for developing Android and iOS applications using Jetpack Compose 🚀</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/Foodium-KMM" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="https://opengraph.githubassets.com/0022313ed19414e949c91ca3350e72846717c7c16695ac5f2a3faaf5289fdd5a/PatilShreyas/compose-report-to-html" alt="Compose Compiler Report to HTML">
<div class="card-body">
<h5 class="card-title font-weight-bold">Compose Compiler Report to HTML</h5>
<p class="card-text">A utility (Gradle Plugin + CLI) to convert Jetpack Compose compiler metrics and reports to beautified HTML page.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/compose-report-to-html" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
<a href="https://patilshreyas.github.io/compose-report-to-html/" target="_blank"
class="btn btn-outline-primary">View Docs</a>
</div>
</div>
</div>
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="https://opengraph.githubassets.com/391a826b3e7d8c3f47832b72c7e2be3127d9fba5a3fec5c83872a79a19ccbae0/PatilShreyas/mutekt" alt="Mutekt">
<div class="card-body">
<h5 class="card-title font-weight-bold">Mutekt</h5>
<p class="card-text">Simplify mutating "immutable" state models</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/mutekt" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="https://opengraph.githubassets.com/a0b34a184e19158ee270f60716400d38caca4fdd95448f90ac346a6d27810639/PatilShreyas/permission-flow-android" alt="Permission Flow for Android">
<div class="card-body">
<h5 class="card-title font-weight-bold">Permission Flow for Android</h5>
<p class="card-text">Know about real-time state of a Android app Permissions with Kotlin Flow APIs.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/permission-flow-android" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
<a href="https://patilshreyas.github.io/permission-flow-android/" target="_blank"
class="btn btn-outline-primary">View Docs</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/Capturable.png" alt="Capturable">
<div class="card-body">
<h5 class="card-title font-weight-bold">Capturable</h5>
<p class="card-text">🚀Jetpack Compose utility library for capturing Composable content and transforming it into Bitmap Image🖼️</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/Capturable" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
<a href="https://patilshreyas.github.io/Capturable/" target="_blank"
class="btn btn-outline-primary">View Docs</a>
</div>
</div>
</div>
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="Images/OpenSource/NotyKT.png" alt="NotyKT App">
<div class="card-body">
<h5 class="card-title font-weight-bold">NotyKT 🖊️</h5>
<p class="card-text">📒 NotyKT is a complete 💎Kotlin-stack (Backend + Android) 📱 application built to demonstrate the use of Modern development tools with best practices implementation.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/NotyKT" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
<a href="https://patilshreyas.github.io/NotyKT" target="_blank"
class="btn btn-outline-primary">View Docs</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/GitKtDroid.png" alt="GitKtDroid App">
<div class="card-body">
<h5 class="card-title font-weight-bold">GitKtDroid </h5>
<p class="card-text">A sample Android application📱 built with Kotlin for #30DaysOfKotlin
which is built with Kotlin🦸superpower and Modern Android development tools.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/GitKtDroid" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/Foodium.png" alt="Foodium App">
<div class="card-body">
<h5 class="card-title font-weight-bold">Foodium 🍲 </h5>
<p class="card-text">🍲Foodium is a sample food blog Android application 📱 built to
demonstrate use of Modern Android development tools.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/Foodium" 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/Covid19India.png" alt="Covid19 India App">
<div class="card-body">
<h5 class="card-title font-weight-bold">COVID19 Notifier - India 🇮🇳</h5>
<p class="card-text">A sample Android App which notifies about COVID19 cases in 🇮🇳India
after every 1 hour. Built to demonstrate use of Modern Android development tools.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/Covid19-Notifier-IN" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/LiveStream-Flutter.png"
alt="LiveStream Flutter">
<div class="card-body">
<h5 class="card-title font-weight-bold">LiveStream - Flutter Package</h5>
<p class="card-text">Flutter package to which makes data communication easy among different
modules of your application.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/LiveStream-Flutter" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
<a href="https://pub.dev/packages/livestream" target="_blank"
class="btn btn-outline-primary">Pub.dev</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/LiveStream-Kt.png" alt="LiveStream Flutter">
<div class="card-body">
<h5 class="card-title font-weight-bold">LiveStream-kt Library</h5>
<p class="card-text">LiveStream is a simple class which makes communication easy among
different modules of your application.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/LiveStream-kt" 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/ScheduleFCM.png" alt="FCM Schedule">
<div class="card-body">
<h5 class="card-title font-weight-bold">🔔 FCM - Push Notification Scheduler⏰ (On Device 📱)
</h5>
<p class="card-text">📱Demo implementation to Schedule FCM Notifications on Android Device
using AlarmManager + WorkManager.</p>
</div>
<div class="card-body">
<a href="https://github.com/PatilShreyas/FCM-OnDeviceNotificationScheduler" target="_blank"
class="btn btn-outline-primary">View on GitHub</a>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/OpenSource/MaterialDialog.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title font-weight-bold">Material Dialogs for Android 📱</h5>