<?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: Ganesh Tidake</title>
    <description>The latest articles on Forem by Ganesh Tidake (@ganesh_tidake).</description>
    <link>https://forem.com/ganesh_tidake</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%2F3586666%2Ffb88c8b7-5e00-4b7f-9a50-e0fe42283397.webp</url>
      <title>Forem: Ganesh Tidake</title>
      <link>https://forem.com/ganesh_tidake</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ganesh_tidake"/>
    <language>en</language>
    <item>
      <title>Exploring Next.js 16 File System Conventions</title>
      <dc:creator>Ganesh Tidake</dc:creator>
      <pubDate>Sun, 02 Nov 2025 06:09:07 +0000</pubDate>
      <link>https://forem.com/ganesh_tidake/exploring-nextjs-16-file-system-conventions-2akk</link>
      <guid>https://forem.com/ganesh_tidake/exploring-nextjs-16-file-system-conventions-2akk</guid>
      <description>&lt;h2&gt;
  
  
  📂 Exploring Next.js 16 File System Conventions
&lt;/h2&gt;

&lt;p&gt;I recently started playing with &lt;strong&gt;Next.js 16 experimental features&lt;/strong&gt;, especially the new file-system conventions.&lt;br&gt;&lt;br&gt;
At first glance, it might seem like a small shift — but once you dive in, you realize how much cleaner the developer experience has become.&lt;/p&gt;


&lt;h3&gt;
  
  
  🧱 Unified &lt;code&gt;app/&lt;/code&gt; directory
&lt;/h3&gt;

&lt;p&gt;The entire app now lives under &lt;code&gt;app/&lt;/code&gt;, including &lt;strong&gt;routes, layouts, loading, and API endpoints.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
app/
├─ layout.tsx
├─ page.tsx
├─ api/
│   ├─ users/
│   │   └─ route.ts

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;br&gt;
`&lt;/p&gt;

&lt;p&gt;No more &lt;code&gt;pages/api&lt;/code&gt;. Everything feels connected and much easier to reason about.&lt;/p&gt;




&lt;h3&gt;
  
  
  ⚙️ Co-located Components
&lt;/h3&gt;

&lt;p&gt;You can mix server and client components in the same directory.&lt;br&gt;&lt;br&gt;
The compiler figures it out automatically based on context — finally, no more “use client” chaos everywhere.&lt;/p&gt;




&lt;h3&gt;
  
  
  🧩 &lt;code&gt;route.config.ts&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;Every segment can now have its own small configuration file:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;code&gt;ts&lt;br&gt;
export const revalidate = 30&lt;br&gt;
export const dynamicParams = "auto"&lt;br&gt;
&lt;/code&gt;&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;p&gt;That means cleaner routing rules without global clutter.&lt;/p&gt;




&lt;h3&gt;
  
  
  💬 My takeaway
&lt;/h3&gt;

&lt;p&gt;Next.js 16 feels like what we’ve been waiting for since the App Router arrived.&lt;br&gt;
File-system-driven architecture finally feels &lt;strong&gt;consistent&lt;/strong&gt; and &lt;strong&gt;predictable.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I wrote a deeper breakdown on my blog if you want full examples and structure visuals 👇&lt;br&gt;
👉 &lt;a href="https://ganeshtidake.site/blog/nextjs-16-file-system-conventions" rel="noopener noreferrer"&gt;ganeshtidake.site/blog/nextjs-16-file-system-conventions&lt;/a&gt;&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>react</category>
      <category>webdev</category>
      <category>vercel</category>
    </item>
    <item>
      <title>Next.js vs Remix 2025 — Which One Wins?</title>
      <dc:creator>Ganesh Tidake</dc:creator>
      <pubDate>Sat, 01 Nov 2025 05:03:02 +0000</pubDate>
      <link>https://forem.com/ganesh_tidake/nextjs-vs-remix-2025-which-one-wins-4np5</link>
      <guid>https://forem.com/ganesh_tidake/nextjs-vs-remix-2025-which-one-wins-4np5</guid>
      <description>&lt;p&gt;React frameworks are evolving — and &lt;strong&gt;Next.js&lt;/strong&gt; and &lt;strong&gt;Remix&lt;/strong&gt; are leading the pack.&lt;/p&gt;

&lt;h3&gt;
  
  
  ⚙️ Key Takeaways
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 15&lt;/strong&gt;: Turbopack, Server Actions, AI SDK integration.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Remix 3&lt;/strong&gt;: Native SSR, portability, edge-first focus.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Verdict:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Next.js dominates enterprise scale, Remix thrives in flexibility and simplicity.&lt;/p&gt;

&lt;p&gt;👉 Full analysis → &lt;a href="https://ganeshtidake.site/blog/nextjs-vs-remix-2025" rel="noopener noreferrer"&gt;ganeshtidake.site/blog/nextjs-vs-remix-2025&lt;/a&gt;&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>remix</category>
      <category>react</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Building Smarter Apps: The Rise of AI Agent Frameworks in 2025</title>
      <dc:creator>Ganesh Tidake</dc:creator>
      <pubDate>Fri, 31 Oct 2025 04:48:19 +0000</pubDate>
      <link>https://forem.com/ganesh_tidake/building-smarter-apps-the-rise-of-ai-agent-frameworks-in-2025-293a</link>
      <guid>https://forem.com/ganesh_tidake/building-smarter-apps-the-rise-of-ai-agent-frameworks-in-2025-293a</guid>
      <description>&lt;p&gt;AI agents are evolving fast — and frameworks like &lt;strong&gt;LangChain&lt;/strong&gt;, &lt;strong&gt;AutoGen&lt;/strong&gt;, and &lt;strong&gt;OpenAI’s Apps SDK&lt;/strong&gt; are leading the charge.&lt;/p&gt;

&lt;p&gt;These tools help you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Build multi-agent systems
&lt;/li&gt;
&lt;li&gt;Automate reasoning workflows
&lt;/li&gt;
&lt;li&gt;Integrate AI with APIs and databases
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔧 Real-World Use
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;SaaS copilots that manage data
&lt;/li&gt;
&lt;li&gt;Automated report generators
&lt;/li&gt;
&lt;li&gt;Multi-step AI workflows with human feedback
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’ve been experimenting with AI automation myself, and the productivity jump is massive.&lt;/p&gt;

&lt;p&gt;👉 Full breakdown with code examples: &lt;a href="https://ganeshtidake.site/blog/rise-of-ai-agent-frameworks-how-developers-are-building-the-next-generation-of-autonomous-apps" rel="noopener noreferrer"&gt;ganeshtidake.site/blog/ai-agent-frameworks&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>development</category>
      <category>autogen</category>
      <category>langchain</category>
    </item>
    <item>
      <title>AI-Powered UI Development in Android Studio Narwhal — My Hands-On with Gemini 2.5</title>
      <dc:creator>Ganesh Tidake</dc:creator>
      <pubDate>Thu, 30 Oct 2025 04:15:07 +0000</pubDate>
      <link>https://forem.com/ganesh_tidake/ai-powered-ui-development-in-android-studio-narwhal-my-hands-on-with-gemini-25-1mg4</link>
      <guid>https://forem.com/ganesh_tidake/ai-powered-ui-development-in-android-studio-narwhal-my-hands-on-with-gemini-25-1mg4</guid>
      <description>&lt;p&gt;🚀 Google just turned Android Studio into a full-blown AI design assistant.&lt;/p&gt;

&lt;p&gt;Android Studio &lt;strong&gt;Narwhal&lt;/strong&gt; now includes &lt;strong&gt;Gemini 2.5&lt;/strong&gt;, which doesn’t just autocomplete code — it actually &lt;em&gt;designs UIs with you&lt;/em&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  🧩 What Gemini 2.5 Does
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Refactors XML and Compose layouts
&lt;/li&gt;
&lt;li&gt;Suggests color &amp;amp; spacing fixes per Material 3
&lt;/li&gt;
&lt;li&gt;Explains layout issues in plain English
&lt;/li&gt;
&lt;li&gt;Detects unused or duplicate resources
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“This TextView’s hardcoded color might cause contrast issues — use theme attributes instead.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It’s not just a productivity tool — it’s a mini mentor.&lt;/p&gt;




&lt;h3&gt;
  
  
  ⚡ Why This Changes Everything
&lt;/h3&gt;

&lt;p&gt;We’ve used tools like &lt;strong&gt;Copilot&lt;/strong&gt; or &lt;strong&gt;ChatGPT&lt;/strong&gt; in editors — but &lt;strong&gt;Gemini inside Android Studio&lt;/strong&gt; understands &lt;em&gt;UI context&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Real-time layout validation
&lt;/li&gt;
&lt;li&gt;Smart Compose optimization
&lt;/li&gt;
&lt;li&gt;Auto-refactor suggestions
&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  💬 My Verdict
&lt;/h3&gt;

&lt;p&gt;I usually rely on &lt;strong&gt;TailwindCSS + Next.js&lt;/strong&gt; for front-end dev, but Android’s AI workflow feels a generation ahead in tooling experience.&lt;br&gt;&lt;br&gt;
If they ever bridge Gemini to web frameworks, things will get wild.&lt;/p&gt;




&lt;p&gt;👉 Full breakdown with examples → &lt;a href="https://ganeshtidake.site/blog/ai-powered-ui-development-how-android-studio-narwhal-gemini-25-are-changing-android-app-design" rel="noopener noreferrer"&gt;https://ganeshtidake.site/blog&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What do you think — is AI the future of UI design, or will it kill creativity?&lt;/p&gt;

</description>
      <category>android</category>
      <category>ai</category>
      <category>development</category>
      <category>ui</category>
    </item>
    <item>
      <title>Next.js 16 — Key Changes That Make Your App Faster (and How to Migrate)</title>
      <dc:creator>Ganesh Tidake</dc:creator>
      <pubDate>Wed, 29 Oct 2025 06:57:25 +0000</pubDate>
      <link>https://forem.com/ganesh_tidake/nextjs-16-key-changes-that-make-your-app-faster-and-how-to-migrate-1j2b</link>
      <guid>https://forem.com/ganesh_tidake/nextjs-16-key-changes-that-make-your-app-faster-and-how-to-migrate-1j2b</guid>
      <description>&lt;p&gt;Next.js 16 brings smarter caching, Turbopack as the default, and React Compiler integration — all designed to improve DX and runtime performance. I wrote a deep-dive with migration tips and code examples on my blog.&lt;/p&gt;

&lt;p&gt;Read the full post (canonical): &lt;strong&gt;&lt;a href="https://ganeshtidake.site/blog/nextjs-16-the-future-of-react-development-has-arrived" rel="noopener noreferrer"&gt;https://ganeshtidake.site/blog/nextjs-16-the-future-of-react-development-has-arrived&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;use cache for deterministic reads&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Enable React Compiler to reduce re-renders&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Use Turbopack for fast dev builds&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In the full post I show code examples and a migration checklist. Happy to answer questions!&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
