<?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: Akshatha S</title>
    <description>The latest articles on DEV Community by Akshatha S (@akshathashivakumar).</description>
    <link>https://dev.to/akshathashivakumar</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%2F3450390%2F3360c3e5-e175-4585-8bc4-76784b412c63.jpeg</url>
      <title>DEV Community: Akshatha S</title>
      <link>https://dev.to/akshathashivakumar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akshathashivakumar"/>
    <language>en</language>
    <item>
      <title>The AGI Race</title>
      <dc:creator>Akshatha S</dc:creator>
      <pubDate>Mon, 18 May 2026 16:17:40 +0000</pubDate>
      <link>https://dev.to/akshathashivakumar/the-agi-race-igl</link>
      <guid>https://dev.to/akshathashivakumar/the-agi-race-igl</guid>
      <description>&lt;p&gt;Every week, another tech CEO takes over my timeline with a big claim about Artificial General Intelligence (AGI) being "just around the corner." &lt;/p&gt;

&lt;p&gt;But if you close Twitter, open Discord, and see what developers are actually building late at night, the conversation sounds different. To engineers, AGI isn't a mysterious, sci-fi concept. It’s an infrastructure issue. It's a software engineering challenge involving computing limits, API costs, and data barriers.&lt;/p&gt;

&lt;p&gt;Moving past the boardroom hype, here is what the developer community is really focused on now:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Moving from Chatbots to Multi-Agent Workflows&lt;br&gt;&lt;br&gt;
We’re leaving the era of single-prompt text boxes. The real focus is on autonomous agent frameworks (using tools like CrewAI, LangGraph, or Phidata). Instead of asking one large model to do everything, we are creating networks of specialized agents that communicate with each other. You might have one agent gather raw data, a second clean it up, a third write the code, and a fourth run vulnerability tests. It’s a straightforward "learn by doing" approach to system design.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Facing the "Energy Wall" and building Small-AGI&lt;br&gt;&lt;br&gt;
Brute-forcing large models needs a huge amount of power, and cloud costs rise quickly. This leads to a strong push for efficiency. Developers are focused on optimizing smaller, open-source models to run locally on edge hardware. By combining lightweight models with smart reasoning loops, you can achieve impressive results without overwhelming power grids.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Native Multimodal Cores&lt;br&gt;&lt;br&gt;
We used to awkwardly link different models together—one for speech-to-text, one for logic, another for output. The newest architectures handle text, code, audio, and live video together in a single token stream. This lets us build systems that instantly understand real-world physics and visual context.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Ultimately, AGI won’t arrive all at once like a light switch flipping. It’s being built piece by piece, one pull request at a time.&lt;/p&gt;

&lt;p&gt;The best way to prepare for the future isn't to wait for the next big model—it's to get involved, build with the tools we have now, and see what breaks.&lt;/p&gt;

</description>
      <category>ai</category>
    </item>
    <item>
      <title>My Cloud Journey Begins: Completing My First Azure Fundamentals Module</title>
      <dc:creator>Akshatha S</dc:creator>
      <pubDate>Sun, 02 Nov 2025 04:01:06 +0000</pubDate>
      <link>https://dev.to/akshathashivakumar/my-cloud-journey-begins-completing-my-first-azure-fundamentals-module-235n</link>
      <guid>https://dev.to/akshathashivakumar/my-cloud-journey-begins-completing-my-first-azure-fundamentals-module-235n</guid>
      <description>&lt;p&gt;I’ve always been fascinated by how cloud technology powers everything around us — from the apps we use daily to the platforms that connect the world.&lt;/p&gt;

&lt;p&gt;For a long time, I wanted to start a blog to document my tech journey, but I kept postponing it. Today, completing my first Azure Fundamentals module finally gave me the push I needed.&lt;/p&gt;

&lt;p&gt;This module helped me understand the core concepts of cloud computing, Azure’s architecture, and real-world use cases that make technology scalable and efficient.&lt;/p&gt;

&lt;p&gt;More than just learning about the cloud, it reminded me that every big journey starts with a small step — and this blog is that step for me.&lt;/p&gt;

&lt;p&gt;I’ll be sharing insights, reflections, and project experiences as I continue learning Azure, Web Development, and DSA, and as I build cool things with my coders club!&lt;/p&gt;

&lt;p&gt;Here’s to learning, growing, and inspiring others to start — no matter how small the step may seem. &lt;/p&gt;

&lt;p&gt;– Akshatha S&lt;/p&gt;

</description>
      <category>cloudcomputing</category>
      <category>microsoftlearn</category>
      <category>azure</category>
      <category>techjourney</category>
    </item>
    <item>
      <title>Weekly Reflection: Small Wins, Big Growth</title>
      <dc:creator>Akshatha S</dc:creator>
      <pubDate>Sun, 07 Sep 2025 02:32:34 +0000</pubDate>
      <link>https://dev.to/akshathashivakumar/weekly-reflection-small-wins-big-growth-5a61</link>
      <guid>https://dev.to/akshathashivakumar/weekly-reflection-small-wins-big-growth-5a61</guid>
      <description>&lt;p&gt;This week was all about honoring my energy, staying curious, and celebrating the tiny breakthroughs that make the learning journey so rewarding.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔍 Debugging the “Search Insert Position” Problem
&lt;/h2&gt;

&lt;p&gt;I tackled the classic array challenge where you find the index to insert a target value in a sorted array.&lt;br&gt;
At first, I got stuck on edge cases—especially when the target was smaller than all elements. But once I visualized the binary search steps and documented the logic in my README, things clicked.&lt;br&gt;
Key takeaway: Writing out misconceptions helps me catch patterns I miss in code.&lt;/p&gt;




&lt;h2&gt;
  
  
  🎨 Sorting Visualizer Upgrade
&lt;/h2&gt;

&lt;p&gt;I added swap and comparison counters to my Java sorting visualizer. Watching the bubble sort crawl while quicksort zipped through was oddly satisfying.&lt;br&gt;
I also tweaked the menu layout for clarity—because beginners (like me!) deserve clean, intuitive tools.&lt;br&gt;
Next goal: Add step-by-step animations for each sorting pass.&lt;/p&gt;




&lt;h2&gt;
  
  
  💬 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;I didn’t do everything I planned—but I did enough.&lt;br&gt;
Enough to learn. Enough to grow. Enough to share.&lt;br&gt;
If you’re a beginner reading this: your small wins matter. Document them. Celebrate them. Share them.&lt;/p&gt;

&lt;p&gt;💬 If you’re on a similar journey, I’d love to hear what you’re working on. Let’s grow together!&lt;/p&gt;

&lt;p&gt;Let’s keep building, one honest reflection at a time 💛&lt;br&gt;
— Akshatha&lt;/p&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>🌼 Learning Out Loud: My First Steps in Web Development</title>
      <dc:creator>Akshatha S</dc:creator>
      <pubDate>Thu, 21 Aug 2025 13:19:19 +0000</pubDate>
      <link>https://dev.to/akshathashivakumar/learning-out-loud-my-first-steps-in-web-development-4okn</link>
      <guid>https://dev.to/akshathashivakumar/learning-out-loud-my-first-steps-in-web-development-4okn</guid>
      <description>&lt;h2&gt;
  
  
  Hello, I'm Akshatha 👋
&lt;/h2&gt;

&lt;p&gt;I'm a beginner web developer currently learning HTML, CSS, and Java. I love documenting my progress with READMEs and reflection journals, and I'm building a portfolio that’s clean, accessible, and beginner-friendly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I’m Writing This
&lt;/h2&gt;

&lt;p&gt;I want to share my journey honestly—mistakes, small wins, and everything in between. I believe that learning out loud helps others feel less alone and more confident in their own path.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I’m Working On
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Building HTML &amp;amp; CSS projects to strengthen my fundamentals
&lt;/li&gt;
&lt;li&gt;Troubleshooting layout and spacing issues
&lt;/li&gt;
&lt;li&gt;Creating Java projects like an ATM Simulator and Student Marks Analyser
&lt;/li&gt;
&lt;li&gt;Writing beginner-friendly documentation and reflections
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What’s Next
&lt;/h2&gt;

&lt;p&gt;I’m expanding my portfolio with more personal touches and drafting blog posts that reflect my learning journey. I’m also exploring color theory and design systems to make my work visually appealing but not overwhelming.&lt;/p&gt;




&lt;h2&gt;
  
  
  Let’s Connect
&lt;/h2&gt;

&lt;p&gt;If you’re a beginner too, or just love honest reflections, I’d love to hear from you. Let’s grow together 🌱&lt;br&gt;
__&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>java</category>
    </item>
  </channel>
</rss>
