<?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: Somay</title>
    <description>The latest articles on DEV Community by Somay (@casperday11).</description>
    <link>https://dev.to/casperday11</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2572708%2F8811f790-c18b-4d14-bc95-458ef8859f7d.jpg</url>
      <title>DEV Community: Somay</title>
      <link>https://dev.to/casperday11</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/casperday11"/>
    <language>en</language>
    <item>
      <title>Building RabbitHole (Even While It Breaks)</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Fri, 19 Jun 2026 16:26:47 +0000</pubDate>
      <link>https://dev.to/casperday11/building-rabbithole-even-while-it-breaks-gbk</link>
      <guid>https://dev.to/casperday11/building-rabbithole-even-while-it-breaks-gbk</guid>
      <description>&lt;p&gt;Some projects reach a stage where they're not "finished", not even close, but they're finally alive.&lt;/p&gt;

&lt;p&gt;RabbitHole reached that point today.&lt;/p&gt;

&lt;p&gt;There are still more bugs than I'd like to admit, conversations occasionally go off the rails but the core infrastructure is finally in place, and that's worth celebrating.&lt;/p&gt;

&lt;h3&gt;
  
  
  Current progress
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Multi-agent architecture with LangGraph&lt;/li&gt;
&lt;li&gt;Perspective generation and courtroom-style debates&lt;/li&gt;
&lt;li&gt;State management and memory layers&lt;/li&gt;
&lt;li&gt;Human-in-the-loop flow&lt;/li&gt;
&lt;li&gt;Graph orchestration running locally&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are still countless things left to improve, but the foundation exists now.&lt;/p&gt;




&lt;p&gt;Another thing that made this month special:&lt;/p&gt;

&lt;p&gt;I was fortunate enough to make it to the second round of two different fellowship programs. Regardless of the outcome, I'm grateful that something in my work and ideas resonated with people.&lt;/p&gt;




&lt;p&gt;One thing I've been learning recently:&lt;/p&gt;

&lt;p&gt;You don't need to wait until a project is perfect before sharing it.&lt;/p&gt;

&lt;p&gt;Sometimes progress deserves to be documented while things are still messy.&lt;/p&gt;

&lt;p&gt;A lot of engineering is just:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Build.
Break.
Debug.
Repeat.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And honestly, that's where most of the fun is.&lt;/p&gt;

&lt;h3&gt;
  
  
  RabbitHole Repository
&lt;/h3&gt;

&lt;p&gt;🔗 GitHub: &lt;a href="https://github.com/Somay-kousis/RabbitHole" rel="noopener noreferrer"&gt;https://github.com/Somay-kousis/RabbitHole&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Still a long way to go, but we're moving.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>python</category>
    </item>
    <item>
      <title>RabbitHoles while learning AI</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Sun, 14 Jun 2026 07:46:42 +0000</pubDate>
      <link>https://dev.to/casperday11/rabbitholes-while-learning-ai-4o69</link>
      <guid>https://dev.to/casperday11/rabbitholes-while-learning-ai-4o69</guid>
      <description>&lt;p&gt;I was supposed to stop at LangGraph.&lt;/p&gt;

&lt;p&gt;That was the plan.&lt;/p&gt;

&lt;p&gt;Instead, the rabbit hole decided otherwise.&lt;/p&gt;

&lt;p&gt;Some of the things I unexpectedly picked up while chasing Agentic AI:&lt;/p&gt;

&lt;p&gt;⚙️ Docker&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multi-stage Dockerfiles&lt;/li&gt;
&lt;li&gt;Docker Compose&lt;/li&gt;
&lt;li&gt;Volumes&lt;/li&gt;
&lt;li&gt;Building images from my own projects instead of just pulling them&lt;/li&gt;
&lt;li&gt;Finally understanding why "works on my machine" isn't enough&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🤖 GitHub Actions&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Automated builds and tests&lt;/li&gt;
&lt;li&gt;CI/CD pipelines&lt;/li&gt;
&lt;li&gt;Branch protection rules&lt;/li&gt;
&lt;li&gt;Secrets management&lt;/li&gt;
&lt;li&gt;Automatic Docker image publishing&lt;/li&gt;
&lt;li&gt;Realizing how satisfying it is when pushing code triggers everything for you&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🌿 Git &amp;amp; Engineering Practices&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Conventional commits&lt;/li&gt;
&lt;li&gt;Pull requests even for solo projects&lt;/li&gt;
&lt;li&gt;Trunk Based Development&lt;/li&gt;
&lt;li&gt;Small, rapid merges instead of week-long branches&lt;/li&gt;
&lt;li&gt;Keeping main always deployable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🚀 Deployment&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Actually shipping things instead of leaving them in localhost prison&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And somehow, while trying to learn AI, I ended up appreciating software engineering just as much.&lt;/p&gt;

&lt;p&gt;Still left:&lt;/p&gt;

&lt;p&gt;• LlamaIndex&lt;br&gt;
• Cloud&lt;br&gt;
• Terraform&lt;/p&gt;

&lt;p&gt;Apparently the roadmap had other plans.&lt;/p&gt;

&lt;p&gt;Curious what unexpected rabbit holes everyone else fell into while learning AI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>devops</category>
    </item>
    <item>
      <title>Built my first proper agentic AI project</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Wed, 10 Jun 2026 09:39:11 +0000</pubDate>
      <link>https://dev.to/casperday11/built-my-first-proper-agentic-ai-project-4383</link>
      <guid>https://dev.to/casperday11/built-my-first-proper-agentic-ai-project-4383</guid>
      <description>&lt;p&gt;Over the last few weeks, while learning LangGraph and agentic systems, I ended up building &lt;strong&gt;Co-Founder Memory&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It's a stateful AI assistant with:&lt;/p&gt;

&lt;p&gt;• long-term memory&lt;/p&gt;

&lt;p&gt;• planning loops&lt;/p&gt;

&lt;p&gt;• self-correcting RAG&lt;/p&gt;

&lt;p&gt;• web search fallback&lt;/p&gt;

&lt;p&gt;• automated timeline summaries&lt;/p&gt;

&lt;p&gt;• project and preference tracking&lt;/p&gt;

&lt;p&gt;Nothing revolutionary — many ideas already exist. The goal wasn't to reinvent memory, but to understand how these systems work by actually building one.&lt;/p&gt;

&lt;p&gt;A lot of concepts only started making sense once I had to connect them together:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;graph-based workflows with LangGraph&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;memory extraction and storage&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;retrieval and validation loops&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;routing and planning nodes&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;maintaining context across sessions&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Building it taught me far more than watching tutorials ever did.&lt;/p&gt;

&lt;p&gt;Repo:&lt;br&gt;
&lt;a href="https://github.com/Somay-kousis/Co-Founder-Memory" rel="noopener noreferrer"&gt;https://github.com/Somay-kousis/Co-Founder-Memory&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm currently entering my 3rd year at IIITM Gwalior and looking for &lt;strong&gt;ML / GenAI internships&lt;/strong&gt;. If you're building interesting things around LLMs, agents, RAG, or AI products, I'd love to connect.&lt;/p&gt;

&lt;p&gt;Always happy to chat with fellow builders as well 🚀&lt;/p&gt;

&lt;h1&gt;
  
  
  AI #GenerativeAI #LangGraph #RAG #LLM #MachineLearning #Internship
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>python</category>
    </item>
    <item>
      <title>A few months ago, I wouldn't have picked myself</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Tue, 02 Jun 2026 03:24:06 +0000</pubDate>
      <link>https://dev.to/casperday11/a-few-months-ago-i-wouldnt-have-picked-myself-2aa2</link>
      <guid>https://dev.to/casperday11/a-few-months-ago-i-wouldnt-have-picked-myself-2aa2</guid>
      <description>&lt;p&gt;Back in February, a friend asked me to join his hackathon team.&lt;/p&gt;

&lt;p&gt;My first reaction wasn't excitement.&lt;/p&gt;

&lt;p&gt;It was:&lt;/p&gt;

&lt;p&gt;"Can I even contribute anything?"&lt;/p&gt;

&lt;p&gt;I remember repeatedly telling him not to add dead weight to the team and to find someone better. He kept insisting that it didn't matter and that I should just join.&lt;/p&gt;

&lt;p&gt;The funny thing is, I still don't think I've done anything extraordinary since then.&lt;/p&gt;

&lt;p&gt;No big startup.&lt;br&gt;
No crazy achievement.&lt;br&gt;
No overnight success story.&lt;/p&gt;

&lt;p&gt;Mostly just hundreds of hours of learning, building random things, breaking them, fixing them, and realizing how much I still don't know.&lt;/p&gt;

&lt;p&gt;But today I caught myself doing something weird.&lt;/p&gt;

&lt;p&gt;I'm the one thinking about who to bring into a team.&lt;/p&gt;

&lt;p&gt;And for the first time, I don't immediately feel like I'd be dead weight.&lt;/p&gt;

&lt;p&gt;Not because I know everything now.&lt;/p&gt;

&lt;p&gt;Just because I've reached the point where I can look at a problem and genuinely believe that, given enough time, I'll figure out how to contribute.&lt;/p&gt;

&lt;p&gt;It's a small shift, but it feels important.&lt;/p&gt;

&lt;p&gt;A few months ago I was wondering if I belonged on a team at all.&lt;/p&gt;

&lt;p&gt;Today I'm wondering who should be on mine. 👀&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Can you guys lemme know which of the following tagline is better 👀</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Mon, 01 Jun 2026 14:34:30 +0000</pubDate>
      <link>https://dev.to/casperday11/can-you-guys-lemme-know-which-of-the-following-tagline-is-better-5fpi</link>
      <guid>https://dev.to/casperday11/can-you-guys-lemme-know-which-of-the-following-tagline-is-better-5fpi</guid>
      <description>&lt;p&gt;Pick it for a platform named “something” where people build stuff&lt;/p&gt;

&lt;p&gt;A) Start with something.&lt;br&gt;
B) Something is about to happen &lt;/p&gt;

&lt;p&gt;( I didn't share details cause you'll see it once it is launched  )&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Today My Portfolio Started Talking Back 👀</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Sat, 30 May 2026 10:58:54 +0000</pubDate>
      <link>https://dev.to/casperday11/today-my-portfolio-started-talking-back-3ehb</link>
      <guid>https://dev.to/casperday11/today-my-portfolio-started-talking-back-3ehb</guid>
      <description>&lt;p&gt;Today was one of those weird days.&lt;/p&gt;

&lt;p&gt;the AI portfolio bot is technically alive now 😭&lt;/p&gt;

&lt;p&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%2Fofy0b287nn9idq6prkar.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%2Fofy0b287nn9idq6prkar.jpeg" alt=" " width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;it can talk about my projects, writing, ambitions, weird philosophies, random life decisions, and somehow even picked up on things i never explicitly taught it.&lt;/p&gt;

&lt;p&gt;repo:&lt;br&gt;
&lt;a href="https://github.com/Somay-kousis/self.so" rel="noopener noreferrer"&gt;https://github.com/Somay-kousis/self.so&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;portfolio:&lt;br&gt;
&lt;a href="https://portfolio-sable-psi-56.vercel.app" rel="noopener noreferrer"&gt;https://portfolio-sable-psi-56.vercel.app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;the funny part is that building the actual bot wasn't the hardest thing.&lt;/p&gt;

&lt;p&gt;the hardest thing was finding free stuff.&lt;/p&gt;

&lt;p&gt;free embeddings.&lt;br&gt;
free vector db.&lt;br&gt;
free llm.&lt;br&gt;
free hosting.&lt;/p&gt;

&lt;p&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%2Fsdzntsbmaumclbn82erz.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%2Fsdzntsbmaumclbn82erz.jpeg" alt=" " width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;every tutorial casually says "just use xyz api" and then you discover xyz wants your kidneys after the trial ends 💀&lt;/p&gt;

&lt;p&gt;so half of the project was AI engineering and the other half was surviving the free tier ecosystem.&lt;/p&gt;

&lt;p&gt;also ran out of Groq tokens today.&lt;/p&gt;

&lt;p&gt;which feels poetic because the bot became smart enough to have conversations right when its brain got disconnected 😭&lt;/p&gt;

&lt;p&gt;meanwhile:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;slight headache for days&lt;/li&gt;
&lt;li&gt;CG ended up lower than expected&lt;/li&gt;
&lt;li&gt;agentic AI starts next&lt;/li&gt;
&lt;li&gt;internship season is getting closer&lt;/li&gt;
&lt;li&gt;still have DSA waiting for me in a dark alley&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;but okay.&lt;/p&gt;

&lt;p&gt;one thing at a time.&lt;/p&gt;

&lt;p&gt;a few weeks ago i was learning what document loaders even were.&lt;/p&gt;

&lt;p&gt;today i deployed something that can talk about me better than i can talk about myself on some days.&lt;/p&gt;

&lt;p&gt;that's kinda cool.&lt;/p&gt;

&lt;p&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%2F273x7brfacpjd8xl2bok.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%2F273x7brfacpjd8xl2bok.jpeg" alt=" " width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>career</category>
    </item>
    <item>
      <title>I think AI accidentally became my personality for a month</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Wed, 27 May 2026 07:48:21 +0000</pubDate>
      <link>https://dev.to/casperday11/i-think-ai-accidentally-became-my-personality-for-a-month-544n</link>
      <guid>https://dev.to/casperday11/i-think-ai-accidentally-became-my-personality-for-a-month-544n</guid>
      <description>&lt;p&gt;Okay so I think I’m finally done with the GenAI foundations phase &lt;/p&gt;

&lt;p&gt;like genuinely done&lt;/p&gt;

&lt;p&gt;RAG, tools, tool calling, agents, Ollama and all that stuff that sounded terrifying 2 weeks ago now somehow makes sense in my head&lt;/p&gt;

&lt;p&gt;and the weird thing is… I don’t think AI feels like “chatbots” anymore&lt;/p&gt;

&lt;p&gt;it feels more like systems now&lt;/p&gt;

&lt;p&gt;like workflows&lt;br&gt;
memory&lt;br&gt;
humans&lt;br&gt;
context&lt;br&gt;
behaviour&lt;br&gt;
retrieval&lt;br&gt;
decision making&lt;br&gt;
all stitched together somehow&lt;/p&gt;

&lt;p&gt;which is lowkey why I got obsessed with it in the first place &lt;/p&gt;

&lt;p&gt;also had a very funny realization recently&lt;/p&gt;

&lt;p&gt;I don’t think I’m the kind of person who wants to spend all day training models and doing hardcore DL research&lt;/p&gt;

&lt;p&gt;I like the human side of AI wayyyyy more&lt;/p&gt;

&lt;p&gt;the part where:&lt;br&gt;
an AI can understand someone’s tone,&lt;br&gt;
or remember context,&lt;br&gt;
or connect similar people,&lt;br&gt;
or help communities form,&lt;br&gt;
or act differently depending on emotions/situations&lt;/p&gt;

&lt;p&gt;basically I like AI when it starts feeling less like software and more like a system interacting with humans&lt;/p&gt;

&lt;p&gt;which probably explains why my project ideas always become psychological somehow &lt;/p&gt;

&lt;p&gt;anywayyy&lt;/p&gt;

&lt;p&gt;next phase starts in June:&lt;br&gt;
Agentic AI + LangGraph + MCP&lt;/p&gt;

&lt;p&gt;and I’ll be building 2 projects alongside:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a portfolio AI assistant&lt;/li&gt;
&lt;li&gt;Signal (still evolving in my head but it’s about people, intent, compatibility and systems)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;also somewhere in between all this:&lt;br&gt;
DSA&lt;br&gt;
internships&lt;br&gt;
open source maybe&lt;br&gt;
foreign applications maybe&lt;br&gt;
and whatever other personality crisis I decide to develop 👍&lt;/p&gt;

&lt;p&gt;skills wise rn:&lt;br&gt;
GenAI&lt;br&gt;
RAG&lt;br&gt;
LangChain&lt;br&gt;
LangGraph (starting)&lt;br&gt;
Agents&lt;br&gt;
FastAPI (soon)&lt;br&gt;
MCP (soon)&lt;br&gt;
React&lt;br&gt;
Next.js&lt;br&gt;
TypeScript&lt;br&gt;
Tailwind&lt;br&gt;
UI/UX&lt;br&gt;
Product thinking&lt;br&gt;
presentations&lt;br&gt;
design&lt;br&gt;
writing&lt;br&gt;
community building&lt;br&gt;
and apparently overthinking&lt;/p&gt;

&lt;p&gt;if anyone knows internships / people building cool AI stuff / open source routes I should explore, pls let me know 👀&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>career</category>
    </item>
    <item>
      <title>Looking for 4 people to build something weird with me</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Mon, 25 May 2026 14:52:53 +0000</pubDate>
      <link>https://dev.to/casperday11/looking-for-4-people-to-build-something-weird-with-me-2bgl</link>
      <guid>https://dev.to/casperday11/looking-for-4-people-to-build-something-weird-with-me-2bgl</guid>
      <description>&lt;p&gt;A few months ago, if someone had asked me what I'd be doing this summer, I would've probably said DSA.&lt;/p&gt;

&lt;p&gt;104 LeetCode problems later, I somehow ended up obsessed with AI, simulations, product design, human behavior, and all the strange ways technology can teach people things.&lt;/p&gt;

&lt;p&gt;Recently I came across the IEEE Metaverse Grand Challenge for Simulation-Based Learning.&lt;/p&gt;

&lt;p&gt;The premise is simple:&lt;/p&gt;

&lt;p&gt;Build an immersive simulation that teaches something.&lt;/p&gt;

&lt;p&gt;Not another chatbot.&lt;br&gt;
Not another CRUD app.&lt;br&gt;
Not another dashboard pretending to be a startup.&lt;/p&gt;

&lt;p&gt;A simulation.&lt;/p&gt;

&lt;p&gt;Something people can step into, interact with, and learn from.&lt;/p&gt;

&lt;p&gt;I don't know exactly what we're building yet.&lt;/p&gt;

&lt;p&gt;Maybe a public safety simulation.&lt;br&gt;
Maybe a smart city that reacts to your decisions.&lt;br&gt;
Maybe a healthcare training environment.&lt;br&gt;
Maybe something completely different.&lt;/p&gt;

&lt;p&gt;What I do know is that I don't want to do it alone.&lt;/p&gt;

&lt;p&gt;So I'm looking for 4 people who want to spend the next few months building something ambitious.&lt;/p&gt;

&lt;p&gt;Current stack on my side:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;React / Next.js&lt;/li&gt;
&lt;li&gt;Product Design&lt;/li&gt;
&lt;li&gt;UI/UX&lt;/li&gt;
&lt;li&gt;Presentations &amp;amp; Pitching&lt;/li&gt;
&lt;li&gt;Generative AI&lt;/li&gt;
&lt;li&gt;FastAPI (currently learning)&lt;/li&gt;
&lt;li&gt;Agentic Systems (currently learning)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;People I'd love to meet:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Unity developers&lt;/li&gt;
&lt;li&gt;Blender artists&lt;/li&gt;
&lt;li&gt;AI / ML engineers&lt;/li&gt;
&lt;li&gt;Backend developers&lt;/li&gt;
&lt;li&gt;Anyone obsessed with learning experiences, simulations, psychology, education, or human behavior&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Experience matters less than curiosity.&lt;/p&gt;

&lt;p&gt;The deadline is August 15.&lt;/p&gt;

&lt;p&gt;If we end up building something cool, great.&lt;/p&gt;

&lt;p&gt;If we end up learning a ridiculous amount and making new friends, that's probably a win too.&lt;/p&gt;

&lt;p&gt;If this sounds interesting, reach out.&lt;/p&gt;

&lt;p&gt;Let's build something weird.&lt;/p&gt;

&lt;p&gt;&lt;a href="mailto:somaykaush@gmail.com"&gt;somaykaush@gmail.com&lt;/a&gt; (mail me if interested or just comment here)&lt;/p&gt;

</description>
      <category>unity3d</category>
      <category>ai</category>
      <category>devops</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Building: Women's Safety Isn't About Women</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Sun, 24 May 2026 11:34:54 +0000</pubDate>
      <link>https://dev.to/casperday11/building-womens-safety-isnt-about-women-32p1</link>
      <guid>https://dev.to/casperday11/building-womens-safety-isnt-about-women-32p1</guid>
      <description>&lt;p&gt;I'm starting work on a project I've been thinking about for a long time.&lt;/p&gt;

&lt;p&gt;The tagline is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Women's safety isn't about women."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;At first glance, that sounds strange.&lt;/p&gt;

&lt;p&gt;But the more I looked at the problem, the more I felt that most solutions focus on what happens after risk appears:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Emergency buttons&lt;/li&gt;
&lt;li&gt;Location sharing&lt;/li&gt;
&lt;li&gt;SOS alerts&lt;/li&gt;
&lt;li&gt;Reporting systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are important.&lt;/p&gt;

&lt;p&gt;But I became interested in a different question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What if safety is influenced more by the people, communities, and environments around someone than by the tools they carry?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This project is not another social platform.&lt;/p&gt;

&lt;p&gt;It's not a reputation system.&lt;/p&gt;

&lt;p&gt;It's not a public scoring mechanism.&lt;/p&gt;

&lt;p&gt;And it definitely isn't about replacing human judgment with AI.&lt;/p&gt;

&lt;p&gt;The goal is to explore whether technology can help create accountability around harmful behavior while still respecting privacy, human oversight, and due process.&lt;/p&gt;

&lt;p&gt;I'm still in the design and architecture phase, so I won't be sharing implementation details yet.&lt;/p&gt;

&lt;p&gt;For now, I'm documenting the journey, the technical challenges, the ethical questions, and the lessons learned while building it.&lt;/p&gt;

&lt;p&gt;If you're interested in privacy, AI systems, trust &amp;amp; safety, platform design, moderation, cybersecurity, or social impact technology, feel free to follow along.&lt;/p&gt;

&lt;p&gt;The first step starts now.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Women's safety isn't about women.&lt;/strong&gt;&lt;br&gt;
It's about the world around them.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>opensource</category>
      <category>agents</category>
    </item>
    <item>
      <title>I Finished Machine Learning. And Then Changed The Plan.</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Fri, 22 May 2026 14:51:02 +0000</pubDate>
      <link>https://dev.to/casperday11/i-finished-machine-learning-and-then-changed-the-plan-3cnk</link>
      <guid>https://dev.to/casperday11/i-finished-machine-learning-and-then-changed-the-plan-3cnk</guid>
      <description>&lt;h3&gt;
  
  
  Dev.to / Medium / Substack
&lt;/h3&gt;

&lt;h1&gt;
  
  
  I Finished Machine Learning. And Then Changed The Plan.
&lt;/h1&gt;

&lt;p&gt;A few months ago, I had no idea what feature engineering was.&lt;/p&gt;

&lt;p&gt;Today, I finished my Machine Learning roadmap.&lt;/p&gt;

&lt;p&gt;Not "mastered ML."&lt;br&gt;
Not "became an AI expert."&lt;/p&gt;

&lt;p&gt;Finished the part where every tutorial starts making sense.&lt;/p&gt;

&lt;p&gt;I built projects, broke models, overfit them, leaked data into them, fixed them, and slowly started understanding why things worked instead of blindly following notebooks.&lt;/p&gt;

&lt;p&gt;My latest project:&lt;/p&gt;

&lt;h3&gt;
  
  
  Customer Churn Prediction
&lt;/h3&gt;

&lt;p&gt;Predicting which customers are likely to leave a company before they actually do.&lt;/p&gt;

&lt;p&gt;Built with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;Pandas&lt;/li&gt;
&lt;li&gt;Scikit-Learn&lt;/li&gt;
&lt;li&gt;XGBoost&lt;/li&gt;
&lt;li&gt;Feature Engineering&lt;/li&gt;
&lt;li&gt;Hyperparameter Tuning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Project:&lt;br&gt;
&lt;a href="https://customer-churn-fmj75lr7s-somaykousis-6282s-projects.vercel.app?utm_source=chatgpt.com" rel="noopener noreferrer"&gt;Customer Churn Prediction Demo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The funny thing?&lt;/p&gt;

&lt;p&gt;The more I learned, the less interested I became in rushing toward Deep Learning.&lt;/p&gt;

&lt;p&gt;Originally the plan was:&lt;/p&gt;

&lt;p&gt;ML → Deep Learning → NLP&lt;/p&gt;

&lt;p&gt;But somewhere along the way I realized something.&lt;/p&gt;

&lt;p&gt;I don't just want to understand models.&lt;/p&gt;

&lt;p&gt;I want to build products.&lt;/p&gt;

&lt;p&gt;Things people actually use.&lt;/p&gt;

&lt;p&gt;So the roadmap changed.&lt;/p&gt;

&lt;p&gt;Now I'm diving into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Generative AI&lt;/li&gt;
&lt;li&gt;RAG&lt;/li&gt;
&lt;li&gt;LangChain&lt;/li&gt;
&lt;li&gt;FastAPI&lt;/li&gt;
&lt;li&gt;Ollama&lt;/li&gt;
&lt;li&gt;MCP&lt;/li&gt;
&lt;li&gt;LangGraph&lt;/li&gt;
&lt;li&gt;Agentic AI&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Deep Learning isn't gone.&lt;/p&gt;

&lt;p&gt;It's just waiting its turn.&lt;/p&gt;

&lt;p&gt;And DSA?&lt;/p&gt;

&lt;p&gt;That was supposed to stay consistent.&lt;/p&gt;

&lt;p&gt;Instead, I keep finding myself opening AI documentation at 2 AM and disappearing into another rabbit hole.&lt;/p&gt;

&lt;p&gt;Not because I have to.&lt;/p&gt;

&lt;p&gt;Because I genuinely can't stop.&lt;/p&gt;

&lt;p&gt;Somewhere between building projects and studying, curiosity quietly took over.&lt;/p&gt;

&lt;p&gt;So that's where we are now.&lt;/p&gt;

&lt;p&gt;Machine Learning: complete.&lt;/p&gt;

&lt;p&gt;Next stop: GenAI.&lt;/p&gt;

&lt;p&gt;Let's see how deep this rabbit hole goes.&lt;/p&gt;




&lt;p&gt;If you're earlier in your journey:&lt;/p&gt;

&lt;p&gt;Build projects before you feel ready.&lt;/p&gt;

&lt;p&gt;Most of what I learned came from fixing mistakes I didn't know I was making.&lt;/p&gt;




&lt;p&gt;Project:&lt;br&gt;
&lt;a href="https://customer-churn-fmj75lr7s-somaykousis-6282s-projects.vercel.app?utm_source=chatgpt.com" rel="noopener noreferrer"&gt;Customer Churn Prediction Demo&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I rebuilt my little corner of the internet</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Thu, 21 May 2026 01:41:20 +0000</pubDate>
      <link>https://dev.to/casperday11/i-rebuilt-my-little-corner-of-the-internet-2lk0</link>
      <guid>https://dev.to/casperday11/i-rebuilt-my-little-corner-of-the-internet-2lk0</guid>
      <description>&lt;p&gt;Spent the last day redesigning my github + portfolio until they finally started feeling like &lt;em&gt;me&lt;/em&gt; instead of another developer template pretending to have personality.&lt;/p&gt;

&lt;p&gt;dark interfaces.&lt;br&gt;&lt;br&gt;
tiny details nobody notices consciously.&lt;br&gt;&lt;br&gt;
machine learning mixed with interaction design.&lt;br&gt;&lt;br&gt;
and a slightly unhealthy obsession with atmosphere.&lt;/p&gt;

&lt;p&gt;currently somewhere between:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;frontend engineering&lt;/li&gt;
&lt;li&gt;machine learning&lt;/li&gt;
&lt;li&gt;and “what if software felt haunted in a good way?”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;portfolio:&lt;br&gt;&lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://github.com/Somay-kousis" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F186467000%3Fv%3D4%3Fs%3D400" height="446" class="m-0" width="446"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://github.com/Somay-kousis" rel="noopener noreferrer" class="c-link"&gt;
            Somay-kousis (Blink) · GitHub
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            Bleh Bleh Bleh. Somay-kousis has 10 repositories available. Follow their code on GitHub.
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.githubassets.com%2Ffavicons%2Ffavicon.svg" width="32" height="32"&gt;
          github.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;github:&lt;br&gt;&lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
      &lt;div class="c-embed__body flex items-center justify-between"&gt;
        &lt;a href="https://portfolio-sable-psi-56.vercel.app" rel="noopener noreferrer" class="c-link fw-bold flex items-center"&gt;
          &lt;span class="mr-2"&gt;portfolio-sable-psi-56.vercel.app&lt;/span&gt;
          

        &lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;still evolving, but i think it finally feels alive now.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>btw guys I’m not inconsistent anymore?</title>
      <dc:creator>Somay</dc:creator>
      <pubDate>Thu, 21 May 2026 01:28:55 +0000</pubDate>
      <link>https://dev.to/casperday11/btw-guys-im-not-inconsistent-anymore-4md1</link>
      <guid>https://dev.to/casperday11/btw-guys-im-not-inconsistent-anymore-4md1</guid>
      <description>&lt;p&gt;for the past 2 weeks, life has mostly been:&lt;/p&gt;

&lt;p&gt;wake up → laptop → confusion → somehow figure things out → repeat&lt;/p&gt;

&lt;p&gt;and surprisingly… it’s been working.&lt;/p&gt;

&lt;p&gt;i’ve been averaging around 8 actually productive hours almost every day&lt;br&gt;&lt;br&gt;
(except one break day because my brain started sounding like a dying laptop fan)&lt;/p&gt;

&lt;p&gt;recently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;prettified my portfolio + github&lt;/li&gt;
&lt;li&gt;finished my first ML project&lt;/li&gt;
&lt;li&gt;started learning graphs + logistic regression today&lt;/li&gt;
&lt;li&gt;restarted workouts because my wrist is probablyyyyy functional again&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;lowkey feels nice seeing things compound for once.&lt;/p&gt;

&lt;p&gt;if things keep going like this, by next month i should be deep into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;dynamic programming&lt;/li&gt;
&lt;li&gt;deep learning&lt;/li&gt;
&lt;li&gt;and whatever identity crisis comes with them&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;still feel lost half the time btw.&lt;br&gt;&lt;br&gt;
just slightly more organized now.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>career</category>
    </item>
  </channel>
</rss>
