-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·713 lines (528 loc) · 22.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>The Dreamer</title>
<!-- CSS -->
<!-- Bootstrap core CSS -->
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Owl Carousel -->
<link href="assets/css/owl.theme.css" rel="stylesheet">
<link href="assets/css/owl.carousel.css" rel="stylesheet">
<!-- Magnific-popup lightbox -->
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<!-- Simple text rotator -->
<link href="assets/css/simpletextrotator.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" media="screen">
<!-- Animate css -->
<link href="assets/css/animate.css" rel="stylesheet">
<!-- Custom styles CSS -->
<link href="assets/css/style.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
</head>
<body>
<div class="wrapper">
<!-- Preloader -->
<!--<div id="preloader">
<div id="status">
<div class="status-mes"><h4>Pradeep Aradhya</h4></div>
</div>
</div>-->
<!-- Navigation start -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<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" href="#">Pradeep Aradhya</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><a href="#introo">home</a></li>
<li><a href="#profile">Profile</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#resume">Resume</a></li>
<!--<li><a href="#portfolio">Portfolio</a></li>-->
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Navigation end -->
<!-- Intro section start -->
<section id="introo" class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="hello wow bounceInDown">
<h1>Hello, </h1>
<h3>
<!--<span class="rotate">DevOps Specialist. | Tools Evangelist. | SCM Expert. | Strong Leadership </span>-->
<span class="set">I'm </span><span class="malarkey"></span><span id="hide">|</span>
</h3>
</div>
<a href="#profile">
<div class="mouse-icon">
<div class="wheel"></div>
</div>
</a>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Intro section end -->
<!-- Profile contact callout section -->
<section id="profile-contact">
<div class="container">
<div class="row">
<div class="col-sm-4 wow bounceInLeft">
<div class="profile-item">
<i class="fa fa-envelope-o"></i>
<h5><a href="#">[email protected]</a></h5>
</div>
</div>
<div class="col-sm-4 wow bounceInUp">
<div class="profile-item">
<i class="fa fa-phone"></i>
<h5>+91-000-000-0000</h5>
</div>
</div>
<div class="col-sm-4 wow bounceInRight">
<div class="profile-item">
<i class="fa fa-map-marker"></i>
<h5>;-)</h5>
</div>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Profile contact callout section -->
<!-- Profile section start -->
<section id="profile" class="section">
<div class="container">
<div class="row">
<div class="col-md-12 headline wow bounceInDown">
<h2>Pradeep Aradhya</h2>
<p>DevOps Specialist. Tools Evangelist. SCM Expert. </p>
</div>
<div class="col-md-3 col-sm-6 hidden-xs wow bounceInLeft">
<img class="avatar" src="assets/images/photo.jpg" alt="">
</div>
<div class="col-md-3 col-sm-6 wow bounceInUp">
<div class="profile-widget">
<h3>Skillset</h3>
<h5>Techno Managerial Leadership</h5>
<div class="skill-bar">
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
</div>
<h5>Git/SVN/CVS/P4</h5>
<div class="skill-bar">
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
</div>
<h5>Configuration Management</h5>
<div class="skill-bar">
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-off"></div>
</div>
<h5>Ant/Maven/Jenkins</h5>
<div class="skill-bar">
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
</div>
<h5>Open Source Tools Adoption</h5>
<div class="skill-bar">
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
</div>
</div>
<div class="profile-widget">
<h5>Unix/Shell/Perl/Ruby Scripting</h5>
<div class="skill-bar">
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-off"></div>
</div>
<h5>Twitter Bootstrap (web) </h5>
<div class="skill-bar">
<div class="skill-rate-on"></div>
<div class="skill-rate-on"></div>
<div class="skill-rate-off"></div>
<div class="skill-rate-off"></div>
</div>
<h3>Social Profiles</h3>
<ul class="widget-social">
<li><a href="https://www.facebook.com/pradeep.aradhya"><i class="fa fa-facebook fa-fw"></i></a></li>
<li><a href="https://github.com/pradeep-aradhya"><i class="fa fa-github-alt"></i></a></li>
<li><a href="https://www.linkedin.com/in/paradhya"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div><!-- .col-md-3 -->
<div class="col-md-6 col-sm-12 wow bounceInRight">
<h3>Profesional Profile</h3>
<p> I bring in over 11+ years of experience in build, SCM and DevOps with strong technomanagerial leadership and focus to help organizations achieve their goals</p>
<p>The automation of the development, test, and release processes has a profound impact on the speed, quality and cost of releasing a software.I as a DevOps Consultant will help you adopt the best practices of reducing the cost, time, and risk of delivering incremental changes to users. I can help you build a Continuous Delivery Platform which achieves a reliable ,repeatable and automated process of releasing sofware in adherence to the definition of DevOps. This will ensure your enterprise remains lean , nimble and have fast response times to production.</p>
<p>I also do Enterprise Git Implementations. Many companies today have realized the benefits offered by git interms of high availablity, offline commits, cheap merging and branching , data redundancy and replication etc and are keen on moving to Git. I migrate with full history from SVN, P4 and CVS the source code into Git for teams and enalbe them to transition into Git in a planned and phased manner. I also offer basic and advanced Git training to teams and help them with onboarding processes.</p>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Profile section end -->
<!-- Callout section start -->
<!--<section id="stats" class="callout">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-12 hidden-xs wow bounceInLeft">
<h3>My Stats</h3>
</div>
<div class="col-md-3 col-sm-4 wow bounceInDown">
<div class="stat">
<div class="stat-icon">
<h2><i class="fa fa-coffee hidden-xs"></i><span class="timer" data-to="32"></span></h2>
</div>
<h3>Cup of coffee</h3>
</div>
</div>
<div class="col-md-3 col-sm-4 wow bounceInUp">
<div class="stat">
<div class="stat-icon">
<h2><i class="fa fa-code hidden-xs"></i><span class="timer" data-to="999"></span></h2>
</div>
<h3>Line of code</h3>
</div>
</div>
<div class="col-md-3 col-sm-4 wow bounceInRight">
<div class="stat">
<div class="stat-icon">
<h2><i class="fa fa-child hidden-xs"></i><span class="timer" data-to="300"></span>+</h2>
</div>
<h3>Happy customers</h3>
</div>
</div>
</div>--><!-- .row -->
<!--</div>--><!-- .container -->
<!--</section>-->
<!-- Callout section end -->
<!-- Services section start -->
<section id="services" class="section">
<div class="container">
<div class="row">
<div class="col-md-12 headline wow bounceInDown">
<h2>What i can do</h2>
<p>My Services.</p>
</div>
<div class="col-md-12">
<div class="row">
<div class="col-sm-4 wow bounceInLeft">
<div class="service">
<div class="icon">
<i class="fa fa-cogs"></i>
</div>
<h4>DevOps Enablement</h4>
<div class="text">
<p>I help Startups in bootstrapping the infrastructure and Enterprises in identifying, developing and implementing DevOps. Current state assessment of infrastructure to determine DevOps maturity and define DevOps capabilities and lay out roadmap. Streamlining the processes and implementing best practices, choosing the right tool for the work. Configuration setup, Automation, Training the in-house team.</p>
</div>
</div>
</div>
<div class="col-sm-4 wow bounceInUp" data-wow-delay=".2s">
<div class="service">
<div class="icon">
<i class="fa fa-diamond"></i>
</div>
<h4>Release Management</h4>
<div class="text">
<p>Tools such as Jenkins , Ant, Maven and Gradle can power build, test and deployment cycles of large proprietary projects predominatly based on Java. I can setup these tools and automate the build and deployment phases for the same.</p>
</div>
</div>
</div>
<div class="col-sm-4 wow bounceInUp">
<div class="service">
<div class="icon">
<i class="fa fa-cubes"></i>
</div>
<h4>Infrastructure Virtualization</h4>
<div class="text">
<p>I am the go to guy when it comes to AWS, Linux and Information Security issues and have expert like knowledge in Public, Private and Hybrid cloud models. Designing, implementing infrastructure for high availability, scalability, resilience and better response times. Migrating, redesigning the infrastructure from private data centre to AWS Cloud. Vulnerability Assessment and Penetration Testing on the infrastructure to check for any security holes on cloud.</p>
</div>
</div>
</div>
</div><!-- .row -->
<div class="row">
<div class="col-sm-4 wow bounceInRight">
<div class="service">
<div class="icon">
<i class="fa fa-cog"></i>
</div>
<h4>Configuration Automation</h4>
<div class="text">
<p>I help teams infrastructure automation using Chef. This included development of Ruby scripted cookbooks, attributes, roles, environments and integration of Chef components with cloud infrastructure. Designing and Implementing Highly Available (HA) set-up for Chef Server to avoid single point of failure. Supporting the "infrastructure-as-code" approach to deployment and cloud management.</p>
</div>
</div>
</div>
<div class="col-sm-4 wow bounceInUp" data-wow-delay=".4s">
<div class="service">
<div class="icon">
<i class="fa fa-retweet"></i>
</div>
<h4>Containerization</h4>
<div class="text">
<p>Help clients to move towards micro services architecture using containers. Creating a single release process for both hosted and on premise solutions that means using existing configuration management tool along with docker.</p>
</div>
</div>
</div>
<div class="col-sm-4 wow bounceInUp" data-wow-delay=".6s">
<div class="service">
<div class="icon">
<i class="fa fa-life-ring"></i>
</div>
<h4>Monitoring</h4>
<div class="text">
<p>Designing, implementing Graphite, Grafana and Nagios for monitoring and dash-boarding for monitor-able events to correlate with the metrics dashboard to troubleshoot issues in depth. Implementing handlers as healers to self-sustain the infrastructure which act on the service status with pre-defined scripts.</p>
</div>
</div>
</div>
</div><!-- .row -->
</div><!-- .col-md-12 -->
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Services section end -->
<!-- Callout section start -->
<section class="callout">
<div class="container">
<div class="row">
<div class="col-md-3 hidden-xs wow bounceInLeft">
<h3>My status</h3>
</div>
<div class="col-md-9 headline nomargin wow bounceInDown">
<h3>I'm currently available for freelance work.</h3>
<p>I have over 11 years of experience in build, release and configuration management. I help enterprises understand the power of automation by bringing about a culture of continuous delivery and Dev Ops.</p>
<a href="#contact" class="btn btn-default btn-custom-2 callout-btn"><i class="fa fa-paper-plane-o icon-before"></i> Contact me</a>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Callout section end -->
<!-- Resume section start -->
<section id="resume" class="section">
<div class="container">
<div class="row">
<div class="col-md-12 headline wow bounceInDown">
<h2>Resume</h2>
<p>My education and experience.</p>
</div>
</div><!-- .row -->
<div class="row resume-items">
<div class="col-md-3 wow bounceInLeft">
<h3>Education</h3>
</div>
<div class="col-md-6 col-sm-8 resume-item wow bounceInUp">
<h4>Masters in Computer Applications</h4>
<p>I have completed my masters degree in computer application with a c.g.p.a of 7.4.</p>
<hr class="hidden-xs">
</div>
<div class="col-md-3 col-sm-4 resume-place wow bounceInRight">
<h4><i class="fa fa-suitcase"></i> B.M.S College of Eng (V.T.U)</h4>
<i class="fa fa-calendar"></i> 2003 - 2004
<hr class="visible-xs">
</div>
<div class="col-md-6 col-md-offset-3 col-sm-8 resume-item wow bounceInUp">
<h4>Management Certification</h4>
<p>I have completed a 1 year General Management Program specilized in I.T from IIM-C through an Online Program.</p>
<hr class="hidden-xs">
</div>
<div class="col-md-3 col-sm-4 resume-place wow bounceInRight">
<h4><i class="fa fa-suitcase"></i> I.I.M Calcutta</h4>
<i class="fa fa-calendar"></i> 2007 - 2008
<hr class="visible-xs">
</div>
<div class="col-md-6 col-md-offset-3 col-sm-8 resume-item wow bounceInUp">
<h4>Bachelor of Science</h4>
<p>I have completed my BSc with Major subjects being Physics, Mathematics and Computer Science.</p>
<hr class="hidden-xs">
</div>
<div class="col-md-3 col-sm-4 resume-place wow bounceInRight">
<h4><i class="fa fa-suitcase"></i> M.E.S College <br> (Bangalore University)</h4>
<i class="fa fa-calendar"></i> 2000 - 2001
<hr class="visible-xs">
</div>
</div><!-- .row -->
<div class="row resume-items">
<div class="col-md-3 wow bounceInLeft">
<h3>Experience</h3>
</div>
<div class="col-md-6 col-sm-8 resume-item wow bounceInUp">
<h4>Principal Engineer</h4>
<p>I am part of Infrastructure and Shared services team responsible for Build, Release and Configuration management of H-ORCC Product lines namely Advantage Banking and EBPP</p>
<hr class="hidden-xs">
</div>
<div class="col-md-3 col-sm-4 resume-place wow bounceInRight">
<h4><i class="fa fa-suitcase"></i> ACI WorldWdie</h4>
<i class="fa fa-calendar"></i> 2011 - Present
<hr class="visible-xs">
</div>
<div class="col-md-6 col-md-offset-3 col-sm-8 resume-item wow bounceInUp">
<h4>Release Engineer</h4>
<p>I was responsible for release and config management for Web Based Content Management Product line , namely Team Site and Live Site.</p>
<hr class="hidden-xs">
</div>
<div class="col-md-3 col-sm-4 resume-place wow bounceInRight">
<h4><i class="fa fa-suitcase"></i> Interwoven</h4>
<i class="fa fa-calendar"></i> 2010 - 2011
<hr class="visible-xs">
</div>
<div class="col-md-6 col-md-offset-3 col-sm-8 resume-item wow bounceInUp">
<h4>Staff Software Engineer</h4>
<p>I worked on RTC, Jazz, RPC, RPM and PJC products of IBM Rational in the capacity of Build and Release Engineer</p>
<hr class="hidden-xs">
</div>
<div class="col-md-3 col-sm-4 resume-place wow bounceInRight">
<h4><i class="fa fa-suitcase"></i> IBM Rational</h4>
<i class="fa fa-calendar"></i> 2005 - 2010
<hr class="visible-xs">
</div>
<div class="col-md-6 col-md-offset-3 col-sm-8 resume-item wow bounceInUp">
<h4>Systems Engineer</h4>
<p>I worked on the Motorola A.E.M.S and GSM projects.</p>
<hr class="hidden-xs">
</div>
<div class="col-md-3 col-sm-4 resume-place wow bounceInRight">
<h4><i class="fa fa-suitcase"></i> Motorola Malaysia</h4>
<i class="fa fa-calendar"></i> 2004 - 2005
<hr class="visible-xs">
</div>
</div><!-- .row -->
<div class="row">
<div class="col-md-6 col-md-offset-3 wow bounceInUp">
<a href="#" class="btn btn-default btn-custom-2"><i class="fa fa-cloud-download icon-before"></i> Download CV</a>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Resume section end -->
<!-- Callout section start -->
<!-- Callout section end -->
<!-- Portfolio section start -->
<!-- Portfolio section end -->
<!-- Contact section start -->
<section id="contact" class="section">
<div class="container">
<div class="row">
<div class="col-md-12 headline wow bounceInLeft">
<h2>Contact Me</h2>
<p>Drop me a line or give a ring. I would love to hear from you.</p>
</div>
<div class="col-md-6 wow bounceInUp">
<p>Its my passion to rediscover the art of delivering software !</p>
<ul class="icon-list">
<li><i class="fa fa-fw fa-map-marker"></i>UK Office 5th floor Hyde Park Hayes 3, 11 Millington Road, Hayes, Middlesex, UB3 4AZ, United Kingdom</li>
<li><i class="fa fa-fw fa-phone"></i>+91-000-000-0000</li>
<li><i class="fa fa-fw fa-envelope-o"></i><a href="mailto:">[email protected]</a></li>
<li><i class="fa fa-fw fa-globe"></i><a href="">http://pradeep-aradhya.github.io</a></li>
</ul>
</div>
<div class="col-md-6 wow bounceInRight">
<form id="contact-form" role="form">
<div class="form-group">
<label class="sr-only" for="c_name">Name</label>
<input type="text" id="c_name" class="form-control" name="c_name" placeholder="Name">
</div>
<div class="form-group">
<label class="sr-only" for="c_email">Email address</label>
<input type="email" id="c_email" class="form-control" name="c_email" placeholder="E-mail">
</div>
<div class="form-group">
<textarea class="form-control" id="c_message" name="c_message" rows="7" placeholder="Your message"></textarea>
</div>
<button type="submit" class="btn btn-custom-1">
<i class="fa fa-bullhorn icon-before"></i> Send it
</button>
</form>
<div class="ajax-response"></div>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<!-- Contact section end -->
<!-- Footer start -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="copy">
© 2016 Pradeep Aradhya, All Rights Reserved.
</p>
</div>
</div><!-- .row -->
</div><!-- .container -->
</footer>
<!-- Footer end -->
</div><!-- .wrapper -->
<!-- Javascript files -->
<!-- jQuery -->
<script src="assets/js/jquery-1.11.0.min.js"></script>
<!-- Bootstrap JS -->
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<!-- Background slider -->
<script src="assets/js/jquery.backstretch.min.js"></script>
<!-- OwlCarousel -->
<script src="assets/js/owl.carousel.min.js"></script>
<!-- Modal for portfolio -->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!-- Text rotator -->
<script src="assets/js/jquery.simple-text-rotator.min.js"></script>
<!-- Waypoints -->
<script src="assets/js/jquery.waypoints.js"></script>
<!-- CountTo -->
<script src="assets/js/jquery.countTo.js"></script>
<!-- WOW - Reveal Animations When You Scroll -->
<script src="assets/js/wow.min.js"></script>
<!-- Smooth scroll -->
<script src="assets/js/smoothscroll.js"></script>
<!-- Fitvids -->
<script src="assets/js/jquery.fitvids.js"></script>
<!-- Custom scripts -->
<script src="assets/js/custom.js"></script>
<script src="assets/js/malarkey.min.js" charset="utf-8"></script>
<script>
var elem = document.querySelector('.malarkey');
var opts = {
typeSpeed: 50,
deleteSpeed: 50,
pauseDelay: 2000,
loop: false,
postfix: ''
};
malarkey(elem, opts).type('Pradeep.').pause(700).delete(100)
.type('a nerd.').pause(700).delete(100)
.type('a Reader.').pause(700).delete(100)
.type('a Geek.').pause(700).delete(100)
.type('a DevOps Specilist.').pause(700).delete(100)
.type('a Hacker.').pause(700).delete(100)
.type('that guy.').pause(700).delete(100)
.type('Pradeep.').pause(700).type(' And I love building culture with DevOps.');
</script>
</body>
</html>