-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
990 lines (953 loc) · 39.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sonu Sourav</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900" rel="stylesheet" />
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css" />
<link rel="stylesheet" href="css/animate.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/aos.css" />
<link rel="stylesheet" href="css/ionicons.min.css" />
<link rel="stylesheet" href="css/flaticon.css" />
<link rel="stylesheet" href="css/icomoon.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/switch.css" />
<link rel="stylesheet" href="css/shake.css" />
<link rel="stylesheet" href="css/timeline.css" />
<link rel="stylesheet" href="css/skill-counter.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"
type="text/javascript"></script>
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light site-navbar-target nav-test"
id="ftco-navbar">
<div class="container" style="width: 100%;">
<button class="navbar-toggler js-fh5co-nav-toggle fh5co-nav-toggle" type="button" data-toggle="collapse"
data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<a class="navbar-brand turn-white" href="index.html">$$</a>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav nav ml-auto">
<li class="nav-item">
<a href="https://sonusourav.github.io/index.html#home-section" class="nav-link"><span
class="turn-white" id="home">Home</span></a>
</li>
<li class="nav-item">
<a href="https://sonusourav.github.io/index.html#about-section" class="nav-link"><span
class="turn-white" id="about">About</span></a>
</li>
<li class="nav-item">
<a href="https://sonusourav.github.io/index.html#skills-section" class="nav-link"><span
class="turn-white" id="skills">Skills</span></a>
</li>
<li class="nav-item">
<a href="https://sonusourav.github.io/index.html#timeline-section" class="nav-link"><span
class="turn-white" id="timeline">Timeline</span></a>
</li>
<li class="nav-item">
<a href="https://sonusourav.github.io/index.html#projects-section" class="nav-link"><span
class="turn-white" id="projects">Projects</span></a>
</li>
<li class="nav-item">
<a href="https://sonusourav.github.io/index.html#blog-section" class="nav-link"><span
class="turn-white" id="blog">Blog</span></a>
</li>
<li class="nav-item">
<a href="https://sonusourav.github.io/index.html#contact-section" class="nav-link"><span
class="turn-white" id="contact">Contact</span></a>
</li>
</ul>
</div>
<div class="toggle-box" style="margin-top: 10px;">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
</div>
</nav>
<section id="home-section" class="hero">
<div class="home-slider owl-carousel">
<div class="slider-item ">
<div class="overlay"></div>
<div class="container">
<div class="row d-md-flex no-gutters slider-text align-items-end justify-content-end"
data-scrollax-parent="true">
<div class="one-third order-md-last img" style="background-image:url(images/my_pic.png); ">
<div class="overlay"></div>
</div>
<div class="one-forth d-flex align-items-center ftco-animate"
data-scrollax=" properties: { translateY: '10%' }">
<div class="text">
<h2 class="shake">🖐️</h2>
<span class="subheading">Hello</span>
<h1 class="mb-4 mt-3">
I'm
<span>Sonu <br />
Sourav</span>
</h1>
<h2 class="mb-4"></h2>
<p>
<a href="https://drive.google.com/file/d/1JpPardxMbdnvO2_n1rDN4_AYeJMyr1k7/view?usp=sharing"
target="_blank" class="btn-custom">Download CV</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="slider-item">
<div class="overlay"></div>
<div class="container">
<div class="row d-flex no-gutters slider-text align-items-end justify-content-end"
data-scrollax-parent="true">
<div class="one-third order-md-last img" style="background-image:url(images/bg_cover.jpg);">
<div class="overlay"></div>
</div>
<div class="one-forth d-flex align-items-center ftco-animate"
data-scrollax=" properties: { translateY: '70%' }">
<div class="text">
<h1 class="mb-4 mt-3">I'm an <span>App Developer</span></h1>
<p>
<a href="https://drive.google.com/file/d/1JpPardxMbdnvO2_n1rDN4_AYeJMyr1k7/view?usp=sharing"
target="_blank" class="btn-custom">Download CV</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-about ftco-counter img ftco-section" id="about-section">
<div class="container">
<div class="row d-flex">
<div class="col-md-6 col-lg-5 d-flex">
<div class="img-about img d-flex align-items-stretch">
<div class="overlay"></div>
<div class="img d-flex align-self-stretch align-items-center"
style="background-image:url(images/about_cover.jpg);"></div>
</div>
</div>
<div class="col-md-6 col-lg-7 pl-lg-5 py-5">
<div class="row justify-content-start pb-3">
<div class="col-md-12 heading-section ftco-animate">
<h2 class="mb-4" style="font-size: 34px; text-transform: capitalize;">
About Me
</h2>
<p>
I am recent graduate from IIT Dharwad and have done my major in
Electrical Engineering. I am currently working as Software Development Engineer at ShareChat.
</p>
<span class="subheading">Life Philosophy</span>
<h5 class="test centre_text" data-hover="I shall either find a way or make one"
style="color: royalblue;">
Aut inveniam viam aut faciam
</h5>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="media block-6 services d-block ftco-animate mobile_middle">
<a href="https://githubcampus.expert/sonusourav/">
<img src="images/campus_experts_logo.png" alt="HTML tutorial"
style="width:200px;height:200px;border:0;" />
</a>
<div class="media-body">
<h3 class="heading mb-3">Ex GitHub Campus Expert</h3>
</div>
</div>
</div>
<div class="col-md-6">
<div class="media block-6 services d-block ftco-animate mobile_middle"
style="align-content: center;">
<a href="https://developers.google.com/programs/dsc/">
<img src="images/dsc_logo.png" alt="HTML tutorial"
style="width:200px;height:200px;border:0; margin-inline-start: 0px" />
</a>
<div class="media-body">
<h3 class="heading mb-3">Ex - Google DSC Lead</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section" id="skills-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Skills</span>
<h2 class="mb-4">Technical Expertise</h2>
<p>
Always ready to try hands-on new and emerging technologies
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Kotlin</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="80" aria-valuemin="0"
aria-valuemax="100" style="width:75%">
</div>
<span class="bar-fill">80%</span>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Android</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100" style="width:75%">
</div>
<span class="bar-fill">75%</span>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Firebase</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="60" aria-valuemin="0"
aria-valuemax="100" style="width:60%">
</div>
<span class="bar-fill">60%</span>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Java</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100" style="width:70%">
</div>
<span class="bar-fill">70%</span>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>VCS</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100" style="width:70%">
</div>
<span class="bar-fill">70%</span>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Cloud</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
</div>
<span class="bar-fill">50%</span>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>UI & UX</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="60" aria-valuemin="0"
aria-valuemax="100" style="width:60%">
</div>
<span class="bar-fill">60%</span>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Dart+</h3>
<div class="progress ">
<div class="progress-bar color-6 " role="progressbar" aria-valuenow="65" aria-valuemin="0"
aria-valuemax="100" style="width:65%">
</div>
<span class="bar-fill">65%</span>
</div>
</div>
</div>
</div>
<div class="row justify-content-center py-5 mt-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">What I Do</span>
<h2 class="mb-4">Strategy, design and a bit of magic</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center d-flex ftco-animate">
<div class="services-1">
<span class="icon">
<i class="flaticon-analysis"></i>
</span>
<div class="desc">
<h3 class="mb-5"><a href="#">Exploring</a></h3>
<h4 style="color: darkslategray;">Machine Learning</h4>
<h4 style="color: darkslategray;">Human Psychology</h4>
<h4 style="color: darkslategray;">Vacation destinations</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center d-flex ftco-animate">
<div class="services-1">
<span class="icon">
<i class="flaticon-flasks"></i>
</span>
<div class="desc">
<h3 class="mb-5"><a href="#">Creating</a></h3>
<h4 style="color: darkslategray;">Community Network</h4>
<h4 style="color: darkslategray;">Android Apps</h4>
<h4 style="color: darkslategray;">Websites</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center d-flex ftco-animate">
<div class="services-1">
<span class="icon">
<i class="flaticon-ideas"></i>
</span>
<div class="desc">
<h3 class="mb-5"><a href="#">Learning</a></h3>
<h4 style="color:darkslategray;">Cloud Support</h4>
<h4 style="color: darkslategray;">Design Sprints</h4>
<h4 style="color: darkslategray;">AIML</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="counter-section" id="counter">
<div class="container">
<div id="colorlib-counter" class="colorlib-counters"
style="background-image: url(images/background.jpg); border-radius: 10px;"
data-stellar-background-ratio="0.5">
<div class="row">
<div class="col-md-3 text-center counter-margin ">
<span class="colorlib-counter-label">Cups of coffee</span>
<div class="counter" data-count="500"
style="text-align: center; font-family: Poppins, Arial, sans-serif; ">
0
</div>
</div>
<div class="col-md-3 text-center counter-margin">
<span class="colorlib-counter-label">Projects</span>
<div class="counter" data-count="30" style=" align-content: center; font-family: Poppins, Arial, sans-serif;
">
0
</div>
</div>
<div class="col-md-3 text-center counter-margin">
<span class="colorlib-counter-label">Events</span>
<div class="counter" data-count="10" style=" align-content: center; font-family: Poppins, Arial, sans-serif;
">
0
</div>
</div>
<div class="col-md-3 text-center counter-margin ">
<span class="colorlib-counter-label">Lines of Code</span>
<div class="counter" data-count="80000" style=" align-content: center; font-family: Poppins, Arial, sans-serif;
">
0
</div>
</div>
</div>
</div>
</div>
<!-- container-->
</section>
<!-- counter-section-->
<section id="timeline-section" class="cd-container">
<div class="container" style=" padding-top: 10%; padding-bottom: 10%;">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Timeline</span>
<h2 class="mb-4">My journey so far</h2>
<p>
All my academic and professional experience with some milestones
achieved are summed up here:
</p>
</div>
</div>
<body>
<div id="cd-timeline" class="cd-container">
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-sharechat">
<img src="images/sharechat.png" alt="ShareChat" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Software Development Engineer </h6_black>
<h6_black class="timeline_text">Building <b style="color: rgb(36, 35, 35)">ShareChat</b> for Bharat,
India’s leading social media platform that operates exclusively in Indic languages
having more than 160 Million MAU (Monthly Active Users)
</h6_black>
<h5 class="timeline_text cd-date">January 2022</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-zomato">
<img src="images/zomato.png" alt="Zomato" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Software Development Engineer </h6_black>
<h6_black class="timeline_text">Worked at <b>Fitso</b> team at Zomato building
<b style="color: rgb(36, 35, 35)">Fitso</b> android app to redefine the way we define sports
in India
</h6_black>
<h5 class="timeline_text cd-date">October 2021</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-moneyview">
<img src="images/moneyview.png" alt="Matic Network" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Android Developer</h6_black>
<h6_black class="timeline_text">Worked as <b>Android Developer</b> in
<b style="color: rgb(36, 35, 35)">Money View</b> and implemented e-Kyc features in Money
View Loans app.
</h6_black>
<h5 class="timeline_text cd-date">May 2021</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-black">
<img src="images/matic-network.png" style="padding-top: 10px;" alt="Matic Network" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Android Developer Intern
</h6_black>
<h6_black class="timeline_text">Worked for 6 months as <b>Android Developer Intern</b> in
<b style="color: rgb(36, 35, 35)">Polygon</b> (Previously Matic Network) on the Matic
Wallet and Zippy app.
</h6_black>
<h5 class="timeline_text cd-date">June 2020</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-black">
<img src="images/parsec_logo.png" class="mobile_parsec" style="padding-top: 35px;"
alt="PARSEC 2020" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Overall Co-ordinator</h6_black>
<h6_black class="timeline_text">Served as <b>Overall Co-ordinator</b> in
<b style="color: black">PARSEC</b>,the Annual Techfest of IIT
Dharwad. Organized the first TechFest of IIT Dharwad with a
team of 60 people.
</h6_black>
<a href="https://parsec.iitdh.ac.in/" target="_blank" class="cd-read-more">Refer here
</a>
<h5 class=" timeline_text cd-date">Feb 2020</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-black">
<img src="images/inter-iit-logo.svg" alt="Inter-IIT Tech Meet 8.0" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Sclumberger Coding hackathon
</h6_black>
<h6_black class="timeline_text">Won Gold Medal at
<b style="color: black">Inter-IIT Tech Meet 8.0</b>, held at
IIT Roorkee in December 2019. The Inter IIT Tech Meet 8.0
Coding Hackathon was organized in partnership with
Schlumberger. The problem statement for this year's hackathon
was: Roads' Leasing and Maintenance System. The team had to
design a system for the government within 36 hours that could
crowd-source data about road construction progress and also
collect road quality feedback from the citizens. The team came
up with a working prototype SAFE - Society for Accident Free
Environment, with the strategy "Check and Balance" where the
contractor claims their progress and the citizens verify it.
</h6_black>
<a href="https://www.iitdh.ac.in/announcements_news.php" target="_blank"
class="cd-read-more">See profile
</a>
<h5 class="timeline_text cd-date">Dec 2019</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-yellow">
<img src="images/iitdh.png" alt="Picture" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">General Secretary, Technical
Affairs</h6_black>
<h6_black class="timeline_text">Elected as the new
<b style="color: black">General Secretary, Technical Affairs</b>
of IIT Dharwad for the academic session 2019-20.
</h6_black>
<h5 class="timeline_text cd-date">April 2019</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-black">
<img src="images/campus_experts_logo.png" alt="campus_experts_logo" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">GitHub Campus Expert</h6_black>
<h6_black class="timeline_text">As a <b style="color: black">GitHub Campus Expert</b>, we
receive training and mentorship from GitHub employees,
opportunities to participate in exclusive events, and support
to help students grow the developer community at our
university.</h6_black>
<a href="https://githubcampus.expert/sonusourav/" target="_blank" class="cd-read-more">See
profile
</a>
<h5 class="timeline_text cd-date">Feb 2019</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-black">
<img src="images/oss.png" class="mobile_oss" style="padding-top: 25px;" alt="OSS" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Founded Open Student Society (OSS)
</h6_black>
<h6_black class="timeline_text"><b style="color: black">Open Student Society</b> (OSS) is a
open source community for students to join together to
develop, innovate, share and grow together as a community. It
is important to note that OSS is not a club, rather a
community that welcomes students, from all branches and walks
of life, to participate and contribute. Some of the goals we
intend to achieve with you include: <br />- Organize
workshops, hackfests, and other great events! <br />- Share
skills, information, and resources among students to transform
our society. <br />- Support, create and work on revolutionary
Projects for public benefit. <br />- Make strong relations to
build an OSS'M ('awesome') community.</h6_black>
<a href="https://oss2019.github.io/" target="_blank" class="cd-read-more">Read more</a>
<h5 class="timeline_text cd-date">Feb 2019</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-black">
<img src="images/dsc_logo.png" alt="DSC" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Developer Student Club Lead
</h6_black>
<h6_black class="timeline_text"><b style="color: black">DSC</b> is a Google Developers
program aimed for university students to help them build their
mobile, web, machine learning, cloud skills. It is open to any
student, ranging from novice developers who are just starting,
to advanced developers who want to further enhance their
skills. It is intended to be a platform for students to learn
and collaborate as they solve problems around them with the
help of technology.</h6_black>
<a href="https://developers.google.com/programs/dsc/" target="_blank"
class="cd-read-more">Read more
</a>
<h5 class="timeline_text cd-date">Jan 2019</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-jio">
<img src="images/jio.png" alt="Jio" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Jio Developer Hackathon: Solve for
Million</h6_black>
<h6_black class="timeline_text">Stood Fourth Position in Coding Hackathon in Inter-IIT Tech
Meet 2018 organized by Reliance Jio in IIT Bombay.</h6_black>
<a href="https://drive.google.com/file/d/1WUt-cAv_Fel3fPqJdTzK2ysryw2C4W9N/view"
target="_blank" class="cd-timeline">See certificate</a>
<h5 class="timeline_text cd-date">Dec 2018</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-jio">
<img src="images/tcs.png" alt="TCS" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">SDE intern at TCS - IISc Bangalore
</h6_black>
<h6_black class="timeline_text">
This was a summer internship from March 1, 2018, to July 26,
2018, in Innovation Hub, IISc for a collaborative project of
TCS and IISc. I worked as an App developer and created an
Android solution for a Smart Wearable device. I developed an
interface on top of the BP algorithm that uses PPG
(Photoplethysmogram) and ECG (Electrocardiogram) signals,
replacing the existing techniques to decrease the complexity
of overall devices and also increases the precision level. I
was working under
<b style="color: rgb(92, 89, 89)">
Prof. Amaresh Chakrabarti</b>, Head, Innovation Lab and Chairman, Center of Product
Design
and Manufacturing and mentor
<b style="color: rgb(92, 89, 89)">Meghana Shadaksharaiah</b>,
Biomedical Engineer at TCS, IIsc Bangalore Campus.
</h6_black>
<a href="https://drive.google.com/file/d/1XhZWwN-5dOjw8o747szsYf9sU6F2XCis/view"
target="_blank" class="cd-timeline">See certificate</a>
<h5 class="timeline_text cd-date">Mar - July 2018</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-panasonic">
<img src="images/panasonic.png" alt="Panasonic" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Panasonic Ratti Chattr Scholar
</h6_black>
<h6_black class="timeline_text">
One of the 30 students in India selected for the
<b style="color: black">Panasonic Ratti Chattr Scholarship 2018.</b>
The Felicitation ceremony was held at New Delhi and was
honoured to receive scholarship award of ₹ 1,70,000 from
<b style="color: rgb(92, 89, 89)">Amitabh Kant</b> ,CEO, NITI
Aayog,
<b style="color: rgb(92, 89, 89)">Manish Sharma</b> ,CEO,
Panasonic India & South Asia and many other distinguised
guests.
</h6_black>
<a href="https://drive.google.com/drive/u/0/folders/1eDZYo_MqsdtMQaMOoQnUglE5hAGqfQaJ"
target="_blank" class="cd-read-more">See Pics</a>
<h5 class="timeline_text cd-date">Oct 2017</h5>
</div>
</div>
<!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-yellow">
<img src="images/iitdh.png" alt="IIT Dharwad" />
</div>
<div class="cd-timeline-content" style="background-color: #f8f9fb">
<h6_black class="timeline_title" style="color: royalblue">Joined IIT Dharwad</h6_black>
<h6_black class="timeline_text">My 4 year B.Tech journey started as an Electrical Engineer.
Started exploring width opportunities instead of depth
ones.</h6_black>
<h5 class="timeline_text cd-date">Aug 2017</h5>
</div>
</div>
</div>
</body>
</div>
</section>
<section class="ftco-section ftco-project" id="projects-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Accomplishments</span>
<h2 class="mb-4">My Projects</h2>
<p>
Some of the projects in my portfolio that I worked on .....
</p>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="project img ftco-animate img-2 d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/InstiGo_cover.jpg); "
onclick='window.location.href="https://github.com/sonusourav/InstiGo"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h1>
<a href="https://github.com/sonusourav/InstiGo" style="color: white">InstiGo</a>
</h1>
<span>Android App</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="row">
<div class="col-md-12">
<div class="project img ftco-animate d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/fitso.png);"
onclick='window.location.href="https://play.google.com/store/apps/details?id=com.getfitso.fitsosports"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h3>
<a href="https://play.google.com/store/apps/details?id=com.getfitso.fitsosports">Fitso</a>
</h3>
<span>Android App</span>
</div>
</div>
</div>
<div class="col-md-12">
<div class="project img ftco-animate d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/Kiwix.png);"
onclick='window.location.href="https://github.com/kiwix/kiwix-android"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h3>
<a href="https://github.com/kiwix/kiwix-android">Kiwix</a>
</h3>
<span>Android App</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/sharechat_logo.png);"
onclick='window.location.href="https://play.google.com/store/apps/details?id=in.mohalla.sharechat"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h3>
<a href="https://play.google.com/store/apps/details?id=in.mohalla.sharechat">ShareChat</a>
</h3>
<span>Android App</span>
</div>
</div>
</div>
<!-- <div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/oss.png);"
onclick='window.location.href="https://github.com/oss2019/oss2019.github.io"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h3>
<a href="https://github.com/oss2019/oss2019.github.io">OSS Website</a>
</h3>
<span>Web Design</span>
</div>
</div>
</div> -->
<!-- <div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/buzzerIIT.png);"
onclick='window.location.href="https://github.com/sonusourav/BuzzerIIt"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h3>
<a href="https://github.com/sonusourav/BuzzerIIt">BuzzerIIt</a>
</h3>
<span>Android App</span>
</div>
</div>
</div> -->
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/zippy.webp);"
onclick='window.location.href="https://play.google.com/store/apps/details?id=network.matic.zippymoney"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h3>
<a href="https://play.google.com/store/apps/details?id=network.matic.zippymoney">Zippy
Pay</a>
</h3>
<span>Android App</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/moneyview.png);"
onclick='window.location.href="https://play.google.com/store/apps/details?id=com.whizdm.moneyview.loans"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h3>
<a href="https://play.google.com/store/apps/details?id=com.whizdm.moneyview.loans">MoneyView Loans</a>
</h3>
<span>Android App</span>
</div>
</div>
</div>
<!-- <div class="col-md-12">
<div class="project img ftco-animate img-2 d-flex justify-content-center align-items-center project_border"
style="background-image: url(images/loans_app.webp); "
onclick='window.location.href="https://play.google.com/store/apps/details?id=com.whizdm.moneyview.loans"'>
<div class="overlay project_border"></div>
<div class="text text-center p-4">
<h1>
<a href="https://play.google.com/store/apps/details?id=com.whizdm.moneyview.loans&hl=en"
style="color: white">Money View Loans</a>
</h1>
<span>Android App</span>
</div>
</div>
</div> -->
</div>
</div>
</section>
<section class="ftco-section" id="blog-section">
<div class="container">
<div class="row justify-content-center mb-5 pb-5">
<div class="col-md-7 heading-section text-center ftco-animate">
<span class="subheading">Blog</span>
<h2 class="mb-4">My Blog</h2>
<p>Sharing my tech knowledge through my blogs</p>
</div>
</div>
<div class="row d-flex">
<div class="col-md-4 d-flex ftco-animate">
<div class="blog-entry justify-content-end">
<a href="hello_android.html" class="block-20"
style="background-image: url('images/hello_android.jpg');border-radius: 10px;">
</a>
<div class="text mt-3 float-right d-block">
<div class="d-flex align-items-center mb-3 meta">
<p class="mb-0">
<span class="mr-2">March 13, 2019</span>
<a href="index.html" class="mr-2">Sonu Sourav</a>
</p>
</div>
<h3 class="heading">
<a class="centre_text" href="hello_android.html">Hello Android! </a>
</h3>
<p>
Hello Android! is a part of Android App Development (AAD)
series to help students learn building Android apps on Android
Studio.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section contact-section ftco-no-pb" id="contact-section">
<div class="container">
<div class="row justify-content-center mb-5 pb-3">
<div class="col-md-7 heading-section text-center ftco-animate">
<span class="subheading">Contact</span>
<h2 class="mb-4">Let's Connect 👋</h2>
</div>
</div>
<div class="row no-gutters block-9">
<div class="col-md-6 order-md-last d-flex">
<form method="POST" action="https://formspree.io/[email protected]"
class="bg-light p-4 p-md-5 contact-form">
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="Your Name" />
</div>
<div class="form-group">
<input type="email" class="form-control" name="_replyto" placeholder="Your Email" />
</div>
<div class="form-group">
<input type="url" class="form-control" placeholder="Your LinkedIn Url" />
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject" />
</div>
<div class="form-group">
<textarea name="message" id="" cols="30" rows="10" class="form-control"
placeholder="Message"></textarea>
</div>
<div class="form-group">
<input type="submit" value="Send Message" class="btn btn-primary py-3 px-5" />
</div>
</form>
</div>
<div class="col-md-6 d-flex">
<div class="img" style="background-image: url(images/arabian_sea.jpg);"></div>
</div>
</div>
</div>
</section>
<footer class="ftco-footer ftco-section">
<div class="container">
<div class="row mb-5">
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2 centre_text">Reach out to me here 👇</h2>
<p>
Feel free to ping me for volunteering, discussing your ideas or
grabbing a cup of coffee.
</p>
<ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5 centre_text">
<li class="ftco-animate">
<a href="https://www.linkedin.com/in/sonu-sourav-37b459149/"><span
class="icon-linkedin"></span></a>
</li>
<li class="ftco-animate">
<a href="https://github.com/sonusourav"><span class="icon-github"></span></a>
</li>
<li class="ftco-animate">
<a href="https://www.facebook.com/sonusouravdx"><span class="icon-facebook"></span></a>
</li>
</ul>
</div>
</div>
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2 centre_text">Have a Question?</h2>
<div class="block-23 mb-3">
<ul>
<li>
<span class="icon icon-map-marker"></span><span class="text">#11, 7th Block, 1st
Main, 1st Cross, Kormangala,
Bangalore, Karnataka, India PIN: 560095</span>
</li>
<li>
<a href="https://www.skype.com/en/"><span class="icon icon-phone"></span><span
class="text">+91 9916228725</span></a>
</li>
<li>
<a href="https://www.skype.com/en/"><span class="icon icon-skype"></span><span
class="text">sonusouravdx001</span></a>
</li>
<li>
<a href="#"><span class="icon icon-envelope"></span><span
class="text">[email protected]</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div>
<h2 class="ftco-heading-2" style="text-align: center; color: white">
Made with ❤️ by <b>Sonu Sourav</b>
</h2>
</div>
</div>
</footer>
<!-- loader -->
<div id="ftco-loader" class="show fullscreen">
<svg class="circular" width="48px" height="48px">
<circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee" />
<circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10"
stroke="#F96D00" />
</svg>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.animateNumber.min.js"></script>
<script src="js/scrollax.min.js"></script>
<script src="js/main.js"></script>
<script src="js/switch.js"></script>
<script src="js/timeline.js"></script>
<script src="js/jquery.countTo.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/skill_counter.js"></script>
<a href="#" id="scroll" style="display: none;"><span></span></a>
</body>
</html>