-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1363 lines (1309 loc) · 88.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/x-icon" href="/favicon.ico?">
<title>Karthik Subramanian - Developer | Designer | Artist</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[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 id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top">Karthik Subramanian</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#skills">Skills</a>
</li>
<li>
<a class="page-scroll" href="#portfolio">Portfolio</a>
</li>
<li>
<a class="page-scroll" href="#about">About Me</a>
</li>
<li>
<a class="page-scroll" href="#art">My Art</a>
</li>
<li>
<a class="page-scroll" href="#team">Testimonials</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
<li>
<a href="/Karthik Subramanian.pdf" download>Resume</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div id="intro" class="intro-lead-in">Find out what you like doing best, and get someone to pay you for it.</div>
<a href="#skills" class="page-scroll btn btn-xl">Tell Me More</a>
</div>
</div>
</header>
<!-- Services Section -->
<section id="skills">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Skills</h2>
<h3 class="section-subheading text-muted">My Bread and Butter</h3>
</div>
</div>
<div class="row text-center">
<div class="col-xs-12 col-md-4" >
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Programming Languages</h4>
<p class="text-muted">C# & VB .Net, Python, VB, PL/SQL</Br>VBScript, JavaScript & TypeScript</p>
</div>
<div class="col-xs-12 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-database fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Database</h4>
<p class="text-muted">SQL Server 2005/2008 R2 </Br>With a pinch of Postgresql & MYSQL </p>
</div>
<div class="col-xs-12 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-code fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web-Technologies</h4>
<p class="text-muted">HTML 5, CSS 3, AngularJS, Angular 2/4/5</br> Django, KnockOutJS & ASP.NET</p>
</div>
<div class="col-xs-12 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-envelope fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Messaging</h4>
<p class="text-muted">Rabbit MQ, REST & SOAP Services </br>JSON & XML</p>
</div>
<div class="col-xs-12 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-cog fa-spin icon-stack-2x fa-inverse"></i>
<i class="fa fa-cog fa-counter-spin icon-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Frameworks</h4>
<p class="text-muted">Entity Framework 4, MVC, MVVM</br>PetaPoco & NancyFX</p>
</div>
<div class="col-xs-12 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-bar-chart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Reporting</h4>
<p class="text-muted">SQL Server Reporting Services <br> Crystal Reports</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Portfolio</h2>
<blockquote>
<h3 class="section-subheading text-muted">Choose a job you love, and you will never have to work a day in your life
<footer>Confucius</footer>
</h3>
</blockquote>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<blockquote>
<h2 class="section-subheading text-muted">Professional Projects</h2>
</blockquote>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/Litpro_logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Literacy Pro</h4>
<p class="text-muted">Sr. Software Engineer</p>
</div>
</div>
<div class="col-md-4 col-sm-12 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/Word_logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>W.O.R.D.</h4>
<p class="text-muted">Sr. Software Engineer</p>
</div>
</div>
<div class="col-md-4 col-sm-12 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/Ooka_Island_logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Ooka Island</h4>
<p class="text-muted">Sr. Software Engineer</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12 portfolio-item">
<a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/copyright.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Content Protection 2.0</h4>
<p class="text-muted">Technical Lead</p>
</div>
</div>
<div class="col-md-4 col-sm-12 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/angular.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>PTSX Web</h4>
<p class="text-muted">Technical Lead</p>
</div>
</div>
<div class="col-md-4 col-sm-12 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/PTS_logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Program Tracking System</h4>
<p class="text-muted">Technical Lead</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal7" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/Media_Monitor_logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Media Monitor</h4>
<p class="text-muted">Sr. Software Engineer</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal8" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/BugNet_logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Bugnet Tracking System</h4>
<p class="text-muted">Software Engineer</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal9" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/Anti_Piracy_logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Anti-Piracy Web Crawler</h4>
<p class="text-muted">Software Intern</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<blockquote>
<h2 class="section-subheading text-muted">Personal Projects</h2>
</blockquote>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal7" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/fuzzy-mapper.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Fuzzy Mapper</h4>
<p class="text-muted">Windows Forms Application</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal8" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/python-logo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>File Comparison</h4>
<p class="text-muted">Python Script</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal9" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/angular.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Content LookUp</h4>
<p class="text-muted">Angular Application</p>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About Me</h2>
<h3 class="section-subheading text-muted">Don't wait for the storm to pass, instead learn to dance in the rain..</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/internship.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2007-2011</h4>
<h5 class="subheading">Humble Beginnings</h5>
</div>
<div class="timeline-body">
<p class="text-muted">A Summer Workshop with GridBots & an Internship @ L&T Infotech where I got hooked onto programming and started developing web crawlers & content management systems.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/graduate.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>June 2011</h4>
<h5 class="subheading">A Bachelor in Information Technology!</h5>
</div>
<div class="timeline-body">
<p class="text-muted">Graduated from Mumbai University with a Bachelors in Information Technology and accepted a job at L&T Infotech</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/3.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2011-2012</h4>
<h5 class="subheading"><em>"Walking on water and developing software from a specification are easy if both are frozen”</em></h5>
</div>
<div class="timeline-body">
<p class="text-muted">Learnt valuable lessons in requirement gathering and development while developing and maintaining a web application involving a dozen stakeholders and hundreds of users.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/uptheladder.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2012-2014</h4>
<h5 class="subheading">Training, Development & Management</h5>
</div>
<div class="timeline-body">
<p class="text-muted">Certified in Web Applications Development with Microsoft .NET Framework 4 (70-515 TS) <br> And Designing and Developing Web Applications Using Microsoft .NET Framework 4 (70-519 PRO).
<br>Won the company spot award for steering the project successfully during a critical release.
<br>Took on the role of the Team Lead in 2013 and was responsible for delivery & QA compliance as per CMMI SVC 1.3.</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/mickey.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>January 2014</h4>
<h5 class="subheading">The American Dream</h5>
</div>
<div class="timeline-body">
<p class="text-muted">Took on the role of Onsite Technical Lead for L&T Infotech @ Viacom Inc in Times Square New York.
<br>Role includes requirement gathering & analysis, solution architecting, ensuring end to end delivery of all tasks and creating design documents. </p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/book.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>April 2018</h4>
<h5 class="subheading">So many books, so little time</h5>
</div>
<div class="timeline-body">
<p class="text-muted">Accepted the role of Sr. Software Engineer with Randstad at Scholastic Inc.
<br>Had the priviledge of working on revolutionary educational products that provide educators the tools they need to help meet their critical reading goals.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<h4>And
<br>the story
<br>goes on!</h4>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--Art Section -->
<section id="art">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">My Art</h2>
<h3 class="section-subheading text-muted">Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep..</h3>
</div>
</div>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<li data-target="#carousel-example-generic" data-slide-to="4"></li>
<li data-target="#carousel-example-generic" data-slide-to="5"></li>
<li data-target="#carousel-example-generic" data-slide-to="6"></li>
<li data-target="#carousel-example-generic" data-slide-to="7"></li>
<li data-target="#carousel-example-generic" data-slide-to="8"></li>
<li data-target="#carousel-example-generic" data-slide-to="9"></li>
</ol>
<!-- Wrapper for slides -->
<div class="col-xs-8 col-sm-8 col-sm-offset-2">
<div id='image-carousel' class="carousel slide" data-ride='carousel'>
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target='#image-carousel' data-slide-to="0" class="active"></li>
<li data-target='#image-carousel' data-slide-to="1"></li>
<li data-target='#image-carousel' data-slide-to="2"></li>
<li data-target='#image-carousel' data-slide-to="3"></li>
<li data-target='#image-carousel' data-slide-to="4"></li>
<li data-target='#image-carousel' data-slide-to="5"></li>
<li data-target='#image-carousel' data-slide-to="6"></li>
<li data-target='#image-carousel' data-slide-to="7"></li>
<li data-target='#image-carousel' data-slide-to="8"></li>
<li data-target='#image-carousel' data-slide-to="9"></li>
</ol>
<!-- Wrapper for Images -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img/Art/art1.jpg" alt="">
<div class="carousel-caption"></div>
</div>
<div class="item">
<img src="img/Art/art2.jpg" alt="">
<div class="carousel-caption"></div>
</div>
<div class="item">
<img src="img/Art/art3.jpg" alt="">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="img/Art/art4.jpg" alt="">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="img/Art/art5.jpg" alt="">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="img/Art/art6.jpg" alt="">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="img/Art/art7.jpg" alt="">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="img/Art/art8.jpg" alt="">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="img/Art/art9.jpg" alt="">
<div class="carousel-caption">
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#image-carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#image-carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading"></h2>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Testimonials</h2>
<h3 class="section-subheading text-muted">A few kind words from team mates.</h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/soumya.jpg" class="img-responsive img-circle" alt="">
<h4>Soumya Shankar</h4>
<h6>Project Manager - Search Marketing, SMG Convonix</h6>
<p class="text-muted">I have worked with Karthik on various collaborative projects and have learnt quite a few things from him. He is not only technically very strong in programming, but also has a knack for picking up new languages quickly. Apart from being a good team player, he also displays commendable skills at guiding team members. As an individual he exhibits a good temperament backed up by strong communication skills.</p>
<ul class="list-inline social-buttons">
<li><a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://www.facebook.com/soumya.shankar?fref=ts"><i class="fa fa-facebook"></i></a>
</li>
<li><a href="#"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/santosh.jpg" class="img-responsive img-circle" alt="">
<h4>Santosh Pai</h4>
<h6>Onsite Lead, L&T Infotech</h6>
<p class="text-muted">I have worked with Karthik for a year and a half. He is apt at prioritizing tasks and completing deliverables well before time. He has time and again crafted ingenious solutions for complex problems demonstrating organizational and analytical skills of the highest order. He is unfazed by chaotic situations and ambiguity. Even when we were under pressure to deliver critical tasks with very little time, he was at his best.</p>
<ul class="list-inline social-buttons">
<li><a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://www.facebook.com/santosh.s.pai"><i class="fa fa-facebook"></i></a>
</li>
<li><a href="https://www.linkedin.com/in/santoshspai"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/rashmi.jpg" class="img-responsive img-circle" alt="">
<h4>Rashmi Parulekar</h4>
<h6>QA Lead, AIG</h6>
<p class="text-muted">Karthik is a capable and tireless Lead with exceptional client relationship skills built on trust. We worked together to serve a common client as Developer & QA. He always showed a strong diversity in his technical skills & did not shy away from researching solutions to meet new challenges. In addition to the respect of his customers, he is well respected by both his leadership & those he manages. Finally, I most admire his boundless energy & determination!!</p>
<ul class="list-inline social-buttons">
<li><a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://www.facebook.com/rashmi.bhosale.5?fref=ts"><i class="fa fa-facebook"></i></a>
</li>
<li><a href="https://www.linkedin.com/in/rashmi-parulekar-60b674b2?trk=eml_inv_status_profile"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<blockquote>
<p class="large text-muted">Software innovation, like almost every other kind of innovation, requires the ability to collaborate and share ideas with other people, and to sit down and talk with customers and get their feedback and understand their needs.</p>
<footer>Bill Gates</footer>
</blockquote>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Contact</h2>
<h3 class="section-subheading text-muted">Feel free to reach out to me.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form name="sentMessage" id="contactForm" novalidate>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Your Email *" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="tel" class="form-control" placeholder="Your Phone *" id="phone" required data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" placeholder="Your Message *" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success"></div>
<button type="submit" class="btn btn-xl">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-6">
<span class="copyright">Copyright © KarthikSubramanian.net | <a href="http://startbootstrap.com">Start Bootstrap</a></span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li><a href="https://github.com/karthiks3000"><i class="fa fa-github"></i></a>
</li>
<li><a href="https://in.linkedin.com/in/karthik-subramanian-7381b67b"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="https://stackoverflow.com/users/7685891/karthiks3000"><i class="fa fa-stack-overflow"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="modal-body">
<!-- Project Details Go Here -->
<h3>Literacy Pro</h3>
<p class="item-intro text-muted">Sr. Software Engineer - Randstad</p>
<!--<img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt="">-->
<p>
Literacy Pro is an independent reading experience that allows students to intuitively connect to the books they want to read. It also includes assessment features to allow students to get book recommendations based off of their reading level. In addition, there is a rich data feedback loop for students and educators to gauge progress towards reading goals.
</br>
Educators and administrators can also use Lit Pro as a tool to gather data about their students’ reading experiences to inform their instructional choices. Various reports are populated to help teachers understand reading choices at both an individual student and class level. Additionally, administrators can view rolled up statistics across a class, teacher, school or district.
</p>
<h4>Responsibilities:</h4>
<ul>
<li>Design & Develop reusable components in <Strong>AngularJS and ngx-charts</Strong>, that are responsive across all mobile devices </li>
<li>Develop highly scalable and optimized REST APIs in Java using the <Strong>Spring Boot Framework & MySQL </Strong> database</li>
<li>Implement a batch assignment feature to enable teachers to assign Scholastic Reading Measure and Scholastic Reading Readiness tests to multiple students at once</li>
<li>Design & Develop a CSV export feature that allows teachers to extract crucial information related to student performance from the Literacy Pro reporting dashboard </li>
<li>Implement an event based messaging pipeline to deliver relevant information to the cross product dashboard from Literacy Pro using <Strong>Apache Kafka</Strong> </li>
<li>Work on reducing the tech-debt of the project by refactoring the existing code base to be more reusable and durable </li>
<li>Resolve key issues related to synchronization of roster data for <Strong>CLEVER</Strong> users </li>
<li>For the 2019 back to school, enhance the LiteracyPro front-end and back-end code to support year over year transition. This includes integration changes with Scholastic Digital Manager and app specific changes </li>
<li>Analyze business use-cases across all 3 products and assist in the design and development of a cross product dashboard to enable teachers to view a student’s overall progress across all of Scholastic Literacy Products </li>
<li>Enable teachers to create assignments for students in <Strong>Google Classrooms</Strong> right from the Literacy Pro application </li>
<li>Conduct code-reviews & provide guidance to junior developers with their tasks. Assist in the cross-functional training of front-end & back-end engineers with the aim of making them full-stack </li>
</ul>
<br/>
<p>
<Strong>Tech Stack: </Strong> HTML5, CSS3, Bootstrap 4, JSON, AngularJS, Java, Spring Boot 2.0, MySQL, AWS S3, OpenShift, AWS RDS, Apache Kafka
</p>
<ul class="list-inline">
<li><Strong>Date:</Strong> Apr 2018 - Till Date</li>
<li><Strong>Client:</Strong> Scholastic Inc.</li>
<li><Strong>Category:</Strong> Web Application </li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="modal-body">
<!-- Project Details Go Here -->
<h3>Words Open Reading Doors</h3>
<p class="item-intro text-muted">Sr. Software Engineer - Randstad</p>
<!--<img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt="">-->
<p>
W.O.R.D. is an interactive vocabulary program. The goal of the program is that students experience repeated exposures to core words in multiple contexts, thus bringing to consciousness the generative word strategies that are implicit in making meaning when reading. As student’s progress through the game, they also develop a vocabulary of terms to inform their thinking about words, word families, and word meanings. Understanding these terms helps broaden student’s knowledge of how words work.
</p>
<h4>Responsibilities:</h4>
<ul>
<li>Design & Develop reusable components in <Strong>Angular 5 and ngx-charts</Strong>, that can be used across both game dashboards and are responsive across all mobile devices</li>
<li>Develop highly scalable and optimized REST APIs in python using the <Strong>Django Rest Framework, Redis cache & ElasticSearch </Strong> </li>
<li>Develop a custom Django middleware backend for sending emails leveraging the organizations <Strong>Adobe Campaign Manager</Strong> implementation </li>
<li>Develop custom python scripts to generate random game play data in bulk for both products to help test for scalability & performance and cover edge cases </li>
<li>Design & Develop the CSR portals for both products that would allow customer service representatives to update a student’s game play progress based on requests received from teachers or school administrators</li>
<li>Establish a reusable query manager class that would allow clients to easily and quickly create custom <Strong>ElasticSearch</Strong> queries by leveraging a suite of helper methods </li>
<li>Implement a robust authentication protocol using <Strong>JWT tokens</Strong> to verify the user’s identity and access level obtained by integrating with Scholastic Digital Manager </li>
<li>Strategically combine related application functionality under “feature modules” and implement lazy loading to improve application load time </li>
<li>Design the APIs to query both MySQL and ElasticSearch for data and return a consolidated result set </li>
<li>Provide crucial support in the integration of Ooka Island into Scholastic’s suite of games to ensure a smooth go-live of the game as per schedule </li>
<li>Create <Strong>custom angular pipes</Strong> to transform data returned by backend API’s into desirable formats </li>
<li>Conduct code-reviews & provide guidance to junior developers with their tasks. Assist in the cross-functional training of front-end & back-end engineers with the aim of making them full-stack </li>
</ul>
<br/>
<p>
<Strong>Tech Stack: </Strong> HTML5, CSS3, Bootstrap 4, JSON, XML, Angular4, Python, Django Rest Framework, Redis, MySQL, AWS S3, OpenShift, AWS RDS, AWS Elasti-Cache, ElasticSearch, Kibana
</p>
<ul class="list-inline">
<li><Strong>Date:</Strong> Apr 2018 - Till Date</li>
<li><Strong>Client:</Strong> Scholastic Inc.</li>
<li><Strong>Category:</Strong> Web Application </li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="modal-body">
<!-- Project Details Go Here -->
<h3>Ooka Island</h3>
<p class="item-intro text-muted">Sr. Software Engineer - Randstad</p>
<!--<img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt="">-->
<p>
Ooka Island secures the foundational reading skills needed for students in Grades PreK-2, creating automatic, fluent readers with strong comprehension. It transforms teaching foundational reading skills by breaking the process down into thousands of micro-actions—6,695 to be exact. With an instructionally robust methodology and highly adaptive technology, Ooka Island actively personalizes each student’s path toward fluent reading.
</br>
Built on Dr. Kay MacPhee’s proven, research-based concepts, Ooka Island purposefully leads with securing children's phonemic awareness while teaching phonological skills to ensure reading words becomes as effortless as speaking—so students can focus on comprehension.
</p>
<h4>Responsibilities:</h4>
<ul>
<li>Design & Develop reusable components in <Strong>Angular 5 and ngx-charts</Strong>, that can be used across both game dashboards and are responsive across all mobile devices</li>
<li>Develop highly scalable and optimized REST APIs in python using the <Strong>Django Rest Framework, Redis cache & ElasticSearch </Strong> </li>
<li>Develop a custom Django middleware backend for sending emails leveraging the organizations <Strong>Adobe Campaign Manager</Strong> implementation </li>
<li>Develop custom python scripts to generate random game play data in bulk for both products to help test for scalability & performance and cover edge cases </li>
<li>Design & Develop the CSR portals for both products that would allow customer service representatives to update a student’s game play progress based on requests received from teachers or school administrators</li>
<li>Establish a reusable query manager class that would allow clients to easily and quickly create custom <Strong>ElasticSearch</Strong> queries by leveraging a suite of helper methods </li>
<li>Implement a robust authentication protocol using <Strong>JWT tokens</Strong> to verify the user’s identity and access level obtained by integrating with Scholastic Digital Manager </li>
<li>Strategically combine related application functionality under “feature modules” and implement lazy loading to improve application load time </li>
<li>Design the APIs to query both MySQL and ElasticSearch for data and return a consolidated result set </li>
<li>Provide crucial support in the integration of Ooka Island into Scholastic’s suite of games to ensure a smooth go-live of the game as per schedule </li>
<li>Create <Strong>custom angular pipes</Strong> to transform data returned by backend API’s into desirable formats </li>
<li>Conduct code-reviews & provide guidance to junior developers with their tasks. Assist in the cross-functional training of front-end & back-end engineers with the aim of making them full-stack </li>
</ul>
<br/>
<p>
<Strong>Tech Stack: </Strong> HTML5, CSS3, Bootstrap 4, JSON, XML, Angular4, Python, Django Rest Framework, Redis, MySQL, AWS S3, OpenShift, AWS RDS, AWS Elasti-Cache, ElasticSearch, Kibana
</p>
<ul class="list-inline">
<li><Strong>Date:</Strong> Apr 2018 - Till Date</li>
<li><Strong>Client:</Strong> Scholastic Inc.</li>
<li><Strong>Category:</Strong> Web Application </li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="modal-body">
<!-- Project Details Go Here -->
<h3>Content Protection 2.0</h3>
<p class="item-intro text-muted">Technical Lead - L&T Infotech</p>
<!--<img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt="">-->
<p>
The purpose of the project is to design a solution that can meet the organization’s growing need to identify audio/video content using fingerprinting & watermarking technologies. Other use cases include Usage Tracking, UGC Monetization & Content Identification to enable interactivity.
</p>
<h4>Responsibilities:</h4>
<ul>
<li><strong>Spearheaded</strong> the entire project to completion on schedule & within the estimated budget, exceeding expectations in what was delivered & overcoming all challenges along the way</li>
<li>Architected the entire process workflow spanning 4 different systems & designed highly scalable integration messaging formats that sustained changing business requirements</li>
<li>Successfully mapped all business use cases & pain points into actionable work items ensuring <strong>100% coverage</strong> & an end product that was intuitive, easy to use & a <strong>fully automated workflow</strong> for fingerprint delivery to partners</li>
<li>Designed the <strong>messaging architecture</strong> in RabbitMQ, defining the specific exchanges, queues & routing patterns for each step of the workflow including fail safe procedures using DLX queues & retry capabilities</li>
<li>Designed & developed the dashboard application in <strong>Angular 4</strong> using <strong>PrimeNG</strong> controls in TypeScript, including creating <strong>custom components for advanced filtering & state graph</strong> that are now being used by other angular projects</li>
<li>Designed & developed the database schema in <strong>PostgreSQL</strong> & created the REST APIs in python using the <strong>Django Rest Framework & Redis cache</strong></li>
<li>Implemented a seamless authentication protocol for <strong>Active Directory</strong> authentication using ng2-adal, and Authorization using <strong>Django Tokens</strong></li>
<li>Implemented a scalable <strong>self-hosted .Net API</strong> to generate vendor specific metadata xml’s using generic inputs for <strong>YouTube, Vobile & AudibleMagic</strong></li>
<li>Singlehandedly deployed the full stack using <strong>AWS</strong> – <strong>S3</strong> buckets for static hosting of the UI, <strong>Elastic Beanstalk</strong> instance to host the python API, <strong>RDS</strong> to host the PostgreSQL Database & <strong>ElastiCache</strong> to host the Redis Cache server</li>
<li>Skillfully <strong>collaborated</strong> with multiple stakeholders including end users, other project teams & external vendors to ensure a smooth integration and a quick rollover from the old system to the new one with <strong>no disruption to services</strong></li>
<li>Created an intuitive & scalable <strong>library</strong> that encapsulates the process of subscribing & publishing data to <strong>RabbitMQ</strong>. The library is now being used by multiple projects in the organization</li>
<li>Created design mockups & wireframes using <strong>BalsamiqUI</strong></li>
</ul>
<br/>
<p>
<Strong>Tech Stack: </Strong> HTML5, CSS3, Bootstrap 3.7, JSON, XML, Angular4, PrimeNG 4, Python, Django Rest Framework, Redis, PostgreSQL, pgAdmin4, .Net 4.5, RabbitMQ, Camunda, AWS S3, AWS Elastic Beanstalk, AWS RDS, AWS Elasti-Cache
</p>
<ul class="list-inline">
<li><Strong>Date:</Strong>Jan 2017 - Till Date</li>
<li><Strong>Client:</Strong> Viacom Inc.</li>
<li><Strong>Category:</Strong> Web Application </li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="modal-body">
<!-- Project Details Go Here -->
<h3>PTSX Web</h3>
<p class="item-intro text-muted">Technical Lead - L&T Infotech</p>
<!--<img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt="">-->
<p>
Develop a web interface to support a legacy WinForm application, providing a complimenting UI to access the programming & scheduling information across hundreds of channels on the go.
</p>
<h4>Responsibilities:</h4>
<ul>
<li>Designed dynamic & modular views in <strong>AngularJS</strong> that were driven by <strong>JSON</strong> files containing form field information using <strong>schema-form.js & dataTable.js</strong></li>
<li>Implemented <strong>Angular controllers, factories, services & directives</strong> to retrieve data from REST API’s & build key functionalities</li>
<li>Developed light-weight, flexible & fast API’s using <strong>NancyFX</strong> in .Net to support the application</li>
<li>Conducted daily standup meetings as a part of agile <strong>SCRUM</strong> methodology to track the teams progress and identify & address issues/roadblocks</li>
<li>Meet with end users & key stake holders to map requirements, scope identification, impact analysis and release planning</li>
<li>Guide developers on Query performance tuning and <strong>SQL Optimization</strong></li>
<li>Built <strong>caching protocols</strong> for saving distance data on queries & implemented caching using <strong>Redis</strong></li>
</ul>
<br/>
<p>
<Strong>Tech Stack: </Strong>HTML5, CSS3, Bootstrap 3.7, JSON, AngularJS, JQuery, JavaScript, .Net Web API, NancyFX, SQL Server 2008R2 & Redis
</p>
<ul class="list-inline">
<li><Strong>Date:</Strong> Oct 2016 - Jan 2017</li>
<li><Strong>Client:</Strong> Viacom Inc.</li>
<li><Strong>Category:</Strong> Web Application </li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">