<?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: Adithya Balan</title>
    <description>The latest articles on DEV Community by Adithya Balan (@adithya-balan).</description>
    <link>https://dev.to/adithya-balan</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%2F2758035%2F086c4248-5a7d-4ebf-8dca-84259d4a707c.png</url>
      <title>DEV Community: Adithya Balan</title>
      <link>https://dev.to/adithya-balan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adithya-balan"/>
    <language>en</language>
    <item>
      <title>Linux still doesn’t understand developers. So I built a GNOME extension that does.</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Wed, 25 Mar 2026 07:48:12 +0000</pubDate>
      <link>https://dev.to/adithya-balan/linux-still-doesnt-understand-developers-so-i-built-a-gnome-extension-that-does-3oph</link>
      <guid>https://dev.to/adithya-balan/linux-still-doesnt-understand-developers-so-i-built-a-gnome-extension-that-does-3oph</guid>
      <description>&lt;p&gt;Linux is powerful.&lt;/p&gt;

&lt;p&gt;But when it comes to daily development workflow, it still feels like we are stitching tools together manually.&lt;/p&gt;

&lt;p&gt;Every day I do things like:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ps aux | grep node  &lt;br&gt;
lsof -i :8000  &lt;br&gt;
ss -tulnp  &lt;br&gt;
kill -9 4821&lt;/code&gt; &lt;/p&gt;

&lt;p&gt;Not because I like terminals, but because the system has no idea what I’m actually working on.&lt;br&gt;&lt;br&gt;
Linux sees processes, developers see projects — and that mismatch is the problem.&lt;/p&gt;

&lt;p&gt;So I started building a GNOME extension called &lt;strong&gt;DevWatch&lt;/strong&gt;.&lt;/p&gt;

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

&lt;blockquote&gt;
&lt;p&gt;What if the desktop actually understood running projects?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Instead of showing raw system data, it should understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;which project is running&lt;/li&gt;
&lt;li&gt;which port is open&lt;/li&gt;
&lt;li&gt;which service is active&lt;/li&gt;
&lt;li&gt;what build is consuming CPU&lt;/li&gt;
&lt;li&gt;what workspace I left yesterday&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The problem nobody talks about
&lt;/h2&gt;

&lt;p&gt;When you’re working on multiple projects, the OS shows this:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;node  &lt;br&gt;
python  &lt;br&gt;
bash  &lt;br&gt;
code&lt;/code&gt;  &lt;/p&gt;

&lt;p&gt;But what you actually care about is:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;backend-api  &lt;br&gt;
frontend  &lt;br&gt;
inventory-system  &lt;br&gt;
crm-tool&lt;/code&gt;  &lt;/p&gt;

&lt;p&gt;You don’t want to know which PID is running.&lt;/p&gt;

&lt;p&gt;You want to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;which project is active&lt;/li&gt;
&lt;li&gt;which port is open&lt;/li&gt;
&lt;li&gt;which dev server is still running&lt;/li&gt;
&lt;li&gt;why your CPU is high&lt;/li&gt;
&lt;li&gt;why your fan is spinning&lt;/li&gt;
&lt;li&gt;what you forgot to stop yesterday&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And Linux doesn’t tell you that.&lt;/p&gt;

&lt;p&gt;So every developer builds their own workflow using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;htop
&lt;/li&gt;
&lt;li&gt;lsof
&lt;/li&gt;
&lt;li&gt;ps
&lt;/li&gt;
&lt;li&gt;ss
&lt;/li&gt;
&lt;li&gt;tmux
&lt;/li&gt;
&lt;li&gt;scripts
&lt;/li&gt;
&lt;li&gt;aliases &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It works.&lt;br&gt;
But it’s friction.&lt;/p&gt;

&lt;p&gt;Every day.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I wanted instead
&lt;/h2&gt;

&lt;p&gt;I wanted the panel to show something like:&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%2Fljl6hn8jjpys74bev1nv.png" 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%2Fljl6hn8jjpys74bev1nv.png" alt="Overall Extension Look" width="517" height="938"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Not in terminal.&lt;br&gt;
Right in the desktop.&lt;/p&gt;

&lt;p&gt;So I built it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Introducing DevWatch
&lt;/h2&gt;

&lt;p&gt;DevWatch is a GNOME extension that makes the system aware of development environments.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;running projects&lt;/li&gt;
&lt;li&gt;open ports&lt;/li&gt;
&lt;li&gt;active services&lt;/li&gt;
&lt;li&gt;build activity&lt;/li&gt;
&lt;li&gt;saved sessions&lt;/li&gt;
&lt;li&gt;resource usage&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And shows them in the panel.&lt;/p&gt;

&lt;p&gt;No terminal needed.&lt;/p&gt;




&lt;h2&gt;
  
  
  Project-aware process tracking
&lt;/h2&gt;

&lt;p&gt;Instead of random processes, DevWatch groups them by project.&lt;/p&gt;

&lt;p&gt;Example:&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%2Fbfwitgpxgbn6ff0ailpu.png" 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%2Fbfwitgpxgbn6ff0ailpu.png" alt="Project-aware process tracking" width="431" height="503"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now I know what is running instantly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Port &amp;amp; service awareness
&lt;/h2&gt;

&lt;p&gt;Instead of:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;lsof -i :8000&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;You see:&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%2Fqcdhlgnat5793zjzrc1u.png" 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%2Fqcdhlgnat5793zjzrc1u.png" alt="Port &amp;amp; service awareness" width="426" height="200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can stop it from the panel.&lt;br&gt;
No terminal.&lt;/p&gt;




&lt;h2&gt;
  
  
  Session restore (the feature I needed the most)
&lt;/h2&gt;

&lt;p&gt;Every day after reboot:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;open project
&lt;/li&gt;
&lt;li&gt;start backend
&lt;/li&gt;
&lt;li&gt;start frontend
&lt;/li&gt;
&lt;li&gt;open editor
&lt;/li&gt;
&lt;li&gt;start db &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I added session snapshots.&lt;/p&gt;

&lt;p&gt;Save workspace → restore later.&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%2Ffgfidz55v8kr07t7o95r.png" 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%2Ffgfidz55v8kr07t7o95r.png" alt="Session Workspace" width="426" height="284"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Still improving this to restore everything automatically.&lt;/p&gt;

&lt;p&gt;Goal:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Resume dev environment instantly.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Build activity tracking
&lt;/h2&gt;

&lt;p&gt;Sometimes the system becomes slow and you don’t know why.&lt;/p&gt;

&lt;p&gt;Now I see:&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%2Fzuk0ic404m3b6mya06bj.png" 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%2Fzuk0ic404m3b6mya06bj.png" alt="Build activity tracking" width="423" height="414"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;No guessing.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I built this
&lt;/h2&gt;

&lt;p&gt;Linux has amazing tools, but they are system tools.&lt;/p&gt;

&lt;p&gt;Developers need workflow tools. We don’t think in processes — we think in projects.&lt;br&gt;
DevWatch is my attempt to fix that.&lt;br&gt;&lt;br&gt;
Not to replace the terminal, just to remove daily friction.&lt;/p&gt;




&lt;h2&gt;
  
  
  Current state
&lt;/h2&gt;

&lt;p&gt;The extension works locally and is still in active development.&lt;br&gt;&lt;br&gt;
Before publishing it publicly, I want feedback from people who actually use Linux for development.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Would you use something like this?
&lt;/li&gt;
&lt;li&gt;What feature is missing?
&lt;/li&gt;
&lt;li&gt;What feels unnecessary?
&lt;/li&gt;
&lt;li&gt;What would make this a must-have tool?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Honest feedback is welcome.&lt;/p&gt;




&lt;h2&gt;
  
  
  Repo
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/Adithya-Balan/DevWatch" rel="noopener noreferrer"&gt;https://github.com/Adithya-Balan/DevWatch&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Not looking for stars — just honest feedback before release.&lt;/p&gt;

&lt;p&gt;If this turns out useful, I’ll publish it as a proper GNOME extension. If not, at least I learned something from building it.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
    <item>
      <title>📢 Calling All Developers — We Need Your Insights</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Sun, 10 Aug 2025 06:10:36 +0000</pubDate>
      <link>https://dev.to/adithya-balan/calling-all-developers-we-need-your-insights-1dje</link>
      <guid>https://dev.to/adithya-balan/calling-all-developers-we-need-your-insights-1dje</guid>
      <description>&lt;p&gt;Hey devs 👋,&lt;/p&gt;

&lt;p&gt;We’re running a short 3-minute survey to understand how developers work, share, and grow in today’s world.&lt;/p&gt;

&lt;p&gt;Your input will directly help shape a new platform being built for developers, by developers.&lt;/p&gt;

&lt;p&gt;💡 Why participate?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It’s quick (3 minutes max)&lt;/li&gt;
&lt;li&gt;Your perspective matters&lt;/li&gt;
&lt;li&gt;You’ll be part of shaping something made for our community&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 Take the survey here: &lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSevPOiYfDEWEg9o7xOt0e0HA23DIU3WIWxrY87I3P3fBBsncg/viewform?usp=sharing&amp;amp;ouid=102781064071114447359" rel="noopener noreferrer"&gt;Survey Link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks in advance for lending your voice to the developer community 🙌&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>ai</category>
    </item>
    <item>
      <title>💔 The Silent Struggles of Developers: Let's Talk About It</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Mon, 14 Jul 2025 14:23:43 +0000</pubDate>
      <link>https://dev.to/adithya-balan/the-silent-struggles-of-developers-lets-talk-about-it-1nak</link>
      <guid>https://dev.to/adithya-balan/the-silent-struggles-of-developers-lets-talk-about-it-1nak</guid>
      <description>&lt;p&gt;No tutorials will tell you this.&lt;/p&gt;

&lt;p&gt;Being a developer looks glamorous on the outside:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cool projects.&lt;/li&gt;
&lt;li&gt;Fancy portfolios.&lt;/li&gt;
&lt;li&gt;Job titles like “Full Stack Wizard.”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But inside? Many of us are carrying hidden struggles that nobody talks about.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ever felt like this?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You’re coding alone at midnight, wondering why you're doing this.&lt;/li&gt;
&lt;li&gt;You ship features no one uses, yet LinkedIn is full of people “winning.”&lt;/li&gt;
&lt;li&gt;You’re stuck on a bug for days and feel stupid, but can’t admit it.&lt;/li&gt;
&lt;li&gt;Your friends and family don’t get your work, so you stop explaining.&lt;/li&gt;
&lt;li&gt;You compare yourself to that 18-year-old who’s “already at Google.”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you’ve felt any of this…&lt;br&gt;
You're not alone.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Are Developers So Lonely?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In theory, we’re part of the biggest online community in the world.&lt;/p&gt;

&lt;p&gt;In practice?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Forums feel toxic or dead.&lt;/li&gt;
&lt;li&gt;Discord servers get overwhelming.&lt;/li&gt;
&lt;li&gt;StackOverflow replies feel cold.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We learn to build systems.&lt;br&gt;
But no one teaches us how to stay human while building.&lt;/p&gt;

&lt;p&gt;This Post Is Not a Tutorial.&lt;br&gt;
I’m not here to teach you something.&lt;br&gt;
I’m here to ask you something.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s your biggest struggle as a developer?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Comment it. Vent it. Share your pain here.&lt;br&gt;
This is your space.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Are you stuck in a project?&lt;/li&gt;
&lt;li&gt;Burnt out from coding interviews?&lt;/li&gt;
&lt;li&gt;Tired of building alone?&lt;/li&gt;
&lt;li&gt;Feel invisible even after shipping?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Write it.&lt;/p&gt;

&lt;p&gt;Not for likes. Not for solutions.&lt;br&gt;
Just to release it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Am I Writing This?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Because I’m one of you.&lt;br&gt;
And because someone, somewhere, needs to know:&lt;br&gt;
It’s okay to struggle.&lt;/p&gt;

&lt;p&gt;We all do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✍️ Your Turn: Be Honest.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;What’s hurting you as a developer right now?&lt;br&gt;
Reply below 👇 &lt;/p&gt;

&lt;p&gt;Let’s build something raw and human here.&lt;br&gt;
Maybe for once, we stop pretending we're fine.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>programming</category>
      <category>startup</category>
    </item>
    <item>
      <title>I started tracking my dev journey daily — turns out, it changed everything.</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Sun, 06 Jul 2025 05:50:26 +0000</pubDate>
      <link>https://dev.to/adithya-balan/i-started-tracking-my-dev-journey-daily-turns-out-it-changed-everything-c5g</link>
      <guid>https://dev.to/adithya-balan/i-started-tracking-my-dev-journey-daily-turns-out-it-changed-everything-c5g</guid>
      <description>&lt;p&gt;Not sure if this will resonate with others, but something weirdly powerful happened to me recently.&lt;/p&gt;

&lt;p&gt;I was feeling stuck — not in terms of code, but direction. I’d fix a bug, build a small feature, help someone, learn something — and then forget it the next week. It all felt like I wasn’t making progress, even though I was.&lt;/p&gt;

&lt;p&gt;Then I started logging. Like, really small entries:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"🔥 fixed weird async bug after 2 hrs—learned about event loop.”&lt;/li&gt;
&lt;li&gt;“I don’t write code — I plant bugs and call it ‘feature growth’ 🙃.”&lt;/li&gt;
&lt;li&gt;“🚧 messed up prod config — learned to double check .envs lol”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Nothing fancy. Just me and my thoughts. Sometimes code-related, sometimes personal growth.&lt;/p&gt;

&lt;p&gt;I used a platform called Devmate — it gives a kind of "command-line journal" for devs. It felt like a private logbook — but if I wanted, I could also share it with others. And it slowly started showing stats, clone count, logs per day, and even latency time (I’m a sucker for metrics 😅).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I saw my growth clearly.&lt;/li&gt;
&lt;li&gt;I felt more accountable, even on bad days.&lt;/li&gt;
&lt;li&gt;I now have a timeline of my effort, not just achievements.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Looking back, I realized how far I’ve actually come.&lt;/p&gt;

&lt;p&gt;And weirdly... I stopped comparing myself to others.&lt;/p&gt;

&lt;p&gt;I’m not trying to "sell" anything. I just wanted to share this with other devs who might be feeling like they’re not doing enough—when in reality, they’re doing a LOT. They just aren’t capturing it.&lt;/p&gt;

&lt;p&gt;Anyway, if you feel like giving it a try:&lt;/p&gt;

&lt;p&gt;➡️ &lt;a href="https://devmate.space" rel="noopener noreferrer"&gt;https://devmate.space&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;(it’s free and lightweight and honestly feels kind of calming.)&lt;/p&gt;

&lt;p&gt;Curious—does anyone else keep a dev journal or log? How do you reflect on your daily growth?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>developers</category>
      <category>socialmedia</category>
      <category>programming</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Mon, 16 Jun 2025 11:23:19 +0000</pubDate>
      <link>https://dev.to/adithya-balan/-4mjj</link>
      <guid>https://dev.to/adithya-balan/-4mjj</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/adithya-balan/launching-the-approval-system-on-devmate-take-full-control-of-your-project-collaborations-91" class="crayons-story__hidden-navigation-link"&gt;🚀 Launching the Approval System on DevMate: Take Full Control of Your Project Collaborations&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/adithya-balan" class="crayons-avatar  crayons-avatar--l  "&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%2Fuser%2Fprofile_image%2F2758035%2F086c4248-5a7d-4ebf-8dca-84259d4a707c.png" alt="adithya-balan profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/adithya-balan" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Adithya Balan
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Adithya Balan
                
              
              &lt;div id="story-author-preview-content-2597020" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/adithya-balan" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&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%2Fuser%2Fprofile_image%2F2758035%2F086c4248-5a7d-4ebf-8dca-84259d4a707c.png" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Adithya Balan&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/adithya-balan/launching-the-approval-system-on-devmate-take-full-control-of-your-project-collaborations-91" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Jun 16 '25&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/adithya-balan/launching-the-approval-system-on-devmate-take-full-control-of-your-project-collaborations-91" id="article-link-2597020"&gt;
          🚀 Launching the Approval System on DevMate: Take Full Control of Your Project Collaborations
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/webdev"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;webdev&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/developers"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;developers&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/socialmedia"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;socialmedia&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/devops"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;devops&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/adithya-balan/launching-the-approval-system-on-devmate-take-full-control-of-your-project-collaborations-91" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/exploding-head-daceb38d627e6ae9b730f36a1e390fca556a4289d5a41abb2c35068ad3e2c4b5.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/multi-unicorn-b44d6f8c23cdd00964192bedc38af3e82463978aa611b4365bd33a0f1f4f3e97.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;5&lt;span class="hidden s:inline"&gt; reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/adithya-balan/launching-the-approval-system-on-devmate-take-full-control-of-your-project-collaborations-91#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              Comments


              1&lt;span class="hidden s:inline"&gt; comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            1 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>developers</category>
      <category>socialmedia</category>
      <category>devops</category>
    </item>
    <item>
      <title>🚀 Launching the Approval System on DevMate: Take Full Control of Your Project Collaborations</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Mon, 16 Jun 2025 11:22:40 +0000</pubDate>
      <link>https://dev.to/adithya-balan/launching-the-approval-system-on-devmate-take-full-control-of-your-project-collaborations-91</link>
      <guid>https://dev.to/adithya-balan/launching-the-approval-system-on-devmate-take-full-control-of-your-project-collaborations-91</guid>
      <description>&lt;p&gt;Hey devs! 👋&lt;/p&gt;

&lt;p&gt;Ever had people join your project with good intentions… but totally the wrong skillset?&lt;br&gt;
Or your team chat becomes unmanageable because everyone who clicks “join” gets added?&lt;/p&gt;

&lt;p&gt;We’ve been there. That’s why we’re excited to introduce a new feature on DevMate — the Approval System. 🎉&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🧠 What is DevMate?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In case you're new here, DevMate is a platform built for developers to:&lt;/p&gt;

&lt;p&gt;💡 Discover real-world side projects&lt;br&gt;
🤝 Collaborate based on shared interests and skills&lt;br&gt;
🧰 Build portfolios, open-source tools, or even startups&lt;/p&gt;

&lt;p&gt;Whether you're a beginner or a pro, it’s a space where coding together meets real impact.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅ So, What’s the Approval System?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Previously, anyone could join any project with a click. Great for growth — but not always for quality.&lt;br&gt;
ets real impact.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅ So, What’s the Approval System?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Previously, anyone could join&lt;br&gt;
Now, project creators have full control over who joins their team.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔐 Here’s how it works:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Someone requests to join your project (let’s say Arun 👨‍💻).&lt;br&gt;
You get notified instantly.&lt;br&gt;
View their request — see their profile, skills, and message.&lt;br&gt;
With one click, Accept or Reject.&lt;/p&gt;

&lt;p&gt;DevMate dynamically updates the team list and sends the right notification.&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%2F7bdecef9wkxx61kijqe9.png" 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%2F7bdecef9wkxx61kijqe9.png" alt="Image description" width="800" height="516"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;💡 Why You’ll Love This:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Curate your team based on skills &amp;amp; interest&lt;br&gt;
Avoid spammy or low-effort joiners&lt;br&gt;
Maintain focus, clarity, and speed during collaboration&lt;br&gt;
Build credibility by showing your project is actively managed&lt;/p&gt;

&lt;p&gt;Whether you’re launching a product, contributing to open source, or mentoring learners — you can now make sure the right people join your journey.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>developers</category>
      <category>socialmedia</category>
      <category>devops</category>
    </item>
    <item>
      <title>DevMate is Live🚀</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Wed, 28 May 2025 06:50:41 +0000</pubDate>
      <link>https://dev.to/adithya-balan/devmate-is-live-2l7k</link>
      <guid>https://dev.to/adithya-balan/devmate-is-live-2l7k</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" class="crayons-story__hidden-navigation-link"&gt;DevMate is Live🚀&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/adithya-balan" class="crayons-avatar  crayons-avatar--l  "&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%2Fuser%2Fprofile_image%2F2758035%2F086c4248-5a7d-4ebf-8dca-84259d4a707c.png" alt="adithya-balan profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/adithya-balan" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Adithya Balan
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Adithya Balan
                
              
              &lt;div id="story-author-preview-content-2535708" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/adithya-balan" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&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%2Fuser%2Fprofile_image%2F2758035%2F086c4248-5a7d-4ebf-8dca-84259d4a707c.png" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Adithya Balan&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;May 28 '25&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" id="article-link-2535708"&gt;
          DevMate is Live🚀
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/webdev"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;webdev&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/developers"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;developers&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/socialmedia"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;socialmedia&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/devops"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;devops&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/exploding-head-daceb38d627e6ae9b730f36a1e390fca556a4289d5a41abb2c35068ad3e2c4b5.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/multi-unicorn-b44d6f8c23cdd00964192bedc38af3e82463978aa611b4365bd33a0f1f4f3e97.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;6&lt;span class="hidden s:inline"&gt; reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              Comments


              2&lt;span class="hidden s:inline"&gt; comments&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            1 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>developers</category>
      <category>socialmedia</category>
      <category>devops</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Wed, 28 May 2025 06:49:54 +0000</pubDate>
      <link>https://dev.to/adithya-balan/-4ocn</link>
      <guid>https://dev.to/adithya-balan/-4ocn</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" class="crayons-story__hidden-navigation-link"&gt;DevMate is Live🚀&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/adithya-balan" class="crayons-avatar  crayons-avatar--l  "&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%2Fuser%2Fprofile_image%2F2758035%2F086c4248-5a7d-4ebf-8dca-84259d4a707c.png" alt="adithya-balan profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/adithya-balan" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Adithya Balan
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Adithya Balan
                
              
              &lt;div id="story-author-preview-content-2535708" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/adithya-balan" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&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%2Fuser%2Fprofile_image%2F2758035%2F086c4248-5a7d-4ebf-8dca-84259d4a707c.png" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Adithya Balan&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;May 28 '25&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" id="article-link-2535708"&gt;
          DevMate is Live🚀
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/webdev"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;webdev&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/developers"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;developers&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/socialmedia"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;socialmedia&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/devops"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;devops&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/exploding-head-daceb38d627e6ae9b730f36a1e390fca556a4289d5a41abb2c35068ad3e2c4b5.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/multi-unicorn-b44d6f8c23cdd00964192bedc38af3e82463978aa611b4365bd33a0f1f4f3e97.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;6&lt;span class="hidden s:inline"&gt; reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/adithya-balan/devmate-is-live-4kbh#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              Comments


              2&lt;span class="hidden s:inline"&gt; comments&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            1 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>developers</category>
      <category>socialmedia</category>
      <category>devops</category>
    </item>
    <item>
      <title>DevMate is Live🚀</title>
      <dc:creator>Adithya Balan</dc:creator>
      <pubDate>Wed, 28 May 2025 06:35:34 +0000</pubDate>
      <link>https://dev.to/adithya-balan/devmate-is-live-4kbh</link>
      <guid>https://dev.to/adithya-balan/devmate-is-live-4kbh</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hey Dev Community 👋&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;After months of building solo, testing, debugging, and refining, I’m thrilled to finally launch DevMate — a community-first platform built by a developer, for developers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So what is DevMate?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;DevMate is your all-in-one space to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌍 Connect with fellow developers&lt;/li&gt;
&lt;li&gt;🧠 Share and discover cool projects&lt;/li&gt;
&lt;li&gt;🛠️ Find collaborators for your ideas&lt;/li&gt;
&lt;li&gt;🎯 Join or host developer-focused events (hackathons, webinars, etc.)&lt;/li&gt;
&lt;li&gt;🧵 Build in public and grow with your community&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s raw, it's real, and it's just getting started. Your feedback will shape what comes next.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why I built this:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I’ve always believed developers need more than just tools — we need each other. DevMate is a space to bring that collaboration to life. No noise, just developers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Try it out now:&lt;/strong&gt; &lt;br&gt;
🔗 &lt;a href="https://devmate.space" rel="noopener noreferrer"&gt;https://devmate.space&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📝 Found a bug? Suggest a feature? &lt;a href="https://www.devmate.space/feedback/" rel="noopener noreferrer"&gt;Submit it here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let’s build something awesome together.&lt;br&gt;
Your mate in dev,&lt;br&gt;
Adithya&lt;/p&gt;

&lt;p&gt;📢 We just launched on Product Hunt too!&lt;br&gt;
If you like the mission, i'd love your support:&lt;br&gt;
👉&lt;a href="https://www.producthunt.com/products/devmate-3" rel="noopener noreferrer"&gt;Upvote DevMate on Product Hunt&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>developers</category>
      <category>socialmedia</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
