-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·944 lines (645 loc) · 35.7 KB
/
index.html
File metadata and controls
executable file
·944 lines (645 loc) · 35.7 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
933
934
935
936
937
938
939
940
941
942
943
944
<!DOCTYPE html>
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Harsh Dev</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/default.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/media-queries.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png" >
</head>
<body>
<!-- Header
================================================== -->
<header id="home">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>
<ul id="nav" class="nav">
<li class="current"><a class="smoothscroll" href="#home">Home</a></li>
<li><a class="smoothscroll" href="#about">About</a></li>
<li><a class="smoothscroll" href="#resume">Resume</a></li>
<li><a class="smoothscroll" href="#certifications">Certifications</a></li>
<li><a class="smoothscroll" href="#portfolio">Works</a></li>
<li><a class="smoothscroll" href="#testimonials">Testimonials</a></li>
<li><a class="smoothscroll" href="#contact">Contact</a></li>
</ul> <!-- end #nav -->
</nav> <!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text">
<h1 class="responsive-headline">I'm Harsh Dev</h1>
<h3>With half a decade of experience working in <Span>Fortune 100 </Span> as well as <span> tech startups</span>, I bring forward a unique blend of <span>technical</span> and <span>leadership skills.</span> I am a passionate writer and a leader ready to tackle problems of the digital age! Let's <a class="smoothscroll" href="#about">Know More </a>
<a class="smoothscroll" href="#about">about me</a>.</h3>
<hr />
<ul class="social">
<li><a href="https://www.linkedin.com/in/harsh-dev/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com/Reckoning.harsh"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/Reckoning_Harsh"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</div>
<p class="scrolldown">
<a class="smoothscroll" href="#about"><i class="icon-down-circle"></i></a>
</p>
</header> <!-- Header End -->
<!-- About Section
================================================== -->
<section id="about">
<div class="row">
<div class="three columns">
<img class="profile-pic" src="images/profilepic.jpg" alt="" />
</div>
<div class="nine columns main-col">
<h2>My Thoughts on Current Technology</h2>
<p>Because of big data, managers can measure, and hence know, radically more about their businesses, and directly translate that knowledge into improved decision making and performance.
I strive to build a career on bringing out the story hidden in the icebergs of data. My area of interest is in the field of Machine learning/Deep Learning/Artificial Intelligence and I endeavour to build products that understand human needs and adapt to become a valuable partner in our lives. I have a natural instinct to build, break and glean intelligence from data and translate that into a business advantage.
On the academic front, I am deep diving into the world of Data Mining/Predictive Analytics/Machine Learning ( Supervised & Unsupervised) and Effective storytelling. Everyday, most of my thoughts are directed towards becoming an exceptional story teller.
I have extensive experience in the Banking Industry, especially in the predictive fraud detection and scalable cloud development for highly critical applications.
If you want to talk about technology or stories that have inspired you, I am always available at harshdev@uw.edu.
Technology I love to play with: <span> R, d3.js,Tableau, Google Analytics, SQL, NoSQL Databases such as Mongo DB or Couchbase, Tomcat, Apache Spark, Messaging Queues </span>.
</p>
<div class="row">
<div class="columns contact-details">
<h2>Contact Details</h2>
<p class="address">
<span>Harsh Dev</span><br>
<span>4726 11th Avenue NE<br>
Seattle, WA 98105 WA
</span><br>
<span>(206)-954-9615</span><br>
<span>harshdev@uw.edu</span>
</p>
</div>
<div class="columns download">
<p>
<a href="Harsh_Resume.pdf" class="button"><i class="fa fa-download"></i>Download Resume</a>
</p>
</div>
</div> <!-- end row -->
</div> <!-- end .main-col -->
</div>
</section> <!-- About Section End-->
<!-- Resume Section
================================================== -->
<section id="resume">
<!-- Education
----------------------------------------------- -->
<div class="row education">
<div class="three columns header-col">
<h1><span>Education</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>University of Washington</h3>
<p class="info">Masters in Information Management<span>•</span> <em class="date">June 2019</em></p>
<p>
I am specializing in Data Science and U.X and my academic focus lies in areas such as <span>Machine Learning, Deep Learning</span>. On the other end I am complimenting data science with <span>Information Visualization</span> because I believe telling great stories with data is as important as uncovering insights from messy data!
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Sikkim Manipal Institute of Technology</h3>
<p class="info">Bachelor in Technology <span>•</span> <em class="date">September 2012</em></p>
<p>
I graduated with an Engineering Degree in Electronics and Communication. I built some really cool projects with Java and Matlab. Also served as the General Secretary of the Alumni Association for 2 years and was awared the "Distinguished Alumni Award" in 2016 for my exemplary contributions to my alma mater.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Education -->
<!-- Work
----------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Work</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Wells Fargo</h3>
<p class="info">Technology Specialist <span>•</span> <em class="date">March 2015 - September 2017</em></p>
<p>
<h5>Analytics</h5>
<p>- Led the development of an enterprise tool that gathers data from 30+ banking applications, performs automated data mining, cleaning, metrics calculation and report generation, leading to monetary savings of USD $10,000 per year.</p>
<p>- Partnered with Risk Business to parse customer data from the database using Perl and SQL, to analyze relationships between zip codes and fraud occurrences, resulting in identification of areas where probability of fraud was higher than average.</p>
<h5>Cloud</h5>
<p>- Spearheaded Design and Implementation of distributed cloud architecture for enterprise risk systems to support multiple n-tier applications that worked in unison to provide a fraud detection framework for 80 million customers.</p>
<p>- Architectured containerized deployment of applications to reduce deployment failures and increase utilization of resources.</p>
<h5>Consulting and Strategy</h5>
<p>- Provided strategic advice to business partners for end to end implementation of 20 million USD Risk Systems Project.</p>
<p>- Represented Distributed Support team in the Risk Systems Migration architecture conference in San Francisco and Phoenix and convinced top management to expand the team in India. This led to team expansion by 50 %.</p>
<p>- Spearheaded recruitment drives of Wells Fargo for all Tier-1 colleges across six different geographies within India.</p>
<p><h6> Other Roles at Wells Fargo: Senior Analyst (Mar '13-Mar '15) and Analyst (Jan '12- Feb '13)</p></h6>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Indian Nerve(Passion Project)</h3>
<p class="info">Managing Editor <span>•</span> <em class="date">March 2012 - September 2017</em></p>
<p>- Launched InTech Reviews. Published 121 articles; encompassing technology, entertainment and politics.</p>
<p>- Led social media marketing and analytics campaigns to generate actionable insights on user behavior, using GAnalytics.</p>
<p>- Developed strategic relationships with PR firms of tech companies to increase
<p>- Oversaw long-term planning, including major event coverage and relationship management with PR firms.
<p>- Wrote a number of posts that have passed the 500K visitor threshold covering topics in technology, entertainment, and culture.</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Work -->
<!-- Skills
-----------------------------------------------
<div class="row skill">
<div class="three columns header-col">
<h1><span>Technical Skills</span></h1>
</div>
<div class="nine columns main-col">
<p>.
</p>
<div class="bars">
<ul class="skills">
<li><span class="bar-expand r"></span><em>Programming in R</em></li>
<li><span class="bar-expand sql"></span><em>Data Extraction using SQL</em></li>
<li><span class="bar-expand javas"></span><em>Information Visualization using d3.js, JQuery and Tableau</li>
<li><span class="bar-expand distributed"></span><em>Distributed Systems</em></li>
<li><span class="bar-expand office"></span><em>Microsoft Office Suite</em></li>
</ul>
-->
<div id="container" style="min-width: 310px; max-width: 600px; height: 600px; margin: 0 auto"></div>
<script type="text/javascript">
var z = 0;
var par = ["Programming","Data Analysis","Visualization","Distributed Systems","SQL"," Office Suite","Statistics","Probability"]
Highcharts.chart('container', {
chart: {
polar: true
},
title: {
text: 'Skills Chart'
},
credits: {
enabled: false
},
pane: {
startAngle: 1,
endAngle: 360
},
xAxis: {
tickInterval: 45,
min: 0,
max: 360,
labels: {
formatter: function () {
//return this.value + '°';
return par[z++];
}
}
},
yAxis: {
min: 0
},
plotOptions: {
series: {
pointStart: 0,
pointInterval: 45
},
column: {
pointPadding: 0,
groupPadding: 0
}
},
series: [ {
type: 'area',
name: 'Skill Level',
data: [8,7,8,8,7,9,6,6]
}]
});
</script>
</div><!-- end skill-bars -->
</div> <!-- main-col end -->
</div> <!-- End skills -->
</section> <!-- Resume Section End-->
<!--- Certificate Section -->
<section id="certifications">
<div class="row">
<div class="twelve columns collapsed">
<h1>Certifications</h1>
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-10" title="">
<img alt="" src="images/portfolio/gettindata.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5></h5>
<p></p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!--
<item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-11" title="">
<img alt="" src="images/portfolio/r.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5></h5>
<p></p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!--
<item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-12" title="">
<img alt="" src="images/portfolio/math.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5></h5>
<p></p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div>
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-13" title="">
<img alt="" src="images/portfolio/idf.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5></h5>
<p></p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!--
<item end -->
</div>
</div>
</div>
</section>
<!-- Portfolio Section
================================================== -->
<section id="portfolio">
<div class="row">
<div class="twelve columns collapsed">
<h1>My academic projects</h1>
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-01" title="">
<img alt="" src="images/portfolio/boxoffice.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Visual Exploratory Analysis</h5>
<p>Tableau, R</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-03" title="">
<img alt="" src="images/portfolio/flavours.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Interactive Dashboard</h5>
<p>D3.js, JQuery, R</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-05" title="">
<img alt="" src="images/portfolio/dementia.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Dementia Research</h5>
<p>R,Tableau, Affinity Diagrams</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-06" title="">
<img alt="" src="images/portfolio/burtin.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Visual Analysis of Burtin's Legendary Data </h5>
<p>R,Tableau, Excel</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
</div> <!-- portfolio-wrapper end -->
</div> <!-- twelve columns end -->
<!-- Modal Popup
--------------------------------------------------------------- -->
<div id="modal-01" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/boxoffice.jpg" alt="" />
<div class="description-box">
<h4>Visual Exploratory Analysis</h4>
<p>Exploratory Analysis on Bollywood Movies success and failure.</p>
<span class="categories"><i class="fa fa-tag"></i>Data Analytics, Information Visualization, Bollywood</span>
</div>
<div class="link-box">
<a href="https://medium.com/@harshdev_41068/fate-of-bollywood-movies-4763e88592a7">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-02" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/flavours.jpg" alt="" />
<div class="description-box">
<h4>Console</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Branding, Web Development</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-02 End -->
<div id="modal-03" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/flavours.jpg" alt="" />
<div class="description-box">
<h4>Interactive Dashboard in D3 and JQuery</h4>
<p>Sales Dashboard for an Indian E - Commerce </p>
<span class="categories"><i class="fa fa-tag"></i>Information Visualization,Sales, Data Analytics</span>
</div>
<div class="link-box">
<a href="https://abhi32ag.github.io/flavors-of-my-city/">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-03 End -->
<div id="modal-04" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-intothelight.jpg" alt="" />
<div class="description-box">
<h4>Into the Light</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Photography</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-04 End -->
<div id="modal-05" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/dementia.jpg" alt="" />
<div class="description-box">
<h4>Dementia Research</h4>
<p>R, Tableau,Affinity Diagrams, Qualitative Analysis</p>
<span class="categories"><i class="fa fa-tag"></i>Dementia, Healthcare, Analytics</span>
</div>
<div class="link-box">
<a href="https://drive.google.com/open?id=1GZfvGiU4EE5z53YfUzpSHeZh4XyXqjyg">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-05 End -->
<div id="modal-06" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/burtin.jpg" alt="" />
<div class="description-box">
<h4>Burtin's Data</h4>
<p>Burtin's Legendary Data on Antibiotic Effectiveness</p>
<span class="categories"><i class="fa fa-tag"></i>Antibiotic, Data Science, Information Visualization</span>
</div>
<div class="link-box">
<a href="https://medium.com/@harshdev_41068/burtins-legendary-data-on-antibiotics-9b32ecd5943f">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-06 End -->
<div id="modal-07" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-origami.jpg" alt="" />
<div class="description-box">
<h4>Origami</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Branding, Illustration</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-07 End -->
<div id="modal-08" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-retrocam.jpg" alt="" />
<div class="description-box">
<h4>Retrocam</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Webdesign, Photography</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-10" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/gettindata.jpg" alt="" />
<div class="description-box">
<h4>Getting and Cleaning Data</h4>
<p>Certificate from John Hopkins on Advanced R Programming</p>
<span class="categories"><i class="fa fa-tag"></i>Certification, R, Data Science</span>
</div>
<div class="link-box">
<a href="https://www.coursera.org/account/accomplishments/records/JX6BF32C9GGF">Link</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-11" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/r.jpg" alt="" />
<div class="description-box">
<h4>R Programming</h4>
<p>Certificate from John Hopkins on Advanced R Programming</p>
<span class="categories"><i class="fa fa-tag"></i>Certification, R, Data Science</span>
</div>
<div class="link-box">
<a href="https://www.coursera.org/account/accomplishments/records/KS9F47H9CGJ7">Link</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-12" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/math.jpg" alt="" />
<div class="description-box">
<h4>Data Science Math Skills</h4>
<p>Certificate from Duke University on Mathematical Foundations of Data Science</p>
<span class="categories"><i class="fa fa-tag"></i>Certification, Data Science</span>
</div>
<div class="link-box">
<a href="https://www.coursera.org/account/accomplishments/records/6EBBK7QQNMEP">Link</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-13" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/idf.jpg" alt="" />
<div class="description-box">
<h4>IDF Membership</h4>
<p>Certificate from Interaction Design Foundation</p>
<span class="categories"><i class="fa fa-tag"></i>Certification, U.X</span>
</div>
<div class="link-box">
<a href="https://www.interaction-design.org/harsh-dev/certificate/member/NLVMLwsqz?r=harsh-dev">Link</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
</div> <!-- row End -->
</section> <!-- Portfolio Section End-->
</section> <!-- Call-To-Action Section End-->
<!-- Testimonials Section
================================================== -->
<section id="testimonials">
<div class="text-container">
<div class="row">
<div class="two columns header-col">
<h1><span>Recommendations</span></h1>
</div>
<div class="ten columns flex-container">
<div class="flexslider">
<ul class="slides">
<li>
<blockquote>
<p>Harsh not only understands technology but he also understands the dynamics of how humans interact in team settings. He quickly became a motivator and a linchpin for the team. He mentors the new folks that come to the team and makes them feel welcome. He also assists his team in adapting to change as organizations in support of his team change their structure. He is relentless in his pursuit to understand. Whether the challenge is technical, process, or human, Harsh seems to have this innate ability to not only understand the issues but also to propose meaningful solutions.
No matter what the position in technology, Harsh can handle it. He researches what he does not know and then incorporates the new knowledge into his ever-growing portfolio of expertise. He is then able to apply this knowledge both technically and professionally. Harsh is hungry for knowledge. That hunger plus his ability to comprehend make for a formidable force. Harsh brings value to the team through his humility and his appreciation of others. He is a positive addition to any meeting, to any team, and to any person who is fortunate enough to meet him.
</p>
<cite>Martha Drerup, Wells Fargo</cite>
</blockquote>
</li> <!-- slide ends -->
<li>
<blockquote>
<p>Harsh is an earnest and dynamic player who can don many hats. Strategic in his approach and execution, he took upon himself the responsibility of handling Indian Nerve's social media account and managed to increase the website's viewership significantly. He even initiated a couple partnerships with technology brands in good standing that opened up a new revenue stream for our blog. Amazing team player!
</p>
<cite>Ambarish Ganesh, Indian Nerve</cite>
</blockquote>
<li>
<blockquote>
<p>I worked with Harsh for the Campus Recruiting Program at Wells Fargo EGS in 2015-16. His work during the project was outstanding to say the least. He helped in automating the communication channels to the campuses, he coordinated with the Placement officers for the readiness of the technical infrastructure for the testing of the candidates, planned and scheduled the activities for the campus visit and interviews, and was the perfect campus ambassador for the program. He was innovative in his approach to the tasks he was assigned, which helped in effective execution of the program. Harsh takes ownership of the tasks he is assigned and is dedicated to his job which makes him a pleasure to work with. I look forward to working with him in future projects and wish him all the best for his career.
</p>
<cite>Vedvrath Madishetty, Wells Fargo </cite>
</blockquote>
</li> <!-- slide ends -->
</ul>
</div> <!-- div.flexslider ends -->
</div> <!-- div.flex-container ends -->
</div> <!-- row ends -->
</div> <!-- text-container ends -->
</section> <!-- Testimonials Section End-->
<!-- Contact Section
================================================== -->
<section id="contact">
<div class="row section-head">
<div class="two columns header-col">
<h1><span>Get In Touch.</span></h1>
</div>
<div class="ten columns">
<p class="lead"Get in touch !
</div>
</div>
<div class="row">
<div class="eight columns">
<!-- form -->
<form action="" method="post" id="contactForm" name="contactForm">
<fieldset>
<div>
<label for="contactName">Name <span class="required">*</span></label>
<input type="text" value="" size="35" id="contactName" name="contactName">
</div>
<div>
<label for="contactEmail">Email <span class="required">*</span></label>
<input type="text" value="" size="35" id="contactEmail" name="contactEmail">
</div>
<div>
<label for="contactSubject">Subject</label>
<input type="text" value="" size="35" id="contactSubject" name="contactSubject">
</div>
<div>
<label for="contactMessage">Message <span class="required">*</span></label>
<textarea cols="50" rows="15" id="contactMessage" name="contactMessage"></textarea>
</div>
<div>
<button class="submit">Submit</button>
<span id="image-loader">
<img alt="" src="images/loader.gif">
</span>
</div>
</fieldset>
</form> <!-- Form End -->
<!-- contact-warning -->
<div id="message-warning"> Error boy</div>
<!-- contact-success -->
<div id="message-success">
<i class="fa fa-check"></i>Your message was sent, thank you!<br>
</div>
</div>
</div>
</section> <!-- Contact Section End-->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="twelve columns">
<ul class="social-links">
<li><a href="https://www.linkedin.com/in/harsh-dev/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com/Reckoning.harsh"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/Reckoning_Harsh"><i class="fa fa-twitter"></i></a></li>
</ul>
<ul class="copyright">
<li>© Copyright 2018 Harsh</li>
<li>Design by <a title="Styleshout" href="http://www.styleshout.com/">Styleshout</a></li>
</ul>
</div>
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#home"><i class="icon-up-open"></i></a></div>
</div>
</footer> <!-- Footer End-->
<!-- Java Script
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.10.2.min.js"><\/script>')</script>
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/waypoints.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/magnific-popup.js"></script>
<script src="js/init.js"></script>
</body>
</html>