jsonresume-theme-academic 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/examples/preview.html +492 -492
- package/examples/resume.json +303 -303
- package/package.json +85 -85
package/examples/preview.html
CHANGED
|
@@ -1,493 +1,493 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
-
<title>Ebenezer Isaac</title>
|
|
7
|
-
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
-
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap" rel="stylesheet" />
|
|
10
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
|
11
|
-
<style>@page {
|
|
12
|
-
size: A4;
|
|
13
|
-
margin: 12mm 14mm;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
* {
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
margin: 0;
|
|
19
|
-
padding: 0;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
html, body {
|
|
23
|
-
font-family: 'EB Garamond', Georgia, 'Palatino Linotype', 'Times New Roman', serif;
|
|
24
|
-
font-size: 10pt;
|
|
25
|
-
line-height: 1.32;
|
|
26
|
-
color: #000;
|
|
27
|
-
-webkit-print-color-adjust: exact;
|
|
28
|
-
print-color-adjust: exact;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/* Browser-only padding (overridden by @page margin in print/PDF) */
|
|
32
|
-
body {
|
|
33
|
-
padding: 12mm 14mm;
|
|
34
|
-
}
|
|
35
|
-
@media print {
|
|
36
|
-
body { padding: 0; }
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
/* ─── Header ─── */
|
|
40
|
-
|
|
41
|
-
.header {
|
|
42
|
-
display: flex;
|
|
43
|
-
justify-content: space-between;
|
|
44
|
-
align-items: flex-start;
|
|
45
|
-
gap: 16px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.header-left {
|
|
49
|
-
flex: 1;
|
|
50
|
-
min-width: 0;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.name {
|
|
54
|
-
font-size: 32pt;
|
|
55
|
-
font-weight: 400;
|
|
56
|
-
line-height: 1.05;
|
|
57
|
-
color: #000;
|
|
58
|
-
letter-spacing: 0.3px;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.label {
|
|
62
|
-
font-style: italic;
|
|
63
|
-
font-size: 10.5pt;
|
|
64
|
-
margin-top: 4px;
|
|
65
|
-
color: #222;
|
|
66
|
-
line-height: 1.3;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.contact-info {
|
|
70
|
-
text-align: right;
|
|
71
|
-
font-size: 8.5pt;
|
|
72
|
-
line-height: 1.65;
|
|
73
|
-
flex-shrink: 0;
|
|
74
|
-
padding-top: 4px;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.contact-line {
|
|
78
|
-
white-space: nowrap;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.contact-line i {
|
|
82
|
-
display: inline-block;
|
|
83
|
-
width: 11px;
|
|
84
|
-
text-align: center;
|
|
85
|
-
margin-left: 5px;
|
|
86
|
-
font-size: 7.5pt;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.header-rule {
|
|
90
|
-
border: none;
|
|
91
|
-
border-top: 0.5px solid #666;
|
|
92
|
-
margin: 6px 0 3px;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
/* ─── Summary ─── */
|
|
96
|
-
|
|
97
|
-
.summary {
|
|
98
|
-
font-style: italic;
|
|
99
|
-
font-size: 9pt;
|
|
100
|
-
line-height: 1.38;
|
|
101
|
-
margin-bottom: 2px;
|
|
102
|
-
text-align: justify;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
/* ─── Section Headings ─── */
|
|
106
|
-
|
|
107
|
-
.section-title {
|
|
108
|
-
font-variant: small-caps;
|
|
109
|
-
font-size: 12.5pt;
|
|
110
|
-
font-weight: 400;
|
|
111
|
-
letter-spacing: 1.5px;
|
|
112
|
-
border-bottom: 1.5px solid #C4962C;
|
|
113
|
-
padding-bottom: 1px;
|
|
114
|
-
margin-top: 8px;
|
|
115
|
-
margin-bottom: 5px;
|
|
116
|
-
color: #000;
|
|
117
|
-
page-break-after: avoid;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
/* ─── Bullet Items (shared) ─── */
|
|
121
|
-
|
|
122
|
-
.bullet-item {
|
|
123
|
-
position: relative;
|
|
124
|
-
padding-left: 14px;
|
|
125
|
-
margin-bottom: 2px;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.bullet-item::before {
|
|
129
|
-
content: '\25CB';
|
|
130
|
-
position: absolute;
|
|
131
|
-
left: 0;
|
|
132
|
-
font-size: 7pt;
|
|
133
|
-
top: 2.5px;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
/* ─── Skills ─── */
|
|
137
|
-
|
|
138
|
-
.skill-name {
|
|
139
|
-
font-weight: 700;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/* ─── Work Experience ─── */
|
|
143
|
-
|
|
144
|
-
.work-entry {
|
|
145
|
-
margin-bottom: 7px;
|
|
146
|
-
page-break-inside: avoid;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.work-header {
|
|
150
|
-
display: flex;
|
|
151
|
-
justify-content: space-between;
|
|
152
|
-
align-items: baseline;
|
|
153
|
-
gap: 8px;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.work-title {
|
|
157
|
-
font-weight: 700;
|
|
158
|
-
font-size: 10pt;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.work-duration {
|
|
162
|
-
font-size: 9.5pt;
|
|
163
|
-
white-space: nowrap;
|
|
164
|
-
flex-shrink: 0;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.work-meta {
|
|
168
|
-
display: flex;
|
|
169
|
-
justify-content: space-between;
|
|
170
|
-
align-items: baseline;
|
|
171
|
-
gap: 8px;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.work-tech {
|
|
175
|
-
font-style: italic;
|
|
176
|
-
font-size: 9.5pt;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.work-client {
|
|
180
|
-
font-style: italic;
|
|
181
|
-
font-size: 9.5pt;
|
|
182
|
-
white-space: nowrap;
|
|
183
|
-
flex-shrink: 0;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.work-summary {
|
|
187
|
-
margin: 2px 0 0;
|
|
188
|
-
font-style: italic;
|
|
189
|
-
font-size: 9.5pt;
|
|
190
|
-
color: #333;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.work-highlights {
|
|
194
|
-
list-style: none;
|
|
195
|
-
padding-left: 0;
|
|
196
|
-
margin-top: 3px;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.work-highlights li {
|
|
200
|
-
position: relative;
|
|
201
|
-
padding-left: 14px;
|
|
202
|
-
margin-bottom: 3px;
|
|
203
|
-
text-align: justify;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.work-highlights li::before {
|
|
207
|
-
content: '\25CB';
|
|
208
|
-
position: absolute;
|
|
209
|
-
left: 0;
|
|
210
|
-
font-size: 7pt;
|
|
211
|
-
top: 2.5px;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
/* ─── Education ─── */
|
|
215
|
-
|
|
216
|
-
.edu-entry {
|
|
217
|
-
margin-bottom: 5px;
|
|
218
|
-
page-break-inside: avoid;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.edu-header {
|
|
222
|
-
display: flex;
|
|
223
|
-
justify-content: space-between;
|
|
224
|
-
align-items: baseline;
|
|
225
|
-
gap: 8px;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
.edu-degree {
|
|
229
|
-
font-weight: 700;
|
|
230
|
-
font-size: 10pt;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.edu-year {
|
|
234
|
-
font-size: 10pt;
|
|
235
|
-
font-weight: 700;
|
|
236
|
-
white-space: nowrap;
|
|
237
|
-
flex-shrink: 0;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.edu-institution {
|
|
241
|
-
font-size: 9.5pt;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
.edu-courses {
|
|
245
|
-
font-size: 9.5pt;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
/* ─── Projects ─── */
|
|
249
|
-
|
|
250
|
-
.project-name {
|
|
251
|
-
font-weight: 700;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
/* ─── Volunteer ─── */
|
|
255
|
-
|
|
256
|
-
.volunteer-item {
|
|
257
|
-
text-align: justify;
|
|
258
|
-
margin-bottom: 4px;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.vol-title {
|
|
262
|
-
font-weight: 700;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
/* ─── Additional ─── */
|
|
266
|
-
|
|
267
|
-
.additional-line {
|
|
268
|
-
margin-bottom: 1px;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.additional-label {
|
|
272
|
-
font-weight: 700;
|
|
273
|
-
font-style: italic;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
/* ─── Print ─── */
|
|
277
|
-
|
|
278
|
-
@media print {
|
|
279
|
-
.work-entry { page-break-inside: avoid; }
|
|
280
|
-
.edu-entry { page-break-inside: avoid; }
|
|
281
|
-
.section-title { page-break-after: avoid; }
|
|
282
|
-
}
|
|
283
|
-
</style>
|
|
284
|
-
</head>
|
|
285
|
-
<body>
|
|
286
|
-
<div class="resume">
|
|
287
|
-
|
|
288
|
-
<header class="header">
|
|
289
|
-
<div class="header-left">
|
|
290
|
-
<h1 class="name">Ebenezer Isaac</h1>
|
|
291
|
-
<div class="label">Software Developer · Web/Application Developer · Full-stack (Java/JavaScript)</div>
|
|
292
|
-
</div>
|
|
293
|
-
<div class="contact-info">
|
|
294
|
-
<div class="contact-line">London, UK <i class="fa-solid fa-location-dot"></i></div>
|
|
295
|
-
<div class="contact-line">+44 75010 53232 <i class="fa-solid fa-square-phone"></i></div>
|
|
296
|
-
<div class="contact-line">ebnezr.isaac@gmail.com <i class="fa-solid fa-envelope"></i></div>
|
|
297
|
-
<div class="contact-line">ebenezer-isaac.com <i class="fa-solid fa-globe"></i></div>
|
|
298
|
-
<div class="contact-line">ebnezr-isaac <i class="fa-brands fa-linkedin-in"></i></div>
|
|
299
|
-
<div class="contact-line">ebenezer-isaac <i class="fa-brands fa-github"></i></div>
|
|
300
|
-
</div>
|
|
301
|
-
</header>
|
|
302
|
-
<hr class="header-rule" />
|
|
303
|
-
|
|
304
|
-
<h2 class="section-title">Summary</h2>
|
|
305
|
-
<div class="summary">Web/Application Developer with 3 years’ experience in both enterprise SAP and full stack web development, now pursuing a M.Sc. in Systems Engineering for IoT at UCL. Shipped RTL enablement and 240+ Carbon Design System v2 migrations for IBM.com, automated support workflows, and delivered production-grade university portals. Passionate about building automation tools to improve developer productivity and system efficiency.</div>
|
|
306
|
-
|
|
307
|
-
<h2 class="section-title">Core Skills</h2>
|
|
308
|
-
<div class="section-body">
|
|
309
|
-
|
|
310
|
-
<div class="bullet-item">
|
|
311
|
-
<span class="skill-name">Languages/Frameworks:</span> JavaScript, Java, PHP, Node.Js, Flutter, Python, HTML, CSS, JSON, XML, jQuery
|
|
312
|
-
</div>
|
|
313
|
-
<div class="bullet-item">
|
|
314
|
-
<span class="skill-name">Platforms:</span> AEM Sites, Sling, OSGi, AWS, GCP KMS
|
|
315
|
-
</div>
|
|
316
|
-
<div class="bullet-item">
|
|
317
|
-
<span class="skill-name">Data:</span> Firebase, MySQL, MongoDB
|
|
318
|
-
</div>
|
|
319
|
-
<div class="bullet-item">
|
|
320
|
-
<span class="skill-name">Tools/Libraries/Devices:</span> REST APIs, React, GitHub, Google Tink, Arduino, Raspberry Pi
|
|
321
|
-
</div>
|
|
322
|
-
</div>
|
|
323
|
-
|
|
324
|
-
<h2 class="section-title">Experience</h2>
|
|
325
|
-
<div class="section-body">
|
|
326
|
-
|
|
327
|
-
<div class="work-entry">
|
|
328
|
-
<div class="work-header">
|
|
329
|
-
<div class="work-title">IBM India Private Limited - AEM Sites Application Developer</div>
|
|
330
|
-
<div class="work-duration">Duration: November 2023 to July 2025</div>
|
|
331
|
-
</div>
|
|
332
|
-
|
|
333
|
-
<div class="work-meta">
|
|
334
|
-
<div class="work-tech">Tech-stack: AEM Cloud, Java, Node.Js, HTML, CSS, JavaScript, GitHub, Python</div>
|
|
335
|
-
<div class="work-client">Client: IBM.com</div>
|
|
336
|
-
</div>
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
<ul class="work-highlights">
|
|
340
|
-
<li>Led roughly 50% of all RTL enablement code changes for IBM.com in a 3-person team, and proposed alternative component implementations to de-risk project timelines.</li>
|
|
341
|
-
<li>Built a Node.js tool to map dependencies across 240+ AEM components, cutting issue-triage time by ~70%; complemented with Python automation that reduced planning by ~1 week.</li>
|
|
342
|
-
<li>Led Carbon Design System v2 UI modernization for an 8-person team; mentored developers in CSS/Sass and unblocked three complex UI components.</li>
|
|
343
|
-
<li>Published an AEM URL Switcher Chrome extension to compare the same page across multiple environments/versions, accelerating multi-environment testing.</li>
|
|
344
|
-
<li>Customized three AEM Commons DAM asset reports with dynamic parameters to support Adobe Cloud content operations.</li>
|
|
345
|
-
</ul>
|
|
346
|
-
</div>
|
|
347
|
-
<div class="work-entry">
|
|
348
|
-
<div class="work-header">
|
|
349
|
-
<div class="work-title">IBM India Private Limited - SAP BI AMS BW Consultant</div>
|
|
350
|
-
<div class="work-duration">Duration: September 2022 to October 2023</div>
|
|
351
|
-
</div>
|
|
352
|
-
|
|
353
|
-
<div class="work-meta">
|
|
354
|
-
<div class="work-tech">Tech-stack: SAP BW, Python</div>
|
|
355
|
-
<div class="work-client">Client: Volkswagen Financial Services</div>
|
|
356
|
-
</div>
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
<ul class="work-highlights">
|
|
360
|
-
<li>Cut average incident first-response time by ~80% by introducing Python script automation.</li>
|
|
361
|
-
<li>Identified a pattern of recurring issues and proactively escalated it, creating an 8-hour mitigation window that prevented a major P1 incident.</li>
|
|
362
|
-
<li>Reduced average ticket closure time by more than 24 hours.</li>
|
|
363
|
-
</ul>
|
|
364
|
-
</div>
|
|
365
|
-
<div class="work-entry">
|
|
366
|
-
<div class="work-header">
|
|
367
|
-
<div class="work-title">College of Engineering - Guindy - Full Stack Developer Intern</div>
|
|
368
|
-
<div class="work-duration">Duration: July 2022 to August 2022</div>
|
|
369
|
-
</div>
|
|
370
|
-
|
|
371
|
-
<div class="work-meta">
|
|
372
|
-
<div class="work-tech">Tech-stack: PHP, MySQL, HTML, CSS, JavaScript</div>
|
|
373
|
-
<div class="work-client">Client: Center for Academic Courses, Anna University</div>
|
|
374
|
-
</div>
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
<ul class="work-highlights">
|
|
378
|
-
<li>Digitized affiliated college fee records and enabled self-service status checks, with options to export data to Excel/PDF.</li>
|
|
379
|
-
<li>Developed a PDF Generator tool to template official letters, reducing manual work and errors by ~90%, and transferred know-how to staff for adoption.</li>
|
|
380
|
-
</ul>
|
|
381
|
-
</div>
|
|
382
|
-
<div class="work-entry">
|
|
383
|
-
<div class="work-header">
|
|
384
|
-
<div class="work-title">IBM India Private Limited - Associate Application Developer Intern</div>
|
|
385
|
-
<div class="work-duration">Duration: January 2022 to June 2022</div>
|
|
386
|
-
</div>
|
|
387
|
-
|
|
388
|
-
<div class="work-meta">
|
|
389
|
-
<div class="work-tech">Tech-stack: SAP S/4 HANA 2.0</div>
|
|
390
|
-
<div class="work-client"></div>
|
|
391
|
-
</div>
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
<ul class="work-highlights">
|
|
395
|
-
<li>Completed SAP S/4 HANA 2.0 certification and gained exposure to a full project lifecycle.</li>
|
|
396
|
-
</ul>
|
|
397
|
-
</div>
|
|
398
|
-
<div class="work-entry">
|
|
399
|
-
<div class="work-header">
|
|
400
|
-
<div class="work-title">Rishabh Software Private Limited, Vadodara - Machine Learning Intern</div>
|
|
401
|
-
<div class="work-duration">Duration: January 2020 to June 2020</div>
|
|
402
|
-
</div>
|
|
403
|
-
|
|
404
|
-
<div class="work-meta">
|
|
405
|
-
<div class="work-tech">Tech-stack: PHP, MySQL, HTML, CSS, JavaScript, Keras, Tensorflow</div>
|
|
406
|
-
<div class="work-client"></div>
|
|
407
|
-
</div>
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
<ul class="work-highlights">
|
|
411
|
-
<li>Built a Time & Expense Tracker application and prototyped a machine-learning model on Identification of Intoxicated Faces.</li>
|
|
412
|
-
</ul>
|
|
413
|
-
</div>
|
|
414
|
-
</div>
|
|
415
|
-
|
|
416
|
-
<h2 class="section-title">Selected Projects</h2>
|
|
417
|
-
<div class="section-body">
|
|
418
|
-
|
|
419
|
-
<div class="bullet-item">
|
|
420
|
-
<span class="project-name">Low-Cost Automation of Existing Electric Devices (MycroLinks):</span> Mobile app + NodeMCU (ESP8266) with real-time control and state sync.
|
|
421
|
-
</div>
|
|
422
|
-
<div class="bullet-item">
|
|
423
|
-
<span class="project-name">Fingerprint Attendance Management System:</span> Distributed biometric devices with central admin portal; CSV/Excel exports and audit logs.
|
|
424
|
-
</div>
|
|
425
|
-
<div class="bullet-item">
|
|
426
|
-
<span class="project-name">Event Enrolment & Online Payments (Deepwoods MCC):</span> Enrolment, ticketing, and payment confirmations with dashboard and exports.
|
|
427
|
-
</div>
|
|
428
|
-
<div class="bullet-item">
|
|
429
|
-
<span class="project-name">Android Password Manager:</span> On-device encryption with cloud-managed keys; Secure credential sync.
|
|
430
|
-
</div>
|
|
431
|
-
<div class="bullet-item">
|
|
432
|
-
<span class="project-name">Classroom Assignment Evaluator:</span> Gemini-based LLM for automated assignment evaluation and feedback using teacher-defined criteria.
|
|
433
|
-
</div>
|
|
434
|
-
</div>
|
|
435
|
-
|
|
436
|
-
<h2 class="section-title">Education</h2>
|
|
437
|
-
<div class="section-body">
|
|
438
|
-
|
|
439
|
-
<div class="edu-entry">
|
|
440
|
-
<div class="edu-header">
|
|
441
|
-
<div class="edu-degree">M.Sc Systems Engineering for the Internet of Things</div>
|
|
442
|
-
<div class="edu-year">2026</div>
|
|
443
|
-
</div>
|
|
444
|
-
<div class="edu-institution">University College London</div>
|
|
445
|
-
<div class="edu-courses">Coursework: Designing Sensor Systems, Real-World Multi-agent Systems</div>
|
|
446
|
-
</div>
|
|
447
|
-
<div class="edu-entry">
|
|
448
|
-
<div class="edu-header">
|
|
449
|
-
<div class="edu-degree">Master Computer Application</div>
|
|
450
|
-
<div class="edu-year">2022</div>
|
|
451
|
-
</div>
|
|
452
|
-
<div class="edu-institution">Anna University, College of Engineering – Guindy | 8.5 CGPA</div>
|
|
453
|
-
<div class="edu-courses">Coursework: Cyber Security and Internet of Things, Advanced Java, Machine Learning</div>
|
|
454
|
-
</div>
|
|
455
|
-
<div class="edu-entry">
|
|
456
|
-
<div class="edu-header">
|
|
457
|
-
<div class="edu-degree">Bachelor Computer Application</div>
|
|
458
|
-
<div class="edu-year">2020</div>
|
|
459
|
-
</div>
|
|
460
|
-
<div class="edu-institution">Maharaja Sayajirao University of Baroda | 7.5 CGPA</div>
|
|
461
|
-
<div class="edu-courses">Coursework: Advanced Java, Machine Learning, Android Development, Networking</div>
|
|
462
|
-
</div>
|
|
463
|
-
</div>
|
|
464
|
-
|
|
465
|
-
<h2 class="section-title">Leadership & Volunteering</h2>
|
|
466
|
-
<div class="section-body">
|
|
467
|
-
|
|
468
|
-
<div class="bullet-item volunteer-item">
|
|
469
|
-
<span class="vol-title">Volunteer Youth Mentor – Crossroads (2024–2024):</span> Co-led weekly teen sessions, designing activities that build communication and conflict-resolution skills while maintaining a safe, respectful environment. Followed safeguarding procedures, kept matters confidential, and sign-posted students to appropriate support.
|
|
470
|
-
</div>
|
|
471
|
-
<div class="bullet-item volunteer-item">
|
|
472
|
-
<span class="vol-title">MCA Class Representative – Anna University (2020–2022):</span> Elected cohort liaison; ran quick pulse-checks to surface concerns, presented consolidated feedback and solutions to faculty, mediated timetable/assessment conflicts, and ensured updates and actions were communicated and closed.
|
|
473
|
-
</div>
|
|
474
|
-
</div>
|
|
475
|
-
|
|
476
|
-
<h2 class="section-title">Credentials</h2>
|
|
477
|
-
<div class="section-body">
|
|
478
|
-
|
|
479
|
-
<div class="bullet-item">AWS Certified Cloud Practitioner</div>
|
|
480
|
-
<div class="bullet-item">Adobe Certified Expert - Adobe Experience Manager Sites Developer</div>
|
|
481
|
-
<div class="bullet-item">Adobe Certified Professional - Adobe Experience Manager Forms Backend Developer</div>
|
|
482
|
-
<div class="bullet-item">SAP Certified Development Specialist - ABAP for SAP HANA 2.0</div>
|
|
483
|
-
<div class="bullet-item">15+ additional Adobe, IBM, and Credly-verified certifications</div>
|
|
484
|
-
</div>
|
|
485
|
-
|
|
486
|
-
<h2 class="section-title">Additional</h2>
|
|
487
|
-
<div class="section-body">
|
|
488
|
-
<div class="additional-line"><span class="additional-label">Languages:</span> English (IELTS 8.0), Tamil (Native), Hindi (Fluent)</div>
|
|
489
|
-
<div class="additional-line"><span class="additional-label">Referees:</span> Available on request</div>
|
|
490
|
-
</div>
|
|
491
|
-
</div>
|
|
492
|
-
</body>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Ebenezer Isaac</title>
|
|
7
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
+
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap" rel="stylesheet" />
|
|
10
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
|
11
|
+
<style>@page {
|
|
12
|
+
size: A4;
|
|
13
|
+
margin: 12mm 14mm;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
* {
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
margin: 0;
|
|
19
|
+
padding: 0;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
html, body {
|
|
23
|
+
font-family: 'EB Garamond', Georgia, 'Palatino Linotype', 'Times New Roman', serif;
|
|
24
|
+
font-size: 10pt;
|
|
25
|
+
line-height: 1.32;
|
|
26
|
+
color: #000;
|
|
27
|
+
-webkit-print-color-adjust: exact;
|
|
28
|
+
print-color-adjust: exact;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Browser-only padding (overridden by @page margin in print/PDF) */
|
|
32
|
+
body {
|
|
33
|
+
padding: 12mm 14mm;
|
|
34
|
+
}
|
|
35
|
+
@media print {
|
|
36
|
+
body { padding: 0; }
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* ─── Header ─── */
|
|
40
|
+
|
|
41
|
+
.header {
|
|
42
|
+
display: flex;
|
|
43
|
+
justify-content: space-between;
|
|
44
|
+
align-items: flex-start;
|
|
45
|
+
gap: 16px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.header-left {
|
|
49
|
+
flex: 1;
|
|
50
|
+
min-width: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.name {
|
|
54
|
+
font-size: 32pt;
|
|
55
|
+
font-weight: 400;
|
|
56
|
+
line-height: 1.05;
|
|
57
|
+
color: #000;
|
|
58
|
+
letter-spacing: 0.3px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.label {
|
|
62
|
+
font-style: italic;
|
|
63
|
+
font-size: 10.5pt;
|
|
64
|
+
margin-top: 4px;
|
|
65
|
+
color: #222;
|
|
66
|
+
line-height: 1.3;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.contact-info {
|
|
70
|
+
text-align: right;
|
|
71
|
+
font-size: 8.5pt;
|
|
72
|
+
line-height: 1.65;
|
|
73
|
+
flex-shrink: 0;
|
|
74
|
+
padding-top: 4px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.contact-line {
|
|
78
|
+
white-space: nowrap;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.contact-line i {
|
|
82
|
+
display: inline-block;
|
|
83
|
+
width: 11px;
|
|
84
|
+
text-align: center;
|
|
85
|
+
margin-left: 5px;
|
|
86
|
+
font-size: 7.5pt;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.header-rule {
|
|
90
|
+
border: none;
|
|
91
|
+
border-top: 0.5px solid #666;
|
|
92
|
+
margin: 6px 0 3px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* ─── Summary ─── */
|
|
96
|
+
|
|
97
|
+
.summary {
|
|
98
|
+
font-style: italic;
|
|
99
|
+
font-size: 9pt;
|
|
100
|
+
line-height: 1.38;
|
|
101
|
+
margin-bottom: 2px;
|
|
102
|
+
text-align: justify;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* ─── Section Headings ─── */
|
|
106
|
+
|
|
107
|
+
.section-title {
|
|
108
|
+
font-variant: small-caps;
|
|
109
|
+
font-size: 12.5pt;
|
|
110
|
+
font-weight: 400;
|
|
111
|
+
letter-spacing: 1.5px;
|
|
112
|
+
border-bottom: 1.5px solid #C4962C;
|
|
113
|
+
padding-bottom: 1px;
|
|
114
|
+
margin-top: 8px;
|
|
115
|
+
margin-bottom: 5px;
|
|
116
|
+
color: #000;
|
|
117
|
+
page-break-after: avoid;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/* ─── Bullet Items (shared) ─── */
|
|
121
|
+
|
|
122
|
+
.bullet-item {
|
|
123
|
+
position: relative;
|
|
124
|
+
padding-left: 14px;
|
|
125
|
+
margin-bottom: 2px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.bullet-item::before {
|
|
129
|
+
content: '\25CB';
|
|
130
|
+
position: absolute;
|
|
131
|
+
left: 0;
|
|
132
|
+
font-size: 7pt;
|
|
133
|
+
top: 2.5px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/* ─── Skills ─── */
|
|
137
|
+
|
|
138
|
+
.skill-name {
|
|
139
|
+
font-weight: 700;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* ─── Work Experience ─── */
|
|
143
|
+
|
|
144
|
+
.work-entry {
|
|
145
|
+
margin-bottom: 7px;
|
|
146
|
+
page-break-inside: avoid;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.work-header {
|
|
150
|
+
display: flex;
|
|
151
|
+
justify-content: space-between;
|
|
152
|
+
align-items: baseline;
|
|
153
|
+
gap: 8px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.work-title {
|
|
157
|
+
font-weight: 700;
|
|
158
|
+
font-size: 10pt;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.work-duration {
|
|
162
|
+
font-size: 9.5pt;
|
|
163
|
+
white-space: nowrap;
|
|
164
|
+
flex-shrink: 0;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.work-meta {
|
|
168
|
+
display: flex;
|
|
169
|
+
justify-content: space-between;
|
|
170
|
+
align-items: baseline;
|
|
171
|
+
gap: 8px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.work-tech {
|
|
175
|
+
font-style: italic;
|
|
176
|
+
font-size: 9.5pt;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.work-client {
|
|
180
|
+
font-style: italic;
|
|
181
|
+
font-size: 9.5pt;
|
|
182
|
+
white-space: nowrap;
|
|
183
|
+
flex-shrink: 0;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.work-summary {
|
|
187
|
+
margin: 2px 0 0;
|
|
188
|
+
font-style: italic;
|
|
189
|
+
font-size: 9.5pt;
|
|
190
|
+
color: #333;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.work-highlights {
|
|
194
|
+
list-style: none;
|
|
195
|
+
padding-left: 0;
|
|
196
|
+
margin-top: 3px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.work-highlights li {
|
|
200
|
+
position: relative;
|
|
201
|
+
padding-left: 14px;
|
|
202
|
+
margin-bottom: 3px;
|
|
203
|
+
text-align: justify;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.work-highlights li::before {
|
|
207
|
+
content: '\25CB';
|
|
208
|
+
position: absolute;
|
|
209
|
+
left: 0;
|
|
210
|
+
font-size: 7pt;
|
|
211
|
+
top: 2.5px;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/* ─── Education ─── */
|
|
215
|
+
|
|
216
|
+
.edu-entry {
|
|
217
|
+
margin-bottom: 5px;
|
|
218
|
+
page-break-inside: avoid;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.edu-header {
|
|
222
|
+
display: flex;
|
|
223
|
+
justify-content: space-between;
|
|
224
|
+
align-items: baseline;
|
|
225
|
+
gap: 8px;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.edu-degree {
|
|
229
|
+
font-weight: 700;
|
|
230
|
+
font-size: 10pt;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.edu-year {
|
|
234
|
+
font-size: 10pt;
|
|
235
|
+
font-weight: 700;
|
|
236
|
+
white-space: nowrap;
|
|
237
|
+
flex-shrink: 0;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.edu-institution {
|
|
241
|
+
font-size: 9.5pt;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.edu-courses {
|
|
245
|
+
font-size: 9.5pt;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/* ─── Projects ─── */
|
|
249
|
+
|
|
250
|
+
.project-name {
|
|
251
|
+
font-weight: 700;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/* ─── Volunteer ─── */
|
|
255
|
+
|
|
256
|
+
.volunteer-item {
|
|
257
|
+
text-align: justify;
|
|
258
|
+
margin-bottom: 4px;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.vol-title {
|
|
262
|
+
font-weight: 700;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/* ─── Additional ─── */
|
|
266
|
+
|
|
267
|
+
.additional-line {
|
|
268
|
+
margin-bottom: 1px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.additional-label {
|
|
272
|
+
font-weight: 700;
|
|
273
|
+
font-style: italic;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/* ─── Print ─── */
|
|
277
|
+
|
|
278
|
+
@media print {
|
|
279
|
+
.work-entry { page-break-inside: avoid; }
|
|
280
|
+
.edu-entry { page-break-inside: avoid; }
|
|
281
|
+
.section-title { page-break-after: avoid; }
|
|
282
|
+
}
|
|
283
|
+
</style>
|
|
284
|
+
</head>
|
|
285
|
+
<body>
|
|
286
|
+
<div class="resume">
|
|
287
|
+
|
|
288
|
+
<header class="header">
|
|
289
|
+
<div class="header-left">
|
|
290
|
+
<h1 class="name">Ebenezer Isaac</h1>
|
|
291
|
+
<div class="label">Software Developer · Web/Application Developer · Full-stack (Java/JavaScript)</div>
|
|
292
|
+
</div>
|
|
293
|
+
<div class="contact-info">
|
|
294
|
+
<div class="contact-line">London, UK <i class="fa-solid fa-location-dot"></i></div>
|
|
295
|
+
<div class="contact-line">+44 75010 53232 <i class="fa-solid fa-square-phone"></i></div>
|
|
296
|
+
<div class="contact-line">ebnezr.isaac@gmail.com <i class="fa-solid fa-envelope"></i></div>
|
|
297
|
+
<div class="contact-line">ebenezer-isaac.com <i class="fa-solid fa-globe"></i></div>
|
|
298
|
+
<div class="contact-line">ebnezr-isaac <i class="fa-brands fa-linkedin-in"></i></div>
|
|
299
|
+
<div class="contact-line">ebenezer-isaac <i class="fa-brands fa-github"></i></div>
|
|
300
|
+
</div>
|
|
301
|
+
</header>
|
|
302
|
+
<hr class="header-rule" />
|
|
303
|
+
|
|
304
|
+
<h2 class="section-title">Summary</h2>
|
|
305
|
+
<div class="summary">Web/Application Developer with 3 years’ experience in both enterprise SAP and full stack web development, now pursuing a M.Sc. in Systems Engineering for IoT at UCL. Shipped RTL enablement and 240+ Carbon Design System v2 migrations for IBM.com, automated support workflows, and delivered production-grade university portals. Passionate about building automation tools to improve developer productivity and system efficiency.</div>
|
|
306
|
+
|
|
307
|
+
<h2 class="section-title">Core Skills</h2>
|
|
308
|
+
<div class="section-body">
|
|
309
|
+
|
|
310
|
+
<div class="bullet-item">
|
|
311
|
+
<span class="skill-name">Languages/Frameworks:</span> JavaScript, Java, PHP, Node.Js, Flutter, Python, HTML, CSS, JSON, XML, jQuery
|
|
312
|
+
</div>
|
|
313
|
+
<div class="bullet-item">
|
|
314
|
+
<span class="skill-name">Platforms:</span> AEM Sites, Sling, OSGi, AWS, GCP KMS
|
|
315
|
+
</div>
|
|
316
|
+
<div class="bullet-item">
|
|
317
|
+
<span class="skill-name">Data:</span> Firebase, MySQL, MongoDB
|
|
318
|
+
</div>
|
|
319
|
+
<div class="bullet-item">
|
|
320
|
+
<span class="skill-name">Tools/Libraries/Devices:</span> REST APIs, React, GitHub, Google Tink, Arduino, Raspberry Pi
|
|
321
|
+
</div>
|
|
322
|
+
</div>
|
|
323
|
+
|
|
324
|
+
<h2 class="section-title">Experience</h2>
|
|
325
|
+
<div class="section-body">
|
|
326
|
+
|
|
327
|
+
<div class="work-entry">
|
|
328
|
+
<div class="work-header">
|
|
329
|
+
<div class="work-title">IBM India Private Limited - AEM Sites Application Developer</div>
|
|
330
|
+
<div class="work-duration">Duration: November 2023 to July 2025</div>
|
|
331
|
+
</div>
|
|
332
|
+
|
|
333
|
+
<div class="work-meta">
|
|
334
|
+
<div class="work-tech">Tech-stack: AEM Cloud, Java, Node.Js, HTML, CSS, JavaScript, GitHub, Python</div>
|
|
335
|
+
<div class="work-client">Client: IBM.com</div>
|
|
336
|
+
</div>
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
<ul class="work-highlights">
|
|
340
|
+
<li>Led roughly 50% of all RTL enablement code changes for IBM.com in a 3-person team, and proposed alternative component implementations to de-risk project timelines.</li>
|
|
341
|
+
<li>Built a Node.js tool to map dependencies across 240+ AEM components, cutting issue-triage time by ~70%; complemented with Python automation that reduced planning by ~1 week.</li>
|
|
342
|
+
<li>Led Carbon Design System v2 UI modernization for an 8-person team; mentored developers in CSS/Sass and unblocked three complex UI components.</li>
|
|
343
|
+
<li>Published an AEM URL Switcher Chrome extension to compare the same page across multiple environments/versions, accelerating multi-environment testing.</li>
|
|
344
|
+
<li>Customized three AEM Commons DAM asset reports with dynamic parameters to support Adobe Cloud content operations.</li>
|
|
345
|
+
</ul>
|
|
346
|
+
</div>
|
|
347
|
+
<div class="work-entry">
|
|
348
|
+
<div class="work-header">
|
|
349
|
+
<div class="work-title">IBM India Private Limited - SAP BI AMS BW Consultant</div>
|
|
350
|
+
<div class="work-duration">Duration: September 2022 to October 2023</div>
|
|
351
|
+
</div>
|
|
352
|
+
|
|
353
|
+
<div class="work-meta">
|
|
354
|
+
<div class="work-tech">Tech-stack: SAP BW, Python</div>
|
|
355
|
+
<div class="work-client">Client: Volkswagen Financial Services</div>
|
|
356
|
+
</div>
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
<ul class="work-highlights">
|
|
360
|
+
<li>Cut average incident first-response time by ~80% by introducing Python script automation.</li>
|
|
361
|
+
<li>Identified a pattern of recurring issues and proactively escalated it, creating an 8-hour mitigation window that prevented a major P1 incident.</li>
|
|
362
|
+
<li>Reduced average ticket closure time by more than 24 hours.</li>
|
|
363
|
+
</ul>
|
|
364
|
+
</div>
|
|
365
|
+
<div class="work-entry">
|
|
366
|
+
<div class="work-header">
|
|
367
|
+
<div class="work-title">College of Engineering - Guindy - Full Stack Developer Intern</div>
|
|
368
|
+
<div class="work-duration">Duration: July 2022 to August 2022</div>
|
|
369
|
+
</div>
|
|
370
|
+
|
|
371
|
+
<div class="work-meta">
|
|
372
|
+
<div class="work-tech">Tech-stack: PHP, MySQL, HTML, CSS, JavaScript</div>
|
|
373
|
+
<div class="work-client">Client: Center for Academic Courses, Anna University</div>
|
|
374
|
+
</div>
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
<ul class="work-highlights">
|
|
378
|
+
<li>Digitized affiliated college fee records and enabled self-service status checks, with options to export data to Excel/PDF.</li>
|
|
379
|
+
<li>Developed a PDF Generator tool to template official letters, reducing manual work and errors by ~90%, and transferred know-how to staff for adoption.</li>
|
|
380
|
+
</ul>
|
|
381
|
+
</div>
|
|
382
|
+
<div class="work-entry">
|
|
383
|
+
<div class="work-header">
|
|
384
|
+
<div class="work-title">IBM India Private Limited - Associate Application Developer Intern</div>
|
|
385
|
+
<div class="work-duration">Duration: January 2022 to June 2022</div>
|
|
386
|
+
</div>
|
|
387
|
+
|
|
388
|
+
<div class="work-meta">
|
|
389
|
+
<div class="work-tech">Tech-stack: SAP S/4 HANA 2.0</div>
|
|
390
|
+
<div class="work-client"></div>
|
|
391
|
+
</div>
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
<ul class="work-highlights">
|
|
395
|
+
<li>Completed SAP S/4 HANA 2.0 certification and gained exposure to a full project lifecycle.</li>
|
|
396
|
+
</ul>
|
|
397
|
+
</div>
|
|
398
|
+
<div class="work-entry">
|
|
399
|
+
<div class="work-header">
|
|
400
|
+
<div class="work-title">Rishabh Software Private Limited, Vadodara - Machine Learning Intern</div>
|
|
401
|
+
<div class="work-duration">Duration: January 2020 to June 2020</div>
|
|
402
|
+
</div>
|
|
403
|
+
|
|
404
|
+
<div class="work-meta">
|
|
405
|
+
<div class="work-tech">Tech-stack: PHP, MySQL, HTML, CSS, JavaScript, Keras, Tensorflow</div>
|
|
406
|
+
<div class="work-client"></div>
|
|
407
|
+
</div>
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
<ul class="work-highlights">
|
|
411
|
+
<li>Built a Time & Expense Tracker application and prototyped a machine-learning model on Identification of Intoxicated Faces.</li>
|
|
412
|
+
</ul>
|
|
413
|
+
</div>
|
|
414
|
+
</div>
|
|
415
|
+
|
|
416
|
+
<h2 class="section-title">Selected Projects</h2>
|
|
417
|
+
<div class="section-body">
|
|
418
|
+
|
|
419
|
+
<div class="bullet-item">
|
|
420
|
+
<span class="project-name">Low-Cost Automation of Existing Electric Devices (MycroLinks):</span> Mobile app + NodeMCU (ESP8266) with real-time control and state sync.
|
|
421
|
+
</div>
|
|
422
|
+
<div class="bullet-item">
|
|
423
|
+
<span class="project-name">Fingerprint Attendance Management System:</span> Distributed biometric devices with central admin portal; CSV/Excel exports and audit logs.
|
|
424
|
+
</div>
|
|
425
|
+
<div class="bullet-item">
|
|
426
|
+
<span class="project-name">Event Enrolment & Online Payments (Deepwoods MCC):</span> Enrolment, ticketing, and payment confirmations with dashboard and exports.
|
|
427
|
+
</div>
|
|
428
|
+
<div class="bullet-item">
|
|
429
|
+
<span class="project-name">Android Password Manager:</span> On-device encryption with cloud-managed keys; Secure credential sync.
|
|
430
|
+
</div>
|
|
431
|
+
<div class="bullet-item">
|
|
432
|
+
<span class="project-name">Classroom Assignment Evaluator:</span> Gemini-based LLM for automated assignment evaluation and feedback using teacher-defined criteria.
|
|
433
|
+
</div>
|
|
434
|
+
</div>
|
|
435
|
+
|
|
436
|
+
<h2 class="section-title">Education</h2>
|
|
437
|
+
<div class="section-body">
|
|
438
|
+
|
|
439
|
+
<div class="edu-entry">
|
|
440
|
+
<div class="edu-header">
|
|
441
|
+
<div class="edu-degree">M.Sc Systems Engineering for the Internet of Things</div>
|
|
442
|
+
<div class="edu-year">2026</div>
|
|
443
|
+
</div>
|
|
444
|
+
<div class="edu-institution">University College London</div>
|
|
445
|
+
<div class="edu-courses">Coursework: Designing Sensor Systems, Real-World Multi-agent Systems</div>
|
|
446
|
+
</div>
|
|
447
|
+
<div class="edu-entry">
|
|
448
|
+
<div class="edu-header">
|
|
449
|
+
<div class="edu-degree">Master Computer Application</div>
|
|
450
|
+
<div class="edu-year">2022</div>
|
|
451
|
+
</div>
|
|
452
|
+
<div class="edu-institution">Anna University, College of Engineering – Guindy | 8.5 CGPA</div>
|
|
453
|
+
<div class="edu-courses">Coursework: Cyber Security and Internet of Things, Advanced Java, Machine Learning</div>
|
|
454
|
+
</div>
|
|
455
|
+
<div class="edu-entry">
|
|
456
|
+
<div class="edu-header">
|
|
457
|
+
<div class="edu-degree">Bachelor Computer Application</div>
|
|
458
|
+
<div class="edu-year">2020</div>
|
|
459
|
+
</div>
|
|
460
|
+
<div class="edu-institution">Maharaja Sayajirao University of Baroda | 7.5 CGPA</div>
|
|
461
|
+
<div class="edu-courses">Coursework: Advanced Java, Machine Learning, Android Development, Networking</div>
|
|
462
|
+
</div>
|
|
463
|
+
</div>
|
|
464
|
+
|
|
465
|
+
<h2 class="section-title">Leadership & Volunteering</h2>
|
|
466
|
+
<div class="section-body">
|
|
467
|
+
|
|
468
|
+
<div class="bullet-item volunteer-item">
|
|
469
|
+
<span class="vol-title">Volunteer Youth Mentor – Crossroads (2024–2024):</span> Co-led weekly teen sessions, designing activities that build communication and conflict-resolution skills while maintaining a safe, respectful environment. Followed safeguarding procedures, kept matters confidential, and sign-posted students to appropriate support.
|
|
470
|
+
</div>
|
|
471
|
+
<div class="bullet-item volunteer-item">
|
|
472
|
+
<span class="vol-title">MCA Class Representative – Anna University (2020–2022):</span> Elected cohort liaison; ran quick pulse-checks to surface concerns, presented consolidated feedback and solutions to faculty, mediated timetable/assessment conflicts, and ensured updates and actions were communicated and closed.
|
|
473
|
+
</div>
|
|
474
|
+
</div>
|
|
475
|
+
|
|
476
|
+
<h2 class="section-title">Credentials</h2>
|
|
477
|
+
<div class="section-body">
|
|
478
|
+
|
|
479
|
+
<div class="bullet-item">AWS Certified Cloud Practitioner</div>
|
|
480
|
+
<div class="bullet-item">Adobe Certified Expert - Adobe Experience Manager Sites Developer</div>
|
|
481
|
+
<div class="bullet-item">Adobe Certified Professional - Adobe Experience Manager Forms Backend Developer</div>
|
|
482
|
+
<div class="bullet-item">SAP Certified Development Specialist - ABAP for SAP HANA 2.0</div>
|
|
483
|
+
<div class="bullet-item">15+ additional Adobe, IBM, and Credly-verified certifications</div>
|
|
484
|
+
</div>
|
|
485
|
+
|
|
486
|
+
<h2 class="section-title">Additional</h2>
|
|
487
|
+
<div class="section-body">
|
|
488
|
+
<div class="additional-line"><span class="additional-label">Languages:</span> English (IELTS 8.0), Tamil (Native), Hindi (Fluent)</div>
|
|
489
|
+
<div class="additional-line"><span class="additional-label">Referees:</span> Available on request</div>
|
|
490
|
+
</div>
|
|
491
|
+
</div>
|
|
492
|
+
</body>
|
|
493
493
|
</html>
|