-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1025 lines (742 loc) · 39 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 charset="utf-8">
<title>Data Science Solutions</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description"
content="Solve contemporary business challanges using Data Science and AI">
<meta name="author" content="Manuj">
<meta name="generator" content="Hugo 0.89.2" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="./plugins/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="stylesheet" href="./plugins/hover/hover.css">
<link rel="stylesheet" href="./plugins/magnific-popup/magnific-popup.css">
<link rel="stylesheet" href="./plugins/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="./plugins/owl-carousel/owl.theme.default.min.css">
<link rel="stylesheet" href="./plugins/text-animation/text-animation.css">
<link rel="stylesheet" href="./css/style.min.css" media="screen">
<link rel="stylesheet" href="./css/custom.min.css" media="screen">
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
<link rel="icon" href="./images/favicon.png" type="image/x-icon">
<meta property="og:title" content="Data Science Solutions" />
<meta property="og:description" content="Solve contemporary business challanges using Data Science and AI" />
<meta property="og:type" content="website" />
<meta property="og:url" content="/" />
</head><body>
<!-- preloader start -->
<div class="preloader">
<img src="./images/preloader.gif" alt="preloader">
</div>
<!-- preloader end -->
<style></style>
<section class="header " id="home">
<div class="logo">
<img class="img-fluid" src="./images/logo.png" alt="Data Science Solutions">
</div>
<div class="slider-prev-button slider-button">
<i class="fa fa-angle-left"></i>
</div>
<div class="slider-next-button slider-button">
<i class="fa fa-angle-right"></i>
</div>
<div class="owl-carousel owl-full-width owl-theme" id="background-slide">
<div class="slider"><img class="img-fluid" src="./images/slider/slider-1.jpg" alt="slider-background"></div>
<div class="slider"><img class="img-fluid" src="./images/slider/slider-2.jpg" alt="slider-background"></div>
<div class="slider"><img class="img-fluid" src="./images/slider/slider-3.jpg" alt="slider-background"></div>
</div>
<div class="container">
<div class="row content">
<div class="col-lg-8 col-lg-offset-2 col-sm-8 col-sm-offset-2 head-container">
<div class="head-holder">
<h1 class="introduction">data: (plural, datum) -<br> Sanskrit, Latin -<br> To give. To impart</h1>
<div class="animated-text">
<strong class="cd-headline clip">
<span class="cd-words-wrapper">
<b class="is-visible" >Data Science Solutions (AI/ML)</b>
<b >Quantitative Analytics</b>
<b >Corporate Mentoring</b>
</span>
</strong>
</div>
<a class="hireMe" href="./#contact">LET'S SOLVE!</a>
</div>
</div>
</div>
</div>
<div class="navigation-icon">
<input id="burger" type="checkbox" />
<label for="burger" class="burger-menu">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="fullscreen-nav-container" style="background-image: url('images/backgrounds/full-nav-bg.jpg');">
<div class="container-fluid">
<div class="full-nav-container row">
<div class="full-nav-holder">
<div class="full-nav-content">
<div class="name">
<div class="first-name">Manuj</div>
<div class="last-name">Chandra</div>
</div>
<div class="fulscreen-nav">
<ul class="list-inline fullscreen-nav-holder">
<li><a class="text-uppercase"
href="./">Home</a>
</li>
<li><a class="text-uppercase"
href="./#about">About me</a>
</li>
<li><a class="text-uppercase"
href="./#service">Service</a>
</li>
<li><a class="text-uppercase"
href="./#portfolio">Portfolio</a>
</li>
<li><a class="text-uppercase"
href="./#testimonial">Testimonial</a>
</li>
<li><a class="text-uppercase"
href="./#contact">Contact</a>
</li>
<li><a class="text-uppercase"
href="./blog">Blog</a>
</li>
</ul>
</div>
<div class="full-nav-icon-holder">
<ul class="full-nav-icons list-inline">
<li><a href="https://github.com/magnacore"><i class="fab fa-github"></i></a></li>
<li><a href="https://gitlab.com/magnacore"><i class="fab fa-gitlab"></i></a></li>
<li><a href="https://www.linkedin.com/in/manuj/"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/channel/UC4znd_SgcCA1VvWKqwz932w"><i class="fab fa-youtube"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCmM1In0bl5ZEWyb-bprql_Q"><i class="fab fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="menu" id="menu">
<nav>
<div class="menu-container">
<ul class="desktop-menu list-inline mb-0" id="desktop-menu">
<li class="menu-item hvr-underline-from-left 1"><a
href="./">Home</a>
</li>
<li class="menu-item hvr-underline-from-left 1"><a
href="./#about">About me</a>
</li>
<li class="menu-item hvr-underline-from-left 1"><a
href="./#service">Service</a>
</li>
<li class="menu-item hvr-underline-from-left 1"><a
href="./#portfolio">Portfolio</a>
</li>
<li class="menu-item hvr-underline-from-left 1"><a
href="./#testimonial">Testimonial</a>
</li>
<li class="menu-item hvr-underline-from-left 1"><a
href="./#contact">Contact</a>
</li>
<li class="menu-item hvr-underline-from-left 1"><a
href="./blog">Blog</a>
</li>
</ul>
<div class="mobile-menu">
<a class="menu-link">
<div class="mobile-menu-nav">
<span></span>
<span></span>
<span></span>
</div>
</a>
<div class="mobile-menu-logo"><a href="./"><img class="img-fluid"
src="./images/logo-dark.png" alt="Data Science Solutions"></a>
</div>
<div class="menu-slider">
<nav>
<ul class="mobile-menu-list">
<li class="hvr-shutter-out-vertical mobile-menu-item 1"><a
href="./">Home</a>
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 1"><a
href="./#about">About me</a>
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 1"><a
href="./#service">Service</a>
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 1"><a
href="./#portfolio">Portfolio</a>
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 1"><a
href="./#testimonial">Testimonial</a>
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 1"><a
href="./#contact">Contact</a>
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 1"><a
href="./blog">Blog</a>
</li>
</ul>
<ul class="mobile-menu-icons list-inline">
<li><a href="https://github.com/magnacore"><i class="fab fa-github"></i></a></li>
<li><a href="https://gitlab.com/magnacore"><i class="fab fa-gitlab"></i></a></li>
<li><a href="https://www.linkedin.com/in/manuj/"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/channel/UC4znd_SgcCA1VvWKqwz932w"><i class="fab fa-youtube"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCmM1In0bl5ZEWyb-bprql_Q"><i class="fab fa-youtube"></i></a></li>
</ul>
</nav>
</div>
</div>
</div>
</nav>
</section>
<style></style>
<section class="about-me " id="about">
<div class="container">
<div class="row about-me-holder">
<div class="col-lg-6 col-md-6 col-sm-6 about-me-text d-flex align-self-center">
<div class="text-holder wow fadeInUp" data-wow-duration="1.5s">
<h1>PROFILE</h1>
<div class="content"><p><em>“Vision : Enable progressive individuals and organizations to successfully transition and thrive in the new Generative AI economy.”</em></p>
<p>“My journey into AI started 20 years ago when I bought my first AI book from a roadside shop in Old Delhi. Ever since I followed the road less travelled and believed in doing things differently by taking risks on innovation and emerging technologies.</p>
<p>In the last 20 years, I have done 2 startups - including India’s first AI and game programming school, lead, consulted and coached many businesses, academia and individuals in India, Singapore, Australia, U.K and Indonesia in emerging technologies such as (Serious) Games, Simulations and my latest love - Data Science. I am a multipotentialite, self-taught lifelong-learner who believes in a hands-on approach to technical management and leadership.</p>
<p>When I am not playing with data or my daughter, I love to play retro video games, research emerging technologies, study probability and statistics and analyze risk markets.</p>
<p>I am an Indian national who can speak Hindi, English and Coding.”</p>
</div>
<a href="./documents/Manuj_Chandra_Data_Science_Resume.pdf" class="download-cv hvr-icon-hang"> DOWNLOAD MY RESUME </a>
</div>
</div>
<div class="col-lg-6 col-sm-6 col-9 about-me-images wow fadeInUp" data-wow-duration="1.5s">
<img class="img-fluid" src="./images/backgrounds/portrait.jpg" alt="about-me">
</div>
</div>
<div class="row experience-skill">
<div class="col-lg-6 col-sm-6 col-11 experience wow fadeInUp" data-wow-duration="1.5s">
<h3>EXPERIENCE</h3>
<ul class="experience-chart">
<li>
<div class="single-experience">
<h4>Data Science Consultant</h4>
<span>Sawy Technology LLP</span>
<span>June 2021 - Present</span>
<p>Worked on several significant Data Science projects.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Data Science Consultant</h4>
<span>Northcap University</span>
<span>December 2018 - June 2021</span>
<p>Revamped the Data Science vertical of Northcap University. Developed more than 2000 hours of innovative Data Science courseware and also up-skilled their entire Data Science fraternity including PhDs. This work immediately benefited more than 500 students and continues to help more. Within two years, the undergraduate program by The NorthCap University was <a href="https://analyticsindiamag.com/aim-data-science-education-ranking-2020-top-ug-programmes-in-india/">rated fifth pan India</a> and to have one of the best pedagogy scores. It also has one of the best graduation outcomes of 96-99% with the average placement rate of 99%. Many trained students have gone to win prestigious Data Science competitions.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Emerging Technologies Consultant</h4>
<span>Mages Studio Pte. Ltd.</span>
<span>September 2017 - November 2018</span>
<p>Hands-on development, mentoring and consulting on the fusion of AI with serious games to develop socially beneficial simulations which help children of special needs for eg. ADHD to live a normal lives.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Principal Lecturer, Gaming</h4>
<span>Mages Institute of Excellence Pte. Singapore</span>
<span>August 2016 - August 2017</span>
<p>Mentored game programmers in C#, Unity3D, AI, Gameplay Programming, Virtual and Augmented reality. Trained senior professors from National University of Singapore and other reputable institutions in Singapore.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Emerging Technologies Consultant</h4>
<span>Mages Institute of Excellence Pte. Ltd. Singapore</span>
<span>April 2016 - July 2016</span>
<p>Developed numerous serious game projects.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Consulting Director of Development</h4>
<span>NZTechnologies Pvt. Ltd.</span>
<span>August 2013 - December 2015</span>
<p>MANAGEMENT : Design and deployed Project Management pipeline, development processes, team appraisal system, training system and productivity processes to increase team efficiency and accountability. Created and maintaining the company wiki. Technical Direction : Successfully developed and delivered 15 profitable projects.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Game Technology Lead</h4>
<span>LeewayHertz Pvt. Ltd.</span>
<span>September 2012 - August 2013</span>
<p>Laser Pegs: Developed 3 versions of Lego-like modeler for kids (CAD for KIDS) in Unity for an American client. The App was featured on the Apple App Store. Participated in the development of the core gameplay, AI, product design and experience. Trained in-house Unity3D developers.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Game Director</h4>
<span>MicroObjects Pvt. Ltd.</span>
<span>January 2012 - August 2012</span>
<p>Lead a team of programmers and artists to ship 2 mobile games in Racing and FPS genre.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>CTO, Director, Co-founder</h4>
<span>Kode Infotainment Pvt. Ltd.</span>
<span>April 2007 - October 2011</span>
<p>Trained game programmers currently employed in-house, and in national and international organizations in C++, engine design and creation, DirectX, AI, Gameplay Programming et. al. Conceptualized, designed, managed and produced a PC casual game title – Robosoccer.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>CTO, Director, Co-founder</h4>
<span>Sage Infolabs Pvt. Ltd.</span>
<span>April 2006 - March 2007</span>
<p>Co-founded India’s first game programming school. Trained game programmers in C++, engine design and creation, DirectX, AI, Gameplay Programming et. al. who are successfully working in industry.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Others</h4>
<p>Paprikas Animation Studios (now Technicolor), Team Leader, Renderman Shader Programmer, July 2004 - January 2006 | Vbeing Software Pvt. Ltd., Senior Game Programmer, December 2003 - July 2004 | Moving Picture Company India Pvt. Ltd., Technical Artist, January 2003 - September 2003</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Miscellaneous Freelancing</h4>
<span>March 2001 - July 2002</span>
<p>Xion Solutions (March 2001, 3D developer) | Digital Talkies (November 2001, media animator) | Carrot Interactive (July 2002, technical artist) | Game Force Magazine (November 2001, Technical Author, C++ game programming tutorials)</p>
</div>
</li>
</ul>
</div>
<div class="col-lg-6 col-sm-6 col-11 skill wow fadeInUp" data-wow-duration="1.5s">
<h3>SKILL</h3>
<div class="skill-progress-bar">
<div class="clearfix">
<span class="skillbar-title">Technical Leadership</span>
<span class="skill-bar-percent">80%</span>
<div class="skillbar" data-percent="80%">
<div class="skillbar-bar"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Business Intelligence</span>
<span class="skill-bar-percent">80%</span>
<div class="skillbar" data-percent="80%">
<div class="skillbar-bar"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Data Engineering and Warehousing</span>
<span class="skill-bar-percent">70%</span>
<div class="skillbar" data-percent="70%">
<div class="skillbar-bar"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Machine Learning</span>
<span class="skill-bar-percent">70%</span>
<div class="skillbar" data-percent="70%">
<div class="skillbar-bar"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Google Cloud Platform</span>
<span class="skill-bar-percent">70%</span>
<div class="skillbar" data-percent="70%">
<div class="skillbar-bar"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Probability and Statistics</span>
<span class="skill-bar-percent">80%</span>
<div class="skillbar" data-percent="80%">
<div class="skillbar-bar"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Corporate Coaching</span>
<span class="skill-bar-percent">90%</span>
<div class="skillbar" data-percent="90%">
<div class="skillbar-bar"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Quantitative Analytics</span>
<span class="skill-bar-percent">70%</span>
<div class="skillbar" data-percent="70%">
<div class="skillbar-bar"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<style></style>
<section class="services " id="service">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto col-sm-10">
<div class="wow fadeInUp" data-wow-duration="1.5s">
<div class="services-heading">
<div class="bar"></div>
<h1>SERVICES</h1>
</div>
<div class="row">
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<img class="img-fluid" src="./images/icons/web-development.png" alt="Data Science">
</div>
<div class="service-label">Data Science</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<img class="img-fluid" src="./images/icons/graphic-design.png" alt="Corporate Training">
</div>
<div class="service-label">Corporate Training</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<img class="img-fluid" src="./images/icons/dbms.png" alt="Google Cloud Computing">
</div>
<div class="service-label">Google Cloud Computing</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<img class="img-fluid" src="./images/icons/software-development.png" alt="Technical Consultancy">
</div>
<div class="service-label">Technical Consultancy</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<img class="img-fluid" src="./images/icons/marketing.png" alt="Quantitative Analytics">
</div>
<div class="service-label">Quantitative Analytics</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<img class="img-fluid" src="./images/icons/mobile-app.png" alt="Generative AI">
</div>
<div class="service-label">Generative AI</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<style></style>
<section id="cta" class="need-service overlay section-sm wow fadeInUp " data-wow-duration="1.5s" style="background-image: url('images/backgrounds/need-service.jpg');">
<div class="container position-relative z-index-9">
<h1>NEED DATA SCIENCE SERVICES?</h1>
<div class="text-white content"><h4 id="tools-and-technologies">Tools and Technologies:</h4>
<table>
<thead>
<tr>
<th style="text-align:left"><strong>Domain</strong></th>
<th style="text-align:left"><strong>Tools</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left"><strong>Business Intelligence and Visualization</strong></td>
<td style="text-align:left">Tableau, Matplotlib, Seaborn, Plotley, Bokeh, Superset</td>
</tr>
<tr>
<td style="text-align:left"><strong>Data Engineering</strong></td>
<td style="text-align:left">Cloud SQL, Spanner, BigTable, BigQuery, Dataflow (Apache Beam), PubSub, Cloud Functions, DataProc (Hadoop/Spark), DataPrep, Composer (Apache Airflow), Firestore, Data Fusion, Docker, Kubernetes, Regex</td>
</tr>
<tr>
<td style="text-align:left"><strong>Machine Learning</strong></td>
<td style="text-align:left">H2O.ai, AutoML, Driverless AI, Scikit-Learn, Tensorflow 2, Featuretools, Google VertexAI, Colab, Langchain, LlamaIndex, VectorDBs - Chroma, FAISS, Pinecone, Huggingface</td>
</tr>
<tr>
<td style="text-align:left"><strong>Cloud Computing</strong></td>
<td style="text-align:left">Google Cloud Platform (GCP)</td>
</tr>
<tr>
<td style="text-align:left"><strong>Data Analytics</strong></td>
<td style="text-align:left">KNIME Analytic, Pandas, Koalas, Dask, Numpy</td>
</tr>
<tr>
<td style="text-align:left"><strong>Statistics (Bayesian and Frequentist)</strong></td>
<td style="text-align:left">PyMC3, scipy.stats, Statsmodels</td>
</tr>
<tr>
<td style="text-align:left"><strong>Languages</strong></td>
<td style="text-align:left">Python, C#, LaTeX</td>
</tr>
<tr>
<td style="text-align:left"><strong>Web 3.0</strong></td>
<td style="text-align:left">IPFS</td>
</tr>
<tr>
<td style="text-align:left"><strong>Cybersecurity</strong></td>
<td style="text-align:left">GnuPG/GPG</td>
</tr>
<tr>
<td style="text-align:left"><strong>Operating System</strong></td>
<td style="text-align:left">Debian GNU/Linux, BASH, Xonsh, Vagrant, Btrfs</td>
</tr>
<tr>
<td style="text-align:left"><strong>Tools</strong></td>
<td style="text-align:left">Git/Gitflow, Visual Studio Code, Workbench/Jupyter, Streamlit, Anaconda</td>
</tr>
</tbody>
</table>
</div>
<a href="./#contact">Request a Callback</a>
</div>
</section>
<style></style>
<section class="portfolio " id="portfolio">
<div class="container-fluid text-center">
<div class="row portfolio-holder text-left">
<div class="col-12 text-center">
<h1 class="wow fadeInUp" data-wow-duration="1.5s">Portfolio</h1>
<div class="filtering wow fadeInUp" data-wow-duration="1.5s">
<div class="btn-group btn-group-toggle portfolio-navigation" data-toggle="buttons">
<label class="btn btn-sm btn-primary active hvr-sweep-to-right">
<input type="radio" name="shuffle-filter" value="all" checked="checked" />All
</label>
<label class="btn btn-sm btn-primary hvr-sweep-to-right">
<input type="radio" name="shuffle-filter" value="linux" />Linux
</label>
<label class="btn btn-sm btn-primary hvr-sweep-to-right">
<input type="radio" name="shuffle-filter" value="quant" />Quant
</label>
</div>
</div>
</div>
<div class="col-lg-10 col-md-10 col-sm-10 col-10 mx-auto">
<div class="row filtr-wrapper wow fadeInUp list" data-wow-duration="1.5s">
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item"
data-groups="["linux"]">
<div class="item-holder">
<a class="image-pop" href="./images/portfolio/ViperOS.jpg" title="ViperOS">
<img src="./images/portfolio/ViperOS.jpg" alt="ViperOS">
</a>
<div class="item-caption">
<h2 class="mt-2"><a class="text-white" href="./portfolio/00010_viperos/">ViperOS</a></h2>
<p class="mb-0 text-light">Linux</p>
<div class="item-created text-light">10 Jul, 24</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item"
data-groups="["quant"]">
<div class="item-holder">
<a class="image-pop" href="./images/portfolio/CoreTrader.jpg" title="Core Trader Back Tester">
<img src="./images/portfolio/CoreTrader.jpg" alt="Core Trader Back Tester">
</a>
<div class="item-caption">
<h2 class="mt-2"><a class="text-white" href="./portfolio/00009_introducing_coretrader/">Core Trader Back Tester</a></h2>
<p class="mb-0 text-light">Quant</p>
<div class="item-created text-light">04 Dec, 21</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item"
data-groups="["quant"]">
<div class="item-holder">
<a class="image-pop" href="./images/portfolio/DurationReturnsAnalysis.jpg" title="Custom Dura- tion Returns">
<img src="./images/portfolio/DurationReturnsAnalysis.jpg" alt="Custom Dura- tion Returns">
</a>
<div class="item-caption">
<h2 class="mt-2"><a class="text-white" href="./portfolio/00008_duration_returns/">Custom Dura- tion Returns</a></h2>
<p class="mb-0 text-light">Quant</p>
<div class="item-created text-light">07 Aug, 21</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item"
data-groups="["quant"]">
<div class="item-holder">
<a class="image-pop" href="./images/portfolio/HistoricalMaxRuns.jpg" title="Histo- rical Max Runs">
<img src="./images/portfolio/HistoricalMaxRuns.jpg" alt="Histo- rical Max Runs">
</a>
<div class="item-caption">
<h2 class="mt-2"><a class="text-white" href="./portfolio/00007_historical_max_runs/">Histo- rical Max Runs</a></h2>
<p class="mb-0 text-light">Quant</p>
<div class="item-created text-light">07 Aug, 21</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item"
data-groups="["quant"]">
<div class="item-holder">
<a class="image-pop" href="./images/portfolio/weekdayAnalysis.jpg" title="Week- day Returns">
<img src="./images/portfolio/weekdayAnalysis.jpg" alt="Week- day Returns">
</a>
<div class="item-caption">
<h2 class="mt-2"><a class="text-white" href="./portfolio/00006_weekday_returns_analysis/">Week- day Returns</a></h2>
<p class="mb-0 text-light">Quant</p>
<div class="item-created text-light">07 Aug, 21</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item"
data-groups="["quant"]">
<div class="item-holder">
<a class="image-pop" href="./images/portfolio/indexRangeForecast.jpg" title="Index Price Fore- cast">
<img src="./images/portfolio/indexRangeForecast.jpg" alt="Index Price Fore- cast">
</a>
<div class="item-caption">
<h2 class="mt-2"><a class="text-white" href="./portfolio/00005_index_range_forecast/">Index Price Fore- cast</a></h2>
<p class="mb-0 text-light">Quant</p>
<div class="item-created text-light">31 Jul, 21</div>
</div>
</div>
</div>
</div>
<div class="text-center wow fadeInUp mt-4" data-wow-duration="1.5s">
<a href="./portfolio" class="btn btn-primary">See More</a>
</div>
</div>
</div>
</div>
</section>
<style></style>
<section class="testimonials " id="testimonial">
<div class="container">
<div class="row">
<div class="testimonials-container col-lg-8 offset-lg-2">
<h1 class="wow fadeInUp" data-wow-duration="1.5s">TESTIMONIALS</h1>
<div class="owl-carousel owl-theme wow fadeInUp" data-wow-duration="1.5s">
<div class="single-testimonial">
<div class="testimonial-holder">
<img class="img-fluid" src="./images/clients/client4.jpg" alt="Geoff Kwitko">
<h2>Geoff Kwitko</h2>
<span>Made and sold two companies, Called the “Sherlock Holmes” of Digital Marketing in Australia</span>
<p><i class="fa fa-quote-left"></i> If this was possible I would give Manuj 7 stars. He is extremely intelligent, knowledgeable and very well organized and detail focused. His math ability is astounding, but he also has a great creative problem solving ability. I couldn’t be happier with Manuj! <i class="fa fa-quote-right"></i></p>
</div>
</div>
<div class="single-testimonial">
<div class="testimonial-holder">
<img class="img-fluid" src="./images/clients/client3.jpg" alt="Stefano Tabacco">
<h2>Stefano Tabacco</h2>
<span>Lead Back-End Engineer, Skodel, Australia</span>
<p><i class="fa fa-quote-left"></i> Manuj has great programming skills. His deep knowledge is also a big plus. He’s also a great team worker with a charming personality. <i class="fa fa-quote-right"></i></p>
</div>
</div>
<div class="single-testimonial">
<div class="testimonial-holder">
<img class="img-fluid" src="./images/clients/client1.jpg" alt="Ravi Kant Bahl">
<h2>Ravi Kant Bahl</h2>
<span>Director, MAGES Studio, Singapore</span>
<p><i class="fa fa-quote-left"></i> I know Manuj from last ten years. I know him as a through professional and extremely knowledgeable and passionate about his area of expertise. A thorough gentle man and very honest who is more than willing to help others without expecting anything in return. <i class="fa fa-quote-right"></i></p>
</div>
</div>
<div class="single-testimonial">
<div class="testimonial-holder">
<img class="img-fluid" src="./images/clients/client2.jpg" alt="Kamal Bhardwaj">
<h2>Kamal Bhardwaj</h2>
<span>Worked on Movies such as Tarzan, Iron Man 3, Sully, Okja et. al as VFX Artist</span>
<p><i class="fa fa-quote-left"></i> I have known Manuj for past fifteen years and I can very well say that he was instrumental in motivating and inspiring me. His dedication and focus are unparalleled. Always motivated and inspires other to achieve, always raising the bar for himself and all those around him. He is an excellent technical artist with an eye for detail. <i class="fa fa-quote-right"></i></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<style></style>
<section class="wow fadeInUp section-sm " data-wow-duration="1.5s">
<div class="container position-relative z-index-9">
<div class="fun-facts wow fadeInUp" data-wow-duration="1.5s">
<div class="fun-fact-holder">
<img class="img-fluid" src="./images/icons/works.png" alt="+ Years in Industry">
<p class="fact-counter count" data-count="20">0</p>
<p>+ Years in Industry</p>
</div>
<div class="fun-fact-holder">
<img class="img-fluid" src="./images/icons/happy.png" alt="+ Happy Clients">
<p class="fact-counter count" data-count="21">0</p>
<p>+ Happy Clients</p>
</div>
<div class="fun-fact-holder">
<img class="img-fluid" src="./images/icons/project.png" alt="+ Finished Projects">
<p class="fact-counter count" data-count="27">0</p>
<p>+ Finished Projects</p>
</div>
</div>
</div>
</section>
<style></style>
<section class="contact " style="background-image: url('images/backgrounds/contact-us-bg.jpg');" id="contact">
<div class="container">
<div class="row">
<div class="contact-holder col-lg-8 offset-lg-2 col-sm-8 offset-sm-2">
<h1 class="wow fadeInUp" data-wow-duration="1.5s">Do you need Data Science and Generative AI?<br>Of course you do!</h1>
<form method="POST" action="https://formspree.io/f/xnqlqagq" data-toggle="validator">
<div class="form-container row wow fadeInUp" data-wow-duration="1.5s">
<div class="form-group col-lg-6">
<input class="form-control" type="text" name="username" id="username" placeholder="Name"
required>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-6">
<input class="form-control" type="email" id="email" name="email" placeholder="Email" required>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-12">
<textarea class="form-control" name="message" id="message" rows="12"
placeholder="- Solution Architecture for Generative AI projects
- Strategic Planning
- Brainstorming and Ideation
- Educational Guidance and Mentoring
- Assessment
- Recommendations
- Solution Research "></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-12 sub-button">
<button class="submit form-control hvr-icon-push" type="submit" value="send"> Submit </button>
</div>
</div>
</form>
</div>
</div>
<div class="row">
<div class="footer col-lg-10 offset-lg-1">
<hr>
<ul class="footer-icons list-inline">
<li><a href="https://github.com/magnacore"><i class="fab fa-github"></i></a></li>
<li><a href="https://gitlab.com/magnacore"><i class="fab fa-gitlab"></i></a></li>
<li><a href="https://www.linkedin.com/in/manuj/"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/channel/UC4znd_SgcCA1VvWKqwz932w"><i class="fab fa-youtube"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCmM1In0bl5ZEWyb-bprql_Q"><i class="fab fa-youtube"></i></a></li>
</ul>
<div class="to-top">
<a href="#home"><i class="fa fa-chevron-up"></i></a>
</div>
<div class="credit content">
This site is also hosted on <a href="ipns://k2k4r8ln35f2uouxxleya6ae8t5339p7lt7d2ylfsmdz13q7cka42lm7/">IPFS</a>
</div>
</div>
</div>
</div>
</section>
<a href="#home" class="scroll-up hvr-icon-up"></a>
<!-- JS Plugins -->