It is a total joy to code entirely in typescript.
Ask HN: Which tech stack is the most fun?
41–50 of 187 posts
Re: Ask HN: Which tech stack is the most fun?
#42Definitely worth a look if you just want to build clean, efficient, platform-agnostic code that will run everywhere and be performant to boot. Plus, you have native integration for almost everything, and best of all: you don't have to use the repugnant mess of web abstractions to build something cool.
EDIT: Plus, you get to learn how to build apps in the 21st century: through CI and automated builds, like Cthulhu intended.
Re: Ask HN: Which tech stack is the most fun?
#43Re: Ask HN: Which tech stack is the most fun?
#44Re: Ask HN: Which tech stack is the most fun?
#45Re: Ask HN: Which tech stack is the most fun?
#46I'm finding more and more that I just want to use JUCE to build apps, and be done with the platform wars entirely. It has pretty much everything I need in terms of UI elements, and it is so well laid out as a framework that I can almost just guess at things without having to do a lot of scurrying around to find docs and things. Definitely worth a look if you just want to build clean, efficient, platform-agnostic code…
Pretty expensive for indie devs, though.
Re: Ask HN: Which tech stack is the most fun?
#47I've been having a wonderful time spinning up small projects using Tcl, Wapp, and Sqlite. Tcl's quoting rules makes it really easy to embed HTML (or anything else, really) inline within a procedure. Simple example: # available at /style.css proc wapp-page-style.css {} { wapp-mimetype text/css wapp-cache-control max-age=3600 wapp-trim { body { background: aliceblue; } } } # available at /hello proc wapp-page-hello {}…
Re: Ask HN: Which tech stack is the most fun?
#48That being said, in side projects I always like to work on new things that I can’t use at work. In the past those have led me to career changes. I learned React on the side then decided I wanted to use it full time. After a few years I switched to Golang. Now I’m back to a full stack roll with lots of React.
My new side interest is Rust. Who knows, maybe I’ll be working full time in Rust. The reason I bring up my own personal habits is because side projects help me stay interested at work. Maybe that will help you too.