<?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: Dave Patrick Bulaso</title>
    <description>The latest articles on Forem by Dave Patrick Bulaso (@patrickpatrick27).</description>
    <link>https://forem.com/patrickpatrick27</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%2F3848585%2Fba0c29c8-f07d-45f5-b9e4-33a78773c3c3.png</url>
      <title>Forem: Dave Patrick Bulaso</title>
      <link>https://forem.com/patrickpatrick27</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/patrickpatrick27"/>
    <language>en</language>
    <item>
      <title>How I Built a 24/7 Lead Generation Pipeline with Python and Claude Code at 21</title>
      <dc:creator>Dave Patrick Bulaso</dc:creator>
      <pubDate>Sun, 29 Mar 2026 03:22:18 +0000</pubDate>
      <link>https://forem.com/patrickpatrick27/how-i-built-a-247-lead-generation-pipeline-with-python-and-claude-code-at-21-18mm</link>
      <guid>https://forem.com/patrickpatrick27/how-i-built-a-247-lead-generation-pipeline-with-python-and-claude-code-at-21-18mm</guid>
      <description>&lt;p&gt;I'm 21, based in the Philippines, and I work as a software engineer for a UK consultancy. One of my tasks was building a lead generation system that could find and enrich business profiles automatically.&lt;/p&gt;

&lt;p&gt;Instead of doing it manually, I built a pipeline that runs 24/7 on a $150 mini PC sitting in my room. Here's how.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;My client needed enriched profiles of C-suite executives — names, companies, roles, LinkedIn URLs. Doing this manually would take forever.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Python&lt;/strong&gt; — all scripts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Playwright&lt;/strong&gt; — browser automation for scraping&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; — my primary development tool (I built the entire system with it)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Beelink Mini-S&lt;/strong&gt; — a tiny Ubuntu server running 24/7&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docker&lt;/strong&gt; — for containerized services&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google Sheets API&lt;/strong&gt; — for syncing data to the client's spreadsheet&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;The pipeline runs in stages, each as a separate script:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Scrape&lt;/strong&gt; — Pull company and executive data from public sources (Companies House API, corporate websites)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clean&lt;/strong&gt; — Deduplicate, normalize names, validate data&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enrich&lt;/strong&gt; — Cross-reference with LinkedIn and other data sources&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sync&lt;/strong&gt; — Push to Google Sheets via API&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Each stage runs independently. If one fails, the others keep going. The whole thing runs via cron jobs on the Beelink.&lt;/p&gt;

&lt;h2&gt;
  
  
  Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Built a pipeline that generates &lt;strong&gt;hundreds of profiles per day&lt;/strong&gt; automatically&lt;/li&gt;
&lt;li&gt;Runs &lt;strong&gt;unattended 24/7&lt;/strong&gt; while I sleep&lt;/li&gt;
&lt;li&gt;Total infrastructure cost: ~$3/month in electricity&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Claude Code changed how I work.&lt;/strong&gt; I didn't write this system line by line. I described what I needed, Claude Code generated it, I reviewed and refined. My output speed is probably 3-5x what it would be without it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A $150 mini PC is a legitimate server.&lt;/strong&gt; It runs Ubuntu, Docker, cron jobs, Python scripts — everything a cloud VPS does, but with no monthly bill.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Automation compounds.&lt;/strong&gt; The time I spent building this system paid for itself within the first day. Everything after that is free output.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Setup
&lt;/h2&gt;

&lt;p&gt;I'm currently running:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lead generation pipeline (Python/Playwright)&lt;/li&gt;
&lt;li&gt;Job monitoring bot (scans 3 platforms every 5 minutes)&lt;/li&gt;
&lt;li&gt;Google Workspace integrations (Calendar, Gmail, Sheets)&lt;/li&gt;
&lt;li&gt;AI assistant infrastructure (OpenClaw + Claude Code)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All on one mini PC, all 24/7, all from my room in the Philippines.&lt;/p&gt;




&lt;p&gt;I'm Dave. I build systems that run without me. If you have questions about automation, Claude Code, or running infrastructure on cheap hardware, ask in the comments.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/patrickpatrick27" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; | &lt;a href="https://patrickpatrick27.github.io/Flutter-Web-Portfolio/" rel="noopener noreferrer"&gt;Portfolio&lt;/a&gt; | &lt;a href="https://linkedin.com/in/dave-patrick-bulaso-169b7b307/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>automation</category>
      <category>openclaw</category>
      <category>claudecode</category>
    </item>
  </channel>
</rss>
