-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1126 lines (1019 loc) · 67.8 KB
/
index.html
File metadata and controls
1126 lines (1019 loc) · 67.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
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">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<!--[if IE]><meta http-equiv="x-ua-compatible" content="IE=9" /><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nitesh Singh| Resume, CV, Portfolio Template</title>
<meta name="description" content="Nitesh Singh - Resume, CV, Portfolio">
<meta name="keywords" content="resume, cv, portfolio, blockchain ,corda, ai, ml ,hsbc, thapar , corda ,gcp ">
<meta name="author" content="nitesh singh">
<!-- ==============================================
Favicons
=============================================== -->
<link rel="shortcut icon" href="images/favicon.png">
<!-- ==============================================
Stylesheet
=============================================== -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/fontawesome-4-7.min.css">
<link rel="stylesheet" type="text/css" href="css/animate.min.css" />
<link rel="stylesheet" type="text/css" href="css/superslides.css">
<!-- ==============================================
Google Fonts
=============================================== -->
<link href='fonts/font.css' rel='stylesheet' type='text/css'>
<link href='fonts/font2.css' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/modernizr.min.js"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- BANNER SECTION -->
<section class="section banner" data-slide="1">
<div class="wrap-circle">
<div class="circle-1">
<div class="circle-2">
<div class="logo">
<h2>Nitesh <span>Singh</span></h2>
<div class="roles">
<div>Programmer</div>
<div>Creative Problem Solver</div>
<div>Blockchain Lead</div>
<div>Learner</div>
<div>Data Science Enthusiast</div>
<div>Curious</div>
</div>
</div>
</div>
</div>
</div>
<div class="wrap-overlay"></div>
<div id="slides">
<div class="slides-container">
<img src="images/slide-3.jpg" alt="books">
<img style="background-color:black;" src="images/slide-4.png" alt="world-map">
<img src="images/slide-1.jpg" alt="Rudhi">
<img src="images/slide-2.jpg" alt="world-map">
</div>
</div>
<!-- -->
</section>
<!-- NAVBAR SECTION -->
<div class="navbar navbar-default main-menu">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html" data-slide="1">
<div class="logo">
<h3>Nitesh <span>Singh</span></h3>
<div>I make things !!</div>
</div>
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li data-slide="1"><a href="#">Home</a></li>
<li data-slide="2"><a href="#about">About Me</a></li>
<li data-slide="3"><a href="#skills">Skills</a></li>
<li data-slide="4"><a href="#projects">Projects</a></li>
<li data-slide="5"><a href="#certifications">Certifications</a></li>
<li data-slide="6"><a href="#achivements">Achievements</a></li>
<li data-slide="7"><a href="#contact">Contact</a></li>
<li data-slide="8"><a href="#social">Social</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
<!-- ABOUT SECTION -->
<section class="section about" data-slide="2">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<a name="about"></a>
<div class="title">
<h2 class="title-section wow fadeInDown">ABOUT ME</h2>
<div class="separator_wrapper wow fadeIn">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
</div>
<p class="subtitle wow fadeInDown">Keeping up with my passion for technology and innovation by developing <strong>Blockchain,Digital Assets</strong> and Machine Learning solutions to real business use cases. 4+ years of Extensive experience in designing and developing
solutions using Cloud(GCP,AWS) and technologies like Tokenisation,Corda, HyperLedger, Fabric, Ethereum,Web Apps, API Infrastructure using Python, Java and Kotlin.Excellent Communication and networking skills</p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 wow fadeInDown" data-wow-delay="500ms">
<div class="title2 wow fadeInDown">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
INFO
</div>
<div class="box-resume info">
<img style=" border: 1px solid #ddd;
border-radius: 50%;
padding: 5px;
width: 200px;" src="images/me.jpg" alt="me">
<table class="table no-border">
<tbody>
<tr>
<th scope="row" class="higlighttext"><i class="fa fa-male"></i> Name</th>
<td>Nitesh Singh</td>
</tr>
<tr>
<th scope="row" class="higlighttext"><i class="fa fa-university"></i> Current Employer</th>
<td>HSBC Software Development Pune</td>
</tr>
<tr>
<th scope="row" class="higlighttext"><i class="fa fa-user-md"></i> Current Role</th>
<td>Senior Consultant Specialist (Tech Lead ,Blockchain and AI)</td>
</tr>
<tr>
<th scope="row" class="higlighttext">Birthday</th>
<td>November 19, 1993</td>
</tr>
<tr>
<th scope="row" class="higlighttext"><i class="fa fa-building"></i> Current City</th>
<td>Pune</td>
</tr>
<tr>
<th scope="row" class="higlighttext"><i class="fa fa-home"></i> Home City</th>
<td>Noida</td>
</tr>
<tr>
<th scope="row"><i class="fa fa-envelope"></i> Email</th>
<td><a href="mailto:nitesh.ns19@gmail.com" title="" class="a-email">nitesh.ns19@gmail.com</a></td>
</tr>
<tr>
<th scope="row">Linkedin</th>
<td><a target="_BLANK" href="https://linkedin.com//in/niteshsingh19">https://linkedin.com//in/niteshsingh19</a></td>
</tr>
<tr>
<th scope="row"><i class="fa fa-github"></i> GitHub</th>
<td><a target="_BLANK" href="https://github.com/nitrek">https://github.com/nitrek</a></td>
</tr>
<tr>
<th scope="row">Website</th>
<td><a target="_BLANK" href="https://nitrek.github.io">https://nitrek.github.io</a></td>
</tr>
</tbody>
</table>
<div class="center-bottom">
<a target="_BLANK" href="resume/NITESHSINGH_v5.0.1.pdf" title="Download Resume" class="download-resume btn btn-default btn-primary">Open PDF Resume</a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 wow fadeInDown">
<div class="title2 wow fadeInDown">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
My Current Role Description
</div>
<p class="leads">I work as a Senior Consultant Specialist for DLT Center of Excellence @ HSBC.</p>
<p>
<ul>
<li>I am Working as a <span class="higlighttext">Tech Lead</span> for DLT COE for Security Services part of Market and Security Services for HSBC. My Responsibility include <span>Architecture Design</span> and <span>Lead Developer</span> for the Digital assets & DLT team compromising of 8 members</li>
<li>I have worked on <span class="higlighttext">6+ Global Blockchain</span> Projects including <span class="higlighttext">Digital Vault</span> build using <span class="higlighttext">Corda</span> one of the first in house blockchain
projects, and first Corda blockchain on google cloud,Won 2 Indutry Awards,Featured in multip media publication including Forbes top 50 blockchain project </li>
<li>Also working with Singapore Stock Exchange on <span class="higlighttext">Tokenisation of Bond</span> using blockchai</li>
<li>Developed multiple quick poc solution as part of <span class="higlighttext">Hackathons</span> , winning many of them eg Mex (Automated Meeting Assistant for summarizing Meetings and more),VirtualWatercooler (Employee wellbeing
app) etc</li>
<li>Part of the <span class="higlighttext">Innovation Team </span> Working on various POC including Chatbots ,ABCIPL (Blockchain and AI Based Platform for IPL),Joinme (Role : Developement and Design , Global Platform,launched by
group CEO UK)</li>
<ul>
</p>
</div>
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 wow fadeInDown">
<div class="title2 wow fadeInDown">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
EDUCATION
</div>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-education experience">
<div class="panel-heading" role="tab" id="heading1">
<i class="fa fa-book"></i>
<p class="date">2012 - 2016</p>
<p class="job"><strong>Bachelor of Engineering in Computer Science</strong><br/>Thapar University</br>CGPA:8.36(Scale:10)</p>
</a>
</div>
</div>
<div class="panel panel-education experience">
<div class="panel-heading" role="tab" id="heading2">
<i class="fa fa-book"></i>
<p class="date">2010 - 2011</p>
<p class="job"><strong>Class 12<sup>th</sup></strong><br/>Delhi Public School,Noida<br/>Marks:91.6%</br>CBSE Board</p>
</a>
</div>
</div>
</div>
<div class="panel panel-education experience">
<div class="panel-heading" role="tab" id="heading3">
<i class="fa fa-book"></i>
<p class="date">2009 - 2010</p>
<p class="job"><strong>Class 10<sup>th</sup></strong><br/>Delhi Public School,Noida</br>Marks:87%</br>CBSE Board</p>
</a>
</div>
</div>
</div>
</div>
<a name="skills"></a>
<div class="clearfix"></div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<div class="title2 wow fadeInDown">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
SKILLS
</div>
<h4 class="skill-title"><i class="fa fa-arrow-circle-right"></i><span class="higlighttext"> Programming </span>
<img src="https://img.shields.io/badge/-Kotlin .-0095D5?&logo=kotlin&logoColor=FFF" alt="Kotlin" width="70" height="20">
<img src="https://img.shields.io/badge/-Java .-FF9900?&logo=java&logoColor=FFF" alt="Java" width="70" height="20">
<img src="https://img.shields.io/badge/-Python .-3776AB?&logo=Python&logoColor=FFF" alt="Python(Micro-services/Flask,Anaconda)" width="80" height="20">
<img src="https://img.shields.io/badge/-Flask .-000000?&logo=Flask&logoColor=FFF" alt="Flask" width="75" height="20">
<img src="https://img.shields.io/badge/-Anaconda-44A833?&logo=Anaconda&logoColor=FFF" alt="Anaconda" width="80" height="20">
<img src="https://img.shields.io/badge/-Angular .-DD0031?&logo=Angular&logoColor=FFF" alt="Angular" width="80" height="20">
<img src="https://img.shields.io/badge/-Typescript-3178C6?&logo=typescript&logoColor=FFF" alt="Typescript" width="85" height="20">
<img src="https://img.shields.io/badge/-Javascript-F7DF1E?&logo=Javascript&logoColor=FFF" alt="Javascript" width="80" height="20">
</h4>
<div class="persen"></div>
<div class="progress">
</div>
<h4 class="skill-title"><i class="fa fa-bitcoin"></i> <span class="higlighttext"> Blockchains </span>
<img src="https://img.shields.io/badge/-Corda-green?&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZIAAAB9CAMAAAC/ORUrAAAAkFBMVEX////gCBzeAADfABDoW2X96ez30tPgABXgABn51djnXGTgABb4zNDnT1rfAA7fAAn/+vv1vMD0tLj98PH84+boVV/+9fb3xcnpZG3wpqjyrLDxn6X1ub363N/rc3rmRlLti5DreoHiCSTtho3qbHTkNULuk5flPEnjJDP4yc3yoqjlOEbkLDzjIjLpcHbtio+98c6pAAANt0lEQVR4nO2da0PiPBOGSyo2WGg5yUmxAnIQYf3//+5tC4JA5p4kjWufd3t/2wXTNFcOk5lJ8LxKF5olLULJ4rfr9o/qQQSExONv1+0f1YNfI+Tf/Xbd/lFVSEqnCknpVCEpnSokpVOFpHSqkJROFZLSqUJSOlVISqcKSelUISmdKiSlU4WkdKqQlE4VktKpQlI6VUhKpwpJ6VQhKZ0qJKVThaR0qpCUThWS0qlCUjpVSEqnCknpVCEpnSokpVOFpHSqkPyq2vV6vde+/D/nSPrDydPscSnFQfP16HPSLFrz3nDy+rCL8xL9/d1q0hwULbKwps/j1edssdp2h32LPx9OZq29+FL6Tt3G8ROXSKaT2S5/QOwH8liKDKLsf3azjkW1c7U7s3lWRHQsU4Z+9s9g1O3ZFkk/q07qoiv3x8mhKeP42KSj8VT/MffbVt5K8tTYYd5KH59ZK7lCUp+MsqeERGFhWvU/7yYFHtW5S0uVihJl+hLLSZsvwURNQer+/K3uOu0RV++XNaneM/qfaZdSt3qQFpKMk0D5oRmS5iLtx5Gq4b4rFvOuWQtNZ2mxoMT0FUYNvhh93QvqUWckTzc8DpKhzhOaj0LAhvLVpR8+00TSnMXqfqyotdgYtGCjpVFuJFr3fFG6AkiGh288R1SL6rTXcEeMDz1pIam/Bro8cgXiRbN16o+atfdFy2AaxwJIJtnn7RHdxcUTV/p0DUaA1qvySNhRqKr5XMs+eYUz1lVNxcjRSg+QrNKP+3Py8/QbnAGzKDRC8hflkHQ2Bs12ViDGbNM00bsrFMfPuq0ORSOJZ+lMGqFOLnBX6+/MXkklBsn7RlDmFSfBXXKwMC5aak+IUDSS6C01x2CtsME1Ljhn5YJI+kmRR4g3VPvB2rw/iQcn5jCNxH/o4zk6WKOCX4wneGUlAJKi06IY0WX3A+PpUPJLq55oJHKzw31QfIJyW8UnrUw0kvqy8BNoJkPz+VAezCEHopHUJNPNBb3naiduiCAkfvFRKF7VZT+bj3D5tWcoLoCEfSHSkeeMCJq4Jg6eobYZO79KpBASslBnROBasi5qYWctqXDmNi1WQWezllcEiZxTZb45IwKRNBwYEFHrpti6DRFHK3sueyQRtTi+uiOCjeCFi6nrens3qJkb1m72I1+yR0LtfzsOiWAk7U3xnY+UV4Um5s6A6MOpe74AEvWC1nNgCZ2Fd+9NF8NkdVGkxciTtbo7Hl4hJGovW8vG5USKcag4mLrkhZViA9nl0p7JGomMleV1XU5bLBIwdckwuxtSY8ReLM1zc5dZ/OAQRyZrJP6trZJqwO0vTZ/CeILfFdWXeQh5vlkmSZ4QwdjK0j8XZ2GZuJ62CiC5moOPmrkdJLxz/uqBGY7a3bZz9lHfTx4F4z097RfrNtOWS/v3UGNrJKrgAOOoPCmbVbSmCBbJxdSV8nhTpYx09+gto9PFtw/m62Cwc5wMUQSJKrD5ELN/J7MMF7lLkjy1h9uA81HF09SVzlF3ZEwNzkji2KoNm0FinYdEyh6JorApW1ggxKzz1Y97708tISBFjUDvwepKgbyiQOszio4eB3zL3EMTLJ0PEm0kwUU+Uez7H4rC/jCDRIr1TadqzlDoXANJO4shxOyUDkzB+LD55jtUrtCPz/loGvFiY2khSXkkq+57f5Cl4k0bncmiFSh8CD0mTSQKlaO8Pd6Tf6eToXIvAvHG54K+kf3luIOf8bNu1jF3dy+zx/CQ2xVu9FIg6u+dZ+0MUQ0kgVh2tYbnGJcl1lS7jYplOz4JnRRGYE4d/MFsS0Qi6X5ZvIPOQ2rbxTrOrUnra3LZrXQI8kjETjfBGUchRUL+4d/JnB+R9lTuG0KrTSYpHi8tmt7nRUYoodU3GyYdZG/8LoZFwmZynIQNlghE6v8Oki1OWWMW97h269Ob3nHz5fB6oYzV+7nv4pAY7IRWqKhwDrrH30FCd5k47XYDZtZt2ZxcmCksF3r+PopBwjM9C85bMBD6E0j6751utzvONZk8d5r9Hp2Mc8fNW2JmUYW2OvEoivBCj5Eogm50GyB7K4ZJU06RTJ/Hs0QKhcjahWtkkNW4nC9KVLw7iOEqD5HIyCD3GIaucGKkMySN7Sg7ihPreIC/v+fO85C/NFga1eIo2t8XqTZ1J0EkWjbeqQagm5FB4YPcIGm+CI0DJkrNPXpWqxHOI7Y6yF+A1gOMxOQoyw74EZmUGgdIpq+h0YGGK6WmEai91W+k7ZFfVQBjByEJ6J3ErQagf4Y7bGQURjJtmR9ouBDKCpORzSkFnGYWA3MBITEKBaBxiiqQqSCSFEjRlC407XK1V2vJZO/SnRQhMZq30OrOebCLIVlYnTC5lNeiW1Bji34rzocJAvYAia5P7SB6b1yTMeNFKIJkunERyPR25Lwn5zabxCemVhFtVgMk6ug6JTDyA26/WgBJ18UplhTJnPwINB56JWbkyhr5pwCJkQnsPdLTOftS9kgWTk6xpEjoj6j0eqj2hotjC9K5DpCYBfo/wGTMGZHWSJxlXyAkNvkObXZ/JMiFGiExys8HZjj7UrZIXCQFH+QcCbtHolsXITG6CGZO1wGcDTrIEgmwKEyFkBh4Xk9qs/lsVkiMbGAPTJ4sWzsk0wK79WuB5d1uLaFj11/F2kxckRES4E9hXUR2SJbFj/yc5NFNaLdTZLNdrJZ3MyRoeecSAayQwIiZqbwPEkmQ2OQFLbhkHfLAlDsk9G1BYIweZYOkbuiAx4K7d/cuLrjDcIYEjFQ2gcQGCW//hrFuCCvzcdFbO6vDCkzcWJ2/e5AzJHT+B/9OFkh6NThIwixF52Xc7Q6bqYZZzLeLOi5KePKtTiuA9qhdn2q5lDMkn8CafsV/2qZnDRIJnBhCsdvemhRthAR6TW0iWDiCjixrZ0hAGzExRW9gke24Bq4tsVfa/ChwCD23kVVOBkpZlz4wGZwhARke4R4vkCAPkUIyDcHOlOgBEAnMdWT3uuq3AlVE0QpnSGCoGUccwACjkICka/JmFIwEWIx8dEEpupPiQ9nOkPSAo43Zbf2hV0IKyRv5J+GGigRgJDDA4VudWaBccCAVN5MzJMjJJWto5hqAY9kUEtpXQJt3yC7lzvLGaxsmakNdwEuzXCIBARPsukP9k0DSI/lLOtEVnURMP8aRl3hnc1v1021SQMim6blDgo4yyJCejNtgeFFIGuS8BTYRaBx4rKc/UDjphx/cxn56dbFeKObsSTp3SHBGGN1SsCkIJHTWVfSHfBDy5XP1r2W7O397+cKJ0DjY8r4W4jAzy0Bo3RvtDglM4aSnLtXJ9bMIJPTGDlgStEmQI+GvIZBCvHzdkz+cpYj04vL97WMtv68+WWlFoBwigYnONbFV/tEUew8JJLTZTLvz4KVO2Re4pJK8+Kxt5Tw+3kEPVq4rDfR9lw6RoBzOGnEeoCFxggmBhN6W0GsJnCCzLyCHy4XkeT6wim8xcojEAzvqvPrrmy615a61JJDQuzDSU4Bz3fKv2NwyxDgmbOQSyQsTtvHF58ULDPlLTI3XEtLr/QHDfPlXBjb31dlE5rFcItE4iipak6Nbdfo018iKM7a4aoF6U8dcknv4kkWgUn81cdGMxkhQsPdLfv47SLvsMiCdLmmORJk1Vv9gGvv4PYtIpdWROSinSDQv45IBs+qcRW0V0Sx0y2TLZtYfv8gdtFZI+s5+JeMop0hQ5pCdjB0qmcTye7xkMN7zA/LryzY3O5qcwtGRWyQWvQzL3O2YKRC11Xs2x/eG4xZzG9dBX+X2fvtGWs81Eu6gi7HMnfMHnU/06iV7nQq2uAhRmuUgsnKMpMDl3EpRSJzefFv7hsQm8zvYO/2BRcdIvBe3bUUh6WsbCHr6VnSLv3DoWsLpb6S6RtKuOV3hyXSIxGH2ae0CSXtvXrTdmV9CrpFwni5DkUgcz1zfi+75FlecO9zEO0fi9Mp5GkkbHis31kXZfYsf2HJodrlH4j06ZEInoLq9I/qy7L7FAUh34+QHkLR37uZ5kDmP/YiGuiq7PrdY412tJz+AxOsxQRADASRTRydHc10XbvM7Rejnzkz0E0i8vsUCqRY68uPygMlt6arbzRiJnROv8I8g8erSZFYBqyk8qzgyY4JyAxSlP+MbjBUK3KwnP4PEq8Mrxa9eZEznjuATvUaGRBDQN0Ao7wXoPRhZXlIsbVK9bvVDSLIurDfwxXwKvJXMuXeDcSI2PZDoqi5+ONefvQSR72GuH0PijXU8fn5up9AXYXK3Q+jO+FKM2uj8IFX+SvNSqVi8OPNz/RwSr55wrxOKdT7W8UWYUJ1YZ8YXQZZjCOwBsvz2Kma7Vpbf5TDc+4NI0oESIyih2B+TMQdkgJW/aag3Yvd1sVjk8XhwaAI9oZugkIuMRAB/gMBYP4okS1ejGiwS+1OO+4CMSOncx9XcoX4cCjE7thhIrMRPqD9thOqawuwHbOI3ndvVTXSvur31KCeRme7HLZXsVUbfkjHba7IOWhdQNVtEqCrlsd+eMlbq9Kuyj6h3X+b5N6Mgl5+nPb5NXAfeUw3em6QcLVjTpyS/KDYMZRj4eQrn6CrZqlenpDkl9MbJ1WW0WVK02Kwumox8iuZK0HierEZJrsfXydB9Vt3fVHPyst7t5/tlazZ+dp75dFCju0jm50PuyWvnv91m/z+qNxrTvimM/wGi+9tr+kMLWwAAAABJRU5ErkJggg=="
alt="Corda(Certified)" width="80" height="20">
<img src="https://img.shields.io/badge/DAML-FFF.svg?logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOTEuMSAyMjMuOSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTkxLjEgMjIzLjk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojNTE3Q0Q5O30KCS5zdDF7ZmlsbDp1cmwoI1NWR0lEXzFfKTt9Cgkuc3Qye2ZpbGw6IzIxMzU2QTt9Cgkuc3Qze2ZpbGw6IzgxQTlGRjt9Cjwvc3R5bGU+CjxnPgoJPHBhdGggY2xhc3M9InN0MCIgZD0iTTcwLjQsMGg1MC4zbDcwLjQsMjIzLjloLTUwLjNMNzAuNCwweiIvPgoJCgkJPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIyMTYuOSIgeTE9IjI1LjciIHgyPSI0NC42IiB5Mj0iMTk4IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEgMCAwIC0xIDAgMjIzLjgpIj4KCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojNTE3Q0Q5Ii8+CgkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6IzJDNThCOSIvPgoJPC9saW5lYXJHcmFkaWVudD4KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik03MC40LDBoNTAuM2w3MC40LDIyMy45aC01MC4zTDcwLjQsMHoiLz4KPC9nPgo8cG9seWdvbiBjbGFzcz0ic3QyIiBwb2ludHM9Ijc1LjQsMTQzLjkgNTAuMywyMjMuOSAwLDIyMy45IDI1LjEsMTQzLjkgIi8+Cjxwb2x5Z29uIGNsYXNzPSJzdDMiIHBvaW50cz0iMTIwLjcsMCA5NC45LDgyIDQ0LjYsODIgNzAuNCwwICIvPgo8L3N2Zz4K"
alt="DAML" width="70" height="20">
<img src="https://img.shields.io/badge/-Bitcoin-blue?&logo=Bitcoin&logoColor=FFF" alt="Bitcoin" width="75" height="20">
<img src="https://img.shields.io/badge/-Hyperledger Fabric-000?&logo=Hyperledger&logoColor=FFF" alt="Hyperledger Fabric" width="140" height="20">
<img src="https://img.shields.io/badge/-Ethereum(Certified)-3C3C3D?&logo=Ethereum&logoColor=FFF" alt="Ethereum" width="150" height="20">
</h4>
<div class="persen"></div>
<div class="progress">
</div>
<h4 class="skill-title"><i class="fa fa-cloud" style="color:green"></i> <span class="higlighttext">Cloud </span>
<img src="https://img.shields.io/badge/-GCP-4285F4?&logo=Google Cloud&logoColor=FFF" alt="Google Cloud(Certified Professional Cloud Architech)" width="60" height="20">
<img src="https://img.shields.io/badge/-AWS-232F3E?&logo=Amazon AWS&logoColor=FFF" alt="AWS" width="60" height="20">
<img src="https://img.shields.io/badge/-DataAnalytics-FF4F64?&logo=google Analytics&logoColor=FFF" alt="DataAnalytics" width="100" height="20">
<img src="https://img.shields.io/badge/-Hadoop-yellow?&logo=Apache&logoColor=FFF" alt="Hadoop" width="80" height="20">
<img src="https://img.shields.io/badge/-Hive-FDEE21?&logo=Apache Hive&logoColor=FFF" alt="Hive" width="70" height="20">
<img src="https://img.shields.io/badge/-Tensor Flow-FF6F00?&logo=Tensorflow&logoColor=FFF" alt="Tensor Flow" width="90" height="20">
<img src="https://img.shields.io/badge/-Docker-2496ED?&logo=Docker&logoColor=FFF" alt="Docker" width="80" height="20">
<img src="https://img.shields.io/badge/-Containers-333333?&logo=Linux Containers&logoColor=FFF" alt="Containers" width="80" height="20">
<img src="https://img.shields.io/badge/-Kubernetes-326CE5?&logo=Kubernetes&logoColor=FFF" alt="Kubernetes" width="90" height="20">
</h4>
<div class="persen"></div>
<div class="progress">
</div>
<h4 class="skill-title"><i class="fa fa-arrow-circle-right"></i> <span class="higlighttext">Frameworks </span>
<img src="https://img.shields.io/badge/-Spring-6DB33F?&logo=Spring&logoColor=FFF" alt="Spring" width="70" height="20">
<img src="https://img.shields.io/badge/-Hibernate-59666C?&logo=Hibernate&logoColor=FFF" alt="Hibernate" width="90" height="20">
<img src="https://img.shields.io/badge/-Spring Boot-3a7f09?&logo=Spring&logoColor=FFF" alt="Spring Boot" width="100" height="20">
<img src="https://img.shields.io/badge/-Spring Security-133e93?&logo=Spring&logoColor=FFF" alt="Spring Security" width="100" height="20"> </h4>
<img src="https://img.shields.io/badge/-Elastic Stack-005571?&logo=Elastic&logoColor=FFF" alt="Elastic Logstash " width="100" height="20"> </h4>
<img src="https://img.shields.io/badge/-Kibana-005571?&logo=Kibana&logoColor=FFF" alt="Kibana" width="60" height="20"> </h4>
<div class="persen"></div>
<div class="progress">
</div>
<h4 class="skill-title"><i class="fa fa-arrow-circle-right"></i> <span class="higlighttext">Databases </span>
<img src="https://img.shields.io/badge/-MySQL-orange?&logo=MySQL&logoColor=FFF" alt="MySQL" width="70" height="20">
<img src="https://img.shields.io/badge/-PostgreSQL-336791?&logo=PostgreSQL&logoColor=FFF" alt="Spring" width="90" height="20">
<img src="https://img.shields.io/badge/-MongoDB-47A248?&logo=MongoDB&logoColor=FFF" alt="Spring" width="90" height="20">
<img src="https://img.shields.io/badge/-Oracle-F80000?&logo=Oracle&logoColor=FFF" alt="Spring" width="70" height="20">
</h4>
<div class="persen"></div>
<div class="progress">
</div>
<h4 class="skill-title"><i class="fa fa-arrow-circle-right"></i> <span class="higlighttext">Development/Devops Tools</span>
<img src="https://img.shields.io/badge/-IntelliJ IDEA-000000?&logo=IntelliJ IDEA&logoColor=FFF" alt="IntelliJ IDEA" width="100" height="20">
<img src="https://img.shields.io/badge/-Maven-C71A36?&logo=Apache Maven&logoColor=FFF" alt="Maven" width="70" height="20">
<img src="https://img.shields.io/badge/-Gradle-02303A?&logo=Gradle&logoColor=FFF" alt="Gradle" width="70" height="20">
<img src="https://img.shields.io/badge/-Nexus-F80000?&logo=Next.js&logoColor=FFF" alt="Nexus" width="70" height="20">
<img src="https://img.shields.io/badge/-Git-F05032?&logo=Git&logoColor=FFF" alt="Git" width="60" height="20">
<img src="https://img.shields.io/badge/-GitHub-181717?&logo=GitHub&logoColor=FFF" alt="GitHub" width="80" height="20">
<img src="https://img.shields.io/badge/-Jenkins-D24939?&logo=Jenkins&logoColor=FFF" alt="Jenkins" width="80" height="20">
<img src="https://img.shields.io/badge/-Ansible-EE0000?&logo=Ansible&logoColor=FFF" alt="Ansible" width="80" height="20">
<img src="https://img.shields.io/badge/-VS Code-007ACC?&logo=Visual Studio Code&logoColor=FFF" alt="VS Code" width="90" height="20">
</h4>
<div class="persen"></div>
<div class="progress">
</div>
<h4 class="skill-title"><i class="fa fa-arrow-circle-right"></i> <span class="higlighttext">SDLC </span>
<img src="https://img.shields.io/badge/-Agile-161D4E?&logo=WhiteSource&logoColor=FFF" alt="Agile" width="60" height="20">
<img src="https://img.shields.io/badge/Jira-0052CC?&logo=Jira&logoColor=FFF" alt="JIRA" width="60" height="20">
<img src="https://img.shields.io/badge/-Scrum(Sprints)-7B16FF?&logo=Spectrum&logoColor=FFF" alt="Scrum" width="100" height="20">
<img src="https://img.shields.io/badge/-Confluence-172B4D?&logo=Confluence&logoColor=FFF" alt="Confluence" width="80" height="20">
</h4>
<div class="persen"></div>
<div class="progress">
</div>
<h4 class="skill-title"><i class="fa fa-arrow-circle-right"></i> <span class="higlighttext">Operating System</span>
<img src="https://img.shields.io/badge/-Linux Redhat-EE0000?&logo=Red hat&logoColor=FFF" alt="Linux Redhat" width="100" height="20">
<img src="https://img.shields.io/badge/-Linux Centos-262577?&logo=Centos&logoColor=FFF" alt="Linux Centos" width="100" height="20">
<img src="https://img.shields.io/badge/-Ubuntu-E95420?&logo=Ubuntu&logoColor=FFF" alt="Ubuntu" width="80" height="20">
<img src="https://img.shields.io/badge/-Windows Server-0078D6?&logo=Windows&logoColor=FFF" alt="Windows Server" width="100" height="20">
</h4>
<div class="persen"></div>
<div class="progress">
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<div class="title2 wow fadeInDown">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
Media Coverage of my Work (Click to open)
</div>
<h4 class="skill-title"><i class="fa fa-cloud"></i><a target="_BLANK" href="https://j.mp/niteshpaper1"> Published Paper on Blockchain based data-sharing Framework> </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-globe "></i><a target="_BLANK" href="https://j.mp/forbeshsbc"> HSBC Moves $20 Billion From Paper To Blockchain In One Of The Biggest Financial Deployments https://j.mp/reutershsbc </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-bitcoin"></i><a target="_BLANK" href="https://j.mp/dvr3gcp"> HSBC has become the first financial institution to move software firm R3’s blockchain platform Corda Enterprise on to Google Cloud </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-trophy"></i><a target="_BLANK" href="https://j.mp/digitalvault-forbes"> Blockchain 50 : Forbes </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-chain"></i><a target="_BLANK" href="https://j.mp/sgxhsbc"> HSBC partners with SGX and Temasek to explore DLT for fixed income </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-chain"></i><a target="_BLANK" href="https://j.mp/hashaward1"> HSBC, SGX and Temasek winner of the ‘Best Digital Collaboration in Singapore’ for the first fully digitalised bond issuance </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-chain-broken"></i><a target="_BLANK" href="https://j.mp/hashdeal"> SGX, in collaboration with HSBC and Temasek, completes pilot digital bond for Olam Internation </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-codepen"></i><a target="_BLANK" href="https://j.mp/hsbchash"> How blockchain could revolutionise bonds </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-trophy"></i><a target="_BLANK" href="https://j.mp/dvbanker1"> The Banker:Transaction Banking Awards 2020 https://j.mp/dvbanker2 </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<h4 class="skill-title"><i class="fa fa-trophy"></i><a target="_BLANK" href="https://j.mp/proxy-voting-award"> Global Custodian:Innovation in Proxy Voting Award </a></h4>
<div class="persen"></div>
<div class="progress"> </div>
<!-- <div class="persen"></div>
<div class="progress"> </div>-->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section stats">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="title2 wow fadeInDown">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
My STATS
</div>
</div>
<div class="clearfix"></div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-2">
<div class="stat-item">
<h3 class="counter" id='expCount'>
<script>
today = new Date()
past = new Date(2016, 00, 01) // remember this is equivalent to 1st jan 2016 ( yyyy,mm,dd)
//dates in js are counted from 0, so 05 is june
function calcDate(date1, date2) {
var diff = Math.floor(date1.getTime() - date2.getTime());
var day = 1000 * 60 * 60 * 24;
var days = Math.floor(diff / day);
var months = Math.floor(days / 29.53);
var daysAfterMonth = Math.floor(diff / day) - Math.floor(months * 29.53);
var message = months + " months " + daysAfterMonth + " day(s)"
return message
}
a = calcDate(today, past)
document.getElementById("expCount").innerHTML = a;
</script>
</h3>
<h4>Experience</h4>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-2">
<div class="stat-item">
<h3 class="counter">10</h3>
<h4>Award</h4>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-2">
<div class="stat-item">
<h3 class="counter">600+people</h3>
<h4>Trained</h4>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-2">
<div class="stat-item">
<h3 class="counter">20</h3>
<h4>Professional Projects & POC</h4>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-2">
<div class="stat-item">
<h3 class="counter">25+</h3>
<h4>Technologies</h4>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-2">
<div class="stat-item">
<h3 class="counter">4</h3>
<h4>Different Business Domains</h4>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-3 col-lg-2">
<div class="stat-item">
<h3 class="counter">30+</h3>
<h4>Personal Projects</h4>
</div>
</div>
</div>
</div>
</section>
<!-- Projects SECTION -->
<a name="projects"></a>
<section class="section about" data-slide="3">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="title">
<h2 class="title-section wow fadeInDown">Professional Projects</h2>
<div class="separator_wrapper wow fadeIn">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
</div>
<p class="subtitle wow fadeInDown">Following are the some of the significant projects done by Me</p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-xs-12 col-sm-6 col-md-6 col-md-offset-1 col-lg-10 col-lg-offset-1">
<div class="years2">
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
Present
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="#">
<h4>Digital Vault</h4>
</a>
<p class="subtitle">HSBC</p>
<p>
<ul>
<li>My Role:Architect,Solution design and developement and Team Lead Starting in project with a 2 Member team</li>
<li>Blockchain based Application for Private Placement Platform</li>
<li>First Few Application in HSBC to go in Production in HSBC</li>
<li>First Few Application Made using Corda to be hosted on Google CLoud</li>
<li> Has Won Many Inductry awards and numerous media reconisations</li>
<li>Technology used:Corda,Java,Kotlin,Angular ,Postgres,Google Cloud , Micro-services</li>
</ul>
</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
Present
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="#">
<h4>Project HASH</h4>
</a>
<p class="subtitle">HSBC in partnership with Singapore Stock Exchange</p>
<p>
<ul>
<li>My Role:Developer and Team Lead</li>
<li>Blockchain based Application for Bond Tokenisation</li>
<li>Won Award for Best Digital Collaboration</li>
<li>Technology used:DAML, AWS, Docker ,Container,JAVA,Spring</li>
</ul>
</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<!-- <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
Preset
</div>
</div> -->
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="#" target="_blank">
<h4>Automatic Minutes of Meeting</h4>
</a>
<p class="subtitle">HSBC</p>
<p>
<ul>
<li>NLP and AI based Application to Record and auto compute MoM</li>
<li>Also shows the sentiment,Action Items and Keywords of Meeting</li>
<li>Won First Prize in the National HSBC Technology hackathon</li>
<li>Technology used:Python,Angular,Speech to Text (google),Sentiment</li>
<li>My Role:Design and development of Machine Leaning , NLP and API </li>
</ul>
</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<!-- <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
April 2018
</div>
</div> -->
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="#" target="_blank">
<h4>Corporate Action Event Capture</h4>
</a>
<p class="subtitle">HSBC</p>
<p>
<ul>
<li>Blockchain Based Application for Distributing CA based on Subscription</li>
<li>First project to Win Funding from Innovation Board</li>
<li>Nominated for FsTech Award 2019(Blockchain Project of the year)</li>
<li>Technology used:Corda,Java,Kotlin,Hyperledger Fabric</li>
<li>My Role:Architecture and Solution Design and Application Development</li>
</ul>
</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<!-- <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
Jan 2018
</div>
</div> -->
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="#" target="_blank">
<h4>Smart Question Responder</h4>
</a>
<p class="subtitle">HSBC</p>
<p>
<ul>
<li>NLP based project to learn from old documents and using AI to search them</li>
<li>Technology used:Python,Word2Vec,Spacy,JavaScript,API</li>
<li>My Role:Architecture and Solution Design and Application Development</li>
</ul>
</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<!-- <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
2017
</div>
</div> -->
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a>
<h4>Proxy Voting</h4>
</a>
<p class="subtitle">HSBC</p>
<p>
<ul>
<li>Blockchain Based Application for Voting in AGM</li>
<li>Won <a target="_BLANK" href="http://www.custodyriskawards.com/winners" target="_blank">Custody Risk : Most Innovative Project of the Year</a></li>
<li>Won <a target="_BLANK" href="https://www.globalcustodian.com/gcs-leaders-in-custody-winners-announced/" target="_blank">Global Custodian : Innovation in Proxy Voting</a></li>
<li>First Few Blockchain based project in HSBC</li>
<li>Technology used:Solodity,React,Ethereum</li>
<li>My Role:Development and Designing of POC</li>
</ul>
</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<!-- <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
2016-2018
</div>
</div> -->
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a>
<h4>Other Key Projects In HSBC</h4>
</a>
<p class="subtitle">HSBC</p>
<p>
<ul>
<li>ABCiPL - a Blockchain based prediction platform for IPL </li>
<li>FundsNow - a Blockchain based Funds Platform for settlement</li>
<li>Joinme - WebApp made in Java and Angular to Connect people</li>
<li>Chatbot -Python Powered , spacy (word2vec) based chatbot for Client Queries</li>
<li>GMIS (Internal Employee Mangement )- Java,Hibernate and Spring </li>
<li>GCP -Responsible for Doing POC on various Offering of GCP and FIt for use for HSBC </li>
<li>Worked on BigQuery,Datalab,Datastudio,Spanner,Compute Instance etc.</li>
</ul>
</p>
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a>
<h4>Key Projects At</h4>
</a>
<p class="subtitle">Proptiger/Makaan</p>
<p>
<ul>
<li>Worked with the Backend API team developing API that are used by makaan.com using Java,Spring and Hibernate.
<li>POC for Automation of Listing POC for SMS analysis(NLP) and Notification Management System</li>
<li>POC for Automation of Listing posting using NLP and selenium</li>
</ul>
</p>
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a>Key Projects in College</a>
<p class="subtitle">Thapar University</p>
<p>
<ul>
<li>Automatic Hostel Allotment,Used by the college during counseling,(Awarded Departmental Best Project,Awarded Scholarship and Best Project 2015 by Ch. Bhagwan Singh Nasa Parvati Nasa Charitable Trust)(PHP,Ajax,Javascript)</li>
<li>Classification of Tweets (Naïve bayes Algorithm on Mahout in Hadoop)</li>
<li>Assignment Submission Portal,Hosted in the internal server and used by teacher for checking assignments(PHP,Ajax,Javascript)
</li>
<li>Hostel Room Booking,used by students in Hostel for booking rooms every semester (PHP,Ajax ,Javascript)</li>
<li> Twitter Sentiment Analysis Research Paper(Top 5 Projects of college)</li>
<li> Worked on Document classification model using Hadoop</li>
</ul>
</p>
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a>Key Perosnal Project</a>
<p class="subtitle">Done as Side desk in office or for Personal Learnign and upskilling</p>
<p>
<ul>
<a href='https://github.com/nitrek?tab=repositories' target="_blank">https://github.com/nitrek?tab=repositories</a>
</ul>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Certification SECTION -->
<a name="certifications"></a>
<section class="section services" data-slide="4">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="title">
<h2 class="title-section wow fadeInDown">CERTIFICATIONS</h2>
<div class="separator_wrapper wow fadeIn">
<div class="separator_first_circle">
<div class="separator_second_circle_grey"></div>
</div>
</div>
<p class="subtitle wow fadeInDown">I have done the following certifications</p>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="col-xs-12 col-sm-6 col-md-6 col-md-offset-1 col-lg-10 col-lg-offset-1">
<div class="years2">
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
July 2020
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/certifiedeep" target="_blank">
<h4>Certified Enterprise Engineer</h4>
</a>
<p class="subtitle">HSBC</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
May 2020
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/niteshdatascience" target="_blank">
<h4>Certified Data Science Professional</h4>
</a>
<p class="subtitle">IBM</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
Dec 2019
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/gcparchniteshlink" target="_blank">
<h4>Certified Professional Cloud Architect</h4>
</a>
<p class="subtitle">Google</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
Dec 2018
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/niteshcorda" target="_blank">
<h4>Certified Corda Developer</h4>
</a>
<p class="subtitle">R3</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
Oct 2017
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/niteshethereum" target="_blank">
<h4>Ethereum Developer</h4>
</a>
<p class="subtitle">R3</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
August 2014
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/niteshbigdata" target="_blank">
<h4>Big Data</h4>
</a>
<p class="subtitle">HP Education Services</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
July 2014
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/niteshnptel" target="_blank">
<h4>Programming, Data Structures and Algorithms</h4>
</a>
<p class="subtitle">IIT Madras (NPTEL, ONLINE)</p>
<p>Marks 77.5/100</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
July 2011
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/niteshjava" target="_blank">
<h4>Core Java</h4>
</a>
<p class="subtitle">Ducat,Noida</p>
<p>Grade A</p>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
2014
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://j.mp/niteshoracle" target="_blank">
<h4>Database Design and Programming</h4>
</a>
<p class="subtitle">Oracle Academy (ONLINE)</p>
<p></p>
</div>
</div>
</div>
</div>
<div class="row item wow fadeInDown">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="year">
2020
</div>
</div>
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<div class="desc">
<a href="https://nitrek.github.io/certificates/" target="_blank">
<h4>30+ Coursera Specialisation on Coursera,Linkedin learning</h4>
</a>
<p class="subtitle">Click to See all</p>
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Achiivements -->
<a name="achivements"></a>
<section class="section testimony">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="title">
<h2 class="title-section wow fadeInDown">Achievements</h2>
</div>
</div>
<div class="clearfix"></div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="team__carousel" class="carousel slide" data-ride="carousel" data-interval="2000">
<!-- Indicators -->
<!-- <ol class="carousel-indicators">
<li data-target="#team__carousel" data-slide-to="0" class="active"></li>
<li data-target="#team__carousel" data-slide-to="1"></li>
</ol> -->
<!-- Wrapper for slides -->
<div>
<div class="item active">
<!-- <div class="col-xs-12 col-sm-6 col-md-6 col-lg-8 col-lg-offset-2"> -->
<p> <br>2020 Pat on Back
<br>Certified Enterprise Engineer
<br>Pioneer of the Quarter (HSBC India Wide)
<br>Circle of Excellence (Outstanding Team Performance)
<br> 2019 Enterprise Engineer (HSBC Wide)
<br>1st Star Performer (Q3)
<br>1st Pune - Paris Hackathon
<br>1st Star Performer (Q2)
<br>2018 Brightest New Star (HSBC Wide)
<br>2018 1st Place, HSBC India National hackathon (CodeGrind)
<br>2017 2nd Place, HSBC Innovation Hackathon
<br>2017 2nd Place, HSBC Blockchain and ML Hackathon
<br>2017 1st Place, HSBC Cloud ,DataAnalytics and Mobile Traning
<br> 1st in Training Program on CLoud ,DataAnalytics and Mobile Developement
<br>2015 3rd Place, Wiz-IQ project Submission.(Project Submited:CyberPirates)
<br>2013 3rd Place, The Hackth0n (Ethical hacking event) held under Linux User Group
<br>2015 1st Place, Acumen 2k15 OPC on Codechef
<br>2014-2016 Campus Ambassador,, Hacker Earth and Hacker Rank ,College Representative at Codechef
<br>2015-2016 Founding Head ,, Thapar Codechef Chapter
</p>
<!-- </div> -->
</div>