Ask HN: Companies of one, what is your tech stack?
41–50 of 118 posts
Re: Ask HN: Companies of one, what is your tech stack?
#42App: React Native with Redux. Flow for types (would use TypeScript if starting again today). RN is a pain but seems better than the alternatives for what I need.
That all allowed me to get a prototype together at the start and to iterate very quickly which was essential for making the whole thing happen at all. Some of that was the technology itself but a lot of it was just that I was very familiar with it.
Re: Ask HN: Companies of one, what is your tech stack?
#43Backend: Scala and Playframework
Frontend: Jquery
DB: RDS, Postgresql on AWS
Hosting: Baremetal on Scaleway
DNS: AWS Route53
Object Store: AWS S3
CDN: AWS CloudFront
Infrastructure: Ansible and Kubernetes
Monitoring: CloudWatch and Influxdb + Grafana in k8s
Logging: ELK in k8s
Scaleway is a great hosting with cheap price. Instead of finding reliable but expensive hosting, I prefer cheaper hosting, but more servers and build HA to handle server issue. Server die all the time.
Re: Ask HN: Companies of one, what is your tech stack?
#44I just use the simplest and most boring things that work. Most of my software is written in Haskell, with the Yesod framework handling all the HTTP stuff. Data is mostly persisted in PostgreSQL, with some caching and queueing stuff done in Redis. I try to avoid JavaScript if I can help it. When I do need a richer UI, I'll add small bits of plain JavaScript, sometimes with jQuery. When I need a more complex UI, I use…
Re: Ask HN: Companies of one, what is your tech stack?
#45--
Backend: Node.js hosted on AWS ECS (Docker) and Lambda Frontend: JavaScript, React Database: Postgres (AWS RDS; thinking about switching to serverless aurora)
As for delivering my clients sites I recently switched from cloudfront to stackpath (DNS, CDN) because the pricing model makes more sense for me and it doesn't have arbitrary limitations like the distribution limit.
Other tech I use:
- Terraform for my whole infrastructure
- AWS SES for sending mails
- AWS Cognito for authentication and managing user accounts
- AWS Cloudfront combined with lambda@edge for delivering images in the right size for the requester (src-set)
- Github
- AWS CodePipeline for CI and deployments (source input through github releases)
Re: Ask HN: Companies of one, what is your tech stack?
#46Python
Re: Ask HN: Companies of one, what is your tech stack?
#47Stack is: NixOS, because, despite the learning curve and all the quirks, at the end I love having all the infrastructure configs in one folder (so I never forget that I have an obscure cron job somewhere).
Clojure/ClojureScript, because I am good at Clojure (this is what I do on freelancing side)
For simple services that's always a Datomic on MariaDB (with a replication server) and a backend. Servers run on Hetzner ($2-$5 instances are fine, with replication I need two) Backups on S3.
Re: Ask HN: Companies of one, what is your tech stack?
#48I run Pinboard. I have my own hardware running Ubuntu. The site itself runs PHP+MySQL, with perl scripts for backend tasks. I make heavy use of Twitter to talk about unrelated topics, and eventually people take pity and sign up for the site, using either Stripe or PayPal.
Re: Ask HN: Companies of one, what is your tech stack?
#49Backend: Go / Postgres / Elasticsearch
Infrastructure: Google Cloud / GKE
Re: Ask HN: Companies of one, what is your tech stack?
#50I just use the simplest and most boring things that work. Most of my software is written in Haskell, with the Yesod framework handling all the HTTP stuff. Data is mostly persisted in PostgreSQL, with some caching and queueing stuff done in Redis. I try to avoid JavaScript if I can help it. When I do need a richer UI, I'll add small bits of plain JavaScript, sometimes with jQuery. When I need a more complex UI, I use…
As simple as possible, but not simpler!