Live data from Hacker News

Ask HN: Companies of one, what is your tech stack?

news.ycombinator.com

141–150 of 327 posts

Re: Ask HN: Companies of one, what is your tech stack?

#141
I run an e-commerce shipping tool that integrates with Shipstation to automate shipping. Shipmatix.com

- Ruby on Rails

- Postgres

- Redis

- AWS S3

- Heroku

I choose Rails since it allowed me to get off the ground running and hosted it on Heroku for its ease of use and it saves me a lot of time with its default configurations.

I don’t have many clients now but I should be able to handle hundreds of users on my current setup based on my pod testing.

Re: Ask HN: Companies of one, what is your tech stack?

#142
Document generation from Word Templates (yakdocs.com) & stripe analytics dashboard w/ SQL queries (yak-mu.com), both use Kotlin on the JVM w/ Java WebToolkit (https://webtoolkit.eu/jwt) because of familiarity, kotlin's expressiveness to share components & so that everything is written serverside; OpenBSD as the base operating system because of simplicity and good defaults.

Re: Ask HN: Companies of one, what is your tech stack?

#143

Ruby 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.

Yeah I was evaluating back-end tech stack for a recent side project, most of my work these days is in TypeScript or C++, so a large part of me wanted to have types and go with a TypeScript/Node stack... but on further evaluation, both Django and Rails let you do so much on the back end with so little code, just by following their conventions and using off-the-shelf libraries, that I'm willing to trade off types in ex…

I completely agree about the Django ORM. I used Prisma for a couple projects and that sold the idea of "changing the model and generating the migrations" for me. Now, it feels a bit silly to explicitly define migrations. I'd love to hear some pros of the Rails/Phoenix way though.

Re: Ask HN: Companies of one, what is your tech stack?

#145

The problem with this question is it is akin to those people on photography forums and elsewhere asking "what camera / lens / ISO /shutter speed / aperture" did you use ? As if somehow having the same combination will give them the same results. Surely the correct and only answer is "the right tech stack for the job". Trying to shoehorn everything into one chosen stack is only likely to end in dismal failure. Switchi…

One of the components of "right tech stack" is "how many people does it take to support it?" For example, K8s might be the right tool for many things, but unless you have explicit K8s experience it probably is wrong for a solopreneur today.

Thus, seeing what others are using with those constraints can be constructive.

Re: Ask HN: Companies of one, what is your tech stack?

#146
post #47
post #34

I run a side project podcatcher site https://jcasts.io . As I don't have a lot of spare time and this isn't making money, simple+cheap are important factors, so I stick with what I'm familiar with and only adopt new things when I have the need. - Django Enough said, really, it's a solid workhorse with a healthy ecosystem. The admin feature is very useful for simple backend data management. No other particular reason…

I use almost the same stack, except instead of Alpine + htmx I just use Unpoly. Have you tried it? If so, why did you prefer your choices? Any reason you'd recommend your approach? https://unpoly.com

I looked briefly at Unpoly - it looks an interesting project, but htmx had all the features I needed and the developer was very responsive to questions and bugfixes. It also had good library support for Django (django-htmx).

I also used Hotwire for a while, but that seemed much more of a Rails thing and again, htmx was just a better fit for what I needed to do.

Re: Ask HN: Companies of one, what is your tech stack?

#147
For my art newsletter and site: https://randomdailyart.com

It's dead simple.

- A static HTML page using Go Hugo to build the pages.

- Hosted on Netlify

- zapier runs daily to rebuid the site and update everything automatically

- Code on github and images stored on netlify

- Bootstrap for CSS

- I have a small server that runs the email software to send out the custom made email.

- Actual end email sender is sendgrid.

Between the site and emails, art is being viewed more than ~25,000 a month.

Total cost? $22 a month (Though I'm going to have to start spending $35)

Re: Ask HN: Companies of one, what is your tech stack?

#148
post #29

https://recordwise.ch - helping founders incorporate in Switzerland: - Django/Python - SQLite - Celery and Redis for task queues - Bootstrap4 - jQuery - Sentry for error tracking - Stripe for payments - EmailOctopus for newsletter - SendGrid for transactional emails - NameCheap for the domain - Linode for hosting Running costs are USD 7/month for Linode + USD 15/year for the domain. SendGrid is currently free through…

Hey, is this service open for non-Swiss residents? If yes, is there an English version of the website available? Thank you. :)

The service is aimed at founders domiciled in Switzerland; in principle, formation by foreign founders is also possible. However, it is mandatory that the company is represented by a person domiciled in Switzerland. This can be a managing director (GmbH) or a member of the board of directors (AG).

For capacity reasons (company of one) and due to my focus towards Swiss founders, the site is currently only available in German.

Re: Ask HN: Companies of one, what is your tech stack?

#149

I run a file sharing / content delivery platform called pixeldrain: https://pixeldrain.com The system serves 4 PB of data to 60 million visitors per month. I have served 30 PB and 700 million file views since I started tracking usage somewhere in 2018. I'll go from front to back: - Most of the frontend is plain HTML, CSS and JS. I have started transitioning some pages to Svelte. I like this framework for its speed an…

Thanks for sharing these insight & very impressive stats!

Just few questions I have:

- What is your total infra cost? A cost split between storage & servers would be an awesome insight

- Since how long you have been running this service?

- How did you keep up with the infra cost before breaking even?

Re: Ask HN: Companies of one, what is your tech stack?

#150

https://boxy-svg.com - vector graphics editor similar to Inkscape and Adobe Illustrator. Both client- and server-side code is written with vanilla JavaScript. Since I'm targeting only Electron and modern Chromium-based browsers I can use latest web technologies without any transpilers or preprocessors. I'm using mostly raw DOM APIs without any abstraction layers. Third-party services: - Firebase (database, storage, h…

I don't know a whole lot about Electron and friends, but saw this project the other day that does new builds with a Github action: https://github.com/davidaf3/csgo-tracker/blob/master/.github... maybe it'd be useful to look at?
Post reply on HN