Ask HN: Companies of one, what is your tech stack?
31–40 of 206 posts
Re: Ask HN: Companies of one, what is your tech stack?
#32Linux, AWS, MySQL, Perl
HTML still works it turns out!
Re: Ask HN: Companies of one, what is your tech stack?
#33The 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 answer questions about images/receipts etc.
The site itself is on app engine standard python with stripe/firebase UI for auth, which is running very cost effectively.
In future in planning to layer on more content understanding eg audio with whisper etc, then milvus/haystack for lookup phases for more factual question answering, then some work on automated retraining and regeneration etc for hard cases, then searching other systems/internal code and logic execution etc, eventually with a few more steps I'm hoping it will feel like I made AGI in a rack in my house lol...
Re: Ask HN: Companies of one, what is your tech stack?
#34I 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…
Re: Ask HN: Companies of one, what is your tech stack?
#35Hosted 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 contender, Render, doesn't yet have high availability postgres with automatic failover.
Deployment is set up so any push to the master branch on GitHub is automatically deployed to production. Merging to the master branch can only be done via a PR, and needs green status from both linter (Rubocop), tests (Rspec run on CircleCI, both unit and integration) and coverage (100% test coverage required, verified by codecov.io).
UI is Bootstrap (but feeling long in the tooth), and server side rendering with a sprinkling of javascript. Still mulling over hotwire/turbo vs alpine vs stimulus vs react for some upcoming UI that requires more interactivity.
Re: Ask HN: Companies of one, what is your tech stack?
#36App: Expo, React-Native, Typescript, Apollo Client Server: Node.js, GraphQL, TypeGraphql, Apollo Server, PostgresQL 14, Redis Website: Webflow (great for a good website with minimal work) Hosting: Digital Ocean (it’s cheap but I prefer GCP) Internal tools: Retool
whats the url?
We’re have a community only in France for now so the website is in french. It will be translated soon.
Re: Ask HN: Companies of one, what is your tech stack?
#37E-commerce is Noopcommerce.
New stack is the SAFE stack with postgress as the db. Flyway for database migration. Docker deployments with a gitlab CI pipeline.
Soon to add Apache Kafka for message flow.
Initial development with this stack is not especially fast but bug fixes and changes are so easy.
Re: Ask HN: Companies of one, what is your tech stack?
#38- Web backend in go using html templates and some js
- Frontend in plain js and scss
- go server for cron jobs
- postgres for store
- redis for queueing
- ngingx for load balancing and ssl termination
- certbot for ssl
Each of those services is a docker image, all of those images are tied together in a docker compose file. One for dev, one for prod.
Terraform for object store, server, and volume infrastructure.
Bash scripts for deployment using ssh.
Re: Ask HN: Companies of one, what is your tech stack?
#39Rails (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?
#40Backend: Rust, rocket, sqlx, postgres + a little bit of R. Ansible for deployment.
Frontend: Rescript + React. Also a significant portion of Rust/WASM, but that was a mistake I'm trying to undo.
In short, statically typed and functional(-ish).