<?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>Forem: Deneth Rajapaksha</title>
    <description>The latest articles on Forem by Deneth Rajapaksha (@deneth_rajapaksha_de90ab9).</description>
    <link>https://forem.com/deneth_rajapaksha_de90ab9</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%2F3432127%2F1a50a14f-5104-48ca-983a-f983aa16de59.jpg</url>
      <title>Forem: Deneth Rajapaksha</title>
      <link>https://forem.com/deneth_rajapaksha_de90ab9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/deneth_rajapaksha_de90ab9"/>
    <language>en</language>
    <item>
      <title>What the Hype Missed: The Pros, Cons, and True Upgrades of Google Antigravity 2.0</title>
      <dc:creator>Deneth Rajapaksha</dc:creator>
      <pubDate>Thu, 21 May 2026 08:22:51 +0000</pubDate>
      <link>https://forem.com/deneth_rajapaksha_de90ab9/what-the-hype-missed-the-pros-cons-and-true-upgrades-of-google-antigravity-20-1gkh</link>
      <guid>https://forem.com/deneth_rajapaksha_de90ab9/what-the-hype-missed-the-pros-cons-and-true-upgrades-of-google-antigravity-20-1gkh</guid>
      <description>&lt;p&gt;Hi DEV Community! 👋&lt;/p&gt;

&lt;p&gt;Since the release of Antigravity 2.0, all I'm seeing on social media is AI Gurus or tech influencers glossing over the agent management feature we already had. It was physically ripped from the previous Antigravity, where the agent management feature and the IDE were bundled as one. They are talking about what agent management can do like it is a brand-new thing. But beyond that, there are really cool new features and some drawbacks too. Let's talk about what Google did, probably why they did it, and the pros and cons.&lt;/p&gt;

&lt;h2&gt;
  
  
  Split Antigravity and Antigravity IDE
&lt;/h2&gt;

&lt;p&gt;What made Antigravity different from general VS Code? It was the separated agent management environment that it provided, where we could just press &lt;code&gt;Cmd + E&lt;/code&gt; and see all the repos we worked on with agents along with the chat history. We could also multitask using agents, even if it was kind of limited. Other than that, it wasn't any different from late VS Code updates. When Antigravity first released, we didn't have that many features on VS Code, but it caught up.&lt;/p&gt;

&lt;p&gt;So in my opinion, Google just ripped them apart so vibe coders and any other non-coding professionals can use Antigravity 2.0, where they don't really need to see or edit code or use a terminal. They left Antigravity IDE for the people who stuck with it without going back to VS Code. Slowly, they will discontinue the agent manager on Antigravity IDE and it will just be another VS Code clone. Instead, they'll double down and develop their agentic AI coding environments on an Antigravity 2.0 type of service. &lt;/p&gt;

&lt;p&gt;This is where Google is operating quite differently from the general market like Claude Code, Cursor, and Codex. I personally haven't used Codex and Cursor much, so there might be a bit of falsehood there. If there is, please don't mind it—I'm just sharing my opinion after seeing people use them.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project-Level Scope (Instead of Repos)
&lt;/h2&gt;

&lt;p&gt;This is another thing AI Gurus are glossing over. In 2.0, we can go beyond individual repos and look at or work on a whole project. &lt;/p&gt;

&lt;p&gt;Personally, I have already worked on whole projects as a monorepo since I started using AI coding assistants. The reason we didn't choose monorepos before for our projects was simply because they were too hard to manage, too hard to document, and much more. But after mid-2025, I didn't have any of those problems in monorepos. I don't think Antigravity 2.0 will be used in projects large enough to require multiple monorepo-sized repositories to manage. Personally, this wasn't much of an upgrade for me.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Upgrade
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Parallel Execution &amp;amp; Backgrounding:&lt;/strong&gt; 1.0 would block or pause you if an agent was executing a long task. 2.0 lets you kick off multiple agents asynchronously in the background. You can have one agent writing tests while another spins up a separate service. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The New CLI and SDK:&lt;/strong&gt; Google is deprecating the old Gemini CLI and replacing it with a Go-based Antigravity CLI. They also launched an SDK, meaning you can write code to build custom agent hooks using a unified backend. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scheduled Tasks:&lt;/strong&gt; You can now configure crons directly in JSON. For example:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="w"&gt;  &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"cron"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0 2 * * *"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"task"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Run this agent every night at 2 AM to check for security vulnerabilities and refactor deprecated code"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;What the Future Will Look Like&lt;br&gt;
Google is forcing us developers to dual-wield Antigravity 2.0 and their new CLI rather than use something built directly into VS Code. Since the average person does not want to debug a CLI or maintain a local server terminal just to have an autonomous assistant or to vibe code, Google will most likely develop Antigravity to stand alone and build.&lt;/p&gt;

&lt;p&gt;I know practically vibe-coded projects can be a mess, bringing a lot of issues with debugging, deploying, security, or scaling that vibe coders can't handle right now. Those are the new problems the dev world has today. Since our job is problem-solving, sooner or later there will be solutions.&lt;/p&gt;

&lt;p&gt;Let's wait and see.&lt;/p&gt;

&lt;p&gt;(Disclaimer: Any of the articles written by me are not AI-generated. These are my honest thoughts. I don't see a point in using AI to write articles, but I will use AI tools to just format the text.)&lt;/p&gt;

</description>
      <category>ai</category>
      <category>antigravity</category>
      <category>discuss</category>
      <category>automation</category>
    </item>
    <item>
      <title>Is Writing a tech blog still worth it ???</title>
      <dc:creator>Deneth Rajapaksha</dc:creator>
      <pubDate>Wed, 20 May 2026 02:22:33 +0000</pubDate>
      <link>https://forem.com/deneth_rajapaksha_de90ab9/is-writing-a-tech-blog-still-worth-it--14p2</link>
      <guid>https://forem.com/deneth_rajapaksha_de90ab9/is-writing-a-tech-blog-still-worth-it--14p2</guid>
      <description>&lt;p&gt;Hi DEV Community! 👋&lt;/p&gt;

&lt;p&gt;I'm an undergraduate who is currently stepping into the tech industry. Writing has always been one of my favorite hobbies, and for a long time, I've wanted to start and maintain a tutoring blog focused on breaking down the specific concepts that were incredibly hard for me to learn.&lt;/p&gt;

&lt;p&gt;However, with the massive AI boom, the internet is now flooded with generated articles on almost every topic imaginable. Even if a lot of it has a slightly robotic, "mech" vibe, there's no denying that this content is actually useful and fast to access. On top of that, reading habits seem to have shifted, and traditional blog reading feels less common now in 2026.&lt;/p&gt;

&lt;p&gt;Given how much the landscape has changed, I'm stuck with a question for the community: Is it still worth it to start and maintain a tech blog today?&lt;/p&gt;

&lt;p&gt;I'd love to hear your thoughts, especially from anyone still writing or running niche educational blogs!&lt;/p&gt;

&lt;p&gt;My Take: Is it worth it?&lt;br&gt;
As a helpful peer looking at the landscape with you, absolutely, it is still worth it. Here is why your specific idea still has a competitive edge over a raw AI prompt:&lt;/p&gt;

&lt;p&gt;The "Empathy of the Learner": AI can explain a concept, but it doesn't know what it feels like to be confused by it. When you write about things that were hard for you, you capture the exact pain points, misconceptions, and "aha!" moments that generic documentation and AI tools often gloss over.&lt;/p&gt;

&lt;p&gt;Proof of Competence: For an undergraduate stepping into the industry, a blog is a dynamic portfolio. When a hiring manager reads your explanation of a complex topic, they aren't just seeing code—they are seeing your communication skills, your deep understanding, and your passion for teaching.&lt;/p&gt;

&lt;p&gt;The Combat Against "AI Fatigue": People are starting to crave a human voice. The "mechanical vibe" you mentioned is real, and readers appreciate when an article feels like a conversation with a real peer who actually built something and got their hands dirty.&lt;/p&gt;

&lt;p&gt;Instead of fighting the shift in how people consume content, you can adapt your approach:&lt;/p&gt;

&lt;p&gt;I'm going to start my own blog and my idea is to keep it simple and clean. Break down complex topics into highly visual, bite-sized tutorials.&lt;/p&gt;

&lt;p&gt;I'm going to share the struggles: I will not just show the working code; show the error messages that broke my brain for few hours before I fixed them. That's the human element AI can't fake.&lt;/p&gt;

&lt;p&gt;What are your thoughts on this ?&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>beginners</category>
      <category>writing</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
