Ask HN: Companies of one, what is your tech stack?
131–140 of 206 posts
Re: Ask HN: Companies of one, what is your tech stack?
#132Re: Ask HN: Companies of one, what is your tech stack?
#1331) to target both iOS and Android devices
2) to be real-time for social networking and collaborative tasks
3) available in both offline and online modes
4) to have no cost of developing and testing with small audience.
Turned out I could achieve all of the above using Flutter + Firebase (Auth & Firestore).
Re: Ask HN: Companies of one, what is your tech stack?
#134AWS, PostgreSQL + Redis + S3, BE is 100% Python-based Lambda functions, FE is browser-native WebComponents (no frameworks), mobile app is the same FE code wrapped with Cordova, on Google Play and Apple App Store.
Serverless functions are my #1 tip to reduce low-value maintenance time for solo devs / small teams.
Re: Ask HN: Companies of one, what is your tech stack?
#135Earlier quoted context omitted.
It's actually not that bad when you get the hang of it
The developer experience is bad, even compared to other PHP-based frameworks like laravel. It may not be bad 15 years ago, but when the rest of the word has moved forward. When other frameworks compete with each other to give the best developer experience, wordpress developer experience hasn't improved (or even regressed depending on who you ask). I've been creating and maintaining several plugins and themes in the p…
What is bad about laravel for development experience? I don’t like php or js or, dare I say it, ts (I don’t mind the language and like the type system but the tooling is so rotten; hope deno will fix things), so I often experiment in projects by taking something else like Phoenix, IHP or Dioxus etc and it’s nice, but you always run into the lack of help when stuck. I did a large project with a team with laravel the past months and was really surprised how productive it is; we did basically the impossible in a very short time. Mostly because plug-ins and the bizarre amount of capable people willing to help all over the place.
Still don’t like the language but it’s very productive and robust imho.
Wordpress I did quite a lot with as well but I will never like it; it is too messy to be clean and too clean to be a mess; it doesn’t fit my way of thinking either way.
I feel real joy not having to use JS for anything though; things like liveview/livewire/blazor/dioxus etc really make my life better.
Re: Ask HN: Companies of one, what is your tech stack?
#136"Use boring technology" - Laravel, MySQL, Fly.io for hosting
We automate nearly all aspects of the business as well. If a task needs to be done more than once, it's worth automating. GitHub actions to test/deploy, admin pages for all activities such as marketplace submissions, payouts, tax reports, chargebacks/refunds ... If there is ever a problem with a purchase, we have ways to reply and refund all with the click of a button.
We recently switched from a VPS to Fly.io and PlanetScale as well and it's been working quite nicely. As we grow to more regions, it's nice to know we can deploy servers close to our users with a single command.
Re: Ask HN: Companies of one, what is your tech stack?
#137Re: Ask HN: Companies of one, what is your tech stack?
#138Not a company but I’ve been experimenting with different tech stack options over the last 6 months to find a simple tech stack with an independent frontend and an independent backend with a hosted database. The goal is not just to build but also be able to maintain without much complexity and not spend a lot of money on hosting. Backend: Building a REST/GraphQL API that could be deployed to Cloudflare workers is a no…
You could use something like the cockroachdb free tier, its pretty close in Postgres in syntax, with some minor differences.
Re: Ask HN: Companies of one, what is your tech stack?
#139You're going to love to hate this: Best choice I made was using WordPress! I run https://rpgplayground.com , a web tool to make RPG games without coding (6000+ user published games) The app itself is written in Haxe. My website is WordPress. Haxe because it will be easy to port to any device. Why was WordPress the best choice? Basically everything you need has a plugin. I needed a forum: bbPress I needed a community…
where did you find a good developer for Wordpress? there are so many that it’s hard to separate wheat from chaff. Especially when it comes to doing things with security/authorization. As a CTO/developer who works with Ruby/Rails and hates php, I think you made the best choice! Especially as a solo who needs these types of “auxillary” functionality. Wordpress is crazy productive in this way. Their plugin ecosystem, ea…
I was kind of lucky that my brother in law has a software development firm in Slovakia. So I hired one of his employees with the agreement that I would just pay for his time, and there are no deadlines. That means this developer could work on my stuff in between their other projects (which do have deadlines). This way I could get a good deal on the rate.
My fail plan was to follow him up closely, and if he didn't deliver the first week I would be able to pay for his time and don't request more work (don't want to get in arguments with family ;)). But it all went great!
For you, I would try out someone and give them a tiny thing to start with. If they can deliver, let them do more. Since you're a developer you should be able to judge their work. That way you limit the loss when it doesn't work out.
Re: Ask HN: Companies of one, what is your tech stack?
#140I run https://text-generator.io competing with OpenAI. I used to use kubernetes on Google cloud, but now run it from my house behind a CloudFlare tunnel believe it or not Using my own GPUs allows me to undercut them with around 10x cheaper pricing. The product is built with some open source and some retrained models, it analyses input links or linked images with tesseract/unified IO / OFA / beautiful soup so it can a…