HN user

husarcik

348 karma
Posts3
Comments63
View on HN

Chess reminds me more of programming given the set of defined rules in each. However, I'm biased as I work in radiology and program more as a hobby. So far I've seen way more tools to help me code than to accurately detect radiologic findings.

I agree with everything you highlighted!

I'll add that my career isn't programming. However, Svelte let's me come back to my code base and understand everything, even after months. There is minimal framework related syntax to retain in my memory. Just have to know typescript well and that's it. Additionally, I don't need to retain all the rendering gotchas that other frameworks (eg, react) have. This has changed slightly with runes but I find them pretty easy to refresh on if I find im confused.

For me, this trade-off is well worth the limited availability of third party libraries. I wish someone would create a Laravel-like extension for Sveltekit. If I could just pull in user login flows, hashing, mail, etc all from organized Laravel-like docs, Sveltekit would be perfect for full-stack.

Bigger ecosystem for react. Svelte is easier to develop in rapidly.

I can make things much faster in Svelte, epsecially since Svelte is less complex than React. With AI code generators, I don't really even have to think, just tell it what I want.

Of note, my main career isn't programming.

I'm a third year radiology resident. That speaker is misinformed as diagnostic radiology has become one of the most competitive subspecialties to get into. All spots fill every year. We need more radiology spots to keep up with the demand.

As a radiology resident, it would be nice to have a tool to better organize my dictation automatically. I don't want to ever have to touch a powerscribe template again.

I'd be 2x as productive if I could just speak and it auto filled my template in the correct spots.

AdonisJS 2 years ago

What is missing for you? I don't see much missing anymore coming from Laravel. There are a few things which I wish were more batteries included, such as "forgot password" but that can be made in minutes with code so it's not a big issue.

I'd say adonis is the best now as you can iterate to a full product very quickly.

It's full stack but still amazingly fast (comparable to fastify). You can choose what you need in order to improve speed too. The syntax mimics Laravel which is the easiest to use, most complete full stack framework of any language.

Obviously, somewhat opinionated claims and my main job isn't programming so take it for what it's worth.

An Internet of PHP 3 years ago

I skip all of that and use a docker image with swoole. Much faster and easier to maintain. No separate FPM container too!

An Internet of PHP 3 years ago

I skip all of that and use a docker image with octane. Much faster and easier to maintain. No separate FPM container too!

The docker swarm ecosystem is very poor as far as tooling goes. You're better off using docker-compose (? maybe docker swarm) and then migrating to k3s if you need a cluster.

My docker swarm config files are nearly the same craziness as my k3s config files so I figured I might as well benefit from the tooling in Kubernetes.

Edit for more random thoughts: being able to use helm to deploy services helped me switch to k3s from swarm.

K3s is the best out of any of these "lite" k8 frameworks. As someone who has never worked in tech, it took me about five hours to setup k3s with cert manager with a few PHP and nodejs deployments. This is using my own helm setup making it trivial to upgrade.