Great stack for the solo dev imo.
Ask HN: Companies of one, what is your tech stack?
141–150 of 206 posts
Re: Ask HN: Companies of one, what is your tech stack?
#142The main app that my users run is written in TypeScript and runs with Node/Express/Vue/Knex/SQLite. Third party dependencies are only pulled in after a code review and are scanned with snyk and npm/yarn audit. You can see the current list of deps here: https://github.com/photostructure/photostructure-for-servers.... ExifTool (excellent metadata extraction) and Sharp (fast image processing via LibVips) deserve all the kudos I can muster.
Additionally, there are three droplets/virtual hosts that I run:
https://photostructure.com/ is a static Hugo site, served by nginx.
https://forum.photostructure.com/ is served by Discourse, which is a rails app.
The account subscription management website is written in TypeScript using Node/Express/Knex/PostgreSQL, clustered by pm2, and reverse proxied for https by Caddy. Billing is currently handled via Stripe Checkout.
At home, I have 10+ computers that help me with customer support as well as host GitHub Actions to run continuous integration tests on all supported platforms.
AMA!
Re: Ask HN: Companies of one, what is your tech stack?
#143Rails (6.1), Postgres, Redis, Sidekiq Hosted on Heroku, using Sentry for error tracking, New Relic for performance monitoring, Sendgrid for email. Recently ditched Google Analytics in favor of Plausible for general analytics and Ahoy (Rails middleware) for deeper in-house analytics. Using Intercom for support/chat widget, but planning to switch to Chatwoot. Considering moving off Heroku, but the most obvious contende…
Re: Ask HN: Companies of one, what is your tech stack?
#144Run a hardware based tech startup. Main Website: wordpress, WooCommerce, stripe Mobile Apps (iOS/Android): Flutter, Firebase WebApp: ReactJS, Firebase Hardware Firmware: C
Re: Ask HN: Companies of one, what is your tech stack?
#145LAMP. Linux, AWS, MySQL, Perl HTML still works it turns out!
Re: Ask HN: Companies of one, what is your tech stack?
#146I try to keep things very simple + boring for Newsy ( https://newsy.co ) - Linode Ubuntu - Vue - Laravel PHP - PostgreSQL - Tailwind That's it. Keeps me focused.
Re: Ask HN: Companies of one, what is your tech stack?
#147Backend
- Auth: stytch
- DB: Postgres in RDS (moving to Railway)
- Api: Node on Heroku (moving to Railway)
- Images: Fire Store (ugh. Maybe move to Cloudflare images)
Front end
- SPA: React served by Heroku (moving to Railway)
Re: Ask HN: Companies of one, what is your tech stack?
#148It uses a Django+sqlite backend, on a single AWS tiny instance. Frontend is mostly "VanillaJS". Traffic is relatively modest at a couple thousand hits per day. Been using this setup for 8+ years now. Wouldn't have chosen anything else, even in retrospect.
Re: Ask HN: Companies of one, what is your tech stack?
#149Re: Ask HN: Companies of one, what is your tech stack?
#150Earlier quoted context omitted.
OT but can these AIs generate text based on existing corpus? eg helpdesk system that suggests responses to (human) agents based on previous (human) questions and replies or a bank of frequent saved snippets/replies. edit: or find previous conversations with high similarity
Right now the text generation API can be used to do the conversational stuff along with a massive amount of other stuff like classification or adding questions about what is in text or how proper would respond to things for analysis purposes. There's an embeddings API for text/code/images that can bed used for the similar snippets stuff if you bring your own vector search engine like milvus etc, but eventually I'll s…