Skip to content

Commit e5b4cb7

Browse files
committed
-- Resume section fix
-- Publications etc added.
1 parent 44063b3 commit e5b4cb7

File tree

7 files changed

+112
-263
lines changed

7 files changed

+112
-263
lines changed

_data/bio.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,29 @@
4848
],
4949
"work": [
5050
],
51+
"publications": [
52+
{
53+
"company": "A Unified Deep Learning Framework for Smartphone-Enabled ADHD Detection ",
54+
"position": "IEEE Transactions",
55+
"website": "https://ieeexplore.ieee.org/document/10339337",
56+
"startDate": "2023",
57+
"endDate": "",
58+
"summary": "S. Mandal, G. P. Kumar, M. Saini, U. Satija and Y. Kumar",
59+
"highlights": [
60+
"Cleaned and Preprocessed 16 channel time-series EEG data using NumPy and MATLAB.",
61+
"Implemented 1D-CNN and fine-tuned until achieving 99% accuracy in detecting ADHD across public datasets."
62+
]
63+
}
64+
],
5165
"volunteer": [
5266
],
5367
"awards": [
68+
{
69+
"title": "Martech Innovation Challenge - Winner",
70+
"date": "2024",
71+
"awarder": "UnitedHealth Group",
72+
"summary": "Proposed an Idea to automate Post Deployment Validation using AI, won the challenge amongst 150+ participants and secured funding to implement it."
73+
}
5474
],
5575
"references": [
5676
{

_includes/about/social.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@
99
</svg>
1010
<span>{{ include.label }}</span>
1111
</a>
12-
</a>

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a class="nav-link" href="{{ '/' | prepend: site.baseurl }}">Home</a>
77
<a class="nav-link" href="{{ '/#projects' | prepend: site.baseurl }}">Projects</a>
88
<a class="nav-link" href="{{ '/#opensource' | prepend: site.baseurl }}">Open Source</a>
9-
<a class="nav-link" style="padding-right: 4px;" href="{{ '/resume.html' | prepend: site.baseurl }}" title="Resume: view page">Resume</a>
9+
<a class="nav-link" style="padding-right: 4px;" href="{{ '/resume.html' | prepend: site.baseurl }}" title="Resume: view page">Résumé</a>
1010
<a class="nav-link" style="padding-left: 4px;" href="{{ site.data.bio.basics.resumeUrlPdf }}" target="_blank" title="Resume: download PDF"><svg class="tf-social">
1111
<use xlink:href="{{ '/img/bootstrap-icons.svg' | prepend: site.baseurl }}#filetype-pdf"/>
1212
</svg>

_layouts/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
{%- endif -%}
1515
{%- endif -%}
1616

17+
<!doctype html>
1718
<html lang="en">
1819
<head>
1920
<meta charset="utf-8">
@@ -30,7 +31,6 @@
3031
<link rel="shortcut icon" href="{{ '/favicon.ico' | prepend: site.baseurl }}">
3132
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
3233
<link rel="stylesheet" href="{{ site.baseurl}}/css/techfolio-theme/{{ site.techfolio-theme}}">
33-
<link rel="stylesheet" href="{{ site.baseurl}}/css/changelog.css">
3434
<link rel="stylesheet" type="text/css" href="{{ site.baseurl}}/css/rouge/{{ site.rouge-theme}}">
3535
<!-- Load MathJax if 'mathjax: true' is found in your _config.yml. -->
3636
{% if site.mathjax %}
@@ -44,4 +44,4 @@
4444
{{ content }}
4545
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
4646
</body>
47-
</html>
47+
</html>

css/changelog.css

Lines changed: 0 additions & 255 deletions
This file was deleted.

css/techfolio-theme/default.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,14 @@ a {
5959
.long-summary-entry:not(:last-child) {
6060
margin-bottom: 1em !important;
6161
}
62+
63+
.highlight-resume {
64+
animation: highlight-fade 2s ease-in-out;
65+
background-color: #b6f6f8 !important;
66+
transition: background-color 2s ease;
67+
}
68+
69+
@keyframes highlight-fade {
70+
0% { background-color: #b6f6f8; }
71+
100% { background-color: transparent; }
72+
}

0 commit comments

Comments
 (0)