-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1298 lines (1058 loc) · 39.4 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>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Dev Shah</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style>
.post-thumbnail {
margin-bottom: 20px;
overflow: hidden;
}
.font1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
}
.color1 {
color: #83F52C;
}
.icon_language i {
font-size: 2.5rem;
}
.style_0 {
color: #4B0082;
font-size: 1.2rem;
line-height: 1;
letter-spacing: 0.13rem;
}
.text-center {
text-align: center;
}
</style>
<body id="top">
<!-- header
================================================== -->
<header>
<link rel="stylesheet"
href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
<div class="row">
<div class="top-bar">
<a class="menu-toggle" href="#"><span>Menu</span></a>
<div class="logo">
<span><strong>DEV SHAH</strong></span>
</div>
<nav id="main-nav-wrap">
<ul class="main-navigation">
<li class="current"><a class="smoothscroll" href="#intro" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#resume" title="">Resume</a></li>
<li><a class="smoothscroll" href="#portfolio" title="">Projects</a></li>
<li><a class="smoothscroll" href="#services" title="">Learning</a></li>
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
</nav>
</div> <!-- /top-bar -->
</div> <!-- /row -->
</header> <!-- /header -->
<!-- intro section
================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<h5>Hello, World!</h5>
<h1>I'm Dev Shah.</h1>
<p class="intro-position">
<span>Senior DevOps Engineer</span>
<span>Investor</span>
<span>Blogger</span>
</p>
<br><br><br><br>
<a class="button stroke smoothscroll" href="#about" title="">More About Me</a>
</div>
</div>
</div> <!-- /intro-content -->
<ul class="intro-social">
<li><a href="https://medium.com/@devshah1"><i class="fa fa-pencil"></i></a></li>
<li><a href="https://www.linkedin.com/in/dev-shah-20324b80/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.github.com/devsh4"><i class="fa fa-github"></i></a></li>
</ul> <!-- /intro-social -->
</section> <!-- /intro -->
<!-- about section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<h2>ABOUT</h2>
<h1>Let me introduce myself</h1>
<div class="intro-info">
<img src="images/profile_pic.jpeg" alt="Profile Picture" style="position:relative; right:8px;"
class="profilepic">
<p style="position:relative; top:50px;"><strong> Developer by background, Automation Specialist by
profession <i class="em em-sunglasses"></i></strong> <br>A diverse autodidact tech
professional with a
blended experience of 6+ years in DevOps, Machine Learning and automation.
Passionate about coding for automation than feature development.
</p>
<br>
</div>
</div>
</div> <!-- /section-intro -->
<div class="row about-content">
<div class="col-six tab-full">
<ul class="info-list">
<li>
<strong>Fullname:</strong>
<span>Dev Abhay Shah</span>
</li>
<li>
<strong>Nationality:</strong>
<span>Indian</span>
</li>
<li>
<strong>Ideal Job:</strong>
<span><i>Looking for a Senior DevOps role to fulfill my passion of coding for automation and solving CI/CD, infrastructure automation, MLOps
challenges at scale.
</i></span>
<br><br>
</li>
</ul> <!-- /info-list -->
</div>
<div class="col-six tab-full">
<h3>Skills</h3>
<h4>Cloud & CI/CD</h4>
<img src="images/azure.png" style="position:relative; left:15px;" width="85" height="100"> </img>
<img src="images/aws.png" style="position:relative; left:15px;" width="85" height="100">
</img>
<img src="images/docker.png" style="position:relative; left:35px;" width="75"> </img>
<br><br>
<h4>TEST AUTOMATION</h4>
<img src="images/cypress.png" width="120"></img> <img src="images/selenium.jpg" width="85"></img>
<img src="images/detox.jpeg" style="position:relative; top:-10px;" width="65"></img>
<br>
<img src="images/jmeter.jpg" style="position:relative; top:11px;" width="105"></img>
<br><br>
<h4> VERSION CONTROL </h4>
<img src="images/git.png" style="position:relative; top:5px;" width="55"></img>
<br><br>
<h3>LANGUAGES</h3>
<ul class="skill-bars">
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>JavaScript</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>Python</strong>
</li>
<li>
<div class="progress percent80"><span>85%</span></div>
<strong>YAML</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>Bash</strong>
</li>
<li>
<div class="progress percent80"><span>75%</span></div>
<strong>Java</strong>
</li>
<li>
<div class="progress percent70"><span>75%</span></div>
<strong>SQL</strong>
</li>
</ul> <!-- /skill-bars -->
</div>
</div>
<div class="row button-section">
<h3>INTERESTS </h3>
<p>
<img src="images/ml.png" width="100"></img>
<img src="images/sports.png" width="100" style="position:relative; left:35px; top:-10px;"></img>
<img src="images/stocks.jpg" width="100" style="position:relative; left:75px; top:-10px;"></img>
</p>
</div>
<br><br>
<div class="row button-section">
<div class="col-twelve">
<a href="#contact" title="Hire Me" class="button stroke smoothscroll">Hire Me</a>
<a href="assets/myresume.pdf" target="_blank" title="Download CV" class="button button-primary"
data-type="document">Download CV</a>
</div>
</div>
</section> <!-- /process-->
<!-- stats Section
================================================== -->
<section id="stats" class="count-up">
<div class="row">
<div class="col-twelve">
<div class="block-1-6 block-s-1-3 block-tab-1-2 block-mob-full stats-list">
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-pencil-ruler"></i>
</div>
<h3 class="stat-count">
14
</h3>
<h5 class="stat-title">
Projects Done
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="fa fa-graduation-cap"></i>
</div>
<h3 class="stat-count">
2
</h3>
<h5 class="stat-title">
Degrees
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="fa fa-certificate"></i>
</div>
<h3 class="stat-count">
4
</h3>
<h5 class="stat-title">
Certification
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="fa fa-edit"></i>
</div>
<h3 class="stat-count">
3
</h3>
<h5 class="stat-title">
Publications
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="fa fa-medium"></i>
</div>
<h3 class="stat-count">
37
</h3>
<h5 class="stat-title">
Blog Articles
</h5>
</div> <!-- /stat -->
</div> <!-- /stats-list -->
</div> <!-- /twelve -->
</div> <!-- /row -->
</section> <!-- /stats -->
<!-- resume Section
================================================== -->
<section id="resume" class="grey-section">
<div class="row section-intro">
<div class="col-twelve">
<h2>WORK EXPERIENCE</h2>
<h1>More of my credentials</h1>
</div>
</div> <!-- /section-intro-->
<div class="row resume-timeline">
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Senior DevOps Engineer</h3>
<h4>Borrowell</h4>
<p>Nov 2019 - Present</p>
</div>
<div class="timeline-content">
<h4><img src="assets/borrowell.png" height="120" width="120"> </img></h4>
Automate developer processes to <strong> reduce feedback loops & speed up shipping of features. </strong> Design, build and maintain CI/CD pipelines for development teams
in a cloud native microservices architecture. Assisting in <strong> production deployments for a 2M+ user base </strong> & debugging production issues & monitoring system uptimes.
<strong> PoC & integrate better fit tools & frameworks </strong> several areas in the application - accessibility, mobile CI, infra, testing &
security.
In charge of <strong> end to end infrastructure automation </strong> from source code uptill monitoring/alerting for web & mobile applications.
<br><br>
<h4>HIGHLIGHTS</h4>
<span style="color:#83F52C;">✔ </span> Co-owning delivery of IAC for Azure ecosystem
<br>
<span style="color:#83F52C;">✔ </span> Assisted in implementing CD for multiple microservices
<br>
<span style="color:#83F52C;">✔ </span> Led test framework migration (Selenium to Cypress) to reduce test cycle time by 90% thereby unlocking CI/CD
<br>
<span style="color:#83F52C;">✔ </span> Optimized & reduced test infrastructure costs by 94% annually ~$23,500
<br>
<span style="color:#83F52C;">✔ </span> Automation thought leader, mentoring a team of 3-4 junior developers & automation testers
<br>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Tech Lead</h3>
<h4>Myplanet</h4>
<p>June - Nov 2019</p>
</div>
<div class="timeline-content">
<h4><img src="assets/mp.png" height="160" width="120"> </img></h4>
Selected the tech stack and <strong> designed the architecture </strong> for a <a href=https://codeburst.io/how-to-build-a-serverless-e-commerce-portal-48cdb6d49474>
headless ecommerce application.</a> <strong> Led a team of 4 developers </strong> to build a AWS, react, gatsby powered serverless application.
<br><br>
Solely responsible for building the <strong> backend and serverless components. </strong> In charge of the project from inception (requirements) to delivery (release).
<br><br>
<h4>HIGHLIGHTS</h4>
<span style="color:#83F52C;">✔ </span> Set a new standard for high quality project delivery
<br>
<span style="color:#83F52C;">✔ </span> Company's 1<sup>st</sup> project to successfully implement continuous delivery (CD)
<br>
<span style="color:#83F52C;">✔ </span> Played multiple roles: Backend developer, DevOps, Test Automation
<br>
<span style="color:#83F52C;">✔ </span> Highly satisfied client extended the contract for 3 more phases
<br>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>SDET</h3>
<h4>Myplanet</h4>
<p>Jun 2018 - Jun 2019</p>
</div>
<div class="timeline-content">
<h4><img src="assets/mp.png" height="160" width="120"> </img></h4>
Initially started as a SDET to take charge of <strong>full stack QA
activities</strong>.
This included <strong> automation (web, api, visual), performance, functional
and
accessibility testing.</strong>
Led the charge for hiring 2 other SDETs and acted as a <strong> skills mentor
</strong>
for them.
<br><br>
Next I worked as a developer for building out a <strong> machine learning POC
for
recommender systems. </strong>
Researched different CV and image recognition <strong> MLaaS API’s </strong> and
built <a
href="https://medium.com/towards-artificial-intelligence/why-ai-is-not-a-magic-wand-ee172545cecf">
this workflow. </a>
<br><br>
<h4>HIGHLIGHTS</h4>
<span style="color:#83F52C;">✔ </span> Led & expanded the QA team and nurtured a
better testing culture
<br>
<span style="color:#83F52C;">✔ </span> Secured Automation & ML projects of $50K+ based
on POC's
<br>
<span style="color:#83F52C;">✔ </span> QA & Automation thought leader &
influencer
<br>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Senior QA</h3>
<h4>Pay1</h4>
<p>2016 - 2017</p>
</div>
<div class="timeline-content">
<h4><img src="images/exp1.png" height="120" width="120"> </img></h4>
I was hired to <strong>lead</strong> the testing team and was incharge of
automation
of
<strong>Web & App</strong>. I managed <strong>performance testing</strong>
of the
servers & applications.
<br><br>
Worked hard to emphasize on the importance
of good coding standards and devised a strategy for white box testing new
products. Effectively <strong>trained</strong> resources on good QA
practices &
automation testing.
One of my responsibilities was to do <strong>code reviews</strong> of
scripts
developed
by my peers. Took the <strong>initiative to set up SDLC processes
</strong>
and
release cycle management.
<br><br>
<h4>HIGHLIGHTS</h4>
<span style="color:#83F52C;">✔ </span> Improved release quality
substantially.
<br>
<span style="color:#83F52C;">✔ </span> Introduced & implemented
automation
testing
at API level.</li>
<br>
<span style="color:#83F52C;">✔ </span> Identified gaps in processes
and
suggested
improvements.</li>
<br>
<span style="color:#83F52C;">✔ </span> Field visits to realize
requirements &
feedback.</li>
<br>
</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Quality Engineer</h3>
<h4>S&P Global</h4>
<p>2015 - 2016</p>
</div>
<div class="timeline-content">
<h4><img src="images/exp2.png" height="300" width="200"> </img></h4>
<p> I was <strong> one of the two candidates hired out of 200 </strong>
students by
S&P
Global as part of campus placements. My job as a Quality Engineer was to
<strong>refine requirements to test plans</strong>, design test
strategies and
perform <strong>black box </strong>testing.
<br><br>
I actively provided <strong>valuable inputs </strong> in design reviews
and
diligently carried out <strong>exploratory and usability testing
</strong>for
upcoming products.
<strong>Liaised</strong> with developers and BA's to identify the root
cause and
priority of bugs.
<br><br>
Effectively <strong> dealt with high priority client problems </strong>
and
resolved
them on a daily basis.
Apart from the expected responsibilities, in my leisure time I started
to
<strong>learn automation</strong> in a bid to reduce repetitive manual
testing.
<br><br>
After learning, I started <strong>developing automation scripts
</strong> for
new
products and for data comparisons & data driven functionalities.
Conducted
<strong>brainstorming sessions with the product team</strong> for
possible
enhancements and leveraged product insight to carry out impact analysis.
<br>
<h4>HIGHLIGHTS</h4>
<span style="color:#83F52C;">✔</span> Developed regression scripts
which
reduced efforts by 40%.
<br>
<span style="color:#83F52C;">✔</span> Conducted industry specific,
Java &
automation KT sessions.
<br>
<span style="color:#83F52C;">✔</span> Ensured bug-free releases
consistently.
<br>
<span style="color:#83F52C;">✔</span> Received 'breakthrough'
rating in
performance reviews.</p>
</div>
</div> <!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
<div class="row resume-timeline">
<div class="row section-intro">
<div class="col-twelve">
<h2>EDUCATION</h2>
</div>
</div> <!-- /section-intro-->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Master's Degree</h3>
<p>2017 - 2018</p>
</div>
<div class="timeline-content">
<div "post-thumbnail">
<a href="http://www.queensu.ca/">
<img width="300" src="images/queens.png"
style="position:relative; left:25px; opacity:0.8;">
</a>
</div>
<div style="position:relative;right:70px; text-align:center;">
<span>
<strong> M.Sc in Computing </strong>
</span>
</div>
</div>
</div> <!-- /timeline-block -->
<br>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Bachelor's Degree</h3>
<p>2011 - 2015</p>
</div>
<div class="timeline-content">
<div "post-thumbnail">
<br>
<a href="http://www.nmims.edu/">
<img width="300" height="100" src="images/nmims.png"
style="position:relative; left:25px; opacity:0.8;">
</a>
</div>
<div style="position:relative; top:2px; right:70px; text-align:center;">
<span>
<strong> B.Tech. in Computer Engineering </strong>
</span>
</div>
</div>
</div>
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
</section> <!-- /features -->
<!-- Projects Section
================================================== -->
<section id="portfolio">
<div class="row section-intro">
<div class="col-twelve">
<h2>PROJECTS & PUBLICATIONS</h2>
<h1>Check Out Some of My Works!</h1>
<!-- <p class="lead">Test message</p> -->
</div>
</div> <!-- /section-intro-->
<div class="row portfolio-content">
<div class="col-twelve">
<!-- portfolio-wrapper -->
<div id="folio-wrapper" class="block-1-2 block-mob-full stack">
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/analysis.jpeg" alt="Analysis">
<a href="#modal-10" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Analysis of Stock Prediction Techniques</h3>
<span class="folio-types"> Summer 2019 </span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/sentiment1.jpg" alt="LSTM">
<a href="#modal-01" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Sentiment Analysis</h3>
<span class="folio-types"> Summer 2018 </span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/stock1.jpg" alt="LSTM">
<a href="#modal-02" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Stock Prediction: Neural nets</h3>
<span class="folio-types"> Winter 2018 </span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/poker.jpg" alt="Poker">
<a href="#modal-03" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Poker: Model Driven Engineering</h3>
<span class="folio-types"> Winter 2018 </span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/datacleansing.jpg" alt="Cleansing">
<a href="#modal-06" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Data cleansing</h3>
<span class="folio-types">
April - May 2017
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/digitrec.png" alt="Digit Recognizer">
<a href="#modal-04" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Digit Recognizer</h3>
<span class="folio-types"> Fall 2017 </span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/vulnerability1.jpg" alt="Shutterbug">
<a href="#modal-05" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Code Analyser</h3>
<span class="folio-types"> Fall 2017 </span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/appdevelopment.jpg" alt="Lighthouse">
<a href="#modal-08" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Android App</h3>
<span class="folio-types">
Oct 2014 - Mar 2015
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/pfmanager.jpg" alt="Salad">
<a href="#modal-09" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Portfolio Manager</h3>
<span class="folio-types">
2013-2016
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/automate.jpg" alt="automate">
<a href="#modal-07" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">App Automation</h3>
<span class="folio-types">
Mar-April 2017
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- modal popups - begin
============================================================= -->
<div id="modal-01" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/sentiment1.jpg" alt="" />
</div>
<div class="description-box">
<h4>Sentiment Analyser for Stock Prediction</h4>
<h6> <a href=https://arxiv.org/abs/1812.04199> Publication (IEEE Big Data 18')</a> </h6>
<p> Developed a sentiment analyser to predict stock prices based on whether a news article
is positive or negative for the company. [Python]</p>
<div class="categories">Text Analysis | Queen's University</div>
</div>
<div class="link-box">
<!-- <a href="https://github.com/devsh4/queens/tree/master/digit%20recognizer">Details</a>-->
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div>
<div id="modal-02" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/stock1.jpg" alt="" />
</div>
<div class="description-box">
<h4>Stock Prediction using LSTM </h4>
<h6> <a
href=https://www.researchgate.net/publication/329655710_A_Comparative_Study_of_LSTM_and_DNN_for_Stock_Market_Forecasting>
Publication (IEEE Big Data 18')</a>
<h4>
<p> Developed a machine learning algorithm (LSTM RNN) to predict daily, weekly and
bimonthly prices of BSE SENSEX. [Keras + TensorFlow]</p>
<div class="categories">Supervised Learning | Queen's University</div>
</div>
<div class="link-box">
<a href="https://github.com/devsh4/projects/tree/master/stock%20prediction">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div>
<div id="modal-03" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/poker.jpg" alt="" />
</div>
<div class="description-box">
<h4>Poker using Model Driven Engineering</h4>
<p> Developed Texas Hold 'em Poker Game using modelling environment - Papyrus-RT. [C++]</p>
<div class="categories">Development | Queen's University</div>
</div>
<div class="link-box">
<a href="https://github.com/devsh4/projects/tree/master/poker">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-03 -->
<div id="modal-04" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/digitrec_m.png" alt="" />
</div>
<div class="description-box">
<h4>Digit Recognizer</h4>
<p> Developed a digit recognizer to classify digits from 0-9 using softmax regression.
[Python + TensorFlow]</p>
<div class="categories">Supervised Learning | Queen's University</div>
</div>
<div class="link-box">
<a href="https://github.com/devsh4/queens/tree/master/digit%20recognizer">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-04 -->
<div id="modal-05" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/vulnerability1.jpg" alt="" />
</div>
<div class="description-box">
<h4>Static Code Analyser for security vulnerabilities</h4>
<p>Developed a static code analyzer to detect security vulnerabilities for C++ code files.
[C#]</p>
<div class="categories">Software Security | Queen's University </div>
</div>
<div class="link-box">
<a href="https://github.com/devsh4/Security-Assessment-Tool">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-05 -->
<div id="modal-06" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/datacleansing.jpg" alt="" />
</div>
<div class="description-box">
<h4>Data cleansing and tagging</h4>
<p>Performed data cleaning to fix inaccurate records and tagging using Python for a real
estate based company's DB. Additionally also worked on optimizing SQL queries to make
existing functions faster.</p>
<div class="categories">Data | Plabro Ltd. </div>
</div>
<div class="link-box">
<a href="https://github.com/devsh4/freelance/tree/master/data%20cleaning">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-06 -->
<div id="modal-07" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/automate.jpg" alt="automate" />
</div>
<div class="description-box">
<h4>App Automation using Java and Appium </h4>
<p>Developed scripts for automating a chat app to:
<ul class="font1">
<li>Take periodic backups </li>
<li>Send emails of chat history </li>
<li>Broadcast messages & send messages dynamically to targeted chats.</li>
</ul>
</p>
<div class="categories">Automation | Plabro Ltd.</div>
</div>
<div class="link-box">
<a
href="https://github.com/devsh4/freelance/tree/master/chat%20app%20automation">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-07 -->
<div id="modal-08" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/appdevelopment.jpg" alt="" />
</div>
<div class="description-box">
<h4>App for Placement Committee</h4>
<p>Built an android app for the college placement committee in a bid to increase the
communication between students, faculty and the placement cell and make the life of the
placement team easier by automating some important tasks.</p>
<div class="categories">App Development | NMIMS University</div>
</div>
<div class="link-box">
<a href="https://github.com/devsh4/apps/tree/master/Placement_App">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-08 -->
<div id="modal-09" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/pfmanager.jpg" alt="" />
</div>
<div class="description-box">
<h4>Portfolio Manager </h4>
<p> Successfully managed a portfolio for a small closed group and generated compounded
returns > 13% consistently for a period of 3 years. </p>
<div class="categories">Stock Markets</div>
</div>