-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1820 lines (1447 loc) · 82.2 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 lt IE 9 ]>
<html class="no-js oldie" 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>Naitik Shah</title>
<meta name="Naitik Shah" content="">
<meta name="Naitik Shah" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/pyramid.css">
<!-- <script src="d3.v3.js"></script> -->
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- fonts======= -->
<link href="https://fonts.googleapis.com/css?family=Karla:400,700" rel="stylesheet">
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html"><img src="images/naitik-sign-white.png" alt="Homepage"></a>
</div>
<nav class="header-nav-wrap">
<ul class="header-nav">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#Education" title="education">Education</a></li>
<li><a class="smoothscroll" href="#WorkExperience" title="Work Experience">Work Experience</a></li>
<li><a class="smoothscroll" href="#tests" title="Recommendations">Recommendations</a></li>
<li><a class="smoothscroll" href="#works" title="works">Projects</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
</nav>
<a class="header-menu-toggle" href="#0"><span>Menu</span></a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home page-hero target-section" data-parallax="scroll" data-image-src="images/hero-bg_Fotor.jpg"
data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h1>Hello, Naitik here!</h1><hr>
<h2>-> A Computer Science Graduate <br>
student at Arizona State University<hr>
-> Web Developer <hr> -> Software Developer
<br>
</h2>
<div class="home-content__buttons">
<a href="#works" class="smoothscroll btn btn--stroke">
Latest Projects
</a>
<a href="#about" class="smoothscroll btn btn--stroke">
More About Me
</a>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
</div>
</div> <!-- end home-content -->
<ul class="home-social" target="_blank">
<li><a href="https://www.linkedin.com/in/naitik-shah/" target="_blank">
<i class="im im-linkedin" aria-hidden="true"></i>
<span>LinkedIn</span>
</a></li>
<li><a href="https://github.com/naitik0212" target="_blank">
<i class="im im-github" aria-hidden="true"></i>
<span>GitHub</span>
</a></li>
<li>
<a href="https://www.facebook.com/naitik.shah.946" target="_blank"><i class="im im-facebook"
aria-hidden="true"
></i><span>Facebook</span></a>
</li>
<li>
<a href="https://twitter.com/naitik0212?lang=en" target="_blank"><i class="im im-twitter" aria-hidden="true"
></i><span>Twiiter</span></a>
</li>
<li>
<a href="https://www.instagram.com/naitik0212/ " target="_blank"><i class="im im-instagram"
aria-hidden="true"
></i><span>Instagram</span></a>
</li>
<!--<li>-->
<!--<a href="#"><i class="im im-behance" aria-hidden="true"></i><span>Behance</span></a>-->
<!--</li>-->
<!--<li>-->
<!--<a href="#"><i class="im im-pinterest" aria-hidden="true"></i><span>Pinterest</span></a>-->
<!--</li>-->
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section" style="background: radial-gradient(white,snow,#bdc3c7,#2c3e50)">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full text-center">
<h1>More About Me</h1>
<div class="container-pyramid tab-full text-center">
<div class="side left" >
<p style="margin-top:20px; margin-left: -5px; text-align: center">C<br>R<br>E<br>A<br>T<br>I<br>V<br>E</p>
</div>
<div class="side front">
<p style="margin-top:20px; margin-left: -5px;text-align: center">T<br>E<br>A<br>M<br><br>P<br>L<br>A<br>Y<br>E<br>R</p></div>
<div class="side right">
<p style="margin-top:20px; margin-left: -5px;text-align: center">D<br>E<br>D<br>I<br>C<br>A<br>T<br>E<br>D</p></div>
<div class="side back">
<p style="margin-top:20px; margin-left: -5px;text-align: center">I<br>N<br>N<br>O<br>V<br>A<br>T<br>I<br>V<br>E</p></div>
</div>
</div>
<!--<div class="col-six right">-->
<!--<div class="side left" >-->
<!--<p style="margin-top:20px; margin-left: -5px; text-align: center">C<br>R<br>E<br>A<br>T<br>I<br>V<br>E</p>-->
<!--</div>-->
<!--<div class="side front">-->
<!--<p style="margin-top:20px; margin-left: -5px;text-align: center">T<br>E<br>A<br>M<br><br>P<br>L<br>A<br>Y<br>E<br>R</p></div>-->
<!--<div class="side right">-->
<!--<p style="margin-top:20px; margin-left: -5px;text-align: center">D<br>E<br>D<br>I<br>C<br>A<br>T<br>E<br>D</p></div>-->
<!--<div class="side back">-->
<!--<p style="margin-top:20px; margin-left: -5px;text-align: center">I<br>N<br>N<br>O<br>V<br>A<br>T<br>I<br>V<br>E</p></div>-->
<!--</div>-->
<!--<div class="col-five pull-right">-->
<!--<h5> -> Software Developer Intern at <a target="_blank" style="color: darkred" href="https://cyr3con.ai/">Cyr3con</a>.</h5>-->
<!--<h5> -> Former Software Engineer at Colgate</h5>-->
<!--<h5> -> Graduate GPA: 4/4</h5>-->
<!--</div>-->
<!--</div>-->
<!--<div class="shadow"></div>-->
<!--</div>-->
<!-- <h3>About</h3>
-->
<!--<p class="lead"> - Creative and Innovative Software Developer-->
<!--<br> - Intern at <a target="_blank" style="color: darkred" href="https://cyr3con.ai/">Cyr3con</a>.-->
<!--<br> - I want to pursue my career with an organization to utilize my skills to develop unique features and optimize the existing processes-->
<!--<br> - I believe in teamwork and positive attitude for increased productivity of the organization. I wish to achieve excellence in every endeavor I undertake-->
<!--thus contributing to my professional growth.</p>-->
</div>
<div class="row about-content">
<div class="col-full tab-full text-center">
<h4> -> Software Developer Intern at <a target="_blank" style="color: darkred" href="https://test.cyr3con.ai/">Cyr3con</a>.</h4>
<h4> -> Former Software Engineer at Colgate.</h4>
<h4> -> Graduate GPA: 4/4</h4>
</div>
<hr>
<div class="col-six tab-full left">
<h3>Key Highlights</h3>
<hr>
<!--<p>When it comes to development, I turn to <b>Object Oriented Programming</b>. Java and Python are the-->
<!--languages that I mostly prefer for development. They give great functionalities to solve issues in an-->
<!--efficient way.</p>-->
<!--<p>I love to develop <b>Responsive Websites having great User Experience</b>. I have worked on various-->
<!--websites and experienced with all stages of the development cycle for dynamic web projects during my-->
<!--previous assignments. Well versed with numerous programing languages such as HTML5, CSS3, JavaScript,-->
<!--SQL and PHP along with modern frameworks including CodeIgniter MVC Framework, BootStrap, Angular Js. and-->
<!--Node Js. I have completed various projects using the aforementioned technologies during my internship at-->
<!--MySwagg.in and in my undergraduate projects. I love to be a part of the creative world of Web-->
<!--Developers. My major focus while developing the website is on <b> User Friendly Interface</b> and <b>-->
<!--Quick Query Processing. </b></p>-->
<!--<p><b>Android Development</b> is one of the fields that has fascinated me recently and so, pursuing various-->
<!--projects in this field currently. </p>-->
<!--<p>Worked in SAP Netweaver 7.4, SAP HANA and Solution Manager during my time with Colgate Palmolive.</p>-->
<!--<p>Learnt about Hadoop in Big Data analysis.</p>-->
<b><p> -> Object Oriented Programming, Software Development: 4+ Years Experience</p><hr>
<p> -> Web Development: 3+ Years Experience in Web Development</p><hr>
<p> -> Interactive Data Visualizations: 1+ Year Experience</p><hr>
<p> -> Android and Mobile technologies: 1+ Year Experience</p><hr>
<p> -> Amazon Web Services: 8 Months Experience</p> <hr>
<p> -> Backend Development. 6 Months Experience </p><hr>
<p> -> Data Science and Machine Learning: 6 Months Experience</p></b>
</div>
<div class="col-five tab-full left" style="margin: auto">
<div><h3>Here are Technical Skills!</h3></div><hr>
<div id="explanation" style="text-align: center; color: #0F1215">Scroll up and down to view all the skills along with its relative proficiency. Use the legend to manage graph!</div>
<div id="chart"></div>
<!--<div id="explanation">You can see more or less of the total bar chart on the left by either dragging the box in the mini chart on the right or by scrolling your mouse. You can also click anywhere in the mini chart to center the box on that region. And you can increase and decrease the size of the box by dragging the top or bottom handle up or down.</div>-->
<script>
var data = [],
svg,
defs,
gBrush,
brush,
main_xScale,
mini_xScale,
main_yScale,
mini_yScale,
main_yZoom,
main_xAxis,
main_yAxis,
mini_width,
textScale;
init();
function init() {
//Create the random data
for (var i = 0; i < 50; i++) {
var my_object = {};
my_object.key = i;
my_object.country = makeWord(i);
my_object.value = makevalue(i);
data.push(my_object);
}//for i
data.sort(function(a,b) { return b.value - a.value; });
/////////////////////////////////////////////////////////////
///////////////// Set-up SVG and wrappers ///////////////////
/////////////////////////////////////////////////////////////
//Added only for the mouse wheel
var zoomer = d3.behavior.zoom()
.on("zoom", null);
var main_margin = {top: 10, right: 5, bottom: 10, left: 90},
main_width = window.innerWidth/2.7 - main_margin.left - main_margin.right,
main_height = window.innerHeight/1.7 - main_margin.top - main_margin.bottom;
var mini_margin = {top: 10, right: 5, bottom: 10, left: 5},
mini_height = window.innerHeight/1.7 - mini_margin.top - mini_margin.bottom;
mini_width = window.innerWidth/13 - mini_margin.left - mini_margin.right;
svg = d3.select("#chart").append("svg")
.attr("class", "svgWrapper")
.attr("width", main_width + main_margin.left + main_margin.right + mini_width + mini_margin.left + mini_margin.right)
.attr("height", main_height + main_margin.top + main_margin.bottom)
.call(zoomer)
.on("wheel.zoom", scroll)
//.on("mousewheel.zoom", scroll)
//.on("DOMMouseScroll.zoom", scroll)
//.on("MozMousePixelScroll.zoom", scroll)
//Is this needed?
.on("mousedown.zoom", null)
.on("touchstart.zoom", null)
.on("touchmove.zoom", null)
.on("touchend.zoom", null);
var mainGroup = svg.append("g")
.attr("class","mainGroupWrapper")
.attr("transform","translate(" + main_margin.left + "," + main_margin.top + ")")
.append("g") //another one for the clip path - due to not wanting to clip the labels
.attr("clip-path", "url(#clip)")
.style("clip-path", "url(#clip)")
.attr("class","mainGroup")
var miniGroup = svg.append("g")
.attr("class","miniGroup")
.attr("transform","translate(" + (main_margin.left + main_width + main_margin.right + mini_margin.left) + "," + mini_margin.top + ")");
var brushGroup = svg.append("g")
.attr("class","brushGroup")
.attr("transform","translate(" + (main_margin.left + main_width + main_margin.right + mini_margin.left) + "," + mini_margin.top + ")");
/////////////////////////////////////////////////////////////
////////////////////// Initiate scales //////////////////////
/////////////////////////////////////////////////////////////
main_xScale = d3.scale.linear().range([0, main_width]);
mini_xScale = d3.scale.linear().range([0, mini_width]);
main_yScale = d3.scale.ordinal().rangeBands([0, main_height], 0.4, 0);
mini_yScale = d3.scale.ordinal().rangeBands([0, mini_height], 0.4, 0);
//Based on the idea from: http://stackoverflow.com/questions/21485339/d3-brushing-on-grouped-bar-chart
main_yZoom = d3.scale.linear()
.range([0, main_height])
.domain([0, main_height]);
//Create x axis object
main_xAxis = d3.svg.axis()
.scale(main_xScale)
.orient("bottom")
.ticks(2)
//.tickSize(0)
.outerTickSize(0);
//Add group for the x axis
d3.select(".mainGroupWrapper").append("g")
.attr("class", "x axis")
.attr("transform", "translate(" + 0 + "," + (main_height + 5) + ")");
//Create y axis object
main_yAxis = d3.svg.axis()
.scale(main_yScale)
.orient("left")
.tickSize(0)
.outerTickSize(0);
//Add group for the y axis
mainGroup.append("g")
.attr("class", "y axis")
.attr("transform", "translate(-5,0)");
/////////////////////////////////////////////////////////////
/////////////////////// Update scales ///////////////////////
/////////////////////////////////////////////////////////////
//Update the scales
main_xScale.domain([0, d3.max(data, function(d) { return d.value; })]);
mini_xScale.domain([0, d3.max(data, function(d) { return d.value; })]);
main_yScale.domain(data.map(function(d) { return d.country; }));
mini_yScale.domain(data.map(function(d) { return d.country; }));
//Create the visual part of the y axis
d3.select(".mainGroup").select(".y.axis").call(main_yAxis);
d3.select(".mainGroupWrapper").select(".x.axis").call(main_xAxis);
/////////////////////////////////////////////////////////////
///////////////////// Label axis scales /////////////////////
/////////////////////////////////////////////////////////////
textScale = d3.scale.linear()
.domain([15,50])
.range([12,6])
.clamp(true);
/////////////////////////////////////////////////////////////
///////////////////////// Create brush //////////////////////
/////////////////////////////////////////////////////////////
//What should the first extent of the brush become - a bit arbitrary this
var brushExtent = Math.max( 1, Math.min( 20, Math.round(data.length*0.2) ) );
brush = d3.svg.brush()
.y(mini_yScale)
.extent([mini_yScale(data[0].country), mini_yScale(data[brushExtent].country)])
.on("brush", brushmove)
//.on("brushend", brushend);
//Set up the visual part of the brush
gBrush = d3.select(".brushGroup").append("g")
.attr("class", "brush")
.call(brush);
gBrush.selectAll(".resize")
.append("line")
.attr("x2", mini_width);
gBrush.selectAll(".resize")
.append("path")
.attr("d", d3.svg.symbol().type("triangle-up").size(20))
.attr("transform", function(d,i) {
return i ? "translate(" + (mini_width/2) + "," + 4 + ") rotate(180)" : "translate(" + (mini_width/2) + "," + -4 + ") rotate(0)";
});
gBrush.selectAll("rect")
.attr("width", mini_width);
//On a click recenter the brush window
gBrush.select(".background")
.on("mousedown.brush", brushcenter)
.on("touchstart.brush", brushcenter);
///////////////////////////////////////////////////////////////////////////
/////////////////// Create a rainbow gradient - for fun ///////////////////
///////////////////////////////////////////////////////////////////////////
defs = svg.append("defs")
//Create two separate gradients for the main and mini bar - just because it looks fun
createGradient("gradient-rainbow-main", "60%");
createGradient("gradient-rainbow-mini", "13%");
//Add the clip path for the main bar chart
defs.append("clipPath")
.attr("id", "clip")
.append("rect")
.attr("x", -main_margin.left)
.attr("width", main_width + main_margin.left)
.attr("height", main_height);
/////////////////////////////////////////////////////////////
/////////////// Set-up the mini bar chart ///////////////////
/////////////////////////////////////////////////////////////
//The mini brushable bar
//DATA JOIN
var mini_bar = d3.select(".miniGroup").selectAll(".bar")
.data(data, function(d) { return d.key; });
//UDPATE
mini_bar
.attr("width", function(d) { return mini_xScale(d.value); })
.attr("y", function(d,i) { return mini_yScale(d.country); })
.attr("height", mini_yScale.rangeBand());
//ENTER
mini_bar.enter().append("rect")
.attr("class", "bar")
.attr("x", 0)
.attr("width", function(d) { return mini_xScale(d.value); })
.attr("y", function(d,i) { return mini_yScale(d.country); })
.attr("height", mini_yScale.rangeBand())
.style("fill", "url(#gradient-rainbow-mini)");
//EXIT
mini_bar.exit()
.remove();
//Start the brush
gBrush.call(brush.event);
}//init
//Function runs on a brush move - to update the big bar chart
function update() {
/////////////////////////////////////////////////////////////
////////// Update the bars of the main bar chart ////////////
/////////////////////////////////////////////////////////////
//DATA JOIN
var bar = d3.select(".mainGroup").selectAll(".bar")
.data(data, function(d) { return d.key; });
//UPDATE
bar
.attr("x", 0)
.attr("width", function(d) { return main_xScale(d.value); })
.attr("y", function(d,i) { return main_yScale(d.country); })
.attr("height", main_yScale.rangeBand());
//ENTER
bar.enter().append("rect")
.attr("class", "bar")
.style("fill", "url(#gradient-rainbow-main)")
.attr("x", 0)
.attr("width", function(d) { return main_xScale(d.value); })
.attr("y", function(d,i) { return main_yScale(d.country); })
.attr("height", main_yScale.rangeBand());
//EXIT
bar.exit()
.remove();
}//update
/////////////////////////////////////////////////////////////
////////////////////// Brush functions //////////////////////
/////////////////////////////////////////////////////////////
//First function that runs on a brush move
function brushmove() {
var extent = brush.extent();
//Reset the part that is visible on the big chart
var originalRange = main_yZoom.range();
main_yZoom.domain( extent );
/////////////////////////////////////////////////////////////
///////////////////// Update the axis ///////////////////////
/////////////////////////////////////////////////////////////
//Update the domain of the x & y scale of the big bar chart
main_yScale.domain(data.map(function(d) { return d.country; }));
main_yScale.rangeBands( [ main_yZoom(originalRange[0]), main_yZoom(originalRange[1]) ], 0.4, 0);
//Update the y axis of the big chart
d3.select(".mainGroup")
.select(".y.axis")
.call(main_yAxis);
/////////////////////////////////////////////////////////////
/////////////// Update the mini bar fills ///////////////////
/////////////////////////////////////////////////////////////
//Update the colors within the mini bar chart
var selected = mini_yScale.domain()
.filter(function(d) { return (extent[0] - mini_yScale.rangeBand() + 1e-2 <= mini_yScale(d)) && (mini_yScale(d) <= extent[1] - 1e-2); });
//Update the colors of the mini chart - Make everything outside the brush grey
d3.select(".miniGroup").selectAll(".bar")
.style("fill", function(d, i) { return selected.indexOf(d.country) > -1 ? "url(#gradient-rainbow-mini)" : "#e0e0e0"; });
//Update the label size
d3.selectAll(".y.axis text")
.style("font-size", textScale(selected.length));
//Update the big bar chart
update();
}//brushmove
/////////////////////////////////////////////////////////////
////////////////////// Click functions //////////////////////
/////////////////////////////////////////////////////////////
//Based on http://bl.ocks.org/mbostock/6498000
//What to do when the user clicks on another location along the brushable bar chart
function brushcenter() {
var target = d3.event.target,
extent = brush.extent(),
size = extent[1] - extent[0],
range = mini_yScale.range(),
y0 = d3.min(range) + size / 2,
y1 = d3.max(range) + mini_yScale.rangeBand() - size / 2,
center = Math.max( y0, Math.min( y1, d3.mouse(target)[1] ) );
d3.event.stopPropagation();
gBrush
.call(brush.extent([center - size / 2, center + size / 2]))
.call(brush.event);
}//brushcenter
/////////////////////////////////////////////////////////////
///////////////////// Scroll functions //////////////////////
/////////////////////////////////////////////////////////////
function scroll() {
//Mouse scroll on the mini chart
var extent = brush.extent(),
size = extent[1] - extent[0],
range = mini_yScale.range(),
y0 = d3.min(range),
y1 = d3.max(range) + mini_yScale.rangeBand(),
dy = d3.event.deltaY,
topSection;
if ( extent[0] - dy < y0 ) { topSection = y0; }
else if ( extent[1] - dy > y1 ) { topSection = y1 - size; }
else { topSection = extent[0] - dy; }
//Make sure the page doesn't scroll as well
d3.event.stopPropagation();
d3.event.preventDefault();
gBrush
.call(brush.extent([ topSection, topSection + size ]))
.call(brush.event);
}//scroll
/////////////////////////////////////////////////////////////
///////////////////// Helper functions //////////////////////
/////////////////////////////////////////////////////////////
//Create a gradient
function createGradient(idName, endPerc) {
var coloursRainbow = ["#EFB605", "#E9A501", "#E48405", "#E34914", "#DE0D2B", "#CF003E", "#B90050", "#A30F65", "#8E297E", "#724097", "#4F54A8", "#296DA4", "#0C8B8C", "#0DA471", "#39B15E", "#7EB852"];
defs.append("linearGradient")
.attr("id", idName)
.attr("gradientUnits", "userSpaceOnUse")
.attr("x1", "0%").attr("y1", "0%")
.attr("x2", endPerc).attr("y2", "0%")
.selectAll("stop")
.data(coloursRainbow)
.enter().append("stop")
.attr("offset", function(d,i) { return i/(coloursRainbow.length-1); })
.attr("stop-color", function(d) { return d; });
}//createGradient
//Function to generate random strings of 5 letters - for the demo only
function makeWord(i) {
names = ['Java','HTML/HTML5','Python', 'CSS/CSS3', 'JavaScript', 'TypeScript', 'SQL', 'BootStrap', 'R', 'C', 'C++', 'Matlab', 'PHP', 'Android', 'SAP R/3', 'SAP B/W' ,'Angular 6', 'Node', 'D3', 'AWS S3', 'AWS EC2', 'AWS SQS','GoogleAppEngine', 'Pandas', 'Numpy', 'Plotly', 'JQuery', 'XML', 'ABAP', 'MySQL', 'AJAX', 'ReactJS', 'SAP SolMan', 'Hadoop', 'Tableau', 'SpringBoot', 'Spring MVC', 'AWS EBS', 'AWS Snapshot', 'HP QC Toolkit', 'Git', 'Weka', 'Hadoop', ' TensorFlow', 'Sklearn', 'Keras', 'Gephi', 'SQLite', 'Elastic Search','FireBase'];
return names[i];
}//makeWord
function makevalue(i) {
values = [90, 85, 85, 85, 85, 80, 77, 81, 71, 63, 58, 67, 71, 84, 65, 63, 87, 81, 86, 84, 82, 81, 68, 70, 69, 73, 77, 72, 60, 71, 63, 75, 64, 65, 81, 79, 74, 74, 75, 61, 83, 75, 71, 65, 64, 63, 71, 75, 68, 70];
return values[i];
}//makeWord
</script>
<!--<ul class="skill-bars">-->
<!--<li>-->
<!--<div class="progress percent80"><span>80%</span></div>-->
<!--<strong>Java</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent70"><span>70%</span></div>-->
<!--<strong>Python</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent85"><span>85%</span></div>-->
<!--<strong>HTML5</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent85"><span>85%</span></div>-->
<!--<strong>CSS3</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent80"><span>80%</span></div>-->
<!--<strong>JavaScript</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent80"><span>80%</span></div>-->
<!--<strong>SQL</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent85"><span>85%</span></div>-->
<!--<strong>PHP</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent85"><span>85%</span></div>-->
<!--<strong>Android</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent75"><span>75%</span></div>-->
<!--<strong>SAP Applications</strong>-->
<!--</li>-->
<!--<li>-->
<!--<div class="progress percent70"><span>70%</span></div>-->
<!--<strong>Angular4</strong>-->
<!--</li>-->
<!--</ul>-->
</div>
</div> <!-- end about-content -->
<div class="row about-content about-content--buttons">
<div class="col-six tab-full left">
<a href="https://drive.google.com/file/d/1yulEJ6D873yCeJXyRUd8xsgbb8lWya7X/view?usp=sharing"
class="btn btn--primary full-width" target="_blank">Download My Resume</a>
</div>
<div class="col-six tab-full right">
<a href="https://www.linkedin.com/in/naitik-shah/" class="btn full-width" target="_blank">View me on
LinkedIn</a>
</div>
</div> <!-- end about-content buttons -->
</section>
<section id="Education" class="s-works target-section" style="background: radial-gradient(white,#476481);">
<div class="row about-content about-content--timeline">
<div class="col-full text-center">
<h3>Education</h3>
</div>
<div class="col-twelve">
<div class="timeline">
<div class="col-twelve">
<div class=" col-six tab-full left">
<div class="timeline__block">
</div>
</div>
<div class=" col-six tab-full">
<div class="right timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">August 2017 - Present</p>
<h3>Masters in Computer Science</h3>
<h5>Arizona State University</h5>
</div>
<div class="timeline__desc">
<p><b>GPA: 4.11/4</b></p>
<p><b>Course Work:</b> Algorithms, Mobile Computing(Android), Data Mining, Data Visualization, Cloud Computing, Statistical Machine Learning</p>
<p><b>Expected Graduation:</b> December 2018/ May 2019</p>
</div>
</div>
</div>
</div><!-- end timeline__block -->
<div class="col-twelve">
<div class=" col-six tab-full right">
<div class="timeline__block">
<div class="timeline__header" align="left">
<div class="timeline__bullet" align="left"></div>
<p class="timeline__timeframe">August 2012-May 2016</p>
<h3>Bachelor in Computer Science</h3>
<h5>K. J. Somaiya College of Engineering (Mumbai University)</h5>
</div>
<div class="timeline__desc" align="left">
<p><b>GPA: 3.76/4</b></p>
<p><b>Course Work:</b> Web Development, Data Warehousing, Machine Learning, Big Data
Analysis, Cloud Computing, Artificial Intelligence and Human Machine Interaction
</p>
</div>
</div>
</div>
<!--<div class=" col-six tab-full left">-->
<!--<div class="timeline__block">-->
<!--<div class="timeline__bullet"></div>-->
<!--</div>-->
<!--</div>-->
<!--</div> <!– end timeline__block –>-->
<a href="chart.html"
class="btn btn--primary full-width" target="_blank">Subjects and Technologies</a>
</div> <!-- end timeline -->
</div> <!-- end left -->
</div> <!-- end about-content timeline -->
</section>
<section id="WorkExperience" class="s-about target-section" style="background: radial-gradient(white,snow,#bdc3c7,#2c3e50)">
<div class="row about-content about-content--timeline">
<div class="col-full text-center">
<h3>My Work Experience</h3>
</div>
<div class="col-twelve tab-full left">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">May 2018 - Present</p>
<h3>Software Developer Intern</h3>
<h5><a target="_blank" style="color: darkred" href="https://test.cyr3con.ai/">Cyr3con</a> (Tempe, USA)</h5>
</div>
<div class="timeline__desc">
<ul><li>Working as a full-stack developer to develop the end to end product of the Cyr3con.</li>
<li>Developed the official website of <a target="_blank" style="color: darkred" href="https://test.cyr3con.ai/">Cyr3con</a> from scratch using Angular 6 and Bootstrap.</li>
<li>Migrated the internal portal for customers from Angular 4 to Angular 5.2. </li>
<li>Developed role based authentication system in Angular 5.2 using RouteGuards.</li>
<li>Developed caching mechanism and splitted the APIs to improve the efficiency of the APIs fetched by 50%.</li>
<li>Developing an interactive Dashboard for customer to gain insights using D3, NGX Charts over Angular 5.2.</li>
<li>Developing APIs in the backend using Spring Boot.</li></ul>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">November 2017 - May 2018</p>
<h3>Graduate Software Developer</h3>
<h5>CySIS Lab, Arizona State University (Tempe, USA)</h5>
</div>
<div class="timeline__desc">
<ul><li>Developed and fixing UI issues of the vulnerability update module as a front-end developer using Angular4.</li>
<li>Designed new reactive web pages for displaying data through various API endpoints.</li>
<li>Developed the User Admin Panel that includes user management for the website.</li>
<li>Integrated a translate language functionality using the google APIs.</li>
<li>Developed the routing module for better navigation accross the website.</li></ul>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">August 2017 - December 2017</p>
<h3>Graduate Student Assistant</h3>
<h5>Arizona State University (Tempe, USA)</h5>
</div>
<div class="timeline__desc">
<ul><li>Delivering a range of assessment activities including tests and tutorials directed
towards the subject Object Oriented Programming in Java.</li>
<li> Evaluating of various methods and techniques used in Java programming and providing
effective timely and appropriate feedback to students to support their learning.</li>
<li>Contributing towards the development of assigned projects and assignments.</li></ul>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">June 2016 - June 2017</p>
<h3>Software Engineer</h3>
<h5>Colgate Global Business Services (Colgate-Palmolive) (Mumbai, India)</h5>
</div>
<div class="timeline__desc">
<ul>
<li>Designed a wireframe and developed a health-tracker android application using Java
for company employees.</li>
<li>Developed a platform for automated testing using VBScript and HP Quality Center
toolkit following six sigma principles which reduced manual testing effort by
20%.</li>
<li>Collaborated with business associates to resolve 30% of the total global level
issues per month in financial applications including pay-to-procure and credit to
cash in SAP Netweaver 7.4.</li>
<li>Configured a new system of SAP FICO by shifting the company base from Singapore to
Hong Kong using agile methodology.</li></ul>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">July 2014 - August 2015</p>
<h3>Software Developer Intern</h3>
<h5>MySwagg (Mumbai, India)</h5>
</div>
<div class="timeline__desc">
<ul> <li>Built an Ecommerce website using JavaScript, HTML, CSS and PHP/SQL by designing
features like search and recommendations.</li>
<li>Standardized content from the diverse database of 8 GB enabling support staff to
quickly respond to customer requests.</li></ul>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
<!--<script src="https//d3js.org/d3.v3.min.js"></script>-->
</div> <!-- end left -->
</div> <!-- end timeline -->
</div> <!-- end right -->
</div> <!-- end about-content timeline -->
</section> <!-- end about -->
<!-- testimonials
================================================== -->
<section id="tests" class="s-testimonials target-section" >
<div class="s-testimonials">
<div class="overlay"></div>
<div class="row testimonials-header" >
<div class="col-full">
<h1 class="h02" style="margin-top: 80px">What People Say</h1>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/user-07.jpeg" alt="Author image" class="testimonials__avatar">
<p>To whom it may concern,
Naitik profiled himself as very valuable and capable team member in a very short time period. In his position on the team dedicated to the external interface, he already proved himself to be highly reliable, quick learning, and an outstanding team member. Our interface is build with Angular4 supported by RestAPIs. He as most of his teammates inherited a difficult codebase, which does not deter him from taking up and completing tasks in a very favorable time frame. The team would not be as productive without him. He has the unique ability to turn adversity into a fertile atmosphere for the entire team.</p>
<div class="testimonials__author h06">
Jana Shakarian
<span>President and Founder of Cyr3con</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-08.jpeg" alt="Anudeep's Photo" class="testimonials__avatar">
<p>Naitik has pioneered himself as an experienced and skilled UI developer for the team. He has a deep understanding of UI designs, along with good backend skills. He has worked extensively on Angular 5 advanced techniques like Observables, caching and RouteGuards to optimize the website. He also developed an interactive dashboard using advanced data visualizations. He is a team player providing innovative ideas and can take up challenging tasks and finish them efficiently in time. </p>
<div class="testimonials__author h06">
Anudeep Sanepali
<span>Solution Architect, Cyr3con</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-02.jpg" alt="Author image" class="testimonials__avatar">
<p>I worked with Naitik during his assignment at Colgate . It was related to assisting a newly
formed Testing Centre of which I am a core member. As a part of the team who helped Naitik
stood out distinctive bringing lot of ideas, readiness to execute them and commitment to
action. He showed conviction in his thoughts and independence in the tasks given to him.
Further his.focus on his internal development and balanced life makes him worry free giving
full scope to perform. I will describe him as a raw diamond which just needs an opportunity
to get polished so that it can shine to its potential. He was definitely a valuable
contributor who went out of his limit to help us. Last but not the least he knows lot of new
technologies and can easily put them to use in any project.</p>
<div class="testimonials__author h06">
Gaurang Bhatt
<span>Assistant Manager, Colgate-Palmolive</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-06.jpeg" alt="Author image" class="testimonials__avatar">
<p>Naitik is technically very strong and has good learning attitude. He has strong presentation skills and is being working hard to be functionally stronger. Had good time when we worked together.</p>
<div class="testimonials__author h06">
Abhijeet Athalye
<span>Manager, Colgate-Palmolive</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">
<p>I know Naitik as the CS undergrad student in from the batch of 2012-2016. As a student, he
exhibited wide range of skills in academic as well as non academic setup. I taught him
Artificial Intelligence and Algorithms and can surely tell about his in depth understanding
and profound technical skills in this subjects!
He is a bright student. I remember the E-Learning portal he had developed in his final year
project which showed his proficiency in skills like Web Development, Mobile computing and
Data Mining.
Apart from the technical projects, he was involved in placement activities very actively for
his batch during final year and was also an active member of various student bodies.
I can say he is a person with strong technical abilities and good interpersonal skills and
believe that he can rise to any task assigned and do exceedingly well!</p>