Live data from Hacker News

Ask HN: Companies of one, what is your tech stack?

news.ycombinator.com

171–180 of 206 posts

Re: Ask HN: Companies of one, what is your tech stack?

#171
post #117

Django, considering switching to Flask for more flexibility. The server is running nginx on FreeBSD.

I've been enjoying FastAPI after using flask a lot, there's a bit of learning like making routes async and pushing background tasks for later. But I think it's good

Re: Ask HN: Companies of one, what is your tech stack?

#172
post #168

Hosting: Bare metal on Hetzner. Backend: Python / SqlAlchemy DB: Postgres Cache: Redis Frontend: React / Redux / Emotion / Socket.io Reverse Proxy: Traefik Marketing Site: Next.js CDN/File hosting: Cloudflare, R2 Backups: Tarsnap Deployment: Docker / Docker Compose Server configuration: Ansible Mobile: React Native Payments: Stripe Email (Transactional/Marketing): Postmark If I were to start today, I would probably s…

What types of apps do you make for there to be 36 total?

Mostly industry specific apps that solves specific business problems. Some fintech apps, a few realtime collaboration apps, a few IOT type apps... Most of them are for clients that I've built during my solo freelancing years.

Re: Ask HN: Companies of one, what is your tech stack?

#174

Hosting: Bare metal on Hetzner. Backend: Python / SqlAlchemy DB: Postgres Cache: Redis Frontend: React / Redux / Emotion / Socket.io Reverse Proxy: Traefik Marketing Site: Next.js CDN/File hosting: Cloudflare, R2 Backups: Tarsnap Deployment: Docker / Docker Compose Server configuration: Ansible Mobile: React Native Payments: Stripe Email (Transactional/Marketing): Postmark If I were to start today, I would probably s…

Nice. But now that you made me curious: what would you start with now and why?

Re: Ask HN: Companies of one, what is your tech stack?

#175
- Firebase for hosting, DB (Firestore), analytics, Cloud functions (NodeJS) - Angular for front-end - Ionic for bundling the Angular app for mobile

One app is a multi-user game that 60K+ users play regularly Other is a productivity app available on multiple platforms

Re: Ask HN: Companies of one, what is your tech stack?

#176

C# on Azure Functions for backend. Azure managed SQL Server for storage. Azure managed Redis for caching. Azure Application Insights for monitoring. Forest Admin front end. Quite a pleasant experience overall for what I need.

It's so bizarre (but somewhat expected) to see only two people in this thread mention any Microsoft technologies at all.

take another look, lots of .net mentioned :)

Re: Ask HN: Companies of one, what is your tech stack?

#177

I run several SaaS apps on a single big OVH server. It handles 6 million non-cached requests per day. The backend stack is pretty basic: Django/Python, MySQL, redis (pub/sub) for websockets. But the secret sauce is OpenResty. I use Lua scripts to do more sophisticated page caching (because the builtin nginx caching is so primitive), DDoS protection, handling websockets, offloading long running requests, and routing b…

> I use Lua scripts to do more sophisticated page caching (because the builtin nginx caching is so primitive)

curios to know more on this - what you could do better using Lua logic?

Re: Ask HN: Companies of one, what is your tech stack?

#179
post #48

Not a software company, but photographer. I use PHP and bash for all of my automation, and python for the UIs.

What kind of automation do you need as a photographer?

The big ticket thing is generating and uploading the galleries.

For example I was photographing a horse show last weekend, and I have around 3000 pictures and 30 participants.

I used to do that "by hand" with a SaaS, it would take me a full day. I did talk with them to get access to their existing API, but they kept saying they didn't have an API... Stupid.

Now instead, the "generating and uploading" galeries itself takes a single command, and I can use the spare time to sort pictures, be nicer to the customers and take more pictures :)

Re: Ask HN: Companies of one, what is your tech stack?

#180
I don't have a company but whenever I used to work on side-projects that I thought would lead to a company, I would use Laravel + MySQL + VPS. And whenever I worked on projects just for fun, I would use Nodejs + React + MongoDB.

The reason for this was because PHP developers are cheaper. So if project takes off, it will be cheaper to hire PHP devs.

JavaScript is better as an employee since JS/Node/React devs are more in demand and pays better.

Post reply on HN