<?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: Manthan Bhatt</title>
    <description>The latest articles on Forem by Manthan Bhatt (@manthanbhatt).</description>
    <link>https://forem.com/manthanbhatt</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%2F578721%2F34b5d99d-dd8e-4fc3-b7b8-1420b7e2d6b3.jpg</url>
      <title>Forem: Manthan Bhatt</title>
      <link>https://forem.com/manthanbhatt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/manthanbhatt"/>
    <language>en</language>
    <item>
      <title>Architecture lessons from building software for real business workflows</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Tue, 14 Apr 2026 09:42:20 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/architecture-lessons-from-building-software-for-real-business-workflows-2965</link>
      <guid>https://forem.com/manthanbhatt/architecture-lessons-from-building-software-for-real-business-workflows-2965</guid>
      <description>&lt;p&gt;One thing that stands out when working on real SaaS and operational products is that software complexity rarely comes from code alone.&lt;/p&gt;

&lt;p&gt;It usually comes from workflows.&lt;/p&gt;

&lt;p&gt;I’ve seen this across hospitality software, mobile-first products, and other business systems where one change can affect multiple roles and modules at the same time.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;A feature request often sounds simple at first.&lt;/p&gt;

&lt;p&gt;Something like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;add one more status&lt;/li&gt;
&lt;li&gt;show more data on a screen&lt;/li&gt;
&lt;li&gt;allow one more role to access a feature&lt;/li&gt;
&lt;li&gt;sync one more step into mobile&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But once implementation starts, the real impact appears.&lt;/p&gt;

&lt;p&gt;That “small” change can affect:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;permissions&lt;/li&gt;
&lt;li&gt;reporting&lt;/li&gt;
&lt;li&gt;notifications&lt;/li&gt;
&lt;li&gt;data validation&lt;/li&gt;
&lt;li&gt;mobile UX&lt;/li&gt;
&lt;li&gt;admin workflows&lt;/li&gt;
&lt;li&gt;audit trails&lt;/li&gt;
&lt;li&gt;future integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The technical issue is not just how to code it.&lt;/p&gt;

&lt;p&gt;The real issue is whether the system has clear enough boundaries to absorb the change cleanly.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this changed for me
&lt;/h2&gt;

&lt;p&gt;Over time, I’ve become more careful about architecture before implementation.&lt;/p&gt;

&lt;p&gt;Not in a heavy, over-designed way.&lt;/p&gt;

&lt;p&gt;Just enough to answer a few questions early:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which module should actually own this logic?&lt;/li&gt;
&lt;li&gt;Is this UI behavior leaking business rules into the frontend?&lt;/li&gt;
&lt;li&gt;Will this affect reporting or permissions later?&lt;/li&gt;
&lt;li&gt;Are we building for the workflow, or just the current screen?&lt;/li&gt;
&lt;li&gt;Is this decision going to make the next 10 changes easier or harder?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Those questions have saved me from a lot of avoidable mess later.&lt;/p&gt;

&lt;h2&gt;
  
  
  Patterns I’ve noticed
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. UI-first thinking creates fragile systems
&lt;/h3&gt;

&lt;p&gt;When a product evolves screen by screen, logic often ends up spread across controllers, components, services, and ad hoc conditions.&lt;/p&gt;

&lt;p&gt;It works at first.&lt;/p&gt;

&lt;p&gt;Then every change becomes harder because the business rule no longer has a clear home.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Roles and workflows create hidden complexity
&lt;/h3&gt;

&lt;p&gt;Business apps are rarely single-user systems.&lt;/p&gt;

&lt;p&gt;The same feature can mean different things for an admin, an operator, a manager, or an end customer.&lt;/p&gt;

&lt;p&gt;That is where many “simple” features stop being simple.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Reporting is often the silent architecture test
&lt;/h3&gt;

&lt;p&gt;A lot of systems feel fine until reporting requirements arrive.&lt;/p&gt;

&lt;p&gt;That is usually when weak data modeling and unclear boundaries start to hurt.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Mobile surfaces architecture problems faster
&lt;/h3&gt;

&lt;p&gt;In mobile apps, weak backend structure or unclear workflow design becomes visible quickly.&lt;/p&gt;

&lt;p&gt;Latency, repeated calls, awkward flows, and state issues show up sooner.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I try to do now
&lt;/h2&gt;

&lt;p&gt;My default approach is to think in terms of workflows and system boundaries before implementation.&lt;/p&gt;

&lt;p&gt;Not because architecture diagrams are the goal.&lt;/p&gt;

&lt;p&gt;But because better structure makes iteration easier.&lt;/p&gt;

&lt;p&gt;I try to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;map the workflow before finalizing the shape of the feature&lt;/li&gt;
&lt;li&gt;keep business rules out of presentation layers as much as possible&lt;/li&gt;
&lt;li&gt;think about permissions and reporting earlier&lt;/li&gt;
&lt;li&gt;design for change, not just launch&lt;/li&gt;
&lt;li&gt;avoid shortcuts that make future changes harder&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final thought
&lt;/h2&gt;

&lt;p&gt;The more “real” the software becomes, the less useful it is to think only in terms of features.&lt;/p&gt;

&lt;p&gt;At some point, you have to think in terms of systems.&lt;/p&gt;

&lt;p&gt;That shift has changed how I approach product engineering, especially in SaaS, hospitality, and operational software.&lt;/p&gt;

&lt;p&gt;What has been the biggest architecture lesson in your own product work?&lt;/p&gt;

</description>
      <category>programming</category>
      <category>architecture</category>
      <category>discuss</category>
      <category>mobile</category>
    </item>
    <item>
      <title>Rethinking My Portfolio as a Developer</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Mon, 13 Apr 2026 18:56:16 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/rethinking-my-portfolio-as-a-developer-2l4m</link>
      <guid>https://forem.com/manthanbhatt/rethinking-my-portfolio-as-a-developer-2l4m</guid>
      <description>&lt;p&gt;I’ve been redesigning my portfolio recently, and one thing became very clear to me:&lt;br&gt;
A lot of developer portfolios are built to look nice, but not necessarily to help visitors understand what we actually do.&lt;/p&gt;

&lt;p&gt;For a long time, I treated my portfolio like a place to put:&lt;/p&gt;

&lt;p&gt;My tech stack&lt;br&gt;
some projects&lt;br&gt;
a bit about me&lt;br&gt;
contact links&lt;/p&gt;

&lt;p&gt;But while working on the redesign, I started asking myself a different question:&lt;/p&gt;

&lt;p&gt;If someone lands on my site, will they immediately understand how I can help them?&lt;/p&gt;

&lt;p&gt;That changed how I started thinking about the whole site.&lt;/p&gt;

&lt;p&gt;I’m a full-stack developer, and over the years, I’ve worked on web apps, mobile apps, backend systems, hospitality software, booking engines, admin panels, and product ideas of my own.&lt;/p&gt;

&lt;p&gt;The problem is, when you do many things, it becomes easy for your portfolio to feel scattered.&lt;/p&gt;

&lt;p&gt;You know your work.&lt;br&gt;
You know the effort behind each project.&lt;br&gt;
You know the technical decisions, the tradeoffs, the debugging, the late changes, the small wins.&lt;/p&gt;

&lt;p&gt;But the person visiting your site does not know any of that.&lt;/p&gt;

&lt;p&gt;They just want quick answers:&lt;/p&gt;

&lt;p&gt;Who are you?&lt;br&gt;
What do you build?&lt;br&gt;
Have you built something similar before?&lt;br&gt;
Can you actually help with my project?&lt;/p&gt;

&lt;p&gt;That’s what I’m trying to improve now.&lt;/p&gt;

&lt;p&gt;Instead of making the site feel like a resume, I want it to feel more like a clear and honest introduction to my work.&lt;/p&gt;

&lt;p&gt;I want the site to show:&lt;/p&gt;

&lt;p&gt;What I build&lt;br&gt;
The type of businesses I can help&lt;br&gt;
the kind of problems I’ve solved&lt;br&gt;
and the best way for someone to reach out if they have an idea or a project&lt;/p&gt;

&lt;p&gt;I’m also trying to make it more personal.&lt;/p&gt;

&lt;p&gt;Not “personal” in the sense of adding random details, but personal in the sense that the site should actually feel like me:&lt;br&gt;
someone who likes building practical products, solving real business problems, and creating software that is useful, maintainable, and scalable.&lt;/p&gt;

&lt;p&gt;I’m also exploring adding a guided chatbot/lead form to the site so visitors can describe what they need, explore relevant services or projects, and contact me more easily.&lt;/p&gt;

&lt;p&gt;That feels much closer to what I want the portfolio to do:&lt;br&gt;
not just exist, but actually start conversations.&lt;/p&gt;

&lt;p&gt;This redesign has reminded me that a portfolio is not only about showing work.&lt;/p&gt;

&lt;p&gt;It is also about making your work understandable.&lt;/p&gt;

&lt;p&gt;Still a work in progress, but I’m enjoying the process.&lt;/p&gt;

&lt;p&gt;What’s one thing you think most developer portfolios get wrong?&lt;/p&gt;

&lt;p&gt;Portfolio: &lt;a href="https://manthanbhatt.dev/" rel="noopener noreferrer"&gt;https://manthanbhatt.dev/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>showdev</category>
      <category>astro</category>
      <category>portfolio</category>
    </item>
    <item>
      <title>What code review process do you use for AI-generated code?</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Sun, 12 Apr 2026 19:26:07 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/what-code-review-process-do-you-use-for-ai-generated-code-4n4l</link>
      <guid>https://forem.com/manthanbhatt/what-code-review-process-do-you-use-for-ai-generated-code-4n4l</guid>
      <description>&lt;p&gt;I have been thinking about this a lot lately.&lt;/p&gt;

&lt;p&gt;As AI tools become part of daily development, generating code is getting easier. But reviewing that code properly is still very important.&lt;/p&gt;

&lt;p&gt;I want to learn how other developers handle this.&lt;/p&gt;

&lt;p&gt;When AI generates code for you, what review process do you follow before you keep it?&lt;/p&gt;

&lt;p&gt;I am interested in questions like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Do you review everything line by line?&lt;/li&gt;
&lt;li&gt;Do you trust AI for boilerplate only, or also for business logic?&lt;/li&gt;
&lt;li&gt;What do you check first: correctness, security, performance, readability, or architecture?&lt;/li&gt;
&lt;li&gt;Do you use a checklist?&lt;/li&gt;
&lt;li&gt;How do you catch subtle bugs or bad assumptions?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;My rough thinking is something like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;understand the code fully before keeping it&lt;/li&gt;
&lt;li&gt;verify logic against requirements&lt;/li&gt;
&lt;li&gt;test happy path and edge cases&lt;/li&gt;
&lt;li&gt;check security and performance concerns&lt;/li&gt;
&lt;li&gt;refactor to match project standards&lt;/li&gt;
&lt;li&gt;never merge code only because “it works”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I would really like to hear practical workflows from real developers and teams.&lt;/p&gt;

&lt;p&gt;What is your process for reviewing AI-generated code?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>discuss</category>
      <category>development</category>
    </item>
    <item>
      <title>DevLaunch - I built a Vercel-inspired dev server manager</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Fri, 20 Mar 2026 07:03:25 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/devlaunch-i-built-a-vercel-inspired-dev-server-manager-42ip</link>
      <guid>https://forem.com/manthanbhatt/devlaunch-i-built-a-vercel-inspired-dev-server-manager-42ip</guid>
      <description>&lt;p&gt;Every developer who works on multiple projects locally knows the pain.&lt;br&gt;
You've got an Ionic app on port 8101, a Laravel API on 8000, and an Angular portal on 4200. That's three terminal tabs, three commands to remember, three processes to track, and the moment you close a terminal by accident, you're back to square one. I built DevLaunch to fix exactly that.&lt;/p&gt;
&lt;h2&gt;
  
  
  What is DevLaunch?
&lt;/h2&gt;

&lt;p&gt;DevLaunch is a single-file PHP dev server manager with a Vercel-inspired dark UI. You add your local projects, assign them a command and port, and then start, stop, and monitor them all from one browser tab.&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%2Fzttnn3jg6krymt82nwaf.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%2Fzttnn3jg6krymt82nwaf.png" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;No npm install. No composer. No build step. Drop one index.php into any folder served by PHP and open it in your browser.&lt;/p&gt;
&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Single file: the entire app (PHP backend + HTML/CSS/JS frontend) lives in one index.php&lt;/li&gt;
&lt;li&gt;Add any project: browse your filesystem server-side (yes, including Windows drives like D:) to select a project folder; the name is auto-detected&lt;/li&gt;
&lt;li&gt;Any command: ionic s, npm run dev, ng serve, vite, php artisan serve — whatever you run in the terminal&lt;/li&gt;
&lt;li&gt;Custom ports: assign a port per project; the --port flag is auto-appended if not already in your command&lt;/li&gt;
&lt;li&gt;Start/Stop: launches as a real detached background process, kills the full process tree on stop (no zombie node processes)&lt;/li&gt;
&lt;li&gt;Live log viewer: tail stdout/stderr from any running project in a slide-up terminal panel&lt;/li&gt;
&lt;li&gt;Running detection: auto-detects whether a process is still alive after page refresh or system events&lt;/li&gt;
&lt;li&gt;Windows + Linux + macOS: works everywhere PHP runs&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Quick Start
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/ManthanBhatt/dev-launch.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Drop the folder inside your XAMPP/Laragon htdocs (or anywhere served by PHP), then open:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;http://localhost/dev-launch/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or use PHP's built-in server:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;dev-launch
php &lt;span class="nt"&gt;-S&lt;/span&gt; localhost:8080
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;The whole thing is a single PHP file that serves two roles depending on the request:&lt;br&gt;
As an API - when a request comes in with the X-DevLaunch-API header, PHP handles actions like start_project, stop_project, browse_dirs, and get_log. Project data is stored in a plain devlaunch_data.json file, and running PIDs are tracked in devlaunch_pids.json.&lt;br&gt;
As the UI - for every other request, PHP outputs the full HTML page with embedded CSS and JavaScript.&lt;br&gt;
Starting a project uses proc_open() to launch the command as a real detached background process in the correct working directory. The process writes its output to a temp log file that the log viewer polls every 2 seconds.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="nv"&gt;$process&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;proc_open&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$p&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;'cmd'&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt; &lt;span class="nv"&gt;$descriptors&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;$pipes&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;$p&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;'path'&lt;/span&gt;&lt;span class="p"&gt;]);&lt;/span&gt;
&lt;span class="nv"&gt;$status&lt;/span&gt;  &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;proc_get_status&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$process&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nv"&gt;$pid&lt;/span&gt;     &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;int&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="nv"&gt;$status&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;'pid'&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;On Windows, it wraps the command in cmd /C so tools like ionic, npm, and ng resolve correctly from PATH. Stopping a project calls taskkill /F /T to kill the entire process tree - no orphan Node processes lingering in Task Manager.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why PHP?
&lt;/h2&gt;

&lt;p&gt;Honestly, the goal was zero setup. PHP is already running on most local dev environments - XAMPP, Laragon, MAMP, or the built-in server. No runtime to install, no package manager, no compilation. You just put a file somewhere and it runs.&lt;br&gt;
Single-file PHP also means the whole thing is trivially auditable - there are no hidden dependencies, no transitive packages, nothing that phones home. It's ~1,200 lines of code you can read in one sitting.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;Some ideas I'm thinking about for future versions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Environment variable editor per project&lt;/li&gt;
&lt;li&gt;Auto-restart on crash with configurable retry&lt;/li&gt;
&lt;li&gt;Multiple commands per project (e.g. spin up a frontend + backend simultaneously with one click)&lt;/li&gt;
&lt;li&gt;Export/import project list for sharing across machines&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it / Contribute
&lt;/h2&gt;

&lt;p&gt;The project is MIT licensed and open source on GitHub:&lt;br&gt;
&lt;a href="https://github.com/ManthanBhatt/dev-launch" rel="noopener noreferrer"&gt;github.com/ManthanBhatt/dev-launch&lt;/a&gt;&lt;br&gt;
If you work on multiple local projects and find this useful, a ⭐ on GitHub goes a long way. PRs, issues, and feature ideas are all welcome.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Built out of frustration with terminal tab juggling. Hope it helps someone else too.Share&lt;/em&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>devtool</category>
    </item>
    <item>
      <title>What's up?</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Sun, 28 Jul 2024 14:11:18 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/whats-up-5bm9</link>
      <guid>https://forem.com/manthanbhatt/whats-up-5bm9</guid>
      <description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I hope everyone is having a great relaxing weekend.&lt;/p&gt;

&lt;p&gt;I have created this post in intent to connect with the dev all over the world.&lt;/p&gt;

&lt;p&gt;You can share things about yourself and things you have been working on or anything that comes to your mind.&lt;/p&gt;

&lt;p&gt;I'll start with myself.&lt;/p&gt;

&lt;p&gt;I'm Manthan Bhatt. I have been working as a Full stack developer. I love playing games with friends 😁 and explore places with great coffee ☕&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>writing</category>
      <category>watercooler</category>
    </item>
    <item>
      <title>Boost Your Productivity as a Developer with OpenAI's ChatGPT</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Fri, 10 Feb 2023 05:32:28 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/boost-your-productivity-as-a-developer-with-openais-chatgpt-1n5l</link>
      <guid>https://forem.com/manthanbhatt/boost-your-productivity-as-a-developer-with-openais-chatgpt-1n5l</guid>
      <description>&lt;h2&gt;
  
  
  Introduction:
&lt;/h2&gt;

&lt;p&gt;As a developer, you're constantly searching for ways to increase your productivity and get more done in less time. With the ever-growing demands of the tech industry, it's more important than ever to stay ahead of the curve and work efficiently. Fortunately, OpenAI's ChatGPT provides a solution that can help you increase your productivity and streamline your workflow. In this blog post, we'll explore how ChatGPT can help you boost your productivity as a developer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Automated Code Generation:
&lt;/h2&gt;

&lt;p&gt;ChatGPT can be trained to generate code based on specific programming languages and frameworks. This can save you hours of time and effort, allowing you to focus on more important tasks. ChatGPT can also generate code snippets, making it easier to quickly implement new features and functionalities.&lt;/p&gt;

&lt;h2&gt;
  
  
  Documentation and Comments Generation:
&lt;/h2&gt;

&lt;p&gt;ChatGPT can also be trained to generate documentation and comments for your code, making it easier to understand and maintain your code over time. This can save you time and effort in the long run, as well as improving the overall quality of your code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Research and Data Collection:
&lt;/h2&gt;

&lt;p&gt;ChatGPT can be used to perform research and data collection, allowing you to gather information on specific topics and technologies in a fraction of the time it would take you to do it manually. This can save you hours of time and effort, giving you more time to focus on your coding and development work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Error Checking:
&lt;/h2&gt;

&lt;p&gt;ChatGPT can also be used to perform error checking and debugging, reducing the amount of time and effort you need to spend on this task. By automating this process, you can spend more time on other important tasks, such as coding and development.&lt;/p&gt;

&lt;h2&gt;
  
  
  Collaboration:
&lt;/h2&gt;

&lt;p&gt;ChatGPT can be used to collaborate with other developers and team members, allowing you to communicate and share information in real-time. This can improve communication and collaboration within your team, making it easier to get things done and stay on track.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion:
&lt;/h2&gt;

&lt;p&gt;In conclusion, ChatGPT is a game-changer for developers looking to increase their productivity and streamline their workflow. With its ability to automate code generation, perform error checking, and improve collaboration, ChatGPT is a must-have tool for anyone looking to boost their productivity and get more done in less time. So, why not give it a try and see how it can help you take your productivity to the next level?&lt;/p&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
      <category>ai</category>
      <category>chatgpt</category>
    </item>
    <item>
      <title>5 Reasons Why GraphQL is the Future of API Development</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Thu, 09 Feb 2023 03:45:25 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/5-reasons-why-graphql-is-the-future-of-api-development-jgp</link>
      <guid>https://forem.com/manthanbhatt/5-reasons-why-graphql-is-the-future-of-api-development-jgp</guid>
      <description>&lt;h2&gt;
  
  
  Introduction:
&lt;/h2&gt;

&lt;p&gt;API development is a crucial aspect of modern web development, as it allows communication between the frontend and the backend. Over the past few years, the popularity of GraphQL has skyrocketed, making it one of the most talked about topics in the tech industry. In this blog post, we will discuss five reasons why GraphQL is the future of API development.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Flexibility: GraphQL offers a highly flexible approach to API development, as it allows developers to request exactly the data they need. This means that the client can specify exactly what information it requires, resulting in a more efficient and effective API.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ease of use: GraphQL is incredibly easy to use, as it eliminates the need for multiple round trips to the server. This results in a much simpler and faster API, as well as reducing the amount of code required to make API calls.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Strong type system: GraphQL has a strong type system that allows developers to define the structure of the data being transmitted between the client and server. This type system helps catch potential errors early in the development process, reducing the likelihood of bugs and unexpected behavior.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Improved performance: With GraphQL, clients are able to fetch multiple resources in a single request, as opposed to multiple requests in traditional REST APIs. This can greatly improve performance and reduce server load, especially in cases where a lot of data is needed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Growing community: GraphQL has a growing and passionate community of developers, who are constantly contributing to its development and improvement. With a large number of companies and projects already using GraphQL, it has a bright future and is here to stay.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Conclusion:
&lt;/h2&gt;

&lt;p&gt;In conclusion, GraphQL offers numerous benefits over traditional REST APIs, including greater flexibility, ease of use, a strong type system, improved performance, and a growing community of developers. As the technology continues to evolve and mature, it's likely that we'll see an even greater adoption of GraphQL in the future. If you haven't already, it's time to start exploring the benefits of GraphQL and see how it can improve your API development process.&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>plugins</category>
      <category>ai</category>
    </item>
    <item>
      <title>Why Ionic and Capacitor are the Future of Cross-Platform Mobile Development</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Wed, 08 Feb 2023 07:38:48 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/why-ionic-and-capacitor-are-the-future-of-cross-platform-mobile-development-10l9</link>
      <guid>https://forem.com/manthanbhatt/why-ionic-and-capacitor-are-the-future-of-cross-platform-mobile-development-10l9</guid>
      <description>&lt;h2&gt;
  
  
  Introduction:
&lt;/h2&gt;

&lt;p&gt;Mobile development has come a long way in recent years, with a multitude of options available for building cross-platform apps. One such framework that has gained a lot of attention lately is Ionic, along with its accompanying runtime Capacitor. In this blog post, we'll explore why Ionic and Capacitor are the future of cross-platform mobile development.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Native Experience: Ionic and Capacitor make it possible to build apps that deliver a truly native experience on both iOS and Android platforms. With the ability to access native device features and functionality, such as camera, accelerometer, and more, Ionic and Capacitor apps are indistinguishable from native apps.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Code Reusability: Ionic allows developers to write code once and run it on multiple platforms, reducing the time and effort required to build and maintain separate codebases for iOS and Android. This can save a significant amount of time and money, especially for small teams and startups.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Performance: With Capacitor as the underlying runtime, Ionic apps have the performance and speed of native apps, without sacrificing the ease of development offered by cross-platform frameworks. Capacitor's architecture allows it to bridge the gap between web and native, providing the best of both worlds.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Large Community: Ionic has a large and active community of developers, who constantly contribute to its development and improvement. With over 5 million developers worldwide, the Ionic community is a valuable resource for anyone looking to build cross-platform apps.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Plugins and Tools: Ionic and Capacitor come with a vast array of plugins and tools, allowing developers to easily add functionality and enhance their apps. From push notifications to geolocation, these plugins make it simple to add native-like features to your app.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Conclusion:
&lt;/h2&gt;

&lt;p&gt;In conclusion, Ionic and Capacitor are the future of cross-platform mobile development. With the ability to deliver a truly native experience, save time and effort with code reusability, offer high performance, a large community of developers, and a range of plugins and tools, it's no wonder why so many developers are choosing Ionic and Capacitor. Whether you're a seasoned developer or just starting out, now is the perfect time to dive into Ionic and Capacitor and start building amazing cross-platform apps.&lt;/p&gt;

</description>
      <category>announcement</category>
      <category>community</category>
      <category>writing</category>
      <category>royalties</category>
    </item>
    <item>
      <title>How I can go to the next level?</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Wed, 14 Sep 2022 06:12:44 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/how-i-can-go-to-the-next-level-1j72</link>
      <guid>https://forem.com/manthanbhatt/how-i-can-go-to-the-next-level-1j72</guid>
      <description>&lt;p&gt;Working as software developers many times we have questions in mind about how I can move to the next level. Or what new skill should I learn so that I can move forward in my career?&lt;/p&gt;

&lt;p&gt;If we don't have a clear idea or vision of what to do then we feel stuck while working which became a bottleneck for our success in our career life.&lt;/p&gt;

&lt;p&gt;Let's discuss some potential ways of how we can move forward when you get to a certain level in your career when you don't have a clear vision of what to do now.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Suggest me something for reading</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Tue, 23 Aug 2022 05:53:21 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/suggest-me-something-for-reading-3c63</link>
      <guid>https://forem.com/manthanbhatt/suggest-me-something-for-reading-3c63</guid>
      <description>&lt;p&gt;I want to learn the fundamentals of programming and other concepts from the base with the following topics:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Data Structure and Algorithms&lt;/li&gt;
&lt;li&gt;System Design&lt;/li&gt;
&lt;li&gt;AI&lt;/li&gt;
&lt;li&gt;ML&lt;/li&gt;
&lt;li&gt;Cloud&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Please do suggest me material which will be great to learn the things.&lt;br&gt;
I'm also open to video material or other type of content&lt;/p&gt;

&lt;p&gt;Feel free to share your experience while learning the mentioned thing which will be helpful to me and people encountering this post.&lt;/p&gt;

&lt;p&gt;Let's discuss it!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>programming</category>
      <category>discuss</category>
      <category>algorithms</category>
    </item>
    <item>
      <title>What things you do for starting new project?</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Sat, 06 Aug 2022 06:56:12 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/what-things-you-do-for-starting-new-project-4k7o</link>
      <guid>https://forem.com/manthanbhatt/what-things-you-do-for-starting-new-project-4k7o</guid>
      <description>&lt;p&gt;I was curious about what a developer do when they start any new project that they are interest in building.&lt;/p&gt;

&lt;p&gt;Are there any rituals that they follow for starting new project?&lt;/p&gt;

&lt;p&gt;How they plane the initial development for the project?&lt;/p&gt;

&lt;p&gt;Let's discuss it!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Implement Binary Search Using JavaScript</title>
      <dc:creator>Manthan Bhatt</dc:creator>
      <pubDate>Tue, 12 Jul 2022 04:36:59 +0000</pubDate>
      <link>https://forem.com/manthanbhatt/implement-binary-search-using-javascript-34d7</link>
      <guid>https://forem.com/manthanbhatt/implement-binary-search-using-javascript-34d7</guid>
      <description>&lt;p&gt;Binary search technique is used to search for any element in a sorted array using divide and conquer approach.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/**
 * Binary Search
 * Note - It works only for the sorted array. start and end are left and right of the array.
 *
 * Recursive Approach
 * - If starting index is greater than the ending index return false
 * - Compute the middle index.
 * - Compare the middle element with the number x. If equal return true.
 * - If greater, call the same function with ending index = middle-1 and repeat step 1.
 * - If smaller, call the same function with starting index = middle+1 and repeat step 1.
 * 
 * Time Complexity: O(logN)
 * Auxiliary Space: O(1)
 */

const arr = [1, 3, 5, 7, 8, 9];

const binarySearchRecursive = (arr, val, start, end) =&amp;gt; {
    if (start &amp;gt; end) return false;

    const mid = Math.floor((start + end) / 2);

    if (arr[mid] === val) return mid;

    const left = arr[mid] &amp;gt; val ? start : mid + 1;
    const right = arr[mid] &amp;gt; val ? mid - 1 : end;

    return binarySearchRecursive(arr, val, left, right);
}

console.log(binarySearchRecursive(arr, 5, 0, arr.length - 1)); // -&amp;gt; 2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>javascript</category>
      <category>algorithms</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
