-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
351 lines (287 loc) · 15.5 KB
/
Copy pathabout.html
File metadata and controls
351 lines (287 loc) · 15.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>About - Ragu</title>
<meta name="keywords" content="web development, web scraping, telegram bots, chrome extension, FastAPI, Python, DevOps, Ragu, ragug, RAGU G, Senior Python Developer">
<meta name="description" content="Senior Python Developer specializing in scalable backend architectures, AI-powered DevOps automation, and high-throughput web scraping frameworks.">
<meta property="og:title" content="About Ragu G - Senior Python Developer & Backend Lead">
<meta property="og:description" content="Explore my professional journey, core technical expertise, and passion for building resilient microservices and automation pipelines.">
<script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-5TZLDFNGM4&l=dataLayer&cx=c"></script><script src="script.js" defer=""></script>
<!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-X0WLPZ5VQY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-X0WLPZ5VQY');
</script>
<script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date());gtag("config","G-5TZLDFNGM4");</script>
<meta charset="UTF-8">
<meta name="google-site-verification" content="google7ab02f675b61b20e">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="RAGU G">
<meta property="og:image" content="./assets/img/aboutpic.jpg">
<meta property="og:url" content="https://www.ragug.com">
<link rel="icon" href="assets/img/logo.png" type="image/x-icon">
<link rel="alternate" hreflang="x-default" href="https://www.ragug.com/">
<link rel="alternate" hreflang="en" href="https://www.ragug.com/">
<meta itemprop="name" content="Ragu G">
<meta itemprop="url" content="https://www.ragug.com/">
<meta itemprop="image" content="./assets/img/logo.png">
<!-- Favicons -->
<link href="assets/img/logo.png" rel="icon">
<link href="assets/img/logo.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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<style>
.social i {
font-size: 30px;
padding: 0 10px
}
</style>
<script>
function calculateAge(birthdate) {
const now = new Date();
const birthDate = new Date(birthdate);
let years = now.getFullYear() - birthDate.getFullYear();
let months = now.getMonth() - birthDate.getMonth();
let days = now.getDate() - birthDate.getDate();
let hours = now.getHours() - birthDate.getHours();
let minutes = now.getMinutes() - birthDate.getMinutes();
let seconds = now.getSeconds() - birthDate.getSeconds();
if (seconds < 0) {
minutes--;
seconds += 60;
}
if (minutes < 0) {
hours--;
minutes += 60;
}
if (seconds < 0 || minutes < 0 || hours < 0) {
days--;
hours += 24;
}
if (days < 0) {
months--;
const prevMonth = new Date(now.getFullYear(), now.getMonth(), 0);
days += prevMonth.getDate();
}
if (months < 0) {
years--;
months += 12;
}
return ` ${years}Y:${months}M:${days}D:${hours}h:${minutes}m:${seconds}s`;
}
function startLiveAgeCalculation(birthdate) {
function updateAge() {
const age = calculateAge(birthdate);
document.getElementById('age').textContent = age;
}
updateAge();
setInterval(updateAge, 1000);
}
window.onload = function() {
const birthdate = "2002-06-19T00:00:00";
startLiveAgeCalculation(birthdate);
};
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container-fluid d-flex justify-content-between align-items-center">
<h1 class="logo me-auto me-lg-0"><a href="index.html">RAGU</a></h1>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="about.html">About</a></li>
<li><a href="blog.html">Blogs</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="tools.html">Tools</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<div class="header-social-links">
<a href="mailto:ragu19062002@gmail.com"><i class="bi bi-envelope-at"></i></a>
<a href="http://api.whatsapp.com/send?phone=+917598226670&text=Hi Ragu" target="_"><i class="bi bi-whatsapp"></i></a>
<a href="tg://resolve?domain=ragu2k"><i class="bi bi-telegram"></i></a>
<a href="https://www.instagram.com/_ragug_/" target="_"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/ragug/" target="_"> <i class="bi bi-linkedin"></i></a>
<a href="https://github.com/Ragug/" target="_"><i class="bi bi-github"></i></a>
</div>
</div>
</header><!-- End Header -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About</h2>
<p>I am a Senior Python Developer and Backend Lead specializing in engineering high-performance RESTful APIs, scalable distributed workflows, and robust automation frameworks. From designing fault-tolerant microservices that handle high-concurrency traffic to integrating secure AI-driven DevOps pipelines in air-gapped enterprise environments, I bridge the gap between heavy data processing and infrastructure engineering.</p>
</div>
<div class="row">
<div class="col-lg-4">
<img src="assets/img/aboutpic.jpg" class="img-fluid" alt="Ragu G Profile">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content">
<h3>Senior Python Developer & Backend Lead</h3>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="bi bi-rounded-right"></i> <strong>Birthday:</strong> 19 June 2002</li>
<li><i class="bi bi-rounded-right"></i> <strong>Website:</strong> www.ragug.com</li>
<li><i class="bi bi-rounded-right"></i> <strong>Phone:</strong> +91 7598226670</li>
<li><i class="bi bi-rounded-right"></i> <strong>City:</strong> Tamil Nadu, India</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li><i class="bi bi-rounded-right"></i> <strong>Age:</strong><span id="age"></span></li>
<li><i class="bi bi-rounded-right"></i> <strong>Degree:</strong> BE (Electrical & Electronics)</li>
<li><i class="bi bi-rounded-right"></i> <strong>Email:</strong> ragu19062002@gmail.com</li>
<li><i class="bi bi-rounded-right"></i> <strong>Freelance:</strong> Available</li>
</ul>
</div>
</div>
<p>
With deep expertise across Python, Java, and DevOps tools like Docker and GitLab CI/CD, I focus on optimizing software bottlenecks and building resilient data architectures. Beyond enterprise platform engineering, I am an active open-source contributor, technical blogger on Medium, and security enthusiast passionate about web system reverse-engineering.
</p>
<div class="social">
<a href="mailto:ragu19062002@gmail.com"><i class="fal fa-envelope"></i></a>
<a href="http://api.whatsapp.com/send?phone=+917598226670&text=Hi Ragu" target="_"><i class="fab fa-whatsapp"></i></a>
<a href="tg://resolve?domain=ragu2k"><i class="fab fa-telegram"></i></a>
<a href="https://www.instagram.com/_ragug_/" target="_"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/ragug/" target="_"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Ragug/" target="_"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Skills</h2>
<p>An overview of my core technical competency across backend frameworks, distributed task processing, data extraction systems, and system infrastructure orchestration:</p>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">Python (FastAPI, Django, Flask) <i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Web Scraping & Automation (Scrapy, Selenium) <i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">DevOps & Infrastructure (Docker, CI/CD, RHEL) <i class="val">85%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Distributed Workflows (Airflow, Celery) <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Databases & Storage (PostgreSQL, MinIO, Elastic) <i class="val">85%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Java & Spring Boot <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Observability & Security (ELK, Grafana, LDAP) <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Generative AI Implementation (RAG, LLMs) <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Facts Section ======= -->
<section id="facts" class="facts">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Facts</h2>
</div>
<div class="row counters">
<div class="col-lg-3 col-6 text-center">
<span data-purecounter-start="0" data-purecounter-end="3" data-purecounter-duration="1" class="purecounter"></span>
<p>Years of Core Industry Exp.</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-purecounter-start="0" data-purecounter-end="20" data-purecounter-duration="1" class="purecounter"></span>
<p>Projects Delivered</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-purecounter-start="0" data-purecounter-end="2" data-purecounter-duration="1" class="purecounter"></span>
<p>Open Source Contributions</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-purecounter-start="0" data-purecounter-end="195" data-purecounter-duration="1" class="purecounter"></span>
<p>Peak API RPS Handled</p>
</div>
</div>
</div>
</section><!-- End Facts Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<div class="copyright">
© Copyright <strong><span>Ragu</span></strong>. All Rights Reserved
</div>
</div>
</footer><!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>