-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1206 lines (1076 loc) · 46.8 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>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- open graph tags -->
<title>Hari Masoor - Full-Stack Software Engineer</title>
<meta property="og:title" content="Hari Masoor - Full-Stack Software Engineer" />
<meta property="og:url" content="https://www.harimasoor.com/" />
<meta name="description" content="View my projects, skills, resume, and contact information.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="images/alphabet-h-icon.svg">
<!-- STYLESHEETS -->
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" media="all">
<link rel="stylesheet" href="css/all.min.css" type="text/css" media="all">
<link rel="stylesheet" href="css/simple-line-icons.css" type="text/css" media="all">
<link rel="stylesheet" href="css/slick.css" type="text/css" media="all">
<link rel="stylesheet" href="css/animate.css" type="text/css" media="all">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" media="all">
<link rel="stylesheet" href="css/style.css" type="text/css" media="all">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QQK57J14V9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QQK57J14V9');
</script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="outer">
<!-- Google Chrome -->
<div class="infinityChrome">
<div></div>
<div></div>
<div></div>
</div>
<!-- Safari and others -->
<div class="infinity">
<div>
<span></span>
</div>
<div>
<span></span>
</div>
<div>
<span></span>
</div>
</div>
<!-- Stuff -->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="goo-outer">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="6" result="blur" />
<feColorMatrix in="blur" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feBlend in="SourceGraphic" in2="goo" />
</filter>
</defs>
</svg>
</div>
</div>
<!-- mobile header -->
<header class="mobile-header-1">
<div class="container">
<!-- menu icon -->
<div class="menu-icon d-inline-flex mr-4">
<button>
<span></span>
</button>
</div>
<!-- logo image -->
<div class="site-logo">
<a href="index.html">
<img src="images/signatureBlue.png" alt="Hari Masoor" />
</a>
</div>
</div>
</header>
<!-- desktop header -->
<header class="desktop-header-1 d-flex align-items-start flex-column">
<!-- logo image -->
<div class="site-logo">
<a href="index.html">
<img src="images/signatureBlue.png" alt="Hari Masoor" />
</a>
</div>
<!-- main menu -->
<nav>
<ul class="vertical-menu scrollspy">
<li class="active"><a href="#home"><i class="icon-home"></i>Home</a></li>
<li><a href="#about"><i class="icon-user-following"></i>About</a></li>
<li><a href="#skills"><i class="icon-briefcase"></i>Skills</a></li>
<li><a href="#experience"><i class="icon-graduation"></i>Experience</a></li>
<li><a href="#works"><i class="icon-layers"></i>Products</a></li>
<li><a href="#contact"><i class="icon-bubbles"></i>Contact</a></li>
</ul>
<div class="spacer" data-height="40"></div>
<!-- social icons -->
</nav>
<!-- site footer -->
<div class="footer">
<ul class="social-icons light list-inline mb-0 mt-4">
<li class="list-inline-item">
<a href="mailto:[email protected]">
<i class="fa fa-envelope"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/harivmasoor/" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/harimasoor/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://angel.co/u/hari-masoor" target="_blank">
<i class="fab fa-angellist"></i>
</a>
</li>
</ul>
<!-- copyright text -->
<span class="copyright">© Hari Masoor</span>
</div>
</header>
<!-- main layout -->
<main class="content">
<!-- section home -->
<section id="home" class="home d-flex align-items-center">
<div class="container">
<!-- intro -->
<div class="intro">
<!-- avatar image -->
<img width="200px" src="images/masoor.jpeg" alt="Hari Masoor" class="mb-4 headshot" />
<!-- info -->
<h1 class="mb-2 mt-0">Hari Masoor</h1>
<span class="location">San Jose, CA</span>
<br>
<span>I'm a
<span class="text-rotating">
Full-Stack Software Engineer,
Strategic Thinker,
Proven Hacker,
Bug Hunter
</span>
</span>
<!-- social icons -->
<ul class="social-icons light list-inline mb-0 mt-4">
<li class="list-inline-item">
<a href="mailto:[email protected]">
<i class="fa fa-envelope"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/harivmasoor/" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/harimasoor/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://angel.co/u/hari-masoor" target="_blank">
<i class="fab fa-angellist"></i>
</a>
</li>
</ul>
<!-- buttons -->
<div class="mt-4">
<a href="#contact" class="btn btn-default">Connect with me</a>
</div>
</div>
<!-- scroll down mouse wheel -->
<div class="scroll-down">
<a href="#about" class="mouse-wrapper">
<span>Scroll Down</span>
<span class="mouse">
<span class="wheel"></span>
</span>
</a>
</div>
<!-- parallax layers -->
<div class="parallax" data-relative-input="true">
<svg width="27" height="29" data-depth="0.3" class="layer p1" xmlns="http://www.w3.org/2000/svg"><path d="M21.15625.60099c4.37954 3.67487 6.46544 9.40612 5.47254 15.03526-.9929 5.62915-4.91339 10.30141-10.2846 12.25672-5.37122 1.9553-11.3776.89631-15.75715-2.77856l2.05692-2.45134c3.50315 2.93948 8.3087 3.78663 12.60572 2.22284 4.297-1.5638 7.43381-5.30209 8.22768-9.80537.79387-4.50328-.8749-9.08872-4.37803-12.02821L21.15625.60099z" fill="#FFD15C" fill-rule="evenodd"/></svg>
<svg width="26" height="26" data-depth="0.2" class="layer p2" xmlns="http://www.w3.org/2000/svg"><path d="M13 3.3541L2.42705 24.5h21.1459L13 3.3541z" stroke="#FF4C60" stroke-width="3" fill="none" fill-rule="evenodd"/></svg>
<svg width="30" height="25" data-depth="0.3" class="layer p3" xmlns="http://www.w3.org/2000/svg"><path d="M.1436 8.9282C3.00213 3.97706 8.2841.92763 14.00013.92796c5.71605.00032 10.9981 3.04992 13.85641 8 2.8583 4.95007 2.8584 11.0491-.00014 16.00024l-2.77128-1.6c2.28651-3.96036 2.28631-8.84002.00011-12.8002-2.2862-3.96017-6.5124-6.40017-11.08513-6.4-4.57271.00018-8.79872 2.43984-11.08524 6.4002l-2.77128-1.6z" fill="#44D7B6" fill-rule="evenodd"/></svg>
<svg width="15" height="23" data-depth="0.6" class="layer p4" xmlns="http://www.w3.org/2000/svg"><rect transform="rotate(30 9.86603 10.13397)" x="7" width="3" height="25" rx="1.5" fill="#FFD15C" fill-rule="evenodd"/></svg>
<svg width="15" height="23" data-depth="0.2" class="layer p5" xmlns="http://www.w3.org/2000/svg"><rect transform="rotate(30 9.86603 10.13397)" x="7" width="3" height="25" rx="1.5" fill="#6C6CE5" fill-rule="evenodd"/></svg>
<svg width="49" height="17" data-depth="0.5" class="layer p6" xmlns="http://www.w3.org/2000/svg"><g fill="#FF4C60" fill-rule="evenodd"><path d="M.5 16.5c0-5.71709 2.3825-10.99895 6.25-13.8567 3.8675-2.85774 8.6325-2.85774 12.5 0C23.1175 5.50106 25.5 10.78292 25.5 16.5H23c0-4.57303-1.90625-8.79884-5-11.08535-3.09375-2.28652-6.90625-2.28652-10 0C4.90625 7.70116 3 11.92697 3 16.5H.5z"/><path d="M23.5 16.5c0-5.71709 2.3825-10.99895 6.25-13.8567 3.8675-2.85774 8.6325-2.85774 12.5 0C46.1175 5.50106 48.5 10.78292 48.5 16.5H46c0-4.57303-1.90625-8.79884-5-11.08535-3.09375-2.28652-6.90625-2.28652-10 0-3.09375 2.28651-5 6.51232-5 11.08535h-2.5z"/></g></svg>
<svg width="26" height="26" data-depth="0.4" class="layer p7" xmlns="http://www.w3.org/2000/svg"><path d="M13 22.6459L2.42705 1.5h21.1459L13 22.6459z" stroke="#FFD15C" stroke-width="3" fill="none" fill-rule="evenodd"/></svg>
<svg width="19" height="21" data-depth="0.3" class="layer p8" xmlns="http://www.w3.org/2000/svg"><rect transform="rotate(-40 6.25252 10.12626)" x="7" width="3" height="25" rx="1.5" fill="#6C6CE5" fill-rule="evenodd"/></svg>
<svg width="30" height="25" data-depth="0.3" data-depth-y="-1.30" class="layer p9" xmlns="http://www.w3.org/2000/svg"><path d="M29.8564 16.0718c-2.85854 4.95114-8.1405 8.00057-13.85654 8.00024-5.71605-.00032-10.9981-3.04992-13.85641-8-2.8583-4.95007-2.8584-11.0491.00014-16.00024l2.77128 1.6c-2.28651 3.96036-2.28631 8.84002-.00011 12.8002 2.2862 3.96017 6.5124 6.40017 11.08513 6.4 4.57271-.00018 8.79872-2.43984 11.08524-6.4002l2.77128 1.6z" fill="#6C6CE5" fill-rule="evenodd"/></svg>
<svg width="47" height="29" data-depth="0.2" class="layer p10" xmlns="http://www.w3.org/2000/svg"><g fill="#44D7B6" fill-rule="evenodd"><path d="M46.78878 17.19094c-1.95535 5.3723-6.00068 9.52077-10.61234 10.8834-4.61167 1.36265-9.0893-.26708-11.74616-4.27524-2.65686-4.00817-3.08917-9.78636-1.13381-15.15866l2.34923.85505c-1.56407 4.29724-1.2181 8.92018.90705 12.12693 2.12514 3.20674 5.70772 4.5107 9.39692 3.4202 3.68921-1.0905 6.92581-4.40949 8.48988-8.70673l2.34923.85505z"/><path d="M25.17585 9.32448c-1.95535 5.3723-6.00068 9.52077-10.61234 10.8834-4.61167 1.36264-9.0893-.26708-11.74616-4.27525C.16049 11.92447-.27182 6.14628 1.68354.77398l2.34923.85505c-1.56407 4.29724-1.2181 8.92018.90705 12.12692 2.12514 3.20675 5.70772 4.5107 9.39692 3.4202 3.68921-1.0905 6.92581-4.40948 8.48988-8.70672l2.34923.85505z"/></g></svg>
<svg width="33" height="20" data-depth="0.5" class="layer p11" xmlns="http://www.w3.org/2000/svg"><path d="M32.36774.34317c.99276 5.63023-1.09332 11.3614-5.47227 15.03536-4.37895 3.67396-10.3855 4.73307-15.75693 2.77837C5.76711 16.2022 1.84665 11.53014.8539 5.8999l3.15139-.55567c.7941 4.50356 3.93083 8.24147 8.22772 9.8056 4.29688 1.56413 9.10275.71673 12.60554-2.2227C28.34133 9.98771 30.01045 5.4024 29.21635.89884l3.15139-.55567z" fill="#FFD15C" fill-rule="evenodd"/></svg>
</div>
</div>
</section>
<!-- section about -->
<section id="about">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">About Me</h2>
<div class="spacer" data-height="60"></div>
<div class="row">
<div class="col-md-3">
<div class="text-center text-md-left">
<!-- avatar image -->
<img class="headshot" width="150px" src="images/masoor.jpeg" alt="Hari Masoor" />
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-md-9 triangle-left-md triangle-top-sm">
<div class="rounded bg-white shadow-dark padding-30">
<div class="col">
<div class="row-md-6">
<!-- about text -->
<p>
My experiences range from customer service and troubleshooting…to technically validating 8 figure deals and delivering global keynotes at the largest conferences in the world. Whatever the task - I am confident I have skills to accomplish it. I am currently seeking to apply my unique skill set to fullstack positions.
</p>
<div class="spacer" data-height="30"></div>
<a href="https://github.com/harivmasoor" target="_blank" alt="view on GitHub: u/harivmasoor">
<img src="https://ghchart.rshah.org/harivmasoor" alt="Github Garden for harivmasoor">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- row end -->
<div class="spacer" data-height="70"></div>
<div class="container">
<div class="row stats stats-main">
<div class="col-sm-4">
<!-- fact item -->
<div class="fact-item">
<span class="icon icon-fire"></span>
<div class="details">
<div class="row-counts">
<h3 class="mb-0 mt-0 number min"><em class="count">4</em></h3>
<div class="row-counts t-85">
<h3 class="mb-0 mt-0 number">.</h3>
<h3 class="mb-0 mt-0 number wow fadeIn slower"><em class="count">5</em></h3>
</div>
</div>
<p class="mb-0">Projects Deployed in 2023</p>
</div>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-sm-4">
<!-- fact item -->
<div class="fact-item">
<span class="icon icon-social-github"></span>
<div class="details">
<h3 class="mb-0 mt-0 number"><em class="count" id="contributions">980</em></h3>
<p class="mb-0">GitHub Contributions</p>
</div>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-sm-4">
<!-- fact item -->
<div class="fact-item">
<span class="icon icon-layers"></span>
<div class="details">
<h3 class="mb-0 mt-0 number"><em class="count">28</em></h3>
<p class="mb-0">Technologies</p>
</div>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-sm-4">
<!-- fact item -->
<div class="fact-item">
<span class="icon icon-energy"></span>
<div class="details">
<h3 class="mb-0 mt-0 number"><em class="count">10</em></h3>
<p id="tech-mking" class="mb-0">Years in Technology</p>
</div>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-sm-4">
<!-- fact item -->
<div class="fact-item">
<span class="icon icon-wrench"></span>
<div class="details">
<h3 class="mb-0 mt-0 number"><em class="count">2</em></h3>
<p id="tech-mking" class="mb-0">Years as a Full-Stack Developer</p>
</div>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-sm-4">
<!-- fact item SPACER -->
<div class="fact-item">
<div class="details"></div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section services -->
<section id="skills">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Skills</h2>
<div class="spacer" data-height="60"></div>
<div class="row">
<div class="col-md-4">
<!-- service box -->
<a href="#codemark-dialog" class="work-content">
<div class="service-box rounded data-background padding-30 text-center text-light shadow-blue" data-color="#6C6CE5">
<img width="100%" src="images/logos/SVG/react-redux.svg" alt="React.js" />
<h3 class="mb-3 mt-0">React.js + Redux</h3>
<!-- <p class="mb-0">Lorem ipsum dolor sit amet consectetuer adipiscing elit aenean commodo ligula eget.</p> -->
</div>
</a>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-md-4">
<!-- service box -->
<a href="#fsp-5000px-dialog" class="work-content">
<div class="service-box rounded data-background padding-30 text-center shadow-yellow" data-color="#F9D74C">
<img class="typescript-logo" src="images/logos/ruby.png" alt="Ruby on Rails" />
<h3 class="mb-3 mt-0">Rails</h3>
<!-- <p class="mb-0">Lorem ipsum dolor sit amet consectetuer adipiscing elit aenean commodo ligula eget.</p> -->
</div>
</a>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-md-4">
<!-- service box -->
<a href="#animation-academy-dialog" class="work-content">
<div class="service-box rounded data-background padding-30 text-center text-light shadow-pink" data-color="#ba8bed">
<img class="css-logo" src="images/logos/openai.svg" alt="GraphQL" />
<h3 class="mb-3 mt-0">OpenAI</h3>
<!-- <p class="mb-0">Lorem ipsum dolor sit amet consectetuer adipiscing elit aenean commodo ligula eget.</p> -->
</div>
</a>
</div>
</div>
<div class="mt-5 text-center">
<p class="mb-0">Looking for a well-rounded full-stack developer? <a href="#contact">Click here</a> to contact me! 👋</p>
</div>
<div class="row">
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="130px" src="images/logos/reactjs-ar21.svg" alt="React.js" />
</div>
<span class="logo-subtitle">React.js</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="130px" src="images/logos/Redux_Logo.png"
alt="Redux" />
</div>
<span class="logo-subtitle">Redux</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="110px" src="images/logos/Ruby_On_Rails_Logo.svg"
alt="Ruby on Rails" />
</div>
<span class="logo-subtitle">Ruby on Rails</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="50px" src="images/logos/ruby.png"
alt="Ruby" />
</div>
<span class="logo-subtitle">Ruby</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="75px" src="images/logos/ts-logo-128.svg" alt="TypeScript" />
</div>
<span class="logo-subtitle">TypeScript</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="75px" src="images/logos/JavaScript_logo.svg" alt="JavaScript ES6" />
</div>
<span class="logo-subtitle">JavaScript ES6</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="95px" src="images/logos/NestJS logo.svg"
alt="NestJS" />
</div>
<span class="logo-subtitle">NestJS</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="150px" src="images/logos/Webpack.svg"
alt="Webpack" />
</div>
<span class="logo-subtitle">Webpack</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="100px" src="images/logos/Node.js_logo.svg"
alt="Node.js" />
</div>
<span class="logo-subtitle">Node.js</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="150px" src="images/logos/ag-grid_logo_light.svg"
alt="ag-grid" />
</div>
<span class="logo-subtitle">ag-grid</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="150px" src="images/logos/tailwindcss-logotype.svg"
alt="Tailwind CSS" />
</div>
<span class="logo-subtitle">Tailwind CSS</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="65px" src="images/logos/Git-icon-black.svg"
alt="Git WorkFlow" />
</div>
<span class="logo-subtitle">Git WorkFlow</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="80px" src="images/logos/graphql logo.svg"
alt="GraphQL" />
</div>
<span class="logo-subtitle">GraphQL</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="100px" src="images/logos/Sql_data_base_with_logo.png" alt="SQL" />
</div>
<span class="logo-subtitle">SQL</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="130px" src="images/logos/MongoDB_Logo.svg"
alt="MongoDB" />
</div>
<span class="logo-subtitle">MongoDB</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="100px" src="images/logos/Axios_logo_(2020).svg"
alt="Axios" />
</div>
<span class="logo-subtitle">Axios</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="120px" src="images/logos/mongoose_logo.png" alt="Mongoose" />
</div>
<span class="logo-subtitle">Mongoose</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="130px" src="images/logos/Expressjs.png"
alt="Express" />
</div>
<span class="logo-subtitle">Express.js</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="70px" src="images/logos/HTML5_logo_and_wordmark.svg"
alt="HTML5" />
</div>
<span class="logo-subtitle">HTML5</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="80px" src="images/logos/Sass_Logo_Color.svg"
alt="SCSS" />
</div>
<span class="logo-subtitle">SCSS</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="110px" src="images/logos/Heroku_logo.svg"
alt="Heroku" />
</div>
<span class="logo-subtitle">Heroku</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="120px" src="images/logos/Netlify_logo.svg"
alt="Netlify" />
</div>
<span class="logo-subtitle">Netlify</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="55px" src="images/logos/CSS3_logo_and_wordmark.svg"
alt="CSS3" />
</div>
<span class="logo-subtitle">CSS3</span>
</div>
</div>
<div class="col-md-3 col-6">
<div class="client-item">
<div class="inner">
<img width="80px" src="images/logos/linux-logo.svg"
alt="UNIX" />
</div>
<span class="logo-subtitle">UNIX</span>
</div>
</div>
</div>
</section>
<!-- section experience -->
<section id="experience">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Experience</h2>
<div class="row">
<div class="col-md-6">
<!-- timeline wrapper -->
<div class="timeline edu bg-white rounded shadow-dark padding-30 overflow-hidden">
<!-- timeline item -->
<div class="timeline-container wow fadeInUp">
<div class="content">
<span class="time">2023</span>
<h3 class="title">Full Stack Developer</h3>
<p>
Building dreams to life working across FullStack web development, mobile development, and cloud computing.
</p>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.2s">
<div class="content">
<span class="time">2022</span>
<h3 class="title">Blockchain Architect</h3>
<p>Delivered the Keynote Speech at the World Blockchain Summit 2022 at Atlantis, Dubai. Covered the future of NFTs with the largest publication in the Blockchain Industry. </p>
<div class="spacer" data-height="15"></div>
<span class="icon icon-link"></span>
<a href="https://www.linkedin.com/in/harimasoor/overlay/1635506473916/single-media-viewer/?profileId=ACoAABXavEYBo6_4ZGoEzyTQNKUMEV3wBaugC7g" target="_blank">
Keynote Speech
</a>
<div class="spacer" data-height="15"></div>
<span class="icon icon-link"></span>
<a href="https://www.linkedin.com/in/harimasoor/overlay/1635513493928/single-media-viewer/?profileId=ACoAABXavEYBo6_4ZGoEzyTQNKUMEV3wBaugC7g" target="_blank">
Sponsored Webinar
</a>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.4s">
<div class="content">
<span class="time">2021</span>
<h3 class="title">Palo Alto Networks</h3>
<p>Educated national stakeholders on cloud identity management, cloud workload firewalling, and IaC Security</p>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.4s">
<div class="content">
<span class="time">2016-2020</span>
<h3 class="title">VMware</h3>
<p>Delivered most viewed Carbon Black Threat Intelligence demo on Youtube. Worked with technical and non technical stakeholder on definining requirements.</p>
<div class="spacer" data-height="15"></div>
<span class="icon icon-link"></span>
<a href="https://www.youtube.com/watch?v=5G2CCH6z-sY&t=136s" target="_blank">
Carbon Black Threat Intelligence Demo
</a>
<div class="spacer" data-height="15"></div>
<span class="icon icon-link"></span>
<a href="https://www.linkedin.com/pulse/fulfillment-workplace-hari-masoor" target="_blank">
Article
</a>
<div class="spacer" data-height="15"></div>
<span class="icon icon-link"></span>
<a href="https://www.linkedin.com/in/harimasoor/details/featured/1605301570260/single-media-viewer/?profileId=ACoAABXavEYBo6_4ZGoEzyTQNKUMEV3wBaugC7g" target="_blank">
Service Leadership
</a>
</div>
</div>
<!-- main line -->
<span class="line"></span>
</div>
</div>
<div class="col-md-6">
<!-- responsive spacer -->
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
<!-- timeline wrapper -->
<div class="px-4">
<h3 class="subtitle wow fadeInUp">Products</h3>
</div>
<div class="timeline exp bg-white rounded shadow-dark padding-30 overflow-hidden">
<!-- timeline item -->
<div class="timeline-container wow fadeInUp">
<div class="content">
<span class="time">Full-Stack AI (Azure, OpenAI, Next.js)</span>
<h3 class="title">Minority Report</h3>
<p>Full Stack RAG application connected to the SF Crime Database that use AI to handle business intelligence queries</p>
<div class="spacer" data-height="15"></div>
<span class="icon icon-link"></span>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp">
<div class="content">
<span class="time">MERN Stack</span>
<h3 class="title">BudgetBuddy</h3>
<p>Led 4 Fullstack developers to create a Finance Application that allows the user to view their income streams and daily expenses. Built on MERN (MongoDB, Express.js, React.js, Node.js) </p>
<div class="spacer" data-height="15"></div>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.2s">
<div class="content">
<span class="time">Social Media</span>
<h3 class="title">LocalVoices</h3>
<p>Social media site catered to history buffs using React, Redux, Ruby on Rails, Node.js, and Webpack.</p>
<div class="spacer" data-height="15"></div>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.4s">
<div class="content">
<span class="time">Vanilla JavaScript</span>
<h3 class="title">Podify</h3>
<p>Podify transcribes podcast or song audio from Spotify into realtime text, using Spotify SDK, Chrome SDK, OpenAI API.</p>
<div class="spacer" data-height="15"></div>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp">
<div class="content">
<span class="time">iOS</span>
<h3 class="title">HabitCrusher</h3>
<p>Built using Swift and Xcode that allows a user to track habits and step counts </p>
<div class="spacer" data-height="15"></div>
</div>
</div>
<!-- main line -->
<span class="line"></span>
</div>
</div>
</div>
</div>
</section>
<!-- section works -->
<section id="works">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Products</h2>
<div class="spacer" data-height="60"></div>
<!-- portfolio filter (desktop) -->
<ul class="portfolio-filter list-inline wow fadeInUp">
<li class="current list-inline-item" data-filter="*">All Products</li>
<li class="list-inline-item" data-filter=".mern">MERN Stack</li>
<li class="list-inline-item" data-filter=".full-stack">Full-Stack</li>
<li class="list-inline-item" data-filter=".ruby-on-rails">Ruby on Rails</li>
<li class="list-inline-item" data-filter=".vanilla-js">Vanilla JavaScript</li>
<li class="list-inline-item" data-filter=".react-js">React.js</li>
<li class="list-inline-item" data-filter=".widgets">iOS</li>
</ul>
<!-- portfolio filter (mobile) -->
<div class="pf-filter-wrapper">
<select class="portfolio-filter-mobile">
<option value="*">All Projects</option>
<option value=".mern">MERN Stack</option>
<option value=".full-stack">Full-Stack</option>
<option value=".ruby-on-rails">Ruby on Rails</option>
<option value=".vanilla-js">Vanilla JavaScript</option>
<option value=".react-js">React.js</option>
<option value=".widgets">iOS</option>
</select>
</div>
<!-- portolio wrapper -->
<div class="row portfolio-wrapper">
<!-- CodeMark -->
<div class="col-md-4 col-sm-6 grid-item mern full-stack react-js design">
<a href="#codemark-dialog" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">MERN Stack</span>
<h4 class="title">BudgetBuddy</h4>
<span class="view-details-button">
View project details
<i class="small icon-arrow-right"></i>
</span>
</div>
<div class="thumb">
<img src="images/projects/BudgetBuddy1.gif" alt="MERN Stack CodeMark Project" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="codemark-dialog" class="white-popup zoom-anim-dialog mfp-hide">
<h1>BudgetBuddy</h1>
<h5>React.js, Redux, MongoDB, Express, Mongoose, Node.js, Webpack, HTML5, CSS3</h4>
<div style="padding:50.05% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/862216049?badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="BudgetBuddy"></iframe></div>
<script src="https://player.vimeo.com/api/player.js"></script>
<h3>Smart notes for code</h3>
<p>Led 4 Fullstack developers to create a Finance Application that allows the user to view their income streams and daily expenses. BudgetBuddy cleverly allows the user to set budgets for popular expense categories and create savings goals for big events and life decisions</p>
<img src="images/projects/BudgetBuddyImage.png" alt="CodeMark Desktop Mockup" />
<div class="spacer" data-height="64"></div>
<img class="inline-mockup-img" src="images/projects/BudgetBuddyMobile.jpeg" alt="CodeMark Mobile Mockup" >
</a>
<ul class="project-bullets">
<li>
Led a team of 3 engineers utilizing the feature branch workflow minimizing potential merge conflicts
</li>
<li>
Held daily standup meetings to review progress on assigned tasks, update the project wiki with our progress, and adjust our MVP features based on new findings and experience
</li>
<li>
Acted as a product manager and planned the future product roadmap
</li>
<li>
Utilized the React Context API to manage the state of the application and reduce the number of props passed down to child components
</li>
</ul>
<a href="https://github.com/harivmasoor/BudgetBuddy" class="btn btn-default" target="_blank">GitHub Repo</a>
</div>
</div>
<!-- 5000px -->
<div class="col-md-4 col-sm-6 grid-item ruby-on-rails react-js full-stack design">
<a href="#fsp-5000px-dialog" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Full-Stack</span>
<h4 class="title">LocalVoices</h4>
<span class="view-details-button">
View project details
<i class="small icon-arrow-right"></i>
</span>
</div>
<div class="thumb">
<img src="images/projects/localVoices.gif" alt="Full-Stack 5000px Project" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="fsp-5000px-dialog" class="white-popup zoom-anim-dialog mfp-hide">
<h1>LocalVoices</h1>
<h5>
Ruby on Rails, PostgreSQL, React.js, Redux, JavaScript ES6, Webpack, HTML5, CSS3
</h5>
<div style="padding:50.05% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/862459228?badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="localvoices"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
<h2>LocalVoices</h2>
<p>Created a full CRUD application based on the NextDoor UI for history buffs to comment and post musings. Built resilient and robust architecture leverage Ruby on Rails for the Backend and React/Redux for the frontend. </p>
<img src="images/projects/LocalVoices.png" alt="5000px Desktop Mockup" />
<div class="spacer" data-height="32"></div>
<ul class="project-bullets">
<li>
Utilized AWS S3 and Rails Active Record associations to enable users to upload photos, avatars and profile covers leading to reduced server load, allowing for scalability of image services
</li>
<li>
Employed the DataTransfer API to allow users to drag and drop files to upload images
</li>
<li>
Rolled a custom lazy loader to dynamically build galleries and only fetch the next 10 images by leveraging a throttled scroll event listener with a Promise based callback that updates state after all requests have resolved
</li>
<li>
Engineered RESTful CRUD cycles for creating new users, profiles, photos, comments, follows, and likes
</li>
<li>
Bootstrapped the current user and profile to the window to ensure the user stays logged when the page is refreshed or internet connection is lost.
</li>
<li>
Incorporated authenticated and protected routes using Rails Router to require new users to create an account before interacting with the main site
</li>
</ul>
<a href="https://github.com/harivmasoor/localVoices" class="btn btn-default" target="_blank">GitHub Repo</a>
</div>
</div>
<!-- Minority Report -->
<div class="col-md-4 col-sm-6 grid-item full-stack design">
<a href="#minority-report-dialog" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Full-Stack AI</span>
<h4 class="title">Minority Report</h4>
<span class="view-details-button">
View project details
<i class="small icon-arrow-right"></i>
</span>
</div>
<div class="thumb">
<img src="images/projects/minorityReport.gif" alt="Minority Report Project" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="minority-report-dialog" class="white-popup zoom-anim-dialog mfp-hide">
<h1>Minority Report</h1>
<h5>Next.js, Stripe, Azure, Python, OpenAI</h5>
<img src="images/projects/MinorityReport.png" alt="Minority Report" />
<h2>Minority Report</h2>
<p>Minority Report is a full-stack AI web application that utilizes Next.js, Stripe, Azure, Python, and OpenAI. It provides up-to-date information on crimes happening in San Francisco, empowering citizens with real-time insights and awareness.</p>
<a href="https://ambitious-cliff-002568b1e.5.azurestaticapps.net/" class="btn btn-default" target="_blank">View live site</a>
<div class="spacer" data-height="20"></div>
<ul class="project-bullets">
<li>Developed using Next.js for server-side rendering and optimized performance</li>
<li>Integrated Stripe for secure and seamless payment processing</li>
<li>Utilized Azure for scalable cloud infrastructure and deployment</li>
<li>Implemented AI capabilities using Python and OpenAI API</li>
<li>Delivers real-time crime data and analytics for San Francisco, enabling informed decision-making and enhanced public safety</li>
</ul>
<a href="https://github.com/Wizzerrd/MinorityReportFrontend/" class="btn btn-default" target="_blank">GitHub Repo</a>
</div>
</div>
<!-- Animation Academy -->
<div class="col-md-4 col-sm-6 grid-item vanilla-js design">
<a href="#animation-academy-dialog" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Vanilla JavaScript</span>
<h4 class="title">Podify</h4>
<span class="view-details-button">
View project details
<i class="small icon-arrow-right"></i>
</span>
</div>
<div class="thumb">
<img src="images/projects/podify.gif" alt="Full-Stack 5000px Project" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="animation-academy-dialog" class="white-popup zoom-anim-dialog mfp-hide">
<h1>Podify</h1>
<h5>Vanilla JavaScript ES6, HTML5, SASS, Webpack, Node.js, Spotify SDK, OpenAI API</h5>
<div style="padding:50.05% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/862475153?badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="Podify"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
<h2>Transcribe Podcasts and Songs!</h2>
<p>Ever wished you could pair your favorite tunes with real-time lyrics or that podcast with a live transcript? Meet Podify! It's not just a player; it's an experience. Dive into Spotify's immense library, enjoy your favorites, and witness the magic of words flowing on your screen in real-time.</p>
<a href="https://harivmasoor.github.io/Podify/" target="_blank">
<img src="images/projects/Podify.png" alt="Animation Academy Desktop Mockup" />
</a>
<div class="spacer" data-height="20"></div>
<ul class="project-bullets">
<li>Leveraged Vanilla JavaScript to engineer game levels and manipulate the DOM based on the current level
</li>
Instant Spotify Connect: Jump right in using your Spotify account.
<li>
Dynamic Search Bar: Why wait? Get real-time suggestions from Spotify's treasure trove of content.