-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·932 lines (841 loc) · 43.8 KB
/
Copy pathindex.html
File metadata and controls
executable file
·932 lines (841 loc) · 43.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>@prayansh</title>
<link rel="icon" href="favicon.ico" type="image/ico"/>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Fonts -->
<!--Verification Tags-->
<meta name="trustpilot-one-time-domain-verification-id" content="27b3a596-368d-4f0d-b4e7-848c63eb0f00"/>
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top">@prayansh</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#portfolio">Projects</a>
</li>
<li>
<a class="page-scroll" href="#connect">Connect</a>
</li>
<li>
<a class="page-scroll boxed" href="#resume">Resume</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<!--<div class="intro-lead-in">Welcome To Our Studio!</div>-->
<div id="intro" class="intro-heading">
<span class="dsc_1">Student</span>
<span class="dsc_2 hidden">Developer</span>
<span class="dsc_3 hidden">Geek</span>
</div>
<!--<a href="#services" class="page-scroll btn btn-xl">Tell Me More</a>-->
</div>
</div>
</header>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-md-4 text-center">
<h2 class="section-heading">Who I am</h2>
<img src="img/me.png" class="icon img-responsive">
</div>
<div class="col-md-8">
<p class="large text-muted">My name is Prayansh Srivastava. I am an experienced software developer who
is always looking for new challenges. I grew up in the hustle-bustle life of Mumbai, India but I am
currently studying in my third year at Computer Science at The University of British Columbia,
Vancouver Campus.
<br><br> I have been developing on the Android platform since the age of sixteen.
Several apps developed by me are available on the google play store. I have also hacked tons of applications
on Python, C, HTML/CSS and Javascript. I also prefer to actively develop new applications which can help
with my daily activities and these tend to span over a spectrum of platforms including
but not limited to Android, Chrome, Electron applications.
<br><br>I am extremely passionate about technology and am ever fascinated with new discoveries
and inventions. Aside from that my other interests include playing video games,
exploring new places, watching movies and discovering new and exciting technologies.
</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Projects</h2>
<h3 class="hidden section-subheading text-muted">I <3 to <code>CODE</code></h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<div class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-chrome fa-3x"></i>
<h4>Smogon Popups</h4>
<a href="#smogon" class="custom-btn portfolio-link" data-toggle="modal">View
Project</a>
</div>
</div>
<img src="img/portfolio/smogon.png" class="img-responsive project-cover" alt="">
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<div class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-android fa-3x"></i>
<h4>Play Ten</h4>
<a href="#playten" class="custom-btn portfolio-link" data-toggle="modal">View
Project</a>
</div>
</div>
<img src="img/portfolio/ttt.png" class="img-responsive project-cover" alt="">
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<div class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-android fa-3x"></i>
<h4>Play It</h4>
<a href="#playit" class="custom-btn portfolio-link" data-toggle="modal">View
Project</a>
</div>
</div>
<img src="img/portfolio/play.png" class="img-responsive project-cover" alt="">
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<div class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-wrench fa-3x"></i>
<h4>Roboduino</h4>
<a href="#roboduino" class="custom-btn portfolio-link" data-toggle="modal">View
Project</a>
</div>
</div>
<img src="img/portfolio/roboduino.png" class="img-responsive project-cover" alt="">
</div>
</div>
<!--<a href="#renewpass" class="portfolio-link" data-toggle="modal">-->
<!--<div class="portfolio-hover">-->
<!--<div class="portfolio-hover-content">-->
<!--<i class="fa fa-android fa-3x"></i>-->
<!--</div>-->
<!--</div>-->
<!--<img src="img/portfolio/renew_pass.png" class="img-responsive" alt="">-->
<!--</a>-->
<!--<div class="portfolio-caption">-->
<!--<h4>Renew Pass</h4>-->
<!--<p class="text-muted">Android Application (Contributor)</p>-->
<!--</div>-->
</div>
</div>
</section>
<!-- Connect Section -->
<section id="connect">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Dont be shy to say Hello!</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-lg-offset-3">
<a href="https://www.facebook.com/prayansh"><i class="social-button col-md-1 fa fa-facebook fa-2x"></i></a>
<a href="https://github.com/prayansh"><i class="social-button col-md-1 fa fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/prayansh"><i
class="social-button col-md-1 fa fa-linkedin fa-2x"></i></a>
<a href="https://twitter.com/prayansh97"><i class="social-button col-md-1 fa fa-twitter fa-2x"></i></a>
<a href="https://plus.google.com/+PrayanshSrivastava"><i
class="social-button col-md-1 fa fa-google-plus fa-2x"></i></a>
<a href="mailto:prayansh@gmail.com?subject=Hey+There"><i
class="social-button col-md-1 fa fa-envelope fa-2x"></i></a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="resume">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Resume</h2>
<a href="#resume-modal" class="custom-btn portfolio-link" data-toggle="modal">View</a>
<a href="resume.pdf" target="_blank" class="custom-btn">Download</a>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-12">
<span class="copyright">Copyright © Prayansh Srivastava 2016 • Student • Developer •
Geek</span>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<div>Based on theme by StartBootstrap</div>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Tic Tac Toe Project -->
<div class="portfolio-modal modal fade" id="playten" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2><i class="fa fa-android" aria-hidden="true"></i> Play Ten </h2>
<p class="item-intro text-muted">A simple tic tac toe game with a mind-blowing twist to get you
surely addicted.</p>
<div class="row">
<div class="col-lg-14 ">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/ttt/img1.png" alt="">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/ttt/img2.png" alt="">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/ttt/img3.png" alt="">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/ttt/img4.png" alt="">
</div>
</div>
<p>A simple tic tac toe game with a simple yet stunning twist. With 9 boards and 10 times the
fun, the game is made in a way such that winning does not come easily. Steer your opponent
into oblivion while keeping your advantage and you just might win.</p>
<p>
Want to view the source code? You can find it at <a
href="https://github.com/prayansh/PlayTen"><i
class="fa fa-github fa-lg"></i></a></p>
<ul class="list-inline">
<li>Date: May 2016</li>
<li>Category: Android Application</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i>
Close Project
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Play It -->
<div class="portfolio-modal modal fade" id="playit" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2><i class="fa fa-android " aria-hidden="true"></i> Play It</h2>
<p class="item-intro text-muted">A minimalistic android music player. (Now unpublished)</p>
<div class="row">
<div class="col-lg-14">
<img class="col-lg-3 img-responsive project-img" src="img/portfolio/play/play_1.png"
alt="">
<img class="col-lg-3 img-responsive project-img" src="img/portfolio/play/play_2.png"
alt="">
<img class="col-lg-3 img-responsive project-img" src="img/portfolio/play/play_3.png"
alt="">
<img class="col-lg-3 img-responsive project-img" src="img/portfolio/play/play_4.png"
alt="">
</div>
</div>
<p>A basic music player for the android platform donned with a minimalistic UI. Gestures on the
now playing screen includes sliding the image left to skip the songs and also shaking your
device to shuffle your songs. With integrated voice recognition simple commands are just a
tap away. Basic commands available such as – ‘Play’, ’Pause’, ’Next’, ’Previous’, ’Shuffle’,
’Mix It Up’, ’I’m Feeling Lucky’ and many more. As of May 2016 the app had over 22,000
downloads</p>
<ul class="list-inline">
<li>Date: December 2013</li>
<li>Category: Android Application</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i>
Close Project
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Roboduino Project -->
<div class="portfolio-modal modal fade" id="roboduino" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2><i class="fa fa-wrench" aria-hidden="true"></i> Roboduino</h2>
<p class="item-intro text-muted">A bluetooth controlled car built on android.</p>
<div class="row">
<div class="col-lg-14 ">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/robo/img1.jpg" alt="">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/robo/img2.jpg" alt="">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/robo/img3.jpg" alt="">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/robo/img4.jpg" alt="">
</div>
</div>
<p>A bluetooth controlled car built on an arduino uno. It utilises a 4-wheel differential for
turning and navigation. It utilises a bluetooth module to communicate with an android
device via an app that I developed specifically for communicating with the car. My very
first arduino project, which utilises a small power bank as the primary battery source.</p>
<ul class="list-inline">
<li>Date: June 2015</li>
<li>Category: Arduino Project</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i>
Close Project
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Smogon Project -->
<div class="portfolio-modal modal fade" id="smogon" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2><i class="fa fa-chrome" aria-hidden="true"></i> Smogon Popups</h2>
<p class="item-intro text-muted">A chrome extension to display popovers at <i>www.smogon.com</i>
for DOM elements </p>
<div class="row">
<div class="col-lg-14 ">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/smogon/img1.png" alt="">
<img class="col-lg-3 img-responsive project-img center-block"
src="img/portfolio/smogon/img2.png" alt="">
</div>
</div>
<p>Chrome extension to display popovers for pokemon abilities and items making the website easy
to navigate.</p>
<p>
Want to view the source code? You can find it at <a
href="https://github.com/prayansh/smogon-pops"><i
class="fa fa-github fa-lg"></i></a></p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Category: Chrome Extension</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i>
Close Project
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class=" hidden portfolio-modal modal fade" id="placeholders" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/golden-preview.png" alt="">
<p>Start Bootstrap's Agency theme is based on Golden, a free PSD website template built by <a
href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Golden is a modern and
clean one page web template that was made exclusively for Best PSD Freebies. This template
has a great portfolio, timeline, and meet your team sections that can be easily modified to
fit your needs.</p>
<p>You can download the PSD template in this portfolio sample item at <a
href="http://freebiesxpress.com/gallery/golden-free-one-page-web-template/">FreebiesXpress.com</a>.
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i>
Close Project
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Resume -->
<div class="portfolio-modal modal fade" id="resume-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<h1>Prayansh Srivastava</h1>
<div class="text-muted large">
<!--<a class="plain-link" href="mailto:mail@prayansh.me">mail@prayansh.me</a> •-->
<a class="plain-link" href="http://prayansh.me/">prayansh.me</a> •
<a class="plain-link" href="http://github.com/prayansh">github/prayansh</a>
</div>
<hr>
<div class="row resume-block">
<div class="col-md-3">
<h3 class="resume-heading">Education</h3>
</div>
<div class="col-md-9">
<div class="experience-row">
<h4 class="resume-title">Bachelors of Science in Computer Science</h4>
<div class="resume-desc">University of British Columbia, Vancouver, Canada, August 2015 -
Present
</div>
</div>
</div>
</div>
<div class="row resume-block">
<div class="col-md-3">
<h3 class="resume-heading">Work</h3>
</div>
<div class="col-md-9">
<div class="experience-row">
<h4 class="resume-title ">MOBILE VISION RESEARCH INTERN, (JUNE 2018 – AUGUST 2018)</h4>
<div class="resume-desc bold">TransPacks Pvt. Ltd., IIT Kanpur</div>
<div class="resume-desc">
<ul>
<li>Designed & implemented the camera module which enables application to support legacy & new camera API’s
</li>
<li>Planned and executed changes to convert existing codebase into an SDK
</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title ">JUNIOR SOFTWARE DEVELOPER, CO-OP (MAY 2017 – DECEMBER 2017)</h4>
<div class="resume-desc bold">Absolute Software Corporation, Vancouver</div>
<div class="resume-desc">
<ul>
<li>Contributing to the Android product for Data and Device Security
</li>
<li>Fixing defects in existing versions of the applications as well as developing new
features, unit tests, build and development tools
</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title ">DEVELOPER, CO-OP (JANUARY 2017 – APRIL 2017)</h4>
<div class="resume-desc bold">Awesense Inc. Vancouver</div>
<div class="resume-desc">
<ul>
<li>Worked as a data developer tasked with creating simulation data of electrical
grids for the company's software
</li>
<li>Worked on the company's new project to increase volume of data ingestion and reduce
processing time
</li>
<li>In charge of maintaining the company's Datagen Module
</li>
<li>Succeeded in creating a self-sufficient, live data generation virtual machine which
serves as a demo for potential clients
</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title ">TEACHING ASSISTANT (SEPTEMBER 2016 – DECEMBER 2016)</h4>
<div class="resume-desc bold">CPSC 210, University of British Columbia, Vancouver</div>
<div class="resume-desc">
<ul>
<li>Worked as an undergraduate TA for Computer Science course teaching Software
Construction using Java
</li>
<li>Job responsibility includes managing lab sections and hosting office hours</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title ">PROJECT TRAINEE (JUNE 2016 –AUGUST 2016)</h4>
<div class="resume-desc bold">Larsen & Toubro, Research and Development, Mumbai, June 2016 -
August 2016
</div>
<div class="resume-desc">
<ul>
<li>Worked in the R&D department at Larsen & Toubro, a Technology, Engineering,
Construction and Manufacturing company
</li>
<li>Tasked with exploring the ROS platform and utilize ROS for various image
transformation using OpenCV
</li>
<li>Developed a software for automated lane detection on a marked road, through a
webcam/video feed
</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title ">Intern (JUNE 2015 – JULY 2015)</h4>
<div class="resume-desc bold">TCS IT Solutions, Mumbai, June 2015 - July 2015</div>
<div class="resume-desc">
<ul>
<li>
Worked in the IoT department at Tata Consultancy Services IT, Software Company
</li>
<li>
Tasked with communicating with the building’s sensors built over the MODBUS
protocol on a Java environment
</li>
<li>Developed a software which runs periodically to ascertain the building’s power
consumption and hourly electric usage
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row resume-block">
<div class="col-md-3">
<h3 class="resume-heading">Personal Projects</h3>
</div>
<div class="col-md-9">
<div class="experience-row">
<h4 class="resume-title">UPass Renew (Lead Dev, October 2017)</h4>
<div class="resume-desc">
<ul>
<li>Built a server-side REST Java web app using Spring to automate renew process</li>
<li>Built a client-side electron app and chrome extension to
communicate with the server to act as an interface between user and server</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title">RL DISCORD BOT (Lead Dev, August 2017)</h4>
<div class="resume-desc">
<ul>
<li>A discord bot built on node.js framework, functioning to keep track of members’ ranks and
tracks in-game performance, deployed onto Heroku</li>
<li>Communicates with MongoDB to store/retrieve user data and ranks</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title">Smogon Popups (Lead Dev, December 2016)</h4>
<div class="resume-desc">
<ul>
<li>A chrome extension for <i>www.smogon.com</i> to display popups for abilities and
items making site navigation easier and more intuitive</li>
</ul>
</div>
</div>
<!--<div class="experience-row">-->
<!--<h4 class="resume-title">Currency App (LEAD DEV, AUGUST 2016)</h4>-->
<!--<div class="resume-desc">-->
<!--<ul>-->
<!--<li>A currency conversion Android app featuring quick conversion for popular-->
<!--currencies-->
<!--</li>-->
<!--<li>Developed with Reactive Programming Principles</li>-->
<!--<li>Data is sourced from Fixer.io API</li>-->
<!--<li>Developing feature to display trend of currency rates</li>-->
<!--</ul>-->
<!--</div>-->
<!--</div>-->
<div class="experience-row">
<h4 class="resume-title">Play 10 (LEAD DEV, APRIL 2016)</h4>
<div class="resume-desc">
<ul>
<li>A spin-off to the age-old game of Tic Tac Toe featuring nine small boards, coming
together to form one big tic tac toe board
</li>
<li>Features offline multiplayer and a Player vs Computer Mode</li>
<li>Full-stack development with a minimal UI using shapes, improving user experience
</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title">Bluetooth RoboDuino (LEAD, MAY 2015)</h4>
<div class="resume-desc">
<ul>
<li>
An Arduino based four-wheel differential car controlled from Android device via
Bluetooth
</li>
<li>
On top of pre-made car chassis, Arduino was integrated with LED bulbs, motors and
Bluetooth shield
</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title">Play It (LEAD DEV, SEPTEMBER 2013)</h4>
<div class="resume-desc">
<ul>
<li>
A light-weight Android app to play music available locally on the device
</li>
<li>
Scans through device to find all available music and supports most audio formats
</li>
<li>
Uses Google’s voice recognition API to enable voice commands in the application
</li>
<li>
Received over 22,000 downloads on the Google Play Store (unpublished) with a rating
of 3.86/5
</li>
<li>Highly commended for it’s beautiful UI and intuitive user experience</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row resume-block">
<div class="col-md-3">
<h3 class="resume-heading">Awards</h3>
</div>
<div class="col-md-9">
<div class="experience-row">
<h4 class="resume-title">Dean's Honour List (May 2016)</h4>
<div class="resume-desc">Awarded to students with a standing of 80%, faculty-wide at University
of British Columbia
</div>
</div>
<div class="experience-row">
<h4 class="resume-title">Brand Ambassador of R.N. Podar School (April 2015)</h4>
<div class="resume-desc">Awarded to students to recognize their active participation outside
academics
</div>
</div>
<div class="experience-row hidden">
<h4 class="resume-title">Outstanding Performance in ICSE X Board Exams</h4>
<div class="resume-desc">Scored a perfect score in the subjects of Computer Applications and
Mathematics at V.C.W. Arya Vidya Mandir, Mumbai in the ICSE X Board Examinations.
</div>
</div>
</div>
</div>
<div class="row resume-block">
<div class="col-md-3">
<h3 class="resume-heading">Other Projects</h3>
</div>
<div class="col-md-9">
<div class="experience-row">
<h4 class="resume-title">RENEWPASS (CONTRIBUTOR, JANUARY 2016)</h4>
<div class="resume-desc">
<ul>
<li>RenewPass is an open-source android application automating the renewal of a
student’s U-Pass, which gives students access to bus, SeaBus and SkyTrain services
within Metro Vancouver, as well as discounts on West Coast Express
</li>
<li>Contributed to the Front end design of the application</li>
<li>Currently working on making an iOS port of the application</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title">Maze Solver (November 2015)</h4>
<div class="resume-desc">
<ul>
<li>A course assignment to solve an NxN maze with walls, spaces and goal squares</li>
<li>Used brute-force algorithm to find the shortest, longest and list of paths from
origin
square to goal square
</li>
<li>Converted code from racket to Java</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row resume-block">
<div class="col-md-3">
<h3 class="resume-heading">Volunteer Experience</h3>
</div>
<div class="col-md-9">
<div class="experience-row">
<h4 class="resume-title">Head of Technical Operations and Design, <a
href="http://podarsummit.wix.com/podarsummit2014" target="_blank">Podar Summit 2014</a>
</h4>
<div class="resume-desc">
<ul>
<li>Podar Summit is a model united nations conference hosting hundreds of students from
all of Mumbai
</li>
<li>Led a team of 10 overlooking technical aspects and graphic design
</li>
<li>Created event website expanding the event's targeted audience tenfold
</li>
<li>Developed an online registration system reducing logistic issues and strengthened
the event’s outreach
</li>
</ul>
</div>
</div>
<div class="experience-row">
<h4 class="resume-title">Head of Technical Operations, <a href="http://prayans6.wix.com/aura"
target="_blank">Aura 2014</a></h4>
<div class="resume-desc">
<ul>
<li>An intra-school cultural event hosted by RN Podar’s Interact Club</li>
<li>Single-handedly developed the website for the event increasing the number of
participants and budget for the event
</li>
<li>Responsible for all IT related tasks and digital graphic media for the event</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row resume-block">
<div class="col-md-3">
<h3 class="resume-heading">Skills</h3>
</div>
<div class="col-md-9">
<div class="experience-row">
<div class="resume-desc">
<table style="width:100%">
<tr>
<th>Languages:</th>
<th>Software:</th>
<th>Database:</th>
</tr>
<tr>
<td>Java (Android) (5 yrs)</td>
<td>Eclipse</td>
<td>SQL</td>
</tr>
<tr>
<td>HTML/CSS (2 yrs)</td>
<td>Android Studio</td>
</tr>
<tr>
<td>JavaScript (2 yrs)</td>
<td>IntelliJ IDE's</td>
</tr>
<tr>
<td>C++ (2 yrs)</td>
<td>Adobe Photoshop</td>
</tr>
<tr>
<td>Python (2 yrs)</td>
<td>Adobe Illustrator</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<a href="resume.pdf" target="_blank" class="custom-btn-inv">Download a copy</a>
</div>
</div>
</div>
<!-- Vivus -->
<script src="js/vivus.js"></script>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/agency.js"></script>
</body>
</html>