<?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: Robin Monteiro</title>
    <description>The latest articles on Forem by Robin Monteiro (@go_to_rob).</description>
    <link>https://forem.com/go_to_rob</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%2F3695802%2Fe49faf9a-ddb2-4ecf-9ca8-cb62daf0cbf8.png</url>
      <title>Forem: Robin Monteiro</title>
      <link>https://forem.com/go_to_rob</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/go_to_rob"/>
    <language>en</language>
    <item>
      <title>I Failed My First Product Hunt Launch. Here's What I Changed for Round 2.</title>
      <dc:creator>Robin Monteiro</dc:creator>
      <pubDate>Wed, 11 Mar 2026 09:13:21 +0000</pubDate>
      <link>https://forem.com/go_to_rob/i-failed-my-first-product-hunt-launch-heres-what-i-changed-for-round-2-206a</link>
      <guid>https://forem.com/go_to_rob/i-failed-my-first-product-hunt-launch-heres-what-i-changed-for-round-2-206a</guid>
      <description>&lt;p&gt;Six months ago I launched a PNG to SVG converter on Product Hunt.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Zero votes. Zero comments. Zero traffic.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Today I relaunched the same product. Same URL, same name. But the tool is &lt;strong&gt;unrecognizable.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's what happened in between. 👇&lt;/p&gt;




&lt;h2&gt;
  
  
  🪤 The Generic Trap
&lt;/h2&gt;

&lt;p&gt;VectoSolve started simple. Upload an image, get a clean SVG back. That's it.&lt;/p&gt;

&lt;p&gt;The problem? &lt;strong&gt;There are 50 tools that do this.&lt;/strong&gt; When you Google "png to svg", you use whatever comes up first, convert your file, and never come back. That's exactly what happened. Users converted one image and left.&lt;/p&gt;

&lt;p&gt;I had no retention, no differentiation, and a Product Hunt launch that proved it.&lt;/p&gt;




&lt;h2&gt;
  
  
  📧 The Email That Changed Everything
&lt;/h2&gt;

&lt;p&gt;A few weeks after launch, a &lt;strong&gt;Cricut crafter&lt;/strong&gt; emailed me. Her SVG kept breaking in Design Space (the software Cricut machines use to cut vinyl, paper, fabric).&lt;/p&gt;

&lt;p&gt;I had no idea what Design Space was. I had never touched a Cricut in my life.&lt;/p&gt;

&lt;p&gt;But I looked into it. Turns out there are very specific things that break SVGs in Cricut machines: gradients, masks, text elements, certain stroke types, embedded images. &lt;strong&gt;Every Cricut user deals with this.&lt;/strong&gt; And nobody was solving it automatically.&lt;/p&gt;

&lt;p&gt;So I built a health check. &lt;strong&gt;9 automated tests&lt;/strong&gt; that scan your SVG and auto-fix everything Design Space chokes on.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔀 Then Every Niche Showed Up With Different Problems
&lt;/h2&gt;

&lt;p&gt;Once the Cricut tool went live, other communities started finding VectoSolve.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Laser cutters&lt;/strong&gt; didn't want SVGs at all. They wanted DXF files with cut/engrave layers and G-code with real feed rates for their machines. So I built svg-to-dxf and svg-to-gcode converters with material presets.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Etsy sellers&lt;/strong&gt; didn't care about the SVG itself. They wanted to go from an image to a full Etsy listing without writing anything. So I plugged in Gemini AI to generate titles, 13 tags, and descriptions from the vectorized image.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Embroidery people&lt;/strong&gt; wanted DST, PES, and JEF files with hoop size selection and thread color mapping. Formats I had literally never heard of before they asked.&lt;/p&gt;

&lt;p&gt;Each time I thought &lt;em&gt;"this is too niche, nobody will use this."&lt;/em&gt; &lt;strong&gt;Each time I was wrong.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ What The Niche Pivot Looked Like In Practice
&lt;/h2&gt;

&lt;p&gt;The core product stayed the same: AI-powered vectorization (I use Recraft's API, ~$0.01 per conversion).&lt;/p&gt;

&lt;p&gt;What changed is &lt;strong&gt;everything that happens after vectorization.&lt;/strong&gt; Depending on who you are and what you need, VectoSolve post-processes the SVG differently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✂️ &lt;strong&gt;Cricut crafters&lt;/strong&gt; → Design Space compatibility check with auto-fix&lt;/li&gt;
&lt;li&gt;🔥 &lt;strong&gt;Laser cutters&lt;/strong&gt; → DXF with LWPOLYLINE layers (CUT/ENGRAVE) and GRBL-compatible G-code&lt;/li&gt;
&lt;li&gt;🏷️ &lt;strong&gt;Etsy sellers&lt;/strong&gt; → AI-written listing ready to paste&lt;/li&gt;
&lt;li&gt;🧵 &lt;strong&gt;Embroidery users&lt;/strong&gt; → DST + PES + JEF files with hoop sizes and thread colors&lt;/li&gt;
&lt;li&gt;📦 &lt;strong&gt;Everyone&lt;/strong&gt; → a ZIP with all relevant formats, a README, and a license file&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;One upload, then the right output for your workflow.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  📊 The Numbers, Honestly
&lt;/h2&gt;

&lt;p&gt;I'm not going to pretend this is a massive success story yet.&lt;/p&gt;

&lt;p&gt;Most of my revenue still comes from the generic converter. The &lt;strong&gt;$0.65 first purchase&lt;/strong&gt; drives the majority of payments. The niche tools are live and getting organic traffic from SEO, but niche-specific pack sales are basically zero so far.&lt;/p&gt;

&lt;p&gt;What I &lt;em&gt;can&lt;/em&gt; say is that &lt;strong&gt;niche users come back. Generic users don't.&lt;/strong&gt; And the SEO pages I built for each niche are starting to rank. My image-to-gcode page is &lt;strong&gt;position 5 on Google&lt;/strong&gt; with a &lt;strong&gt;10% CTR&lt;/strong&gt;. That kind of intent-driven traffic doesn't come from being "another SVG converter."&lt;/p&gt;




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

&lt;p&gt;For the devs curious about the technical side:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Tech&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Frontend&lt;/td&gt;
&lt;td&gt;Next.js + Tailwind&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Backend&lt;/td&gt;
&lt;td&gt;Supabase (with RLS)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Payments&lt;/td&gt;
&lt;td&gt;Stripe (one-time packs + subscriptions)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Vectorization&lt;/td&gt;
&lt;td&gt;Recraft API&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI features&lt;/td&gt;
&lt;td&gt;Gemini (Etsy listing generation)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Email&lt;/td&gt;
&lt;td&gt;AWS SES&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rate limiting&lt;/td&gt;
&lt;td&gt;Upstash Redis&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hosting&lt;/td&gt;
&lt;td&gt;Vercel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Code&lt;/td&gt;
&lt;td&gt;100% written with &lt;strong&gt;Claude Code&lt;/strong&gt;, solo&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;I ship updates &lt;strong&gt;every day&lt;/strong&gt;. Sometimes 10 in a day. The entire codebase was written by one person talking to an AI.&lt;/p&gt;




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

&lt;blockquote&gt;
&lt;p&gt;Generic tools compete on price. Niche tools compete on &lt;strong&gt;"this was built for me."&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;When your product is generic, users compare you to 50 alternatives and pick the cheapest or the first Google result. When your product solves a specific workflow problem, &lt;strong&gt;users tell their friends about it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Cricut subreddit, the laser cutting forums, the Etsy seller groups — these communities talk to each other. One person finds your tool, shares it, and suddenly you have a channel you never built.&lt;/p&gt;

&lt;p&gt;I stopped trying to be the best SVG converter. I started being &lt;strong&gt;the only converter that understands what Cricut crafters, laser cutters, and Etsy sellers actually need.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 Round 2
&lt;/h2&gt;

&lt;p&gt;Today VectoSolve is &lt;strong&gt;back on Product Hunt&lt;/strong&gt;. Same name, completely different product.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;If you want to check it out:&lt;/strong&gt; &lt;a href="https://www.producthunt.com/posts/vectosolve" rel="noopener noreferrer"&gt;VectoSolve on Product Hunt&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And if you have questions about the build, the stack, or the pivot — &lt;strong&gt;I'm here.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I'm Robin, solo dev from France 🇫🇷. I went from construction work in Ireland to building SaaS tools. You can find VectoSolve at &lt;a href="https://vectosolve.com" rel="noopener noreferrer"&gt;vectosolve.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Also have an agency if you want to work with us: &lt;a href="https://go-to-agency.com/" rel="noopener noreferrer"&gt;go-to-agency.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>buildinpublic</category>
      <category>saas</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I built an AI-powered PNG to SVG converter here's what I learned</title>
      <dc:creator>Robin Monteiro</dc:creator>
      <pubDate>Wed, 04 Mar 2026 15:08:26 +0000</pubDate>
      <link>https://forem.com/go_to_rob/i-built-an-ai-powered-png-to-svg-converter-heres-what-i-learned-4eie</link>
      <guid>https://forem.com/go_to_rob/i-built-an-ai-powered-png-to-svg-converter-heres-what-i-learned-4eie</guid>
      <description>&lt;p&gt;I'm a solo developer and I built VectoSolve — an AI tool that converts raster images (PNG, JPG, WEBP) into clean, scalable SVG and DXF files.&lt;br&gt;
The problem&lt;br&gt;
Manual tracing in Illustrator takes 20-30 minutes per image. &lt;br&gt;
Nobody wants to pay $50/hour for a designer to trace a logo.&lt;br&gt;
The stack&lt;/p&gt;

&lt;p&gt;Next.js 14 (App Router)&lt;br&gt;
Supabase (auth + database)&lt;br&gt;
Stripe (payments)&lt;br&gt;
Vercel (deployment)&lt;/p&gt;

&lt;p&gt;What I learned&lt;/p&gt;

&lt;p&gt;Niche landing pages convert way better than one generic homepage. I built 19 dedicated pages targeting specific use cases (logo to SVG, JPG to DXF, etc.)&lt;br&gt;
Free tier with watermark → paid conversion works. Users try it, see the quality, and upgrade.&lt;br&gt;
SEO takes time but compounds. Each landing page is a new entry point from Google.&lt;/p&gt;

&lt;p&gt;Results so far&lt;br&gt;
1,200+ users, 50,000+ images converted.&lt;br&gt;
If you work with vector files, give it a try: vectosolve.com&lt;/p&gt;

&lt;p&gt;Happy to answer any questions about the stack or the business side.&lt;/p&gt;

&lt;p&gt;Have a nice day all !!&lt;/p&gt;

</description>
      <category>saas</category>
      <category>webdev</category>
      <category>programming</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
