-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
417 lines (375 loc) · 13.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Liju Thomas's website">
<meta name="author" content="Liju Thomas">
<link rel="icon" href="https://avatars.githubusercontent.com/u/34997667?v=4">
<title>Liju Thomas (@lijuthomas_)</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html,
body {
min-height: 100vh;
font-family: "Space Mono", monospace;
font-size: 1em;
/* Reduced the font size slightly */
max-width: 61rem;
margin-left: auto;
margin-right: auto;
padding: 0 2rem;
background-color: #f4f4f9;
display: flex;
flex-direction: column;
align-items: center;
}
.title {
font-size: 150%;
/* Reduced the title size slightly */
font-weight: bold;
padding-top: 0.2em;
text-align: left;
color: #666;
}
.date {
color: #666;
}
.content {
margin-top: 4rem;
margin-bottom: 4rem;
max-width: 100%;
width: 100%;
}
header {
margin: 0 auto 3rem;
text-align: left;
width: 100%;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 1rem;
}
.makka-pakka {
border-radius: 0.5rem;
position: absolute;
top: 4em;
right: 12%;
z-index: 1;
height: 20%;
}
@media (max-width: 640px) {
.makka-pakka {
display: none;
}
}
/* Tooltip styling */
[data-tooltip]:hover::after {
display: block;
position: absolute;
content: attr(data-tooltip);
border: 1px solid black;
background: #eee;
padding: 0.25em;
}
.tooltip {
text-decoration: underline;
text-decoration-style: dotted;
}
/* Read More / Read Less styling */
.bio-text p,
.extended-bio p {
font-size: 0.9rem;
/* Reduced bio text size */
color: #444;
margin-bottom: 1rem;
}
#read-more,
#read-less {
color: #d1a54f;
cursor: pointer;
font-weight: bold;
}
#read-more:hover,
#read-less:hover {
color: #c28f42;
}
.extended-bio {
display: none;
margin-top: 0rem;
}
/* Bio Text width */
.bio-text {
max-width: 100%;
width: 100%;
}
/* Seamless Transition */
.bio-container {
display: flex;
flex-direction: column;
align-items: flex-start;
max-width: 100%;
width: 100%;
}
/* Spacing for divs */
.content,
/* .extended-bio, */
.social-media,
ul {
padding: 1rem 0;
/* Added padding for better spacing between divs */
}
.bio-text {
padding-top: 1rem;
}
.bio-text-wrapper {
overflow: hidden;
max-height: 200px;
transition: max-height 0.3s ease-in-out;
}
.extended-bio-wrapper {
max-height: none;
overflow: visible;
}
/* Social Media Section */
.social-media {
margin-top: 3rem;
text-align: center;
}
.social-media ul {
display: flex;
justify-content: center;
list-style: none;
padding: 0;
}
.social-media ul li {
margin: 0 10px;
}
.social-media a {
font-size: 1.8rem;
/* Reduced social media icon size slightly */
color: #666;
text-decoration: none;
}
.social-media a:hover {
color: #d1a54f;
}
</style>
</head>
<body>
<img src="images/mario-working.gif" alt="Makka pakka saying hello" class="makka-pakka">
<div class="flex content">
<header>
<p>
<span class="title">
<span class="tooltip" data-tooltip="लिजू / Liju">Liju</span>
Thomas
</span> (<span class="tooltip" data-tooltip="github.com/lijuuu">@lijuthomas_</span>)
</p>
<p></p>
<p style="margin-bottom: 25px;">
Learning @
<a href="https://brototype.com/" target="_blank">Brototype</a>
</p>
<!-- Read More Text -->
<div class="bio-text">
<p>
<span style="font-weight:bold;">A <span style="font-size: 1.2rem;">Full Stack Developer</span></span> with
expertise
in
<span style="color: blue;">Golang</span> and <span style="color: blue;">JavaScript</span>, passionate about
building
<span style="font-style:italic;">scalable web applications</span>. I'm currently deepening my understanding of
<span style="font-weight:bold;">concurrency</span> and <span style="font-weight:bold;">data structures</span>
in
Golang, while also exploring modern JavaScript
libraries like <span style="color: blue;">React</span>. With <span style="font-weight:bold;">1 year of
consistent
learning</span>, I prioritize writing
<span style="text-decoration: underline;">clean, minimalist code</span> and take a
<span style="text-decoration: underline;">pragmatic approach</span> to problem-solving.
I have experience working with <span style="font-weight:bold;">microservices architecture</span>, leveraging
tools
like
<span style="color: blue;">gRPC</span>, <span style="color: blue;">Docker</span>, and <span
style="color: blue;">Kubernetes</span> to build robust, distributed systems.
<span id="read-more">Read more</span>
</p>
</div>
<!-- Bio Text (Initially Hidden) -->
<div class="extended-bio">
<p>In addition to my backend skills, I enjoy exploring other languages and have
a
beginner-level understanding of Solidity and Web3.js for Blockchain development. My expertise spans across
working
with MySQL, PostgreSQL, and MongoDB, providing robust database solutions to scale applications effectively.
</p>
<p>Though I started my academic journey in Electronics and Communication Engineering (with a modest CGPA and
ongoing
arrears), I quickly recognized my potential and shifted focus to self-driven learning. This decision led me to
upskill continuously, mastering technologies that truly matter for real-world problem-solving.</p>
<p>I use Fedora with GNOME as my preferred development environment and I love experimenting with customizations,
often
breaking my distro in the process but always finding a way to fix it somehow. I also enjoy watching tech
YouTube
videos to stay updated on the latest trends and emerging technologies.</p>
<span id="read-less">Read less</span>
</div>
</header>
<!-- Projects Section -->
<div>
<h2>Projects:</h2>
<ul>
<li>
<a href="https://dsa.lijuu.me/blind75">DSA Tracker</a>: List of DSA Problems
using React.Js. I didn't coded this, used AI for it(claude sonnect and V0.dev)
<span class="date">(January 2025)</span>
</li>
<li>
<a href="https://github.com/lijuuu/FoodBuddyMicroserviceAPIGateway">FoodBuddy Microservice</a>: A Microservice
Project written in Go with the help of Gin Framework integrated with gRPC interservice communication.
<span class="date">(November 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/ivdepaste">ivdepaste(working...)</a>: trying make a better pastebin using
nextjs,shacn/ui and typescript
<span class="date">(October 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/FoodBuddy-API">FoodBuddy-API</a>: Restaurant Aggregator API using Go
<span class="date">(July 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/UserManagementBackend">UserManagementBackend</a>: Go Backend
<span class="date">(October 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/UserManagement-React">UserManagementFrontend</a>: Frontend using
React
<span class="date">(October 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/OLX-Backend-CleanArch-CRUD">OLX-Backend-CleanArch-CRUD</a>: Go Backend
with Clean Architecture
<span class="date">(September 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/OLX-Frontend-React">OLX-Frontend-React</a>: React Frontend for OLX
<span class="date">(September 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/Netflix-React-Firebase">Netflix-React-Firebase</a>: Netflix Clone with
React and Firebase
<span class="date">(September 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/LinkShortner">Link Shortener</a>: URL shortener built
with Go
<span class="date">(July 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/DiscordCloneWeek2">DiscordClone</a>: Discord clone using HTML/CSS
<span class="date">(March 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/Nothing-Clone">Nothing-Clone</a>: Nothing app clone using HTML/CSS
<span class="date">(March 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/GoogleStore-clone">GoogleStore-clone</a>: Google Store clone built
with
HTML/CSS
<span class="date">(March 2024)</span>
</li>
<li>
<a href="https://github.com/lijuuu/ERC20_Tokens_Batch_Sell">ERC20_Tokens_Batch_Sell</a>: Batch sell ERC20
tokens
<span class="date">(March 2024)</span>
</li>
</ul>
</div>
<!-- Medium Articles Section -->
<div>
<h2>Medium Articles:</h2>
<ul>
<li>
<a
href="https://medium.com/@lijuthomasliju03/diffie-hellman-key-exchange-with-aes-a-secure-communication-64ee73e1c41d">
Diffie-Hellman Key Exchange with AES: A Secure Communication</a>:
Ensuring the privacy and security of data transmission in today's interconnected world.
<span class="date">(Nov 30, 2024)</span>
</li>
<li>
<a
href="https://medium.com/@lijuthomasliju03/building-a-sandboxed-code-execution-engine-using-golang-and-docker-220fd4a081c8">
Building a Sandboxed Code Execution Engine Using Golang and Docker</a>:
Safely executing code from thousands of users on online coding platforms.
<span class="date">(Nov 2, 2024)</span>
</li>
<li>
<a
href="https://medium.com/@lijuthomasliju03/understanding-and-solving-the-hydration-error-and-fouc-issue-in-next-js-9da430a8ea27">
Understanding and Solving the Hydration Error and FOUC Issue in Next.js</a>:
Addressing common challenges in server-rendered applications.
<span class="date">(Oct 27, 2024)</span>
</li>
<li>
<a
href="https://medium.com/@lijuthomasliju03/denos-approach-to-simplicity-aligning-with-go-s-philosophy-487a48fa3d2b">
Simplicity in Deno</a>: Approach to simplicity aligning with Go's philosophy
<span class="date">(October 2024)</span>
</li>
<li>
<a
href="https://medium.com/@lijuthomasliju03/unveiling-the-power-of-sha-256-hashing-in-blockchain-6b189dc4a6d8">
SHA256 in Blockchain</a>: Unveiling the Power of SHA-256 Hashing in Blockchain
<span class="date">(May 2023)</span>
</li>
</ul>
</div>
<!-- Documentation Section -->
<div>
<h2>Project Documentation:</h2>
<ul>
<li>
<a href="https://documenter.getpostman.com/view/32055383/2sA3e488Sh">FoodBuddy</a>:
API Documentation for my Backend Application
<span class="date">(July 2024)</span>
</li>
</ul>
</div>
<!-- Social Media Section -->
<div class="social-media">
<h2>Connect with me:</h2>
<ul>
<li><a href="https://www.linkedin.com/in/liju-thomas-13ba6524b/" target="_blank"><i
class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/lijuuu" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.instagram.com/lijuthomas__/" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://twitter.com/lijuthomas_" target="_blank"><i class="fab fa-twitter"></i></a></li>
</ul>
</div>
</div>
<script>
// Toggle Read More / Read Less functionality
const readMoreButton = document.getElementById('read-more');
const readLessButton = document.getElementById('read-less');
const extendedBio = document.querySelector('.extended-bio');
// Show extended bio when "Read More" is clicked
readMoreButton.addEventListener('click', function () {
extendedBio.style.display = 'block';
readMoreButton.style.display = 'none';
readLessButton.style.display = 'inline';
});
// Hide extended bio when "Read Less" is clicked
readLessButton.addEventListener('click', function () {
extendedBio.style.display = 'none';
readMoreButton.style.display = 'inline';
readLessButton.style.display = 'none';
});
</script>
</body>
</html>