<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Prathmesh Bhansali — Writing</title>
    <description>A field manual of work, writing, and the systems that quietly run enterprises.</description>
    <link>https://prathmeshbhansali.pages.dev</link>
    <atom:link href="https://prathmeshbhansali.pages.dev/rss.xml" rel="self" type="application/rss+xml" />
    <language>en-gb</language>
    <lastBuildDate>Wed, 11 Jun 2026 00:00:00 GMT</lastBuildDate>
    <item>
      <title>Data Engineering Best Practices for Startups</title>
      <link>https://medium.com/@prathmesh.bhansali/data-engineering-best-practices</link>
      <description>Learn how to build scalable data pipelines that grow with your business</description>
      <content:encoded><![CDATA[<p>Building a data foundation in an early-stage startup is about striking a balance between quick delivery and architectural durability. Avoid the temptation to build complex distributed microservices on day one. Start with simple scripting in Python and lightweight data warehouses like PostgreSQL or Snowflake.</p><p>First, focus on idempotency: every pipeline execution must yield identical results regardless of execution count. This eliminates corrupted target datasets. Second, maintain schema registries; changes in upstream databases shouldn't silently break downstream reporting. Finally, set up basic execution logging and alert hooks via Slack or Email. The goal is a quiet, reliable data flow that builds trust within your team without constant maintenance overhead.</p>]]></content:encoded>
      <pubDate>Mon, 15 Jan 2024 00:00:00 GMT</pubDate>
      <category>Data Engineering</category>
      <category>Python</category>
      <category>AWS</category>
      <guid isPermaLink="false">data-engineering-best-practices</guid>
    </item>
    <item>
      <title>React Performance Optimization: A Complete Guide</title>
      <link>https://dev.to/prathmesh/react-performance-optimization</link>
      <description>Advanced techniques to make your React applications lightning fast</description>
      <content:encoded><![CDATA[<p>React applications start fast but can slow down as components multiply. Optimizing performance requires understanding rendering cycles. Avoid inline objects and arrow function props that trigger unnecessary renders by creating new object references on every render cycle.</p><p>Use React.memo on heavy leaf components to prevent redundant renders when their parent changes state. Wrap complex calculations in useMemo and callback definitions in useCallback. Beyond component rendering, pay attention to layout shifts: size media assets explicitly, leverage CSS transitions instead of JS-driven layouts where possible, and dynamically split large libraries using React.lazy. This ensures faster initial paint speeds and interactive interfaces.</p>]]></content:encoded>
      <pubDate>Mon, 08 Jan 2024 00:00:00 GMT</pubDate>
      <category>React</category>
      <category>Performance</category>
      <category>Frontend</category>
      <guid isPermaLink="false">react-performance-optimization</guid>
    </item>
    <item>
      <title>Building AI-Powered Automation Workflows</title>
      <link>https://medium.com/@prathmesh.bhansali/ai-automation-workflows</link>
      <description>How to leverage AI to automate complex business processes</description>
      <content:encoded><![CDATA[<p>Automating manual workflows with AI goes beyond simple API calls. Real enterprise value is unlocked when you build robust agentic systems that validate their inputs, retry failures, and run asynchronously.</p><p>Start by structuring inputs: use validation libraries like Pydantic in Python to guarantee LLM inputs conform to required types. Second, implement exponential backoff retry cycles for external AI APIs to handle network throttling gracefully. Lastly, build human-in-the-loop validation triggers for high-impact decisions: the system proposes, but a human approves. This ensures security and reliability in mission-critical corporate operations.</p>]]></content:encoded>
      <pubDate>Fri, 22 Dec 2023 00:00:00 GMT</pubDate>
      <category>AI</category>
      <category>Automation</category>
      <category>Machine Learning</category>
      <guid isPermaLink="false">ai-automation-workflows</guid>
    </item>
  </channel>
</rss>
