Live data from Hacker News

Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

news.ycombinator.com

421–430 of 466 posts

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#421
I started making Browse AI (https://browse.ai) about 3 years ago. Quit my job soon after and focused on it full-time when I had savings enough for 2 years of my living expenses.

The next 1.5 years were intense. I learned to have better and more conversations with users (we'd crash and burn if I hadn't come across a book called The Mom Test) and we went through several positioning pivots.

As I was running out of money, I launched on ProductHunt and got decent initial traction and a group of angels who found us there and invested ~$300k.

Then we started making revenue... Then, after almost 3 years of work, we reached $100k ARR... Then we went from $100k to $200k ARR in less than 3 months!

We've signed up ~20,000 new users in January so far and I'm projecting $300k ARR in a month! We're growing ARR 30-50% month over month.

I have a team now who are doing a ton of the hard work. I still have to spend time on every part of the business, but I've been trying to focus my energy on certain parts that I'm better at.

The hardest challenge for me throughout these years has been figuring out if I should persist and work harder on the same path, or switch to something else or pivot. I went through a pre-accelerator program and an accelerator and I had some mentors through them. Some were super helpful and gave me the confidence I needed to keep going.

In general, specially if you're a solo (technical) founder like me, I recommend having mentors that have been through what you're going through and talking to them at least once a month. It's too easy to focus on the wrong things and waste the precious early capital and time. I know I would be 2 years ahead if I had sought mentorship early on.

I'd be happy to chat if you're working on a self-service SaaS. Message me on LinkedIn or Twitter: https://www.linkedin.com/in/ardalann/ https://twitter.com/ardalanme

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#422
post #41

https://extensionpay.com — A really simple way for browser extension developers to take payments in their extensions. I made it to use in my own extensions since it's a pain in the butt to take payments in browser extensions. It has an open source library that works across all browsers and allows for one-time or subscription payments. Since 2021 developers have made over $125k with ExtensionPay which makes me happy :…

I love this app. Although I couldn’t not use because of Stripe but its really nice.

why so?

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#423

I built a screenshot app for macOS and made ~$3k/mo from it :) https://xnapper.com People like the app for its ability to turn a normal boring screenshot into a beautiful one that they can share on social media instantly.

You might want to play around with the encoding on your videos. On a Windows machine with a i7-8770k (and dedicated GPU) with Firefox latest, the page was spiking up to 100% GPU usage, causing the browsing experience to slow to a crawl. It may be related due to me having a Twitch stream up on a second display.

Probably a Firefox bug, but it's preventing me from looking at this landing page that every one else seems to like :P

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#424

I started making Browse AI ( https://browse.ai ) about 3 years ago. Quit my job soon after and focused on it full-time when I had savings enough for 2 years of my living expenses. The next 1.5 years were intense. I learned to have better and more conversations with users (we'd crash and burn if I hadn't come across a book called The Mom Test) and we went through several positioning pivots. As I was running out of mon…

You might enjoy Deploy Empathy, which is considered the customer interview 102 to The Mom Test's 101.

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#425
One and a half years ago, I started Rocket Crew a Space industry job board All other job sites in this industry were old and quite hard to use and most of the time there were not a lot of New space companies.

So since I love Space I decided to build an alternative. To get started, I built a web scraper for more than 50 different space companies, including NASA, Space X, JPL etc. And the traffic grew month after month

Now it has become one of the popular job boards in this niche and starts to rank first on google for keywords like "space jobs"! https://rocketcrew.space/

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#426
post #306

Earlier quoted context omitted.

I have an idea for rcmd -- if possible, it would be great to be able to assign a right-cmd-key to -- or open one if none is. Likewise for calendar.google.com and probably others. I'd pay an extra few dollars for that feature, as I'm forever opening because my tab hygiene is lacking. I read your piece on window switching -- would AppleScript work? This works: tell application "Safari" tell item 4 of windows set the cu…

Hey that’s a useful feature indeed, and it can already be added by the user with rcmd’s Window Actions which support AppleScript. I actually have done that myself already for Firefox. I could maybe try to implement the main part of the “find and switch to the tab if it exists” so that users can simply assign the URL. Thanks for reminding about this use case!

Okay, I've worked it out and it works perfectly with no requirement for window actions. I created an AppleScript:

   tell application "Safari"
      repeat with w in windows
         set mt to (tabs of w whose URL contains "https://mail.google.com/")
         if mt ≠ {} then exit repeat
      end repeat
      if mt = {} then
         if not (exists window 1) then
            make new document with properties {URL:"https://mail.google.com"}
         else
            set mt to make new tab in window 1 with properties {URL:"https://mail.google.com"}
            set the current tab of window 1 to mt
         end if
      else
         set mt to item 1 of mt
         set the current tab of w to mt
         set the index of w to 1
      end if
      activate -- needed if not activated otherwise
   end tell
   
Then:

   1. I export the script as an app. In the dialog I set it to stay open. 
   2. I run the app. 
   3. I use the standard rcmd method to assign M to that application. 
   4. I quit the app.
   5. I export the script as an app again. In the dialog I *do not* set it to stay open.
And done! Now I rcmd-M and if there is a mail.google.com tab, Safari switches to it and jumps to the front. If there is not a mail.google.com tab, the frontmost window gets a new tab set to mail.google.com. I haven't tested yet what happens if there is no window. It should create one with mail.google.com. I'll test that in a minute and if it doesn't work I'll correct it and update here.

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#427
post #267

Developed a few websites that I do monthly support and maintenance on. I’m averaging about $600.00 MRR which is down from the $1200.00 MRR I was making for a better part of last year. The beauty of it though is it only requires about 1-2 hours tops of my time each month though. Combining both some additional contract work with this MRR outside of my FT job I’m doing about $1500.00 to $2,000.00 month. Working on a few…

What kind of website?

Business sites to increase customer leads.

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#428

https://zonewatcher.com is an audit trail and changelog for your DNS records. It began in 2016 out of some frustration I was having with consulting clients who would modify their DNS records incorrectly, breaking their email and/or website until I was able to get them back online. It was frustrating digging through emails or old technical documents to find the original values before they had made their changes. I wan…

I set up an account with the public DNS provider and it doesn't appear to support multiple entries per record type. For example, time.cloudflare.com has two A records but the UI only shows the one.

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#429
post #385

Earlier quoted context omitted.

How long did it take you to develop your Senior Mindset infoproduct? Curious what the ROI on your time looked like for that.

Depends how you count. It's based on ~10 years of working on my own career. But it's also a collection of essays so a lot of writing happened live while the career was happening. My time tracker says I spent 139 hours last year on this project.

Thanks for the reply. Your blog is great. I’ve enjoyed your content over the years.

Re: Ask HN: Those making $500+/month on side projects in 2023 – Show and tell

#430
post #193
post #143

Earlier quoted context omitted.

Is there much of a market, given that they already use the tools mentioned? Genuinely curious. I've always hated sales but would love to work on making existing solutions better.

Facebook marketplace is as trustless as you can get. It's 2010 version of Kijiji/Craigslist with built-in picture upload. Right now depending on how much effort you want to spend, you can get a place for $2000 usd a month or $600 a month, for relatively similar unit maybe 20min of walk distance apart. Simply because information does not flow freely. Airbnb fixed the trust issue and dominated rental market in the last…

I'd also be quite interested in working on this.
Post reply on HN