-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
91 lines (85 loc) · 3.85 KB
/
about.html
File metadata and controls
91 lines (85 loc) · 3.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vishal Gorai | About</title>
<link rel="icon" href="./assets/favicon.jpg" type="image/jpeg" />
<link rel="shortcut icon" href="./assets/favicon.jpg" type="image/jpeg" />
<link rel="apple-touch-icon" href="./assets/favicon.jpg" />
<link rel="stylesheet" href="./v2.css" />
<script src="./v2.js" defer></script>
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<a class="brand" href="./index.html">vishalgorai</a>
<div class="header-right">
<div class="nav-backdrop" id="nav-backdrop" aria-hidden="true"></div>
<nav class="nav-panel" id="nav-panel" aria-label="Primary">
<button type="button" class="nav-close" id="nav-close" aria-label="Close menu">✕</button>
<ul class="nav-links">
<li><a href="./index.html">Home</a></li>
<li><a class="active" href="./about.html">About</a></li>
<li><a href="./experience.html">Experience</a></li>
<li><a href="./career.html">Career</a></li>
<li><a href="./blogs.html">Blogs</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<div class="header-actions">
<button
type="button"
id="nav-toggle"
class="nav-toggle"
aria-expanded="false"
aria-controls="nav-panel"
aria-label="Open menu"
>
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
</button>
<button id="theme-toggle" class="theme-toggle" type="button">☾ Dark</button>
</div>
</div>
</div>
</header>
<main class="container">
<section class="hero">
<p class="eyebrow">About me</p>
<h1>Software engineer with backend depth</h1>
<p class="intro">
I specialise in building distributed systems, Kafka-based event streaming pipelines, and scalable backend platforms using Golang, Java, Python, Spring Boot, AWS.
Experienced in microservices architecture, CDC pipelines, cloud-native systems, and high-throughput backend infrastructure with millions of daily events
</p>
</section>
<section class="section">
<h2 class="icon-title"><span>▣</span> What I Work On</h2>
<p>
I have expertise in building and optimizing distributed systems using Java, Python, and modern backend
tooling. My recent work includes platform revamps, adding Kafka workflows, and
production-grade services focused on reliability, scale and performance.
</p>
<p>My daily activity involves simplifying complex backend architectures, optimizing developer workflows, and contributing to systems that serve millions of users reliably.
</p>
</section>
<section class="section">
<h2 class="icon-title"><span>◉</span> Education</h2>
<p><strong>B.Tech</strong> | Birla Institute Of Technology, Mesra [2018-2022]</p>
</section>
<section class="section">
<h2 class="icon-title"><span>⬢</span>Best Reads</h2>
<p><strong>Atomic Habits</strong> by James Clear</p>
<p><strong>IKIGAI</strong> by Héctor García and Francesc Miralles</p>
<p><strong>Rich Dad, Poor Dad</strong> by Robert T. Kiyosaki</p>
<p><strong>Zero to One</strong> by Peter Thiel</p>
<p><strong>The Psychology of Money</strong> by Morgan Housel</p>
</section>
</main>
<footer class="container footer">
<p>© 2026 Vishal Gorai</p>
<p>About</p>
</footer>
</body>
</html>