-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
1117 lines (1010 loc) · 58.3 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" class="no-js">
<head>
<title>Alok Prateek</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<meta name="theme-color" content="#4b0966" /><!--#f74770-->
<link href="favicon.ico?v=6a" rel="icon" type="image/x-icon">
<link rel="manifest" type="application/manifest+json" href="manifest.json">
<link rel="apple-touch-icon" sizes="180x180" href="/res/gen/apple-touch-icon.png?v=6a">
<link rel="icon" type="image/png" sizes="32x32" href="/res/gen/favicon-32x32.png?v=6a">
<link rel="icon" type="image/png" sizes="192x192" href="/res/gen/android-chrome-192x192.png?v=6a">
<link rel="icon" type="image/png" sizes="16x16" href="/res/gen/favicon-16x16.png?v=6a">
<link rel="mask-icon" href="/res/gen/safari-pinned-tab.svg?v=6a" color="#666666">
<meta name="msapplication-TileColor" content="#a2a2a2">
<meta name="msapplication-TileImage" content="/res/gen/mstile-144x144.png?v=6a">
<meta name="msapplication-config" content="/res/gen/browserconfig.xml?v=6a">
<meta name="apple-mobile-web-app-title" content="Alok Prateek">
<meta name="application-name" content="Alok Prateek">
<link rel="stylesheet" type="text/css" href="assets/css/reset-dist.css" />
<link rel="stylesheet" type="text/css" href="assets/css/main.css" />
<link rel="stylesheet" type="text/css" href="assets/vendor/hint/hint.css">
<link rel="stylesheet" type="text/css" href="assets/css/pageclip.css" media="screen">
<link rel="stylesheet" href="assets/vendor/fab/fab.min.css" />
<link rel="stylesheet" href="assets/css/print.css" media="print">
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<meta name="author" content="Alok Prateek">
<meta name="description" content="Alok Prateek, a full-stack web developer and graphic designer from Delhi, India.">
<meta name="google" content="notranslate">
<meta property="og:type" content="website" />
<meta property="og:title" name="title" content="Alok Prateek">
<meta property="og:url" name="url" content="https://alokprateek.in">
<meta property="og:site_name" name="sit_name" content="Alok Prateek">
<meta property="og:description" name="aboutSite"
content="Alok Prateek, a full-stack web developer and graphic designer from Delhi, India.">
<meta property="og:img" name="img" content="/images/avatar2.png">
<meta property="og:image" name="imgfb" content="/images/avatar2.png">
<meta name="twitter:card" content="summary_large_image">
<!--<link rel="stylesheet" type="text/css" href="../assets/css/googlefonts.css" />-->
<!--<link rel="stylesheet" type="text/css" href="../assets/vendor/font-awesome/css/font-awesome.min.css" />-->
<!--<link rel="stylesheet" type="text/css" href="assets/vendor/devicons/css/devicons.min.css" >-->
<script>
if ("serviceWorker" in navigator) {
if (navigator.serviceWorker.controller) {
console.log("[Alok Prateek - Main] active service worker found, no need to register");
} else {
// Register the service worker
navigator.serviceWorker
.register("pwabuilder-sw.js", {
scope: "./"
})
.then(function (reg) {
console.log("[Alok Prateek - Main] Service worker has been registered for scope: " + reg.scope);
});
}
}
</script>
<script>
document.documentElement.className = 'js';
</script>
</head>
<body itemscope itemtype="https://schema.org/Person">
<noscript>
<h4> JavaScript has been disabled in your browser. The site may NOT display correctly.</h4>
</noscript>
<!-- Header Begin-->
<section id="header">
<header main-wrap>
<div class="image avatar">
<img src="images/avatar2.png" alt="My Ugly Photo" itemprop="image" />
</div>
<h1 id="logo" itemprop="name">Alok Prateek</h1>
<p class="console">Do. Or do not. There is no try.</p>
</header>
<nav id="nav">
<ul>
<li><a href="#one">Who am I?</a></li>
<li><a href="#two">My Skills and Offer</a></li>
<li><a href="#three">A Few Accomplishments</a></li>
<li><a href="#four">Send me a Pigeon</a></li>
</ul>
</nav>
<footer>
<ul class="icons">
<li class="hint--top hint--bounce hint--rounded hint--medium" aria-label="@thewhitewulfy"><a
href="https://www.instagram.com/thewhitewulfy/" class="icon fa-instagram"
aria-label="My Instagram profile"><span class="label">Instagram</span></a></li>
<li class="hint--top hint--bounce hint--rounded hint--medium" aria-label="LinkedIn: @alokprateek"><a
href="https://in.linkedin.com/in/alokprateek" class="icon fa-linkedin-square"
aria-label="My LinkedIn profile"><span class="label">LinkedIn</span></a></li>
<li class="hint--top hint--bounce hint--rounded hint--medium" aria-label="Github: @oxyenyos"><a
href="https://github.com/Oxyenyos/" class="icon fa-github-alt" aria-label="My Github profile"><span
class="label">Github</span></a></li>
<li class="hint--top hint--bounce hint--rounded hint--medium" aria-label="[email protected]"><a
href="mailto:[email protected]" class="icon fa-inbox" aria-label="My mail address"><span
class="label">Email</span></a></li>
</ul>
<!--
<div>
<form class="search--form">
<input type="search" placeholder="Search" class="search--text" id="search-text-input">
<button class="search--button" onclick="searchmark()">
<span class="fontawesome-search"><span class="fa fa-search"></span></span>
</button>
</form>
//<a href="#icon-search" class="icon fa-search"><span class="label">Search</span></a>
</div>
-->
</footer>
</section>
<!--Header End-->
<!-- Wrapper Begin-->
<div id="wrapper">
<!-- Main -->
<a id="top"></a>
<div id="main">
<section id="intro">
<div class="container">
<header class="major console">
<h2 class="line-1 anim-typewriter textlower">hello world!</h2>
</header>
</div>
</section>
<!-- One -->
<section id="one">
<h2 style="display: none;">Introduction</h2>
<div class="container">
<header class="major">
<p class="smconsole black">Hello there! <br>I'm <span itemprop="name">Alok Prateek</span>, a full-stack web
developer and graphic designer.</p>
<p class="notif-blue smconsole">Send all your mails at my brand new id <a href="mailto:[email protected]"
class="red">[email protected]</a></p>
</header>
<p>I enjoy turning less ordinary problems into simple, beautiful and intuitive designs, that is delight to the
user. When I'm not coding or pushing pixels, you could find me taking my dog, Zoe for a walk in the park. I
also play an addictive game - <a href="https://playcontestofchampions.com/" rel="noopener" target="_blank"
class="red">Marvel Contest of the Champions</a> whenever I'm free.</p>
<p>I am born and brought up in Noida, and completed my schooling from <a href="http://www.dpsgrnoida.com/"
rel="noopener" target="_blank" class="red">Delhi Public School</a>. It provided me great exposure and
helped me excel in my field of interest. I always loved the idea of connecting known facts and recalling
them, which made a great quizzer. I helped my school team to win many a times in quizzes and conducted
dozens. An effort for which my school made me President of Quiz Society. I developed a keen interest in web
and graphic designing early on. An experience which helped me craft many posters and websites for school
events. I also have a fair knowledge of German language, which I have studied until B2 Level.</p>
<p>Currently, I am actively looking for full-time development role. I just finished pursuing an engineering
course in Information Technology. I'm also developed a keen interest in openAPI and creating a cool project
based on that. My future plans include pursuing research in developing AI powered user interfaces. And
perhaps a trip to Antarctica before the glaciers melt or the penguins migrate.</p>
<p>I unfortunenately have redesigned my blog eleventh time over, but could never take time out for writing,
but do surely have a look at my empty blog...</p>
<p style="text-align:center;"><a class="btn-draw" href="http://blog.alokprateek.in"><span>Read My
Blog</span></a></p>
<p>I've decided to solve this problem of empty blog by bringing in content from social media via API's, this
is surely be a task for June'19.</p>
<!--<div class="frow features">
<div class="fcol fcol-4 feature">
<div class="feature-icon feature-number">
11
</div>
<div class="feature-description">
single page applications done completely in <a href="https://angular.io/" rel="noopener" target="_blank" class="red">Angular</a> or <a href="https://reactjs.org/" rel="noopener" target="_blank" class="red">React</a>
</div>
</div>
<div class="fcol fcol-4 feature">
<div class="feature-icon feature-number">
7
</div>
<div class="feature-description">
talks given about front-end development
</div>
</div>
</div>-->
</div>
</section>
<!-- Two -->
<section id="two">
<div class="container">
<h2 class="red"><i class="fa fa-user fa-lg notred"></i> My Skills and Offer</h2>
<p>I am a <b>full-stack web developer</b> with over <b>ten years</b> of experience.</p>
<p>I have maintained, developed and launched multiple projects from scratch. I carried out branding, the
design of <strong class="red">UI/UX</strong>, and the development of its back-end and front-end codebases.
</p>
<p>My current toolset includes <a href="https://nodejs.org/" rel="noopener" target="_blank" class="red"></a> node, <a href="https://reactjs.org/" rel="noopener" target="_blank"
class="red">React</a>, <a href="https://vuejs.org/" rel="noopener" target="_blank" class="red">Vue</a>, <a
href="https://typescriptlang.org/" rel="noopener" target="_blank" class="red">TypeScript</a>, PWA's, <a
href="https://expressjs.com/" rel="noopener" target="_blank" class="red">Express Framework</a> and all the
other various frameworks, libraries and technologies related to them.</p>
<p>I also used to work on websites using <strong class="red">PHP</strong> codebases and running on <span
class="red">Apache/NGINX</span> servers. I used popular framework <a href="https://www.drupal.org/"
rel="noopener" target="_blank" class="red">Drupal</a> and <a href="https://wordpress.com" rel="noopener"
target="_blank" class="red">WordPress</a>. I can still do smaller projects using these, if you really want
me to.</p>
<p>Currently I'm learning <a href="https://dart.dev" rel="noopener" target="_blank" class="red">Dart</a> and
<a href="https://flutter.dev/" rel="noopener" target="_blank" class="red">Flutter</a>, <a href="https://cloud.google.com/anthos/" rel="noopener" target="_blank" class="red">Google Cloud
Anthos</a>. OpenAPI has piqued my interest and I'm currently contributing to several open source solutions
related to it.</p>
<p>Feel free to ask me any questions. I can help you in your project with everything from the branding,
design, UI mock-ups, back-end and front-end web development. I can also fix the design and upgrade older
code bases. I can also install & configure the application on staging/production environments.</p>
<p>Call me a <i class="red">Swiss Army Knife</i> in terms of web development. </p>
<p style="text-align:center;"><a class="btn-draw" href="cv/index.html"><span>Curriculum Vitae</span></a></p>
<hr>
<h4 class="red">
<i class="fa fa-edit fa-lg"></i>
Front-end Web development
</h4>
<p>
<strong>I specialize in applications written in both <span class="red"><a href="https://reactjs.org/"
rel="noopener" target="_blank" class="red">React</a></span> or <span class="red"><a
href="https://vuejs.org/" rel="noopener" target="_blank" class="red">Vue</a></span>.</strong>
Recently, I became a huge fan of one-way data flow and Redux-like architecture, also typed languages like <a
href="https://typescriptlang.org/" rel="noopener" target="_blank" class="red">TypeScript</a>.
</p>
<p>
My current experience and skills in front-end include:
</p>
<ul>
<li>Creating beautiful interfaces using only <strong class="red">CSS</strong>. I can also convert existing
animations to CSS to reduce rendering load;
</li>
<li>
<span class="red">TypeScript</span>/<strong class="red">JavaScript</strong> development: bootstrapping or
refactoring an existing app architecture, by improving its extensibility and reliability;
</li>
<li>
Full integration of front-end development using tools like <a href="https://webpack.js.org/"
rel="noopener" class="red">Webpack</a> to support features like automatic code reload, code
minifications, multiple environment support;
</li>
<li>
Good sense of design and UX, which came naturally as I have a considerable experience in graphic design;
</li>
<li>
Knowledge and experience in many libraries of JS ecosystem like <a href="https://reactjs.org/"
rel="noopener" target="_blank" class="red">React</a>, <a href="https://redux.js.org/" rel="noopener"
target="_blank" class="red">Redux</a>, <a href="https://rxjs-dev.firebaseapp.com/" rel="noopener"
target="_blank" class="red">RxJS</a>, <a href="https://angular.io/" rel="noopener" target="_blank"
class="red">Angular</a>, <a href="https://ionicframework.com/" rel="noopener" target="_blank"
class="red">Ionic Framework</a>, <a href="https://backbonejs.org/" rel="noopener" target="_blank"
class="red">Backbone</a>, <a href="https://jquery.com/" rel="noopener" target="_blank"
class="red">jQuery</a>, <a href="https://lodash.com/" rel="noopener" target="_blank"
class="red">Lodash/Underscore</a> and whatever else that possibly be necessary;
</li>
<li>Desktop app development using Electron Framework;</li>
<li>
... and even <strong>mobile app development</strong> with the use of <a href="http://ionicframework.com/"
rel="noopener" class="red">Ionic Framework</a>.
<br>
With these, I can build a working native application for iOS and Android (both at once!) in JavaScript in
less than month.
<br>
</li>
</ul>
<ul class="devicon-list">
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="HTML5"> <i
class="devicons devicons-html5"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="CSS3"> <i
class="devicons devicons-css3"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="JavaScript"> <i
class="devicons devicons-javascript_badge"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="MarkDown"> <i
class="devicons devicons-markdown"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="SASS"> <i
class="devicons devicons-sass"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Compass"> <i
class="devicons devicons-compass"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="jQuery"> <i
class="devicons devicons-jquery"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="jQuery UI"> <i
class="devicons devicons-jquery_ui"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Bootstrap"> <i
class="devicons devicons-bootstrap"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="MaterializeCSS"> <i
class="devicons devicons-materializecss"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Modernizr"> <i
class="devicons devicons-modernizr"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Phonegap"> <i
class="devicons devicons-phonegap"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Angular"> <i
class="devicons devicons-angular"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="ReactJS"> <i
class="devicons devicons-react"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Ionic"> <i
class="devicons devicons-ionic"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="BackboneJS"> <i
class="devicons devicons-backbone"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Yeoman"> <i
class="devicons devicons-yeoman"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Codeigniter"> <i
class="devicons devicons-codeigniter"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="dart"> <i
class="devicons devicons-dart"> </i></li>
</ul>
<hr>
<h4 class="red">
<i class="fa fa-code fa-lg"></i>
Back-end Web development
</h4>
<p>
<strong>In back-end development, my current stack involves <a href="http://nodejs.org/" rel="noopener"
class="red">NodeJS</a> and <a href="https://expressjs.com/" rel="noopener" class="red">Express
Framework</a></strong>, or as alternates <a href="https://meteor.com/" rel="noopener"
class="red">Meteor</a> or <a href="https://www.totaljs.com/" rel="noopener" class="red">Total.JS</a>
</p>
<p>
To improve the development speed, performance and reliability, I have changed languages and frameworks
already multiple times, from <strong class="red">PHP</strong> to <strong class="red">Ruby</strong> and now
to <strong class="red">node.js</strong>.
</p>
<p>
Luckily, my experience and lessons I learned while doing all those projects, will stay with me and be useful
forever, no matter what framework I will use in the next project;
</p>
<p>
What I can do is:
</p>
<ul>
<li>
lead development of web apps in node.js/PHP;
</li>
<li>
cooperation with APIs, remote data synchronizations, cloud servers, asynchronous workers;
</li>
<li>
using different types of databases (like <a href="http://www.postgresql.org/" rel="noopener"
class="red">PostgreSQL</a>, <a href="http://www.mysql.com/" rel="noopener" class="red">MySQL</a>, <a
href="http://www.elasticsearch.org/" rel="noopener" class="red">Elasticsearch</a>, <a
href="http://redis.io/" rel="noopener" class="red">Redis</a>);
</li>
<li>
dividing the servers into different machine nodes / docker containers; database sharding; load balancing;
</li>
<li>
I can refactor existing applications, by improving code readability, separating concerns into separate
functions and classes, splitting out the business logic from app's views and controllers (<a
href="https://en.wikipedia.org/wiki/Domain-driven_design" rel="noopener">DDD</a>), and moving the app
architecture into more event-based one;
</li>
<li>
writing unit, e2e and integration tests;
</li>
</ul>
<ul class="devicon-list">
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Node.JS"> <i
class="devicons devicons-nodejs"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="PHP"> <i
class="devicons devicons-php"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Jekyll"> <i
class="devicons devicons-jekyll_small"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Ghost"> <i
class="devicons devicons-ghost"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Meteor"> <i
class="devicons devicons-meteorfull"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Drupal"> <i
class="devicons devicons-drupal"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="WordPress"> <i
class="devicons devicons-wordpress"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Codeigniter"> <i
class="devicons devicons-codeigniter"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="sqllite"> <i
class="devicons devicons-sqllite"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="mySQL"> <i
class="devicons devicons-mysql"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="PostgreSQL"> <i
class="devicons devicons-postgresql"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Apache Cassandra"> <i
class="devicons devicons-database"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="MS SQL Server"> <i
class="devicons devicons-msql_server"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="mongoDB"> <i
class="devicons devicons-mongodb"> </i></li>
</ul>
<hr>
<h4 class="red">
<i class="fa fa-terminal fa-lg"></i>
What about dev-ops & UI ?
</h4>
<p><strong>During my time I have built and released tens of websites.</strong></p>
<p>Thus, not only I have coded their back-end and front-end code, but often I also had to care about other
things needed in a successful web application:</p>
<ul>
<li>
Good planning of UI and thinking how it affects the UX;
</li>
<li>
consistency in design and typography;
</li>
<li>
search engine optimization;
</li>
<li>
deployment to the server (using <a href="https://www.docker.com/" rel="noopener" class="red">Docker</a>,
<a href="https://www.ansible.com/" rel="noopener" class="red">Ansible</a> or <a
href="https://www.getchef.com/chef/" rel="noopener" class="red">Chef</a>) and monitor its processes to
avoid downtimes.
</li>
<li>
Experience with hosting and deployment on <a href="https://aws.amazon.com/" rel="noopener" target="_blank"
class="red">Amazon
Web Services</a>, <a href="https://cloud.google.com/" rel="noopener" target="_blank" class="red">Google
Cloud Platform</a> and
<a href="https://www.openshift.com/" rel="noopener" target="_blank" class="red">RedHat OpenShift</a></li>
</ul>
<ul class="devicon-list">
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Git"> <i
class="devicons devicons-git"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="bash"> <i
class="devicons devicons-terminal"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="PowerShell"> <i
class="devicons devicons-terminal_badge"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Grunt"><i
class="devicons devicons-grunt"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Gulp"><i
class="devicons devicons-gulp"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="NPM"><i
class="devicons devicons-npm"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Redis"><i
class="devicons devicons-redis"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Docker"><i
class="devicons devicons-docker"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Amazon Web Services"><i
class="devicons devicons-aws"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="RedHat OpenShift"><i
class="devicons devicons-openshift"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Google Cloud Platform"><i
class="devicons devicons-google-cloud-platform"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="firebase"> <i
class="devicons devicons-firebase"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Dreamweaver"> <i
class="devicons devicons-dreamweaver"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Visual Studio"><i
class="devicons devicons-visualstudio"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Brackets"><i
class="devicons devicons-brackets"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="SublimeText"><i
class="devicons devicons-sublime"> </i></li>
</ul>
<h4 class="red">
<i class="fa fa-eye fa-lg"></i>
Design, Illustration & Branding
</h4>
<p><strong>Any successful project needs strong brand identity and beautiful but usable designs.</strong></p>
<p>Thus, I have keen focus on the design, UI and branding of the project:</p>
<ul>
<li>
Good eye for clean and beautiful designs and knowing how it affects the user;
</li>
<li>
I have a high level of proficiency with design and illustration applications like: <a href="#"
rel="noopener" target="_blank" class="red">Adobe Photoshop™</a>, <a href="#" rel="noopener"
target="_blank" class="red">Adobe Illustrator™</a>, and <a href="#" rel="noopener" target="_blank"
class="red">Corel Draw Graphics Suite™</a>;
</li>
<li>
I also have good drawing skills and coloring sense. I know how to use a tablet and could make
illustrations and iconography for you too;
</li>
<li>
I've designed numerous posters, banners, logos for my school and university events. As well as some other
advertising and branding material for some local food joints. In past two years, I've often chucked my
games to make space for design files on my HDD.
</li>
</ul>
<ul class="devicon-list">
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Photoshop"> <i
class="devicons devicons-photoshop"> </i></li>
<li class="hint--bottom hint--bounce hint--rounded hint--medium" aria-label="Illustrator"> <i
class="devicons devicons-illustrator"> </i></li>
</ul>
</div>
</section>
<!-- Three -->
<section id="three">
<div class="container">
<h2 class="red"><i class="fa fa-trophy fa-lg notred"></i> A Few Accomplishments</h2>
<p>Over the years I've hit my head on every wall and learned many ways of doing things. I've designed these
projects over course of many tireless days and sleepless nights. Each project was a challenge and I learned
something new with each iteration. Some allowed me to experiment with the latest and greatest the tech
offers, which taught me well. My special thanks to my father for his perseverance during all those years.
</p>
<div class="features">
<article>
<a href="web/index.html" class="image"><img src="images/web.jpg" alt="web art" /></a>
<a href="web/index.html" class="portdesc">
<div class="inner">
<h4>Web Art</h4>
<p>Web has evolved from a medium of text to a medium of visualizations. This collection includes some
of my best experiments I did with newer web standards including CSS3 and Canvas elements.</p>
<div class="notif-red"><i>Be warned though, some use bleeding edge tech and may not render correctly
on older browsers and mobile devices.</i></div>
</div>
</a>
</article>
<article>
<a href="graphics/index.html" class="image"><img src="images/graphics.jpg" alt="images" /></a>
<a href="graphics/index.html" class="portdesc">
<div class="inner">
<h4>Graphic Design</h4>
<p>Graphics are essential for web as they engage, fascinate and connect public to your brand. I design
various graphic elements for the web as well as print media. This collection gallery displays many
my graphic design works.</p>
</div>
</a>
</article>
<article>
<a href="https://blog.alokprateek.in/work/" class="image"><img src="images/sites.jpg" alt="sites" /></a>
<a href="https://blog.alokprateek.in/work/" class="portdesc">
<div class="inner">
<h4>Web Sites</h4>
<p>The most essential element of building one's own brand is by a website. This collection shows some
of my recent works. If you want me to build one for you too contact me through the Contact me form
below.</p>
<div class="notif-blue">Just moved the things to my blog, expect tings to be operational by the weekend.</div>
</div>
</a>
</article>
<article>
<a href="https://blog.alokprateek.in/repos/" class="image"><img src="images/codes.jpg" alt="codes" /></a>
<a href="https://blog.alokprateek.in/repos/" class="portdesc">
<div class="inner">
<h4>Codes and Scripts</h4>
<p>These are some random shell scripts that I find useful in my workflow. As well as random gist’s and
code pieces that could not fit elsewhere on the site.</p>
<div class="notif-blue">Just moved the things to my blog, expect tings to be operational by the weekend.
<br>Thanks for your patience.</div>
</div>
</a>
</article>
</div>
</div>
</section>
<!-- Four -->
<section id="four">
<div class="container">
<h2 class="red"><i class="fa fa-comments fa-lg notred"></i> Send Me a Pigeon</h2>
<p>I'm currently <b>available</b> for work.</p>
<p> If you have a project that you'd like to discuss, then please contact me via the form below or write to me
at <a href="mailto:[email protected]" class="red">[email protected]</a>.<br>If you'd like to talk about
anything else you can find me on social networks (Actually I'm on many, but I do not use all of them). A
good ol' fashioned mail is always welcome, because I like reading and writing long mails as I do not have
much time for writing shorter replies.</p>
<p><b>Of course I do not always work alone.</b> If you already have an existing team for your project, but
still need someone to help it, contact me. I’ll fit into your needs. </p>
<div class="contact-letter">
<form action="https://send.pageclip.co/TclCY2svW6BuR00AnoufmvmiwBOakkum" class="pageclip-form"
method="post">
<input type="hidden" name="_next" value="//alokprateek.in/thanks.html" />
<p>Hey Alok!</p>
<p>
<label for="name">I go by</label>
<input type="text" name="name" id="name" placeholder="Full Name" spellcheck="false" required
class="form-field" style="min-width: 60px; width:9ch;"
onInput="this.style.width = ((this.value.length + 1) * 12) + 'px';" />
<label for="company"> and I'm with</label>
<input type="text" id="company" name="company" placeholder="Organization" spellcheck="false"
class="form-field" style="min-width: 60px; width:11ch;"
onInput="this.style.width = ((this.value.length + 1) * 12) + 'px';">
<span>. </span>
<label for="projecttype">I'm interested in discussing</label>
<select id="projecttype" name="projecttype" class="form-field" style="min-width: 60px; width:12ch;" onInput="this.style.width = ((this.value.length + 1) * 12) + 'px';">
<option value="A New Project" selected>a new project</option>
<option value="A Site Redesign">a site redesign</option>
<option value="a branding project">a branding project</option>
<option value="Content Management Systems">content management systems</option>
<option value="Design and Illustration">designs and illustrations</option>
<option value="Digital marketing">digital marketing</option>
<option value="full time employment options">full time employment options</option>
<option value="Collaboration on a Project">Collaboration on a Project</option>
</select>
<span>, </span>
<label for="budget">have a rough budget of</label>
<select id="budget" name="budget" class="form-field" style="min-width: 60px; width:12ch;"
onInput="this.style.width = ((this.value.length + 1) * 12) + 'px';" >
<option value="5k to 20k">5k to 20k</option>
<option value="20k to 50k">20k to 50k</option>
<option value="50k to 100k">50k to 100k</option>
<option value="100k to 200k">100k to 200k</option>
<option value="200k to 500k">200k to 500k</option>
<option value="500k to 1000k">500k to 1000k</option>
<option value="Over 1k million" selected>over 1 million</option>
</select>
<span>, </span>
<label for="duetime"> and hope to have it ready to go</label>
<select id="duetime" name="duetime" class="form-field" style="min-width: 60px; width:11ch;" onInput="this.style.width = ((this.value.length + 1) * 12) + 'px';">
<option value="By Tomorrow" selected>by yesterday</option>
<option value="in a week">in a week</option>
<option value="in a Month">in a month</option>
<option value="in 2-3 Months">in 2-3 months</option>
<option value="in 3-6 Months">in 3-6 months</option>
<option value="Whenever Possible">whenever possible</option>
</select>
<span>. </span>
<label for="email">Please get in touch by emailing</label>
<input type="email" id="email" name="email" value="" inputmode="email" placeholder="at my email address" required class="form-field" style="min-width: 60px; width:16ch;" onInput="this.style.width = ((this.value.length + 1) * 12) + 'px';">
<label for="telphone"> or by calling </label>
<input type="tel" id="telphone" name="telphone" value="" inputmode="tel" placeholder="my phone number" required class="form-field" style="min-width: 60px; width:15ch;"
onInput="this.style.width = ((this.value.length + 1) * 12) + 'px';">
<span> to discuss further.</span>
</p>
<p>Thanks, <em class="username"></em></p>
<input type="hidden" name="_subject" value="New submission!" />
<input type="text" name="_gotcha" style="display:none" />
<ul class="actions">
<li><button type="submit" class="pageclip-form__submit button special"> <span><i
class="fa fa-send"></i> Send the Pigeon</span> </button></li>
<li><button type="reset" class="button"> <span><i class="fa fa-trash"></i> Forget it</span>
</button></li>
</ul>
</form>
</div>
<p><br></p>
<h4 class="red">
<i class="fa fa-hashtag fa-lg"></i>
Social Presence
</h4>
<p>You can contact me or view my presence on the following social platforms</p>
<div class="bottom-social">
<div class="social-platform-container instagram-color">
<a href="https://www.instagram.com/thewhitewulfy/" aria-label="My Instagram profile" rel="noopener"
target="_blank">
<div class="social-icon-block">
<i class="fa fa-instagram fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@thewhitewulfy</div>
</div>
</a>
</div>
<div class="social-platform-container linkedin-color">
<a href="https://www.linkedin.com/in/alokprateek/" aria-label="My LinkedIn profile" rel="noopener"
target="_blank">
<div class="social-icon-block">
<i class="fa fa-linkedin fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">Alok Prateek</div>
</div>
</a>
</div>
<div class="social-platform-container twitter-color">
<a href="https://twitter.com/theWhiteWulfy" aria-label="My Twitter profile" rel="me"
target="_blank">
<div class="social-icon-block">
<i class="fa fa-twitter fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@theWhiteWulfy</div>
</div>
</a>
</div>
</div>
<div class="bottom-social">
<a href="https://github.com/oxyenyos" aria-label="My Github profile" rel="me" target="_blank">
<div class="social-platform-container github-color">
<div class="social-icon-block">
<i class="fa fa-github fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@oxyenyos</div>
</div>
</a>
</div>
<div class="social-platform-container gitlab-color">
<a href="https://gitlab.com/theWhiteWulfy" aria-label="My Gitlab profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-gitlab fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@theWhiteWulfy</div>
</div>
</a>
</div>
<div class="social-platform-container bitbucket-color">
<a href="https://bitbucket.org/theWhiteWulfy" aria-label="My bitbucket profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-bitbucket fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@thewhitewulfy</div>
</div>
</a>
</div>
</div>
<div class="bottom-social">
<div class="social-platform-container facebook-color">
<a href="https://facebook.com/alokprateek" aria-label="My facebook profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-facebook-square fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">Alok Prateek</div>
</div>
</a>
</div>
<div class="social-platform-container devrant-color">
<a href="https://devrant.com/users/TheWhiteWulfy" aria-label="My devRant profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<svg id="icon-rantsemoticon2" viewBox="0 0 28 32">
<path fill="#ffffff"
d="M22.052 25.345c-2.206 1.446-5.021 2.208-8.309 2.135h-0.004c-0.199 0.004-0.39-0.004-0.585-0.005l-0.773 3.582c-0.178 1.202-0.69 1.263-1.139 0.136l-2.906-4.463c-1.029-0.339-1.978-0.785-2.835-1.337-3.573-2.307-5.585-6.394-5.5-11.648-0.137-8.484 5.19-13.925 13.737-13.739h0.004c8.549-0.189 13.876 5.254 13.739 13.739 0.085 5.219-1.899 9.288-5.43 11.601zM11.504 10.47c-0.622-0.621-1.676-0.621-2.299 0.001-0.311 0.311-0.475 0.708-0.475 1.149s0.164 0.839 0.475 1.149c0.311 0.311 0.708 0.475 1.149 0.475s0.839-0.164 1.149-0.475 0.475-0.708 0.475-1.149c0-0.441-0.164-0.838-0.475-1.15zM11.504 17.123c-0.622-0.62-1.676-0.621-2.299 0-0.311 0.311-0.475 0.708-0.475 1.15s0.164 0.838 0.475 1.149c0.315 0.315 0.702 0.475 1.149 0.475 0.441 0 0.839-0.164 1.149-0.475s0.475-0.708 0.475-1.149c0.001-0.441-0.164-0.839-0.475-1.15zM20.412 6.537c-0.507-0.506-1.364-0.504-1.863-0.004-0.119 0.118-0.214 0.251-0.294 0.421l-4.922 12.304c-0.070 0.178-0.106 0.354-0.106 0.523 0 0.367 0.13 0.693 0.376 0.942 0.248 0.253 0.575 0.387 0.945 0.387 0.342 0 0.826-0.127 1.188-0.734l4.949-12.353c0.076-0.17 0.114-0.355 0.114-0.552 0-0.357-0.134-0.68-0.387-0.933z">
</path>
</svg>
</div>
<div class="social-overlay">
<div class="social-handle">@TheWhiteWulfy</div>
</div>
</a>
</div>
<div class="social-platform-container devto-color">
<a href="https://t.me/theWhiteWulfy" aria-label="My Dev profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="#ffffff"
d="M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z">
</path>
</svg>
</div>
<div class="social-overlay">
<div class="social-handle">@oxyenyos</div>
</div>
</a>
</div>
</div>
<div class="bottom-social">
<div class="social-platform-container codepen-color">
<a href="https://codepen.io/theWhiteWulfy" aria-label="My Codepen profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-codepen fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@theWhiteWulfy</div>
</div>
</a>
</div>
<div class="social-platform-container dribbble-color">
<a href="https://dribbble.com/theWhiteWulfy" aria-label="My Dribbble profile" rel="noopener"
target="_blank">
<div class="social-icon-block">
<i class="fa fa-dribbble fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@theWhiteWulfy</div>
</div>
</a>
</div>
<div class="social-platform-container spotify-color">
<a href="https://open.spotify.com/user/vfz2xsqlssfgmkbctqazplpi2?si=DVIVylAYTS6xh4rhBtjN4w"
aria-label="My spotify profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-spotify fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">Alok Prateek</div>
</div>
</a>
</div>
</div>
<div class="bottom-social">
<div class="social-platform-container reddit-color">
<a href="https://www.reddit.com/user/theWhiteWulfy" aria-label="My reddit profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-reddit fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@thewhitewulfy</div>
</div>
</a>
</div>
<div class="social-platform-container stackoverflow-color">
<a href="https://stackoverflow.com/users/11710771/thewhitewulfy" aria-label="My stackoverflow profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-stack-overflow fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@theWhiteWulfy</div>
</div>
</a>
</div>
<div class="social-platform-container youtube-color">
<a href="https://www.youtube.com/channel/UCINWvTrntRxSu667pd6IBqQ" aria-label="My Youtube profile"
rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-youtube fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">My playlists</div>
</div>
</a>
</div>
</div>
<div class="bottom-social">
<div class="social-platform-container whatsapp-color">
<a href="https://wa.me/919315852108" aria-label="My Whatsapp number" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-whatsapp fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">+(91)9315-85-2108</div>
</div>
</a>
</div>
<div class="social-platform-container telegram-color">
<a href="https://t.me/theWhiteWulfy" aria-label="My Telegram profile" rel="noopener" target="_blank">
<div class="social-icon-block">
<i class="fa fa-telegram fa-5x fa-fw"></i>
</div>
<div class="social-overlay">
<div class="social-handle">@theWhiteWulfy</div>
</div>
</a>
</div>
</div>
<br>
<br>
</div>
</div>
</section>
<!-- Footer -->
<section id="footer">
<h2 style="display: none;">Footer Info</h2>
<p></p>
<div class="copyright align-center" style="font-size: large; ">
Crafted with <span class="fa fa-heart" style="color:red;"></span> by Alok Prateek.
<br><br>
</div>
<div class="copyright align-center">
<br><br>
<span style="font-size: smaller;">Best viewed on</span>
<br>
<p style="margin: 1em 0 2em 0;">
<a href="https://www.google.com/chrome/" target="_blank" rel="noopener" style="border-bottom: none;"><i
class="fa fa-chrome fa-2x fa-fw fa-lg browserchrome"> </i><span class="textsuper">57+</span></a>
<a href="https://www.mozilla.org/en-US/firefox/new/" rel="noopener" target="_blank"
style="border-bottom: none;"><i class="fa fa-firefox fa-2x fa-fw fa-lg browserff"> </i><span
class="textsuper">52+</span></a>
<a href="https://www.apple.com/safari/" target="_blank" rel="noopener" style="border-bottom: none;"><i
class="fa fa-safari fa-2x fa-fw fa-lg browsersafari"> </i><span class="textsuper">10.1+</span></a>
</p>
<p><span class="frow">
<span class="fcol fcol-4"><a href="privacy.html" class="privacypolicy">Privacy Policy</a></span>
<span class="fcol fcol-4"><a href="terms.html" class="privacypolicy">Terms of Use</a></span>
<span class="fcol fcol-4"><a href="pressdoc.html" class="privacypolicy">Press Resources</a></span>
</span></p><br><br>
<p><br>Show me more love by buying me <span class="fa fa-coffee" style="color:saddlebrown;"></span> via <a
href="https://paypal.me/AlokPrateek/" target="_blank" rel="noopener" style="border-bottom: none;"><span
class="fa fa-paypal" style="color:dodgerblue;"></span> Paypal.</a></p>
</div>
<div class="color-picker"></div>
</section>
</div>
</div>
<!--Wrapper End -->
<!--Search Begin -->
<!--fab begin-->
<ul id="menu" class="mfb-component--bl mfb-slidein-spring " data-mfb-toggle="click" style="display: block;">
<li class="mfb-component__wrap">
<a href="#" class="mfb-component__button--main" aria-label="Main material button to open or close a menu">
<i class="mfb-component__main-icon--resting fa fa-plus"></i>
<i class="mfb-component__main-icon--active fa fa-close"></i>
</a>
<ul class="mfb-component__list">
<li>
<a href="#top" data-mfb-label="Go to Top" class="mfb-component__button--child" aria-label="Go to top button">
<i class="mfb-component__child-icon fa fa-arrow-up"></i>
</a>
</li>
<li>
<a href="http://blog.alokprateek.in" data-mfb-label="My Blog" class="mfb-component__button--child"
aria-label="Go to my blog Button">
<i class="mfb-component__child-icon fa fa-book"></i>
</a>
</li>
<li>
<a href="mailto:[email protected]" data-mfb-label="Hire Me" class="mfb-component__button--child"
aria-label="Send a mail to hire me">
<i class="mfb-component__child-icon fa fa-envelope-open-o"></i>
</a>
</li>
</ul>
</li>
</ul>
<!--fab-end-->
<!-- Scripts -->
<!--Vendor Scripts-->
<script src="assets/vendor/jquery/jquery-1.12.3.min.js"></script>
<script src="assets/vendor/jquery/jquery.scrollzer.min.js"></script>
<script src="assets/vendor/jquery/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="https://s.pageclip.co/v1/pageclip.js"></script>
<script>
var form = document.querySelector('.pageclip-form')
Pageclip.form(form, {
successTemplate: '<div class="pageclip-form__success__message"><p><i class="fa fa-smile-o"></i></p><p>Thank you!</p><p>I'll contact you shortly by email.<br><br>Please check your inbox in a day!</p></div>'
})
</script>
<!--<script src="assets/vendor/mark/mark.js"></script>
<script>