Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 07c678b

Browse files
committedApr 13, 2025·
refactor experiences and projects data; update roles, responsibilities, and descriptions for clarity and accuracy
1 parent e70f745 commit 07c678b

File tree

2 files changed

+37
-35
lines changed

2 files changed

+37
-35
lines changed
 

‎app/data/experiences.ts

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,42 +10,43 @@ export interface Experience {
1010
export const experiences = {
1111
technical: [
1212
{
13-
company: "Backend Developer Intern (AI/ML)",
14-
title: "Mobility Intelligence Inc",
15-
period: "June 2024 - December 2024",
13+
company: "Mobility Intelligence",
14+
title: "FullStack Development Intern",
15+
period: "June 2024 December 2024",
1616
location: "New York City, USA",
17-
techStack: ["Python", "SQL", "Apache Airflow", "Flask"],
17+
techStack: ["Python", "FastAPI", "Celery", "Redis", "PostgreSQL", "Apache Airflow", "Prometheus", "Grafana", "AWS", "Kubernetes"],
1818
responsibilities: [
19-
"Developed a <b>Django-ReactJS</b> platform integrating ML models, delivering real-time predictions with <b>sub-1 second latency</b> through optimized APIs.",
20-
"Implemented regression models for custom price prediction over a 90-day horizon, leveraging TimeSeriesSplit and hyperparameter optimization to reduce errors within +/- 5%.",
21-
"Engineered <b>ETL pipelines</b> with Apache Airflow, processing <b>15M+ records daily</b> and automating transformations, saving 3 man hours per dataset.",
22-
"Optimized PostgreSQL queries to support frequent API calls and large-scale workflows, improving data retrieval efficiency."
19+
"Built a real-time price prediction system using regression and Kalman filtering, achieving less than 5% error on 90-day forecasts.",
20+
"Designed a FastAPI backend with Celery and Redis, handling 150k requests daily with 99.9% uptime and sub-500ms P95 latency.",
21+
"Scheduled Airflow DAGs managing ETL pipelines processing 15M+ daily records from PostgreSQL into analytics-ready stores.",
22+
"Configured Prometheus + Grafana with SLIs and alerting rules, reduced MTTD by 60% and improved response workflows.",
23+
"Deployed microservices in AWS using Kubernetes with Helm charts, rolling updates, and horizontal pod autoscaling, reducing downtime during deployments by 80% and enabling seamless CI/CD."
2324
]
2425
},
2526
{
26-
company: "Software Engineering Intern (R&D)",
27-
title: "Defence Research & Development Organisation (Govt. of India)",
28-
period: "January 2023 - June 2023",
29-
location: "Chandigarh, India",
30-
techStack: ["Python", "Shell", "PyQT", "MatPlotLib", "SerialPy", "SQL", "Docker"],
27+
company: "Defence Research & Development Organisation",
28+
title: "Software Engineering Intern (R&D)",
29+
period: "January 2023 June 2023",
30+
location: "India",
31+
techStack: ["Python", "Redis", "PostgreSQL", "PostGIS", "LiDAR", "ETL"],
3132
responsibilities: [
32-
"Advised the Assistant Director on a project to estimate heavy vehicle integrity using LiDAR and GPS sensors, selected as the sole contributor out of 20+ interns.",
33-
"Designed and developed a Python desktop application to reverse-engineer RS232 serial ports, decoding 1.5M+ bytes/sec from LiDAR sensors and applying 25+ custom algorithms for rut measurement analysis and visualization.",
34-
"Published a Windows desktop application with 20K+ lines of code optimized to remain under 30MB, ensuring portability and performance in resource-constrained environments."
33+
"Engineered multithreaded architecture for real-time LiDAR processing, handling 50K data points/sec (97% accuracy).",
34+
"Implemented Redis-based geospatial caching over PostgreSQL/PostGIS, reducing GPS query latency from 1000ms to 150ms.",
35+
"Developed ETL pipeline using memory-efficient streaming, processing 12GB/min while reducing memory usage by 60%."
3536
]
3637
},
3738
{
38-
company: "Software Engineering Intern (Backend)",
39-
title: "Solar Industries India Ltd",
40-
period: "April 2022 - December 2022",
41-
location: "Mumbai, India",
42-
techStack: ["Django", "FastAPI", "AWS", "Docker", "Jenkins", "Kafka", "Redis", "Elasticsearch"],
39+
company: "Solar Industries India Ltd",
40+
title: "Software Engineering Intern",
41+
period: "April 2022 December 2022",
42+
location: "India",
43+
techStack: ["Django", "Kafka", "Redis", "Cassandra", "Jaeger"],
4344
responsibilities: [
44-
"Led a team of 5 interns to automate workflows across 25+ industrial plants, delivering 5 Python-based projects with 75K+ lines of code, deployed using Docker and orchestrated with Kubernetes.",
45-
"Engineered scalable backend systems processing 100K+ API requests/day and 2.5M+ rows/sec, ensuring fault-tolerance with Cassandra replication, Kafka partitioning, and caching with Redis.",
46-
"Optimized infrastructure by implementing Kubernetes orchestration, distributed CRON jobs, and caching layers, reducing API response times by 25% and monitored system health with Prometheus."
45+
"Led a team of 5 to automate workflows, delivering 5 Django microservices that standardized 80% of manual processes.",
46+
"Reduced API latency by 25% and integrated distributed tracing with Jaeger, enabling real-time debugging.",
47+
"Designed a partitioned Kafka pipeline with scalable consumer groups, processing 2.5M+ rows/sec using Redis caching and Cassandra-backed storage."
4748
]
48-
},
49+
},
4950
{
5051
company: "Full Stack / AI Developer",
5152
title: "Freelancer / Contract Jobs",

‎app/data/projects.ts

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ export const projects: Project[] = [
1414
code: "DocFlow",
1515
title: "DocFlow: GraphRAG - LLM Document Compliance",
1616
description: [
17+
"Launched an Agentic SaaS with real-time document edit, approval and audit reports via Graph based RAG and LLM.",
1718
"Implemented a GraphRAG and PDF parser from scratch for unstructured PDFs using PDFMiner & Tesseract (OCR).",
1819
"Executed semantic chunking + NLP NER + BART-CNN summarization, achieving 70% relation extraction accuracy.",
19-
"Synthesized hybrid retrieval (Vector + Graph + metadata) boosting compliance accuracy to 90%.",
20-
"Launched Next.js SAAS with real-time document edit, approval and audit reports via WebSocket and Anthropic API."
20+
"Synthesized hybrid retrieval (Vector + Graph + metadata) boosting compliance accuracy to 90%."
2121
],
2222
tags: [
2323
"Next.js",
@@ -37,9 +37,9 @@ export const projects: Project[] = [
3737
code: "VectorFlow",
3838
title: "VectorFlow: Hierarchical Vector Database (from Scratch)",
3939
description: [
40-
"Architected hierarchical vector database (library document chunk) with async per-collection mutexes; 12K ops/sec, 0.1% lock contention.",
41-
"Engineered hybrid index backends (LinearScan/KD-Tree/LSH) for O(1)-O(n) search; 18ms latency across 10M vectors.",
42-
"Deployed race-free Kubernetes pipelines (Helm/Minikube) with CLI toolkit, reducing onboarding complexity by 100%.",
40+
"Built embedding database (library - document - chunk) with async collection mutexes; 12K ops/sec at <0.1% conflicts.",
41+
"Added 3 indexing algorithms (LinearScan/KD-Tree/LSH) for vector search on 10M vectors in 18ms.",
42+
"Led Kubernetes Helm deployment along with custom made CLI toolkit, reducing onboarding complexity by 100%."
4343
],
4444
tags: [
4545
"Python",
@@ -53,9 +53,9 @@ export const projects: Project[] = [
5353
"Minikube",
5454
],
5555
domain: ["AI", "Backend", "Core/Systems", "Cloud", "DevOps/Infra"],
56-
link: "",
57-
isLinkClickable: false,
58-
linkText: "AI2Web3 Bootcamp Top Project",
56+
link: "https://www.github.com/techpertz/vectorflow",
57+
isLinkClickable: true,
58+
linkText: "View on GitHub",
5959
},
6060
{
6161
code: "GrantGenie",
@@ -129,8 +129,9 @@ export const projects: Project[] = [
129129
code: "Whiteboard",
130130
title: "White board: Real-Time Collaborative Java Application",
131131
description: [
132-
"Designed and implemented a real-time collaborative whiteboard application, leveraging WebSockets for seamless, multi-user drawing updates and Java Swing for an intuitive GUI.",
133-
"Optimized performance with batch processing, asynchronous communication, and thread-safe concurrency controls, ensuring low-latency updates and efficient handling of large-scale data.",
132+
"Built low-latency collaboration using Spring Boot and Swing, achieving <150ms sync for concurrent users via binary compression.",
133+
"Implemented vector operations using operational transformation, resolving 98% conflicts in real-time updates.",
134+
"Executed socket programming with PostgreSQL and JSONB storage, achieving 85% network overhead reduction."
134135
],
135136
tags: ["Java", "Java Swing", "Spring Boot", "WebSockets", "Batch Processing"],
136137
domain: ["Frontend", "Backend", "Core/Systems"],

0 commit comments

Comments
 (0)
Please sign in to comment.