<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ayan pal</title>
    <description>The latest articles on DEV Community by Ayan pal (@ayanpal98).</description>
    <link>https://dev.to/ayanpal98</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3940058%2F20465d7a-9ce5-4d5d-b5fa-d8a69ff6241e.jpeg</url>
      <title>DEV Community: Ayan pal</title>
      <link>https://dev.to/ayanpal98</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ayanpal98"/>
    <language>en</language>
    <item>
      <title>Architecture Breakdown: Building an Enterprise-Grade Legal RAG System (From Ingestion to RAGAS Evaluation)</title>
      <dc:creator>Ayan pal</dc:creator>
      <pubDate>Sun, 07 Jun 2026 05:00:49 +0000</pubDate>
      <link>https://dev.to/ayanpal98/architecture-breakdown-building-an-enterprise-grade-legal-rag-system-from-ingestion-to-ragas-4m0c</link>
      <guid>https://dev.to/ayanpal98/architecture-breakdown-building-an-enterprise-grade-legal-rag-system-from-ingestion-to-ragas-4m0c</guid>
      <description>&lt;p&gt;Hey Devs! 👋&lt;/p&gt;

&lt;p&gt;Building a Retrieval-Augmented Generation (RAG) system for standard Q&amp;amp;A is relatively straightforward. But when you move into the legal domain, standard setups fall apart. Accuracy isn't a vanity metric here—hallucinations can have actual legal consequences, and citations are non-negotiable.&lt;/p&gt;

&lt;p&gt;I recently mapped out and built an end-to-end architecture for a Legal RAG System designed to handle complex legal documents with high precision. Here is the architectural blueprint and stack breakdown.&lt;/p&gt;

&lt;p&gt;🛠️ The Stack &amp;amp; Phase Breakdown&lt;br&gt;
Phase 1–2: The Heavy-Lifting Data Pipeline&lt;br&gt;
Document Ingestion: Handling raw PDFs, DOCX, and TXT files. Legal documents are notoriously long and structurally dense.&lt;/p&gt;

&lt;p&gt;Preprocessing: Simple character splitting won't cut it. We implement smart chunking strategies alongside a deduplication layer to keep the index clean.&lt;/p&gt;

&lt;p&gt;Metadata Extraction: Extracting deterministic fields (Date, Court, Jurisdiction) during ingestion. This is crucial for hybrid filtering later.&lt;/p&gt;

&lt;p&gt;Phase 3: The Multi-Tier Vector Store &amp;amp; Embedding Core&lt;br&gt;
Raw Storage: AWS S3 handles the absolute source of truth for raw files.&lt;/p&gt;

&lt;p&gt;Local Prototyping &amp;amp; Hybrid Cloud Vector Indexing: We run ChromaDB locally for rapid development and testing, while routing to Pinecone in production for scalable, cloud-native vector search.&lt;/p&gt;

&lt;p&gt;The Retrieval Engine: Moving past simple dense embeddings. We utilize a hybrid approach combining OpenAI's text-embedding-ada-002 (or open-source sentence-transformers) with BM25 keyword search for precise lexical matching on legal jargon.&lt;/p&gt;

&lt;p&gt;Phase 4: RAG Chain &amp;amp; Continuous Evaluation&lt;br&gt;
LangChain Integration: Orchestrates the retrieval, prompt injection, context window management, and crucially, enforcing source citations in the final LLM output.&lt;/p&gt;

&lt;p&gt;Evaluation via RAGAS: You can't improve what you don't measure. We use the RAGAS framework to programmatically calculate scores for Faithfulness (groundedness), Answer Relevancy, and Context Precision@k.&lt;/p&gt;

&lt;p&gt;Phase 5–6: API, UI, and Deployment&lt;br&gt;
Backend: FastAPI exposes clean asynchronous endpoints like /upload for ingestion, /query for RAG interaction, and /health for monitoring.&lt;/p&gt;

&lt;p&gt;Frontend: A minimal, responsive Streamlit dashboard tailored for legal professionals, featuring a clean Chat UI, inline citations, and confidence scoring.&lt;/p&gt;

&lt;p&gt;DevOps: The entire system is containerized via Docker, deployed on AWS EC2 (and mirrored on Hugging Face Spaces for staging), documented thoroughly with an automated Loom walkthrough.&lt;/p&gt;

&lt;p&gt;🧠 Key Takeaways from the Build&lt;br&gt;
Hybrid Search is Mandatory: Dense vectors catch semantic meaning, but BM25 catches exact statute numbers and specific legal terms. You need both.&lt;/p&gt;

&lt;p&gt;Evaluate Early: Setting up RAGAS pipelines on Day 1 prevents you from guessing whether a prompt tweak actually improved the model or just made it sound better.&lt;/p&gt;

&lt;p&gt;What does your production RAG stack look like? Are you favoring local vector stores like Chroma/Qdrant or going straight to cloud-native solutions like Pinecone/Milvus? Let's discuss in the comments!&lt;/p&gt;

&lt;h1&gt;
  
  
  ai #rag #llm #python #architecture #fastapi
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>tutorial</category>
      <category>python</category>
    </item>
    <item>
      <title>🚀 Beyond the Buzzwords: Is "Vibe Coding" the Future of Mastering Data Science?</title>
      <dc:creator>Ayan pal</dc:creator>
      <pubDate>Sat, 30 May 2026 15:40:20 +0000</pubDate>
      <link>https://dev.to/ayanpal98/beyond-the-buzzwords-is-vibe-coding-the-future-of-mastering-data-science-38ob</link>
      <guid>https://dev.to/ayanpal98/beyond-the-buzzwords-is-vibe-coding-the-future-of-mastering-data-science-38ob</guid>
      <description>&lt;p&gt;As developers and tech enthusiasts, we’ve all seen the explosion of AI-accelerated development tools. From GitHub Copilot to Cursor, the way we write code is shifting from manual syntax-wrangling to high-level architecture and intent. Some call it AI engineering—others are calling it Vibe Coding.&lt;/p&gt;

&lt;p&gt;If you've been wondering how to actually leverage this shift to break into Data Science and AI/ML engineering without drowning in traditional bootcamp models, I recently came across a modern learning ecosystem that completely embraces this methodology: Data Science &amp;amp; AI Bootcamps via Vercel.&lt;/p&gt;

&lt;p&gt;Here is a breakdown of what this approach looks like, why it works, and how it’s reshaping how modern tech stacks are taught.&lt;/p&gt;

&lt;p&gt;🤔 What Exactly is "Vibe Coding" in Data Science?&lt;br&gt;
Traditional bootcamps often spend the first 6 weeks forcing you to memorize Python syntax errors or struggle with the boilerplate setup of a local environment.&lt;/p&gt;

&lt;p&gt;Vibe Coding flips the script. It focuses on high-level intuition, structural logic, and using modern AI tooling to handle the mundane syntax. This allows learners to instantly dive into what actually matters: architecting intelligent systems, reading data signals, and deploying production-ready ML pipelines.&lt;/p&gt;

&lt;p&gt;Instead of passive lecture videos, the focus shifts to real-time interactive development&lt;/p&gt;

&lt;p&gt;🛠️ The Tech Stack You Actually Need&lt;br&gt;
A modern data science roadmap shouldn't just stop at a Jupyter notebook running locally on your laptop. To stand out to recruiters, you need to know how models exist in the wild.&lt;/p&gt;

&lt;p&gt;The core curriculum of this modern approach bridges the gap between raw data and scalable production:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;- Data Wrangling &amp;amp; Analytics: Python, SQL, NumPy, Pandas, Seaborn&lt;/li&gt;
&lt;li&gt;Business Intelligence: Power BI &amp;amp; Tableau (turning raw telemetry into stakeholder-ready dashboards) &lt;/li&gt;
&lt;li&gt;Core ML &amp;amp; Computer Vision: Scikit-Learn, OpenCV  The AI &lt;/li&gt;
&lt;li&gt;Frontier: Deep Learning, NLP, LangChain, RAG (Retrieval-Augmented Generation), and Hugging Face &lt;/li&gt;
&lt;li&gt;MLOps &amp;amp; Cloud Deployment: AWS SageMaker, Google Cloud AI, Azure ML Studio, Docker, and Kubernetes &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🏗️ Portfolio-Driven Learning: Move Past the "Titanic Dataset"&lt;br&gt;
If I see one more resume with the Titanic Survival Dataset or the Iris Flower Classification, I might lose my mind—and modern recruiters feel the exact same way.&lt;/p&gt;

&lt;p&gt;To bridge this gap, this ecosystem focuses on building 25+ next-generation projects that mirror real-world industry demands. Think less "academic math homework" and more "scalable AI infrastructure":&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;1. Multimodal AI Chatbots: Integrating voice, text, and contextual RAG workflows.&lt;/li&gt;
&lt;li&gt;Autonomous Vehicle Sensor Processing: Using Computer Vision to interpret spatial data.&lt;/li&gt;
&lt;li&gt;Agentic Cyber Defense Honeypots: Simulating realistic target behavior using intelligent AI models to track and flag malicious activity.&lt;/li&gt;
&lt;li&gt;Climate &amp;amp; Financial Forecasting Platforms: Deep-diving into predictive analytics and time-series pipelines&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;⚡ Production-First Architecture&lt;br&gt;
One of the biggest pitfalls for data science beginners is the "it works on my machine" syndrome. Moving a model from a local environment to a live endpoint is where most fail.&lt;/p&gt;

&lt;p&gt;The methodology highlighted here leans heavily on deploying ML models directly to cloud infrastructure (AWS, GCP, Azure) alongside modern application platforms like Vercel and Heroku. By containerizing models with Docker, you graduate from being a statistical analyst to a true Full-Stack AI Engineer&lt;/p&gt;

&lt;p&gt;📈 The Outcomes&lt;br&gt;
The shift toward AI-assisted, high-intuition learning isn't just about making coding "easier"—it’s about speed-to-market for your career.&lt;/p&gt;

&lt;p&gt;Accelerated Placement: Skipping the syntax hurdles means getting to complex system designs faster.  &lt;/p&gt;

&lt;p&gt;AI-Optimized Profiles: Focusing heavily on building out a GitHub portfolio, open-source contributions, and AI-optimized resumes that actually bypass ATS systems.&lt;/p&gt;

&lt;p&gt;💬 Let's Discuss!&lt;br&gt;
Have you experimented with AI-assisted development or "Vibe Coding" in your data pipelines? Do you think abstracting the boilerplate code helps beginners grasp data engineering concepts faster, or do you still swear by the traditional "learn the hard way" approach?&lt;/p&gt;

&lt;p&gt;Drop your thoughts in the comments below! 👇&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[&lt;a href="https://datascience-projects.vercel.app/" rel="noopener noreferrer"&gt;https://datascience-projects.vercel.app/&lt;/a&gt;]&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>datascience</category>
      <category>sideprojects</category>
    </item>
    <item>
      <title>How We Built an AI Candidate Screening System That Actually Explains Itself</title>
      <dc:creator>Ayan pal</dc:creator>
      <pubDate>Thu, 28 May 2026 04:51:18 +0000</pubDate>
      <link>https://dev.to/ayanpal98/how-we-built-an-ai-candidate-screening-system-that-actually-explains-itself-6ll</link>
      <guid>https://dev.to/ayanpal98/how-we-built-an-ai-candidate-screening-system-that-actually-explains-itself-6ll</guid>
      <description>&lt;p&gt;I'm building ATSFy — an AI-powered hiring platform from Northeast India. This post is about the design decisions behind our candidate screening feature, specifically around explainability and scoring transparency.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with most ATS scoring
&lt;/h2&gt;

&lt;p&gt;Most applicant tracking systems rank by keyword density. Feed a JD into the system, get a match percentage back. No reasoning. No breakdown. No way to audit why Candidate A scored 87% and Candidate B scored 63%.&lt;/p&gt;

&lt;p&gt;That's not explainable AI. That's a black box with a confidence score painted on it.&lt;/p&gt;

&lt;p&gt;We wanted to do better.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we built
&lt;/h2&gt;

&lt;p&gt;ATSFy's screening system takes a job description and a set of resumes (PDF, DOCX, TXT — bulk supported), runs them through a Claude-powered evaluation pipeline, and returns a ranked candidate list scored across four SHRM-aligned dimensions:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Technical Fit      →  Does the skills profile match the role?
Experience Depth   →  How relevant is their career history?
Education Match    →  Does the background meet requirements?
Cultural Alignment →  Values and working style signals
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each dimension is scored independently, then combined into a weighted composite out of 100.&lt;/p&gt;

&lt;h2&gt;
  
  
  The transparency layer
&lt;/h2&gt;

&lt;p&gt;Here's the part I'm most proud of.&lt;/p&gt;

&lt;p&gt;Every skill tag on a candidate profile is marked:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ Checkmark = explicitly found in the resume&lt;/li&gt;
&lt;li&gt;ℹ️ Info icon = inferred from context&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So if the JD requires Kubernetes experience and the resume mentions "led containerised infrastructure migrations at scale," the system might infer K8s familiarity — but it marks it as inferred, not verified. The recruiter sees the distinction.&lt;/p&gt;

&lt;p&gt;Same with the reasoning summary. Every candidate gets one line:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Led K8s migration cutting cloud spend 38% — direct fit for platform mandate."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This isn't generated fluff. It's the system's most defensible evidence for the score, pulled from the resume.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters for AI in hiring
&lt;/h2&gt;

&lt;p&gt;There's real regulatory pressure coming around AI in recruitment — particularly around transparency and explainability. The EU AI Act classifies automated hiring decisions as high-risk. Explainability isn't just a nice-to-have; it's going to be a legal requirement.&lt;/p&gt;

&lt;p&gt;Building transparency into the core scoring logic now means we're compliant-by-design, not compliant-by-retrofit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;p&gt;We're built on TypeScript + React + Vite on the frontend, Node.js + Express on the backend, Claude API for the evaluation pipeline, and Neon (PostgreSQL) for persistence. Deployed on Vercel.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;We're iterating fast. Currently working on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Bias audit flags per candidate evaluation&lt;/li&gt;
&lt;li&gt;Weighted scoring customisation by role type&lt;/li&gt;
&lt;li&gt;Explainability report PDF export for regulated industries&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're building in HR Tech or AI evaluation systems, I'd love to compare notes. Drop a comment below.&lt;/p&gt;

&lt;p&gt;— Ayan, Founder @ ATSFy Technologies, Agartala&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpck8zusan8e6h0uab6ja.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpck8zusan8e6h0uab6ja.jpeg" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>typescript</category>
    </item>
    <item>
      <title>I Built a Free Interactive GitHub Learning Platform — Web Guide + Terminal Guide + Git Reference + CLI Sandbox</title>
      <dc:creator>Ayan pal</dc:creator>
      <pubDate>Wed, 27 May 2026 03:39:48 +0000</pubDate>
      <link>https://dev.to/ayanpal98/i-built-a-free-interactive-github-learning-platform-web-guide-terminal-guide-git-reference--1oml</link>
      <guid>https://dev.to/ayanpal98/i-built-a-free-interactive-github-learning-platform-web-guide-terminal-guide-git-reference--1oml</guid>
      <description>&lt;p&gt;TL;DR&lt;br&gt;
I built and deployed a free browser-based GitHub learning app with three modes — Web Guide, Terminal Guide, and Git Reference — plus an interactive CLI Sandbox that simulates real Git file state transitions.&lt;br&gt;
🔗 Live: github-onboarding-tutorial.vercel.app&lt;/p&gt;

&lt;p&gt;Why I Built This&lt;br&gt;
Git has a reputation for being confusing. Not because the commands are hard to type, but because the mental model is hard to visualize.&lt;/p&gt;

&lt;p&gt;What's the difference between staging and committing?&lt;br&gt;
What does "origin" actually mean?&lt;br&gt;
Why does git pull sometimes create a merge commit?&lt;/p&gt;

&lt;p&gt;Most resources answer these with text. I wanted to answer them with interaction.&lt;/p&gt;

&lt;p&gt;What's Inside&lt;br&gt;
Web Guide — 11 Steps&lt;br&gt;
A visual walkthrough for beginners. Starting from visiting GitHub.com and creating an account, all the way through setting up your profile and understanding the GitHub interface. No terminal required.&lt;br&gt;
Terminal Guide — 16 Steps&lt;br&gt;
A CLI-first learning path. Covers:&lt;/p&gt;

&lt;p&gt;Installing GitHub CLI (gh)&lt;br&gt;
Running the login command&lt;br&gt;
Selecting GitHub.com as host&lt;br&gt;
Choosing authentication protocol&lt;br&gt;
Authenticating via browser&lt;br&gt;
Copying the one-time code&lt;br&gt;
Authorizing in browser&lt;br&gt;
Configuring Git identity&lt;br&gt;
Verifying the connection&lt;br&gt;
Cloning a repository&lt;br&gt;
Creating a new branch&lt;br&gt;
Staging and committing&lt;br&gt;
...and more through step 16&lt;/p&gt;

&lt;p&gt;Each step has the exact terminal command, a PRO TIP, and Next/Back navigation.&lt;br&gt;
Git Reference — 25 Commands&lt;br&gt;
A searchable Git command encyclopedia. Categories:&lt;br&gt;
CategoryCommandsSetup &amp;amp; Config4Daily Work5Branches &amp;amp; Merging6Team Collaboration4Fix Mistakes3Advanced Tools3&lt;br&gt;
Each command page has:&lt;/p&gt;

&lt;p&gt;Functional description&lt;br&gt;
Standard syntax with terminal block&lt;br&gt;
Area Operations Visualizer (which zones does this command touch?)&lt;br&gt;
File State Transition explanation&lt;/p&gt;

&lt;p&gt;CLI Sandbox&lt;br&gt;
The crown jewel. An embedded terminal where you type real Git commands and watch simulated file state changes happen live across four zones:&lt;br&gt;
┌─────────────┐   ┌──────────────┐   ┌────────────────┐   ┌─────────────┐&lt;br&gt;
│  WORKSPACE  │ → │ STAGING AREA │ → │ LOCAL REPOSITORY│ → │ REMOTE REPO │&lt;br&gt;
│  (Unsaved)  │   │   (Index)    │   │(Commits History)│   │(GitHub Cloud│&lt;br&gt;
└─────────────┘   └──────────────┘   └────────────────┘   └─────────────┘&lt;br&gt;
Quick Execution Recipes let you run one-click command trials like git init, git add, git commit.&lt;/p&gt;

&lt;p&gt;Tech Stack&lt;br&gt;
Framework:    React + TypeScript&lt;br&gt;
Styling:      Tailwind CSS&lt;br&gt;
Deployment:   Vercel&lt;/p&gt;

&lt;p&gt;What's Next&lt;br&gt;
Planning to add:&lt;/p&gt;

&lt;p&gt;Progress saving via localStorage&lt;br&gt;
Quiz checkpoints every 5 steps&lt;br&gt;
.gitignore setup guide&lt;br&gt;
Pull Request workflow steps&lt;br&gt;
SSH key setup alternative path&lt;/p&gt;

&lt;p&gt;Try It / Contribute&lt;br&gt;
🔗 Live app: github-onboarding-tutorial.vercel.app&lt;br&gt;
Drop feedback in the comments. If there's interest, I'll open-source the repo.&lt;/p&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>I built a hyperlocal telehealth coordination platform — full clinician dashboard, patient gateway &amp; geospatial routing</title>
      <dc:creator>Ayan pal</dc:creator>
      <pubDate>Mon, 25 May 2026 14:27:00 +0000</pubDate>
      <link>https://dev.to/ayanpal98/i-built-a-hyperlocal-telehealth-coordination-platform-full-clinician-dashboard-patient-gateway--4066</link>
      <guid>https://dev.to/ayanpal98/i-built-a-hyperlocal-telehealth-coordination-platform-full-clinician-dashboard-patient-gateway--4066</guid>
      <description>&lt;p&gt;TeleHealth Connect is a near-production-ready Next.js telehealth infrastructure platform built for real-time doctor-patient coordination. Here's what I shipped, how it works, and what's left before production.&lt;/p&gt;

&lt;p&gt;The problem I was solving:&lt;/p&gt;

&lt;p&gt;Healthcare in Tier 2 and Tier 3 India — especially the Northeast — has a coordination gap, not just a resource gap. Doctors exist. Patients exist. What's missing is structured real-time infrastructure to route the right clinician to the right patient at the right time, especially in hyperlocal geographies.&lt;/p&gt;

&lt;p&gt;Most telehealth products are built for metros. I wanted to build something proximity-aware, operationally structured, and deployable in lower-connectivity regions — a platform any healthcare provider or district health team could white-label and deploy.&lt;/p&gt;

&lt;p&gt;What's inside the platform&lt;br&gt;
Patient gateway&lt;br&gt;
Symptom submission, consultation requests, multimedia upload support&lt;br&gt;
Clinician dashboard&lt;br&gt;
Patient queue management, consultation workflows, routing interface&lt;br&gt;
Hyperlocal routing&lt;br&gt;
Proximity-based doctor routing with geospatial case allocation&lt;br&gt;
Workflow system&lt;br&gt;
Structured consultation lifecycle with queue and patient workflow handling&lt;br&gt;
Privacy-first arch&lt;br&gt;
Local-first persistence, compartmentalized workflows, minimal central dependency&lt;br&gt;
Responsive UI&lt;br&gt;
Fully mobile-responsive across patient and clinician surfaces&lt;br&gt;
Tech stack&lt;br&gt;
Next.js&lt;br&gt;
React&lt;br&gt;
TypeScript&lt;br&gt;
Tailwind CSS&lt;br&gt;
Vercel&lt;br&gt;
Firebase (ready)&lt;/p&gt;

&lt;p&gt;The architecture is Firebase-ready — the persistence and auth layers are scaffolded but not yet connected to a production backend. This was intentional: the MVP is UI-complete and deployment-ready so any health org can wire in their own Firebase project with minimal configuration.&lt;/p&gt;

&lt;p&gt;Geospatial routing — the interesting bit&lt;br&gt;
The hyperlocal routing engine is what differentiates this from a generic telehealth template. Rather than global queuing, the system uses proximity-aware case allocation — incoming patient cases are routed dynamically to clinicians based on geographic proximity and current queue load. This matters significantly in district-level healthcare deployments where a "nearest available doctor" model is the operational norm.&lt;/p&gt;

&lt;p&gt;The routing architecture is modular, so it can be extended with additional signals — specialisation matching, language preference, historical outcomes — without restructuring the core workflow engine.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>healthtech</category>
    </item>
    <item>
      <title>Building ATSfy: My Journey Creating an AI-Powered Career Intelligence Platform</title>
      <dc:creator>Ayan pal</dc:creator>
      <pubDate>Tue, 19 May 2026 10:39:03 +0000</pubDate>
      <link>https://dev.to/ayanpal98/building-atsfy-my-journey-creating-an-ai-powered-career-intelligence-platform-mnc</link>
      <guid>https://dev.to/ayanpal98/building-atsfy-my-journey-creating-an-ai-powered-career-intelligence-platform-mnc</guid>
      <description>&lt;p&gt;Building ATSfy taught me something important:&lt;/p&gt;

&lt;p&gt;Most people don’t fail because they lack talent.&lt;br&gt;
They fail because opportunity is fragmented.&lt;/p&gt;

&lt;p&gt;Resumes. ATS systems. Skill gaps. Job platforms. AI tools.&lt;br&gt;
Everything exists separately.&lt;/p&gt;

&lt;p&gt;So I started building ATSfy — an AI-powered Career Intelligence Platform designed to make hiring, career growth, and opportunity navigation smarter.&lt;/p&gt;

&lt;p&gt;What started as an idea in Tripura is now growing into something much bigger.&lt;/p&gt;

&lt;p&gt;Currently working across:&lt;br&gt;
• AI-powered resume intelligence&lt;br&gt;
• Career recommendation systems&lt;br&gt;
• Hiring optimization&lt;br&gt;
• AI automation workflows&lt;br&gt;
• Product ecosystems for employability&lt;/p&gt;

&lt;p&gt;As a founder, the hardest part hasn’t been coding.&lt;/p&gt;

&lt;p&gt;It’s:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;building consistency&lt;/li&gt;
&lt;li&gt;learning distribution&lt;/li&gt;
&lt;li&gt;handling uncertainty&lt;/li&gt;
&lt;li&gt;shipping despite imperfection&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But that’s also where the growth happens.&lt;/p&gt;

&lt;p&gt;I’m documenting the journey publicly while building in AI, MedTech, EdTech, and GreenTech ecosystems.&lt;/p&gt;

&lt;p&gt;Would love to connect with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;developers&lt;/li&gt;
&lt;li&gt;startup founders&lt;/li&gt;
&lt;li&gt;AI builders&lt;/li&gt;
&lt;li&gt;open-source contributors&lt;/li&gt;
&lt;li&gt;people building meaningful tech from underrated regions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The future of innovation won’t come from only Silicon Valley.&lt;/p&gt;

&lt;p&gt;It’ll come from everywhere. 🚀&lt;/p&gt;

</description>
      <category>ai</category>
      <category>startup</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
