-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·666 lines (580 loc) · 22.6 KB
/
index.html
File metadata and controls
executable file
·666 lines (580 loc) · 22.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bharath Kumar - Senior Mobile Engineer</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500&family=Spectral:wght@300;400&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #fafafa;
--fg: #1a1a1a;
--accent: #0066ff;
--muted: #666;
--border: #e0e0e0;
--mono: 'IBM Plex Mono', monospace;
--serif: 'Spectral', serif;
}
/* Dark theme */
@media (prefers-color-scheme: dark) {
:root {
--bg: #1a1a1a;
--fg: #e8e8e8;
--accent: #0066ff;
--muted: #999;
--border: #333;
}
}
/* Manual theme overrides */
[data-theme="light"] {
--bg: #fafafa;
--fg: #1a1a1a;
--accent: #0066ff;
--muted: #666;
--border: #e0e0e0;
}
[data-theme="dark"] {
--bg: #1a1a1a;
--fg: #e8e8e8;
--accent: #0066ff;
--muted: #999;
--border: #333;
}
body {
font-family: var(--serif);
background: var(--bg);
color: var(--fg);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Theme Toggle Button */
.theme-toggle {
position: fixed;
top: 2rem;
right: 2rem;
background: var(--bg);
border: 1px solid var(--border);
width: 44px;
height: 44px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.theme-toggle:hover {
border-color: var(--accent);
transform: scale(1.1);
}
.theme-toggle svg {
width: 20px;
height: 20px;
stroke: var(--fg);
transition: stroke 0.3s ease;
}
.container {
max-width: 680px;
margin: 0 auto;
padding: 3rem 1.5rem;
opacity: 0;
animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
to { opacity: 1; }
}
header {
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border);
}
h1 {
font-family: var(--mono);
font-size: 0.8rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 0.5rem;
animation: slideDown 0.6s ease 0.2s both;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.title {
font-family: var(--serif);
font-size: 2rem;
font-weight: 300;
line-height: 1.3;
margin-bottom: 1rem;
animation: slideDown 0.6s ease 0.3s both;
}
.subtitle {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.1em;
animation: slideDown 0.6s ease 0.4s both;
}
nav {
display: flex;
gap: 2rem;
margin: 2rem 0;
animation: slideDown 0.6s ease 0.5s both;
}
nav a {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--muted);
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.1em;
transition: color 0.2s ease;
position: relative;
}
nav a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: var(--accent);
transition: width 0.3s ease;
}
nav a:hover {
color: var(--accent);
}
nav a:hover::after {
width: 100%;
}
section {
margin-bottom: 3rem;
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
}
section:nth-child(1) { animation-delay: 0.6s; }
section:nth-child(2) { animation-delay: 0.7s; }
section:nth-child(3) { animation-delay: 0.8s; }
section:nth-child(4) { animation-delay: 0.9s; }
section:nth-child(5) { animation-delay: 1.0s; }
section:nth-child(6) { animation-delay: 1.1s; }
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
h2 {
font-family: var(--mono);
font-size: 0.7rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 2rem;
color: var(--muted);
}
.experience-item,
.post-item {
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border);
}
.experience-item:last-child,
.post-item:last-child {
border-bottom: none;
}
.experience-title {
font-family: var(--serif);
font-size: 1.1rem;
font-weight: 400;
margin-bottom: 0.25rem;
}
.experience-company {
color: var(--accent);
text-decoration: none;
transition: opacity 0.2s ease;
}
.experience-company:hover {
opacity: 0.7;
}
.experience-date {
font-family: var(--mono);
font-size: 0.7rem;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.about-text {
font-size: 1rem;
line-height: 1.8;
color: var(--fg);
}
.post-title {
font-family: var(--serif);
font-size: 1rem;
font-weight: 400;
margin-bottom: 0.5rem;
}
.post-title a {
color: var(--fg);
text-decoration: none;
transition: color 0.2s ease;
}
.post-title a:hover {
color: var(--accent);
}
.post-tags {
display: flex;
gap: 0.75rem;
}
.tag {
font-family: var(--mono);
font-size: 0.65rem;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.links {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
}
.link-item {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--muted);
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.1em;
transition: color 0.2s ease;
position: relative;
}
.link-item::before {
content: '→';
margin-right: 0.5rem;
display: inline-block;
transition: transform 0.2s ease;
}
.link-item:hover {
color: var(--accent);
}
.link-item:hover::before {
transform: translateX(3px);
}
.contact-info {
margin-bottom: 1.5rem;
}
.contact-item {
font-family: var(--mono);
font-size: 0.85rem;
margin-bottom: 0.5rem;
color: var(--fg);
}
.contact-label {
color: var(--muted);
text-transform: uppercase;
font-size: 0.7rem;
letter-spacing: 0.05em;
margin-right: 0.5rem;
}
footer {
margin-top: 6rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
text-align: center;
font-family: var(--mono);
font-size: 0.7rem;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.1em;
}
/* Mobile Optimizations */
@media (max-width: 640px) {
.theme-toggle {
top: 1.25rem;
right: 1.25rem;
width: 40px;
height: 40px;
}
.theme-toggle svg {
width: 18px;
height: 18px;
}
.container {
padding: 2rem 1.25rem;
}
header {
margin-bottom: 2rem;
}
.title {
font-size: 1.5rem;
}
nav {
flex-wrap: wrap;
gap: 1rem;
}
nav a {
font-size: 0.7rem;
}
section {
margin-bottom: 2.5rem;
}
.links {
gap: 1rem;
}
.link-item {
font-size: 0.7rem;
}
}
/* Smooth scroll */
html {
scroll-behavior: smooth;
}
/* Selection color */
::selection {
background: var(--accent);
color: var(--bg);
}
</style>
</head>
<body>
<!-- Theme Toggle Button -->
<button class="theme-toggle" id="themeToggle" aria-label="Toggle theme">
<svg class="sun-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"></path>
</svg>
<svg class="moon-icon" style="display: none;" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"></path>
</svg>
</button>
<div class="container">
<header>
<h1>Bharath Kumar</h1>
<div class="title">Senior Mobile Engineer</div>
<div class="subtitle">9.5+ years building scalable mobile applications</div>
<nav>
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#education">Education</a>
<a href="#projects">Projects</a>
<a href="#posts">Posts</a>
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<section id="about">
<h2>About</h2>
<p class="about-text">
Senior Mobile Engineer with 9.5+ years of experience building and scaling applications in Payments, Banking, Employee Benefits, CRM, and EdTech domains. Proven track record in Android platform modernization, SDK upgrades, modular architecture, and mentoring engineers to deliver high-quality mobile products at scale.
</p>
<p class="about-text" style="margin-top: 1rem;">
Specialized in Kotlin, Java, React Native, and modern Android development with Jetpack Compose, Clean Architecture, and MVVM patterns. Experience includes leading migration efforts, designing shared modules, and implementing offline-first experiences with performance optimization.
</p>
</section>
<section id="experience">
<h2>Experience</h2>
<div class="experience-item">
<div class="experience-title">
Software Development Engineer 3 at <a href="https://www.zeta.tech/in/" class="experience-company" target="_blank" rel="noopener">Zeta</a>
</div>
<div class="experience-date">Jun 2023 - Present</div>
<p class="about-text" style="margin-top: 0.75rem; font-size: 0.95rem;">
Leading Android migration efforts for Pluxee India & Philippines. Upgraded Kotlin, AGP, and compileSdk for modern toolchains. Designed android-shared Git sub-module to reduce code duplication across apps.
</p>
</div>
<div class="experience-item">
<div class="experience-title">
Software Development Engineer 2 at <a href="https://www.zeta.tech/in/" class="experience-company" target="_blank" rel="noopener">Zeta</a>
</div>
<div class="experience-date">May 2022 - May 2023</div>
<p class="about-text" style="margin-top: 0.75rem; font-size: 0.95rem;">
Developed core features for PayZapp (HDFC Bank) including Cards, Wallet, AutoPay, Recharge. Led migration from React Native to native Android for improved stability and performance.
</p>
</div>
<div class="experience-item">
<div class="experience-title">
Senior Software Engineer at <a href="http://www.autoninja.net" class="experience-company" target="_blank" rel="noopener">Unbox Technologies</a>
</div>
<div class="experience-date">Apr 2019 - Apr 2022</div>
<p class="about-text" style="margin-top: 0.75rem; font-size: 0.95rem;">
Owned end-to-end mobile development for NinjaCRM. Introduced React Native and CodePush for faster cross-platform delivery. Designed offline-first experiences using Realm DB.
</p>
</div>
<div class="experience-item">
<div class="experience-title">
Software Engineer at <a href="http://www.autoninja.net" class="experience-company" target="_blank" rel="noopener">Unbox Technologies</a>
</div>
<div class="experience-date">Jun 2016 - Mar 2019</div>
</div>
</section>
<section id="education">
<h2>Education</h2>
<div class="experience-item">
<div class="experience-title">
B.E (Computer Science) from <a href="https://www.pes.edu" class="experience-company" target="_blank" rel="noopener">PES Institute of Technology</a>
</div>
<div class="experience-date">2012 - 2016</div>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="post-item">
<div class="post-title">
<a href="https://www.kadmik.in/" target="_blank" rel="noopener">Kadmik - Gamified Exam Prep App</a>
</div>
<p class="about-text" style="margin-top: 0.5rem; font-size: 0.9rem;">
Founding team member responsible for product development, app architecture, and UX for a government exam prep app. 10L+ downloads.
</p>
<div class="post-tags" style="margin-top: 0.5rem;">
<span class="tag">React Native</span>
<span class="tag">Product</span>
</div>
</div>
<div class="post-item">
<div class="post-title">
<a href="https://play.google.com/store/apps/details?id=com.ithebk.expensemanager" target="_blank" rel="noopener">Money Manager - Personal Finance App</a>
</div>
<p class="about-text" style="margin-top: 0.5rem; font-size: 0.9rem;">
Independently designed and developed a feature-rich personal finance app with budgeting, analytics, export capabilities, and customization options. 50K+ downloads.
</p>
<div class="post-tags" style="margin-top: 0.5rem;">
<span class="tag">React Native</span>
<span class="tag">Finance</span>
</div>
</div>
<div class="post-item">
<div class="post-title">
<a href="https://github.com/ithebk/BarChart" target="_blank" rel="noopener">BarChart - Android Library</a>
</div>
<p class="about-text" style="margin-top: 0.5rem; font-size: 0.9rem;">
Customizable vertical and horizontal bar chart library with animation support.
</p>
<div class="post-tags" style="margin-top: 0.5rem;">
<span class="tag">Android</span>
<span class="tag">Open Source</span>
</div>
</div>
</section>
<section id="posts">
<h2>Posts</h2>
<div class="post-item">
<div class="post-title">
<a href="https://helloandroiddev.blogspot.in/2017/09/checking-new-app-update-using-firebase.html" target="_blank" rel="noopener">Firebase Remote Config: Trigger on App Updates</a>
</div>
<div class="post-tags">
<span class="tag">Android</span>
<span class="tag">Firebase</span>
</div>
</div>
<div class="post-item">
<div class="post-title">
<a href="https://goo.gl/cJZ442" target="_blank" rel="noopener">Stop a Service at Specific Time</a>
</div>
<div class="post-tags">
<span class="tag">Android</span>
<span class="tag">Service</span>
</div>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<div class="contact-info">
<div class="contact-item">
<span class="contact-label">Email</span>
bharath7242@gmail.com
</div>
<div class="contact-item">
<span class="contact-label">Phone</span>
(+91) 9972705071
</div>
<div class="contact-item">
<span class="contact-label">Location</span>
Bangalore, India
</div>
</div>
<div class="links">
<a href="https://docs.google.com/document/d/1AEaFWoOm2EsCvbNy7hrfrrqEmDydYK75OYaeapk8ECw/edit?usp=sharing" class="link-item" target="_blank" rel="noopener">Resume</a>
<a href="mailto:bharath7242@gmail.com" class="link-item">Mail</a>
<a href="https://play.google.com/store/apps/dev?id=7732158698743494041" class="link-item" target="_blank" rel="noopener">Play Store</a>
<a href="https://www.linkedin.com/in/ithebk" class="link-item" target="_blank" rel="noopener">LinkedIn</a>
<a href="https://github.com/ithebk" class="link-item" target="_blank" rel="noopener">Github</a>
<a href="https://stackoverflow.com/users/4491620/bharath-kumar" class="link-item" target="_blank" rel="noopener">Stack Overflow</a>
</div>
</section>
</main>
<footer>
© 2025 Bharath Kumar
</footer>
</div>
<script>
// Theme switching functionality
const themeToggle = document.getElementById('themeToggle');
const sunIcon = document.querySelector('.sun-icon');
const moonIcon = document.querySelector('.moon-icon');
const html = document.documentElement;
// Check for saved theme preference or default to system preference
const savedTheme = localStorage.getItem('theme');
const systemPrefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
// Set initial theme
if (savedTheme) {
html.setAttribute('data-theme', savedTheme);
updateIcon(savedTheme);
} else if (systemPrefersDark) {
html.setAttribute('data-theme', 'dark');
updateIcon('dark');
} else {
html.setAttribute('data-theme', 'light');
updateIcon('light');
}
// Toggle theme on button click
themeToggle.addEventListener('click', () => {
const currentTheme = html.getAttribute('data-theme');
const newTheme = currentTheme === 'light' ? 'dark' : 'light';
html.setAttribute('data-theme', newTheme);
localStorage.setItem('theme', newTheme);
updateIcon(newTheme);
});
// Update icon based on theme
function updateIcon(theme) {
if (theme === 'dark') {
sunIcon.style.display = 'none';
moonIcon.style.display = 'block';
} else {
sunIcon.style.display = 'block';
moonIcon.style.display = 'none';
}
}
// Listen for system theme changes
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {
if (!localStorage.getItem('theme')) {
const newTheme = e.matches ? 'dark' : 'light';
html.setAttribute('data-theme', newTheme);
updateIcon(newTheme);
}
});
</script>
</body>
</html>