<?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>DEV Community: Syed Jamaluddin</title>
    <description>The latest articles on DEV Community by Syed Jamaluddin (@informyed).</description>
    <link>https://dev.to/informyed</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%2F3889563%2F23999813-114b-4f0a-9c1d-fe7a39f5159c.png</url>
      <title>DEV Community: Syed Jamaluddin</title>
      <link>https://dev.to/informyed</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/informyed"/>
    <language>en</language>
    <item>
      <title>How I Built and Launched a Developer Tool in One Weekend from a Chromebook</title>
      <dc:creator>Syed Jamaluddin</dc:creator>
      <pubDate>Mon, 20 Apr 2026 19:18:13 +0000</pubDate>
      <link>https://dev.to/informyed/how-i-built-and-launched-a-developer-tool-in-one-weekend-from-a-chromebook-3om3</link>
      <guid>https://dev.to/informyed/how-i-built-and-launched-a-developer-tool-in-one-weekend-from-a-chromebook-3om3</guid>
      <description>&lt;p&gt;I'm not a professional developer. But I had an idea on Friday night and &lt;br&gt;
by Sunday I had a live product at troubleshooting.sh. Here's exactly &lt;br&gt;
how it happened.&lt;/p&gt;
&lt;h2&gt;
  
  
  The problem I kept running into
&lt;/h2&gt;

&lt;p&gt;Every time I hit a cryptic error I'd copy-paste it into ChatGPT and get &lt;br&gt;
back something like "make sure your variable is defined." Technically &lt;br&gt;
correct. Completely useless.&lt;/p&gt;

&lt;p&gt;I wanted something that treated me like a developer — told me exactly &lt;br&gt;
why the error happened, gave me the precise fix, and explained the &lt;br&gt;
reasoning so I didn't hit the same wall again.&lt;/p&gt;
&lt;h2&gt;
  
  
  The idea
&lt;/h2&gt;

&lt;p&gt;A single-purpose tool. Paste your error, pick your stack, get back:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Root cause&lt;/strong&gt; — the actual reason it happened&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Exact fix&lt;/strong&gt; — the command or code change, not a vague pointer&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Why it works&lt;/strong&gt; — the underlying explanation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prevention&lt;/strong&gt; — one tip so you don't hit it again&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it. No dashboard, no account, no bloat.&lt;/p&gt;
&lt;h2&gt;
  
  
  The unexpected constraint: I only had a Chromebook
&lt;/h2&gt;

&lt;p&gt;No MacBook. No Windows machine. Just a Chromebook.&lt;/p&gt;

&lt;p&gt;Turns out Chromebooks ship with a built-in Linux container called &lt;br&gt;
Penguin. You enable it in settings, open a terminal, and suddenly &lt;br&gt;
you have a full Debian environment. I had no idea this existed until &lt;br&gt;
I needed it.&lt;/p&gt;

&lt;p&gt;From there the setup was straightforward:&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;mkdir &lt;/span&gt;troubleshooting-sh &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;cd &lt;/span&gt;troubleshooting-sh
npm init &lt;span class="nt"&gt;-y&lt;/span&gt;
npm &lt;span class="nb"&gt;install &lt;/span&gt;express anthropic dotenv
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The stack
&lt;/h2&gt;

&lt;p&gt;I kept it as simple as possible:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Node.js + Express&lt;/strong&gt; — backend server&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude API&lt;/strong&gt; — the AI that actually fixes the errors&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vanilla HTML/CSS/JS&lt;/strong&gt; — no framework, one file frontend&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hostinger&lt;/strong&gt; — hosting via Git deploy&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt; — version control and deployment pipeline&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No database. No auth. No unnecessary complexity for v1.&lt;/p&gt;

&lt;h2&gt;
  
  
  The part that took longest: getting the AI response right
&lt;/h2&gt;

&lt;p&gt;The actual code was maybe 3 hours. The system prompt took longer than &lt;br&gt;
anything else.&lt;/p&gt;

&lt;p&gt;A raw API call to Claude gives you a decent answer. But tuning the &lt;br&gt;
system prompt to consistently return structured, useful responses — &lt;br&gt;
root cause first, exact fix second, no fluff — that took a lot of &lt;br&gt;
testing with real errors from Stack Overflow.&lt;/p&gt;

&lt;p&gt;This is what finally worked:&lt;/p&gt;

&lt;p&gt;You are an expert debugger. When given an error message:&lt;/p&gt;

&lt;p&gt;ROOT CAUSE: One sentence explaining exactly why this happened.&lt;br&gt;
THE FIX: The exact code change or command to resolve it.&lt;br&gt;
WHY IT WORKS: One sentence explaining the fix.&lt;br&gt;
PREVENT IT: One tip to avoid this error in future.&lt;br&gt;
Be concise, precise, and practical. No fluff.&lt;/p&gt;

&lt;p&gt;Simple. But getting to simple took a while.&lt;/p&gt;

&lt;h2&gt;
  
  
  Streaming makes everything feel faster
&lt;/h2&gt;

&lt;p&gt;One thing I'm proud of — the response streams token by token so you &lt;br&gt;
see the answer building in real time. No spinner. No waiting for a &lt;br&gt;
complete response before anything shows up.&lt;/p&gt;

&lt;p&gt;This is a small UX detail that makes a big difference in how the tool &lt;br&gt;
feels to use.&lt;/p&gt;

&lt;h2&gt;
  
  
  Deploying from a Chromebook
&lt;/h2&gt;

&lt;p&gt;This is where it got interesting. I couldn't use a traditional FTP &lt;br&gt;
upload or SSH easily from ChromeOS. Instead:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Pushed code to a private GitHub repo from the Linux terminal&lt;/li&gt;
&lt;li&gt;Connected that repo to Hostinger via their Git import feature&lt;/li&gt;
&lt;li&gt;Hostinger auto-detected Express, ran npm install, and deployed&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The whole deployment pipeline took about 20 minutes to set up and now &lt;br&gt;
every git push auto-deploys. From a Chromebook.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I skipped intentionally
&lt;/h2&gt;

&lt;p&gt;A lot of "proper" SaaS features didn't make the cut for v1:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No database (added later for shareable fix links)&lt;/li&gt;
&lt;li&gt;No authentication&lt;/li&gt;
&lt;li&gt;No payment system yet&lt;/li&gt;
&lt;li&gt;No analytics beyond basic page views&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I added a simple in-memory rate limiter — 5 fixes per day per IP — &lt;br&gt;
to protect against API cost blowouts on launch day. That took 10 &lt;br&gt;
minutes and was worth doing before going live.&lt;/p&gt;

&lt;p&gt;Everything else can wait until real users tell me what they actually &lt;br&gt;
want.&lt;/p&gt;

&lt;h2&gt;
  
  
  The result
&lt;/h2&gt;

&lt;p&gt;troubleshooting.sh is live. It works. Real errors go in, useful fixes &lt;br&gt;
come out.&lt;/p&gt;

&lt;p&gt;Built entirely on a Chromebook, in one weekend, with no prior &lt;br&gt;
deployment experience on this stack.&lt;/p&gt;

&lt;p&gt;If you're sitting on an idea and waiting for the perfect setup — &lt;br&gt;
the right machine, the right time, the right amount of knowledge — &lt;br&gt;
this is your sign that you don't need any of that.&lt;/p&gt;

&lt;p&gt;You just need a terminal and a weekend.&lt;/p&gt;

&lt;p&gt;Try it at &lt;strong&gt;&lt;a href="https://troubleshooting.sh" rel="noopener noreferrer"&gt;https://troubleshooting.sh&lt;/a&gt;&lt;/strong&gt; — paste your nastiest error &lt;br&gt;
and see what comes back. I'd love to know what breaks it.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What's next: shareable fix links, a Pro plan for unlimited fixes, &lt;br&gt;
and better handling of Rust and Go errors. Building in public — &lt;br&gt;
follow along if you're interested.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>node</category>
      <category>beginners</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
