data: Updated placeholders

This commit is contained in:
2026-02-22 17:16:00 +05:30
parent 02fd803370
commit a275fcc2f4
9 changed files with 143 additions and 54 deletions

View File

@@ -29,6 +29,6 @@ export const PROJECTS = [
export const LAB_NOTES = [
{ date: '2026-02-14', title: 'GT730 and handling some Nvidia Voodoo Magic' },
{ date: '2026-01-28', title: 'Why I stopped using Nginx and wrote my own router' },
{ date: '2026-01-28', title: "So, how's that VPS business going?" },
{ date: '2025-12-10', title: 'Injecting dynamic themes via CSS variable mutations' },
];

35
src/data/education.ts Normal file
View File

@@ -0,0 +1,35 @@
export type EducationItem = {
program: string;
institution: string;
period: string;
highlights: string[];
};
export const EDUCATION: EducationItem[] = [
{
program: 'B.Sc, Artificial Intelligence & Data Science',
institution: 'Indian Institute of Technology, Madras',
period: '2024 - Present',
highlights: [
'Math, Statistics for Machine Learning',
'LLMs - Text Processing, Sentiment Analysis, Text Extraction',
'Workflow Atuomation: Jules, CI/CD, Copilot',
'RAG & Multimodal: Vector Databases, Embeddings, Typesense'
]
},
{
program: 'B.Tech, Computer Science',
institution: 'Maharaja Agrasen Institute of Technology',
period: '2024 — Present',
highlights: [
'Focus: Low-Level Design, Full Stack Development',
'Coursework: OS, compilers',
],
},
{
program: 'Higher Secondary (PCM)',
institution: 'Birla Vidya Niketan',
period: '2009 — 2023',
highlights: ['Science + CS intensive track', 'Tech club + hackathons'],
},
];