-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
756 lines (730 loc) · 27.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Suresh Reddy</title>
<meta content="" name="descriptison" />
<meta content="" name="keywords" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet" />
<link
href="assets/vendor/owl.carousel/assets/owl.carousel.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<button type="button" class="mobile-nav-toggle d-xl-none">
<i class="icofont-navigation-menu"></i>
</button>
<!-- ======= Header ======= -->
<header id="header" class="d-flex flex-column justify-content-center">
<nav class="nav-menu">
<ul>
<li class="active">
<a href="#hero"><i class="bx bx-home"></i> <span>Home</span></a>
</li>
<li>
<a href="#about"><i class="bx bx-user"></i> <span>About</span></a>
</li>
<li>
<a href="#skills"
><i class="bx bx-book-content"></i> <span>Skills</span></a
>
</li>
<li>
<a href="#resume"
><i class="bx bx-file-blank"></i> <span>Resume</span></a
>
</li>
</ul>
</nav>
<!-- .nav-menu -->
</header>
<!-- End Header -->
<section id="hero" class="d-flex flex-column justify-content-center">
<div class="container" data-aos="zoom-in" data-aos-delay="100">
<h1>Suresh Reddy</h1>
<p>
I'm
<span
class="typed"
data-typed-items="a Full Stack developer, an AWS Certified Professional, a part time traveller"
></span>
</p>
<div class="social-links">
<a href="https://github.com/Mr-SKR" class="github" target="_blank"
><i class="bx bxl-github"></i
></a>
<a
href="https://www.linkedin.com/in/suresh-kumar-reddy/"
class="linkedin"
target="_blank"
><i class="bx bxl-linkedin"></i
></a>
<a
href="https://www.instagram.com/suresh.kumar.reddy/"
class="instagram"
target="_blank"
><i class="bx bxl-instagram"></i
></a>
</div>
</div>
</section>
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About</h2>
<q
cite="https://en.wikipedia.org/wiki/Dennis_Ritchie"
class="font-italic"
>I fix things now and then, more often tweak HTML and make scripts
to do things.</q
>
<h6>- Dennis MacAlistair Ritchie</h6>
</div>
<div class="row">
<div class="col-lg-4">
<img
src="assets/img/profile.jpg"
class="img-fluid"
alt="my-profile-picture"
/>
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content">
<div class="pb-5">
<p style="text-align: center">
I am a technology enthusiast. My interest lies in front-end,
back-end development and application deployment. Although I
have learned a bit of all these technologies, I have also
realized that I still have a lot to learn
</p>
</div>
<div class="row">
<div class="col-lg-6">
<ul>
<li>
<i class="icofont-rounded-right"></i>
<strong>Website:</strong>
<a href="https://mr-skr.github.io/"> mr-skr.github.io/</a>
</li>
<li>
<i class="icofont-rounded-right"></i>
<strong>Birthday:</strong> 22 January 1996
</li>
<li>
<i class="icofont-rounded-right"></i>
<strong>City:</strong> Bengaluru, India
</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li>
<i class="icofont-rounded-right"></i>
<strong>Phone:</strong>
<a href="tel:+91 7483006036"> +91 7483006036</a>
</li>
<li>
<i class="icofont-rounded-right"></i>
<strong>Email:</strong
><a href="mailto:sureshreddy@engineer.com">
sureshreddy@engineer.com</a
>
</li>
<li>
<i class="icofont-rounded-right"></i>
<strong>Degree:</strong> Bachelor's in Engineering (ISE)
</li>
</ul>
</div>
</div>
</div>
<div class="row align-items-center skills-content mt-5">
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a
href="https://www.credly.com/badges/f9fbf709-4ffb-43b3-a070-50db85789cf7/public_url"
target="_blank"
>
<img
src="assets/img/certs/AWS-Architect-Professional.png"
alt="AWS Certified Architect – Professional"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a
href="https://www.youracclaim.com/badges/b119ea5a-0165-4597-8738-6dfabe4ebb0e/public_url"
target="_blank"
>
<img
src="assets/img/certs/AWS-DevOpsEngineer-Professional.png"
alt="AWS Certified DevOps Engineer – Professional"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
</div>
<div class="row align-items-center skills-content mt-5">
<div class="row align-items-center skills-content mt-5">
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a
href="https://www.youracclaim.com/badges/531fa23b-f013-4b36-89ff-e7fec1eee2c5/public_url"
target="_blank"
>
<img
src="assets/img/certs/AWS-Developer-Associate.png"
alt="AWS Certified Developer – Associate"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a
href="https://www.youracclaim.com/badges/416a7e69-cc65-46aa-8a95-0d5db1976187/public_url"
target="_blank"
>
<img
src="assets/img/certs/AWS-SolArchitect-Associate.png"
alt="AWS Certified Solutions Architect – Associate"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a
href="https://www.credly.com/badges/84afe5a3-d00f-4e5e-a414-8701d4b13431/public_url"
target="_blank"
>
<img
src="assets/img/certs/AWS-SysOpAdmin-Associate-2020.png"
alt="AWS Certified SysOps Administrator – Associate"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Skills</h2>
<p>
There are over 700 programming languages in this wild world. I am
friends with few and acquaintances with some
</p>
</div>
<div class="row align-items-center skills-content my-5">
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://reactjs.org/" target="_blank">
<img
src="assets/img/skills/react-logo.png"
alt="React"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
<div
class="col logo mx-lg-5 center"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://www.typescriptlang.org/" target="_blank">
<img
src="assets/img/skills/typescript-logo.png"
alt="TypeScript"
class="img-circle"
style="width: 30%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://nodejs.org/en/" target="_blank">
<img
src="assets/img/skills/node-js-logo.png"
alt="NodeJS"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
</div>
<div class="row align-items-center skills-content mb-5">
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://www.java.com/en/" target="_blank">
<img
src="assets/img/skills/java-logo.png"
alt="Java"
class="img-circle"
style="width: 60%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank">
<img
src="assets/img/skills/js-logo.png"
alt="JavaScript"
class="img-circle"
style="width: 50%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://www.python.org/" target="_blank">
<img
src="assets/img/skills/python-logo.jpg"
alt="Python"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
</div>
<div class="row align-items-center skills-content mt-5">
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://www.mysql.com/" target="_blank">
<img
src="assets/img/skills/mysql-logo.png"
alt="MySQL"
class="img-circle"
style="width: 50%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://cassandra.apache.org/_/index.html" target="_blank">
<img
src="assets/img/skills/cassandra-logo.png"
alt="Cassandra"
class="img-circle"
style="width: 50%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://www.mongodb.com/" target="_blank">
<img
src="assets/img/skills/mongodb-logo.png"
alt="MongoDB"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
</div>
<div class="row align-items-center skills-content mt-5">
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://aws.amazon.com/" target="_blank">
<img
src="assets/img/skills/aws-logo.png"
alt="AWS"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://www.docker.com/" target="_blank">
<img
src="assets/img/skills/docker-logo.jpg"
alt="Docker"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
<div
class="col logo mx-lg-5"
data-aos="zoom-in"
data-aos-delay="200"
>
<a href="https://kubernetes.io/" target="_blank">
<img
src="assets/img/skills/k8s-logo.png"
alt="Kubernetes"
class="img-circle"
style="width: 100%"
/>
</a>
</div>
</div>
</div>
</section>
<!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Resume</h2>
<p></p>
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>
Senior Software Engineer @
<a href="https://www.pingidentity.com/">Ping Identity</a>
</h4>
<h5>January, 2023 - Present</h5>
<p><em> Global Tech Park, Bengaluru, India </em></p>
<ul>
<li>
Worked on standardizing the REST APIs to meet industry standards
such as payload validation, response transformation, DTO and DAOs,
OpenAPI specification compatibility etc.,
</li>
<li>
Made use of technology stack which includes ReactJS, ExpressJS, NodeJS, AJV, Cassandra etc.,
</li>
</ul>
</div>
<div class="resume-item">
<h4>
Software Engineer III @
<a href="https://www.cerner.com/">Oracle Cerner</a>
</h4>
<h5>November, 2021 - December, 2022</h5>
<p><em> Manyata Tech Park, Bengaluru, India </em></p>
<ul>
<li>
Worked with cloud business office to build and enhance an
internal webapplication to track, log and facilitate cloud
requests from enterprise application teams
</li>
<li>
Used technologies such as React (with Material UI design),
MobX, MySQL and AWS serverless architecture to run this web
application
</li>
<li>
Worked towards improving the user experience by re-designing
the single sign on (SSO) process, enhanced the code quality
and reliability by implementing the test framework (react
testing library)
</li>
<li>
Implemented admin settings module for centrally configuring
application wide settings and user authentication failure
notification system
</li>
</ul>
</div>
<div class="resume-item">
<h4>
Senior Cloud Engineer @
<a href="https://www.thomsonreuters.com/">Thomson Reuters</a>
</h4>
<h5>June, 2018 - October, 2021</h5>
<p><em> DivyaSree Technopolis, Bengaluru, India </em></p>
<ul>
<li>
Worked with Enterprise AWS Landing Zone team to implement
enterprise specific cloud services
</li>
<li>
Built RESTful APIs using Python with AWS serverless
architecture (Lambda, API Gateway, Step Functions, DynamoDB
etc.,) to provision AWS cloud access to application teams
based on RBAC, ABAC policies of IAM
</li>
<li>
Built a React dashboard to display centralized view of
enterprise AWS accounts' information
</li>
<li>
Designed and developed automated pipelines to bootstrap the
AWS accounts with services which aided in enforcing central
monitoring and logging systems
</li>
<li>
Used CICD tools such as GitHub, CodeBuild, CodeDeploy,
CodePipeline and Cloudformation to improve availability and
reliability of services such as AWS Bastion, Hybrid DNS and
AWS account inflation pipelines
</li>
<li>
Hands on experience with setting up AWS cloud networking
infrastructure comprising of VPCs, subnets, route tables,
security groups, transit gateway, route53, EC2, launch
templates, cloudwatch, cloudtrail, S3 etc.,
</li>
<li>
Responsible for improving the landing zone service SLIs to
match SLOs
</li>
<li>
Developed automated workflows in ServiceNow to offer
self-service
</li>
</ul>
</div>
<div class="resume-item">
<h4>
Intern @ <a href="https://www.ellucian.com/">Ellucian</a>
</h4>
<h5>January - April, 2018</h5>
<p><em> RMZ Ecoworld, Bengaluru, India </em></p>
<ul>
<li>
Worked with the cloud engineering team to learn corporate
best practices and SDLC methods
</li>
<li>
Practiced agile methodologies to develop a Java servlet
application using selenium webdriver to display status of
internal websites
</li>
</ul>
</div>
</div>
<div class="col-lg-6">
<h3 class="resume-title">Side Projects</h3>
<div class="resume-item">
<h4>Food Lovers Database (FLDb)</h4>
<h5>Restaurant finder webapplication</h5>
<p>
<em
><a href="https://foodloversdatabase.com"
>https://foodloversdatabase.com</a
></em
>
</p>
<ul>
<li>
Food Lovers Database(FLDb) is a collection of food Vlogs
from
<a
href="https://www.youtube.com/channel/UC-Lq6oBPTgTXT_K-ylWL6hg"
>Food Lovers TV</a
>
built using the MERN stack (MongoDB, ExpressJS, React and
NodeJS) with usage of technologies such as TypeScript and
NextJS
</li>
<li>
This application helps users to find nearby restaurants that
are reviewed by Food Lovers TV along with information such
as restaurant ratings, operating hours, location, contact
information etc.,
</li>
</ul>
</div>
<h3 class="resume-title">About me</h3>
<div class="resume-item pb-0">
<h4>Goals and Hobbies</h4>
<p>
<em
>Technology enthusiast looking forward to learn techn stacks
end-to-end</em
>
</p>
<p>
<em
>Here is how i spend my off-working hours to achieve my
goal</em
>
</p>
<ul>
<li>Udemy: Skill-up to achieve my goals</li>
<li>
Practice: Implement skills learnt by helping friends and
acquaintances
</li>
<li>Gaming: My passion for computers started here</li>
<li>
Hiking & Gym: Helps me maintain my physical and mental
stability
</li>
</ul>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Bachelor's in Information Science Engineering</h4>
<h5>2014 - 2018</h5>
<p>
<em
><a href="https://www.cmrit.ac.in/"
>CMR Institute of Technology, Bengaluru, IND</a
></em
>
</p>
<p>
I received my formal degree in Information Science
Engineering. I also held various positions during this time
frame which taught me about team work and shouldering
responsibility
</p>
</div>
<div class="resume-item">
<h4>Pre - University College</h4>
<h5>2012 - 2014</h5>
<p>
<em
><a href="http://sjpuc.in/"
>St. Joseph's Pre - University college, Bengaluru, IND</a
></em
>
</p>
<p>
My foundation for computers and programming was laid here.
With major subjects as Physics, Chemistry, Maths and Computer
Science, I always score 95+ in my CS exams
</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-5">
<a href="assets/suresh_resume.pdf" download="suresh_resume.pdf">
<button type="submit" class="btn btn-primary center-block">
Download Resume
</button>
</a>
</div>
</section>
<!-- End Resume Section -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<p>I have learned that i still have to learn a lot</p>
<div class="social-links">
<a href="https://github.com/Mr-SKR" class="github" target="_blank"
><i class="bx bxl-github"></i
></a>
<a
href="https://www.linkedin.com/in/suresh-kumar-reddy/"
class="linkedin"
target="_blank"
><i class="bx bxl-linkedin"></i
></a>
<a
href="https://www.instagram.com/suresh.kumar.reddy/"
class="instagram"
target="_blank"
><i class="bx bxl-instagram"></i
></a>
</div>
<div class="credits"></div>
</div>
</footer>
<!-- End Footer -->
<a href="#" class="back-to-top"><i class="bx bx-up-arrow-alt"></i></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/waypoints/jquery.waypoints.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/typed.js/typed.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>