Skip to content

Commit 721c613

Browse files
committed
updated about me details in home page
1 parent 2f4b78d commit 721c613

4 files changed

Lines changed: 38 additions & 60 deletions

File tree

css/main.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,4 +765,13 @@ input:checked + .slider:before {
765765
width: 100%; /* Make the SVG fill the wrapper */
766766
height: 100%; /* Make the SVG fill the wrapper */
767767
fill: currentColor; /* Make the SVG inherit the link color */
768+
}
769+
770+
/* Add this to your CSS file */
771+
.sub-heading {
772+
font-size: 1.2rem; /* Slightly smaller than h2 */
773+
font-weight: 600; /* Bolder to create emphasis */
774+
margin-top: 2rem; /* Add space above the subheading */
775+
margin-bottom: 1rem;
776+
text-align: left; /* Keep it aligned with the prose */
768777
}

index.html

Lines changed: 15 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -196,45 +196,31 @@ <h2 class="header-label">Lecturer &amp; AI/ML Developer</h2>
196196
<section>
197197
<h2 class="section-heading">About Me</h2>
198198

199-
<p>I'm an educator and technologist who's spent the last 8 years building bridges between complex technical concepts and real-world applications. What started as a passion for teaching mathematics and IT has evolved into a deep expertise in data science, machine learning, and building production-ready systems.</p>
200-
201-
<p>My journey is a blend of academia and industry—from mentoring over 300 students at Dorset College to architecting scalable backend systems as a developer. This dual perspective allows me to not only build effective AI solutions but also to clearly articulate *how* and *why* they work.</p>
199+
200+
<p>I'm an educator-turned-AI Engineer who has spent the last 8 years bridging the gap between complex technical concepts and real-world, production-ready applications. My journey is a blend of academia and industry—from mentoring over <strong>300 students at Dorset College (achieving 92-96% project completion rates)</strong> to architecting scalable backend systems as a developer. This dual perspective allows me to not only build effective AI solutions but also to clearly articulate *how* and *why* they work.</p>
201+
202202

203-
<p>When I'm not teaching or coding, I'm driven by a curiosity for how technology shapes our world. I'm passionate about MLOps, the practical side of deploying AI, and exploring the frontiers of generative models. This portfolio is a living document of my projects, my learnings, and my journey in the world of AI.</p>
203+
204+
<p>A guiding principle in my life and work comes from the Bhagavad Gita: <strong>"You have a right to perform your prescribed duties, but you are not entitled to the fruits of your actions. Never consider yourself the cause of the results of your activities, nor be attached to inaction."</strong> To me, this is a powerful reminder to focus on the process—to build with integrity and to solve problems with dedication, knowing the true reward is in the act of creation itself.</p>
205+
204206

205-
</section>
206-
207-
<!-- Currently Reading Section -->
208-
209-
<section>
210-
<h2 class="section-heading">Currently Reading</h2>
211-
<ul class="reading-list">
212207

213-
<li><strong>Designing Data-Intensive Applications</strong> by Martin Kleppmann</li>
208+
<p>This mindset extends to how I approach teamwork, where I am a firm believer in the "1+1 philosophy." I believe the most robust and innovative solutions come not from one person carrying the entire burden, but from a collaborative effort where each member contributes their piece. It’s the difference between a single pillar and an arch, where multiple stones work together to create a structure far stronger than any single component.</p>
214209

215-
<li><strong>The Three-Body Problem</strong> by Cixin Liu</li>
210+
216211

217-
</ul>
218-
</section>
219-
220-
221-
<!-- Personal Interests Section -->
222-
223-
<section>
224-
<h2 class="section-heading">Interests</h2>
225-
<div class="tech-stack">
212+
<h4 class="sub-heading">Current Focus &amp; Beyond the Code</h4>
226213

227-
<span class="tag">Landscape Photography</span>
214+
228215

229-
<span class="tag">Competitive Chess</span>
216+
<p>I'm currently immersed in the rapidly evolving landscape of generative and agentic AI. I am actively developing advanced RAG (Retrieval-Augmented Generation) applications using LangChain and LangGraph, and exploring workflow automation with tools like n8n. My learning journey continues with building sophisticated multi-agent systems and integrating them with <strong>MCP (Model Context Protocol) servers</strong>—a new paradigm for AI tool use.</p>
230217

231-
<span class="tag">Exploring historical sites in Ireland</span>
218+
232219

233-
<span class="tag">Perfecting my espresso shot</span>
220+
<p>Beyond the keyboard, I am always sharpening my foundational knowledge with essential texts like <strong>"Deep Learning" by Ian Goodfellow</strong> and <strong>"Hands-On Machine Learning" by Aurélien Géron</strong>. My passion for problem-solving extends into my hobbies, where I enjoy tackling <strong>logic puzzles</strong> (Sudoku, Kakuro), <strong>speedcubing</strong>, and playing <strong>chess</strong>. And, of course, I am on an endless quest for the <strong>perfect espresso shot</strong>.</p>
234221

235-
</div>
222+
236223
</section>
237-
238224
</main>
239225

240226
<!-- Sidebar Section -->
@@ -243,7 +229,7 @@ <h2 class="section-heading">Interests</h2>
243229
<section>
244230
<h2 class="section-heading">At a Glance</h2>
245231
<div class="competency-item-sidebar">
246-
<p><strong>Currently:</strong><br>Assistant Lecturer at Dorset College</p>
232+
<p><strong>Currently:</strong><br>Assistant Lecturer &amp; AI/ML Developer at Dorset College</p>
247233
<hr class="sidebar-hr">
248234
<p><strong>Education:</strong><br>Masters of Science in Data Analytics</p>
249235
<hr class="sidebar-hr">

index_template.html

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -143,34 +143,14 @@ <h1>{{ name }}</h1>
143143
<!-- About Me Section -->
144144
<section>
145145
<h2 class="section-heading">About Me</h2>
146-
{% for paragraph in about_me_prose %}
147-
<p>{{ paragraph | markdown_to_html | safe }}</p>
146+
{% for item in about_me_full_prose %}
147+
{% if item.type == 'subheading' %}
148+
<h4 class="sub-heading">{{ item.content }}</h4>
149+
{% else %}
150+
<p>{{ item.content | markdown_to_html | safe }}</p>
151+
{% endif %}
148152
{% endfor %}
149153
</section>
150-
151-
<!-- Currently Reading Section -->
152-
{% if currently_reading %}
153-
<section>
154-
<h2 class="section-heading">Currently Reading</h2>
155-
<ul class="reading-list">
156-
{% for book in currently_reading %}
157-
<li><strong>{{ book.title }}</strong> by {{ book.author }}</li>
158-
{% endfor %}
159-
</ul>
160-
</section>
161-
{% endif %}
162-
163-
<!-- Personal Interests Section -->
164-
{% if personal_interests %}
165-
<section>
166-
<h2 class="section-heading">Interests</h2>
167-
<div class="tech-stack">
168-
{% for interest in personal_interests %}
169-
<span class="tag">{{ interest }}</span>
170-
{% endfor %}
171-
</div>
172-
</section>
173-
{% endif %}
174154
</main>
175155

176156
<!-- Sidebar Section -->

portfolio-mit_v1.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,16 @@
8989
"live_demo_url": null
9090
}
9191
],
92-
"about_me_prose": [
93-
"I'm an educator and technologist who's spent the last 8 years building bridges between complex technical concepts and real-world applications. What started as a passion for teaching mathematics and IT has evolved into a deep expertise in data science, machine learning, and building production-ready systems.",
94-
"My journey is a blend of academia and industry—from mentoring over 300 students at Dorset College to architecting scalable backend systems as a developer. This dual perspective allows me to not only build effective AI solutions but also to clearly articulate *how* and *why* they work.",
95-
"When I'm not teaching or coding, I'm driven by a curiosity for how technology shapes our world. I'm passionate about MLOps, the practical side of deploying AI, and exploring the frontiers of generative models. This portfolio is a living document of my projects, my learnings, and my journey in the world of AI."
92+
"about_me_full_prose": [
93+
{ "type": "paragraph", "content": "I'm an educator-turned-AI Engineer who has spent the last 8 years bridging the gap between complex technical concepts and real-world, production-ready applications. My journey is a blend of academia and industry—from mentoring over **300 students at Dorset College (achieving 92-96% project completion rates)** to architecting scalable backend systems as a developer. This dual perspective allows me to not only build effective AI solutions but also to clearly articulate *how* and *why* they work." },
94+
{ "type": "paragraph", "content": "A guiding principle in my life and work comes from the Bhagavad Gita: **\"You have a right to perform your prescribed duties, but you are not entitled to the fruits of your actions. Never consider yourself the cause of the results of your activities, nor be attached to inaction.\"** To me, this is a powerful reminder to focus on the process—to build with integrity and to solve problems with dedication, knowing the true reward is in the act of creation itself." },
95+
{ "type": "paragraph", "content": "This mindset extends to how I approach teamwork, where I am a firm believer in the \"1+1 philosophy.\" I believe the most robust and innovative solutions come not from one person carrying the entire burden, but from a collaborative effort where each member contributes their piece. It’s the difference between a single pillar and an arch, where multiple stones work together to create a structure far stronger than any single component." },
96+
{ "type": "subheading", "content": "Current Focus & Beyond the Code" },
97+
{ "type": "paragraph", "content": "I'm currently immersed in the rapidly evolving landscape of generative and agentic AI. I am actively developing advanced RAG (Retrieval-Augmented Generation) applications using LangChain and LangGraph, and exploring workflow automation with tools like n8n. My learning journey continues with building sophisticated multi-agent systems and integrating them with **MCP (Model Context Protocol) servers**—a new paradigm for AI tool use." },
98+
{ "type": "paragraph", "content": "Beyond the keyboard, I am always sharpening my foundational knowledge with essential texts like **\"Deep Learning\" by Ian Goodfellow** and **\"Hands-On Machine Learning\" by Aurélien Géron**. My passion for problem-solving extends into my hobbies, where I enjoy tackling **logic puzzles** (Sudoku, Kakuro), **speedcubing**, and playing **chess**. And, of course, I am on an endless quest for the **perfect espresso shot**." }
9699
],
97100
"current_highlights": {
98-
"role": "Assistant Lecturer",
101+
"role": "Assistant Lecturer & AI/ML Developer",
99102
"institution": "Dorset College",
100103
"education": "Masters of Science in Data Analytics",
101104
"project_title": "Network Security System - MLOps Project",

0 commit comments

Comments
 (0)