Live data from Hacker News

I run multiple $10K MRR companies on a $20/month tech stack

stevehanov.ca

21–30 of 539 posts

Re: I run multiple $10K MRR companies on a $20/month tech stack

#21
post #6

Just in case, if there are others like me who where wondering what does "MRR" means, it seems to be "monthly recurring revenue".

I'm just curious but is it the case that you signed up here 16 years ago and you didn't know what MRR means?

Not everybody who reads HN is well versed in business/entrepreneur oriented jagon.

Re: I run multiple $10K MRR companies on a $20/month tech stack

#22
post #5

A lot of this advice is good or at least interesting. A lot of it is questionable. Python is completely fine for the backend. And using SQLite for your prod database is a bad idea, just use Postgres or similar.

There’s a lot to be said about his approach with go for simplicity. Python needs virtual environments, package managers, dependencies on disk, a wsgi/asgi server to run forked copies of the server, and all of that uses 4x-20x the ram usage of go. Docker usually gets involved around here and before you know it you’re neck deep in helm charts and cursing CNI configs in an EKS cluster.

The go equivalent of just coping one file across to a server a restarting its process has a lot of appeal and clearly works well for him.

Re: I run multiple $10K MRR companies on a $20/month tech stack

#24
post #21

Earlier quoted context omitted.

I'm just curious but is it the case that you signed up here 16 years ago and you didn't know what MRR means?

Not everybody who reads HN is well versed in business/entrepreneur oriented jagon.

Yes. Clearly. But is the irony really lost on you?

Re: I run multiple $10K MRR companies on a $20/month tech stack

#25
post #13

You already have and had everything you need to scale the business to max and it hasn’t happened so more money won’t help. What do you want VC to do? You didn’t bring a plan.

I was wondering this as well: Why did OP look for VC?

In my case, I've used a similar strategy of keeping costs under €100/month. (But have sold, or stopped my ventures before hitting such MRRs as OP reports).

I raised some capital to pay my own bills during development. But mostly to hire freelancers to work on parts that I'm bad at, or didn't have time for: advertising, a specific feature, a library, rewrite-in-rust (wink) or deep research into functional improvements.

Re: I run multiple $10K MRR companies on a $20/month tech stack

#26
post #21

Earlier quoted context omitted.

I'm just curious but is it the case that you signed up here 16 years ago and you didn't know what MRR means?

Not everybody who reads HN is well versed in business/entrepreneur oriented jagon.

HN means HackerNews btw, for those 15 year accounts that don't know the jargon

Re: I run multiple $10K MRR companies on a $20/month tech stack

#27
Great stack! I'm doing a similar approach for my latest project (kavla.dev) but using fly.io and their suspend feature.

Scaling to zero with database persistence using litestream has cut my bill down to $0.1 per month for my backend+database.

Granted I still don't have that many users, and they get 200ms of extra latency if the backend needs to wake up. But it's nice to never have to worry about accidental costs!

Post reply on HN