An environment-health-security app for the B2B market * Flutter frontend iOS/Android * Parse Platform backend backed by MongoDb, hosted on Hetzner dedicated server with backups in Azure - Migrated from Firebase * ASP.NET 5.0 backend for various other integrations and periodic back office jobs - Migrated from Firebase Functions * Back office tools (CRM, billing etc) in React/Redux - Currently experimenting with Appsmi…
Ask HN: Companies of one, what is your tech stack?
71–80 of 327 posts
Re: Ask HN: Companies of one, what is your tech stack?
#72I make a lot of prototypes along with maintaining production systems. A lot of the projects have to do with ML/NLP, which basically means I have to chose python as a core backend language. Which is great, I love python. My core production system and every new prototype is: - Django + PostgreSQL - Celery + redis - for long-running tasks - React - GraphQL - Terraform + Cloud-init to provision the infrastructure All qui…
Could you share what python libraries you use in your projects for ML and NLP?
- nltk - preprocessing
- spacy - preprocessing, entity recognition, part of speech recognition
- gensim - Similarity and clustering
- pytorch - ML model building
Re: Ask HN: Companies of one, what is your tech stack?
#73https://hanami.run email forwarding services with webhook, smtp, disposable emails Tech Stack: - Ruby/ for webapp and user facing service: very quick to get the feature out, easiser to work with HTML, database access. Being a one man shop, I have to develop fast - Go: mail server and anything that isn't user facing or doesn't involve rending HTML. Statically type to reduce bug, performance to cut cost, this is the co…
You may want to hire a native English speaker to check the text on your website though, it's full of errors and odd wording.
Re: Ask HN: Companies of one, what is your tech stack?
#74I turn existing websites into apps at https://webtoapp.design I went with Flask (python) + Bootstrap for my website. The apps are created in Flutter, which was a great choice looking back on it. This allows me to have 1 codebase for both Android & iOS apps (most customers want both). If developing an app for just Android would be 100% effort, developing an app for Android and iOS with Flutter is around 130% effort I'…
.lifting-card {height: 100%} If you like the column heights aligned on /convert/appdetails.
Re: Ask HN: Companies of one, what is your tech stack?
#75The impact on success is marginal, but I'd say that it's cost effective due to being more stable (in the easy to upgrade sense).
Cloudflare DNS => 2 Baremetal FreeBSD => 3 jails [Nginx, Node, PG]
https://blog.uidrafter.com/freebsd-jails-network-setup
SSL Let's Encrypt
https://blog.uidrafter.com/isolated-tls-certificate-creation
Fastmail, Stripe
The PWA only uses React
https://blog.uidrafter.com/architecture-of-a-desktop-alike-s...
Re: Ask HN: Companies of one, what is your tech stack?
#76I taught myself to program to build [redacted], a comparison website for phone contracts in the UK. Front end: plain JavaScript Back end: Node.js Host: $10 DigitalOcean droplet Web server: Nginx SSL: Let's Encrypt with certbot Proxy: Cloudflare Database: Postgres Caching: Redis Indexing: MeiliSearch I wanted to learn JavaScript and understand the fundamentals, so I used vanilla JavaScript for the front end without an…
this is fantastic- do you get an affiliate fee? i'm looking a new phone and total cost of ownership might swing buying it through this site where do you source the deals? is there an api?
Re: Ask HN: Companies of one, what is your tech stack?
#77Elixir / Phoenix, Heroku with Postgres addon. Fronted mostly static with Stimulus + Hotwire for a few dynamic parts. Images via S3 + Imgix. Metabase (also on Heroku) for analytics. Trying to keep it as simple as possible. Not quite successful yet, but pleased with the tech stack so far.
Re: Ask HN: Companies of one, what is your tech stack?
#78Ruby on Rails, with a couple React bits in there for “islands of interactivity”. Coupled with old-skool Heroku it lets me punch above my weight class, iterate like you would not believe, and focus on the business. I only recently moved to Rails though. Before that I was full stack TypeScript, which was cool and I still miss the static types, but it’s worth going without them.
Node is great, but I didn't come across any frameworks that rival Django or Rails in terms of maturity, and for a side project with no special requirements in terms of scalability etc., I'm not really interested in piecing together multiple libraries or writing a lot of code myself.
I actually ended up building the back-end twice lol - I was looking for the opportunity to try out GraphQL (overkill really, and it goes against what I said about keeping things simple, but I felt it was a good opportunity to try it) and ended up hitting some big performance issues with Django + Graphene – not sure how much of it was my fault vs. Python's GraphQL being slow, but in the end I rewrote the API in Rails + ruby-graphql in half a day and the performance is 5-10x faster there.
Having had the opportunity to build the same thing in them both, I'd say that Django's ORM is quite a lot better (I prefer the Django way of "update the model and the ORM will work out what migrations you need" vs Rails where you explicitly create migrations) and I prefer the Python language (simpler syntax, Ruby has so many ways to express the same thing); but Rails is probably actually quicker to work with and the quality of the Gems available for common stuff seems better than the Django equivalents.
Ultimately both Rails and Django let you get a lot done with not much code and are pretty similar conceptually – I'm impressed with both!
Re: Ask HN: Companies of one, what is your tech stack?
#79I make a lot of prototypes along with maintaining production systems. A lot of the projects have to do with ML/NLP, which basically means I have to chose python as a core backend language. Which is great, I love python. My core production system and every new prototype is: - Django + PostgreSQL - Celery + redis - for long-running tasks - React - GraphQL - Terraform + Cloud-init to provision the infrastructure All qui…
How time flies... React, GraphQL and Terraform are considered boring and stable.
However I'd say React is so widely use I'd say it is boring and stable (as the frontend tech goes)
Terraform, well, what is the alternative? Clicking through web interfaces, or bash scripting the cloud-provider CLIs.