marwwin

joined 1 year ago
[–] [email protected] 4 points 6 months ago

Why do you feel it's terrible? I did Java in VSCode for my previous job and I thought it was pretty decent.

[–] [email protected] 13 points 7 months ago

Sure but Russia actually winning the war also seems pretty magical imo. I mean wasn't this whole operation supposed to last about 3 days??

[–] [email protected] 94 points 8 months ago (3 children)

But does it support Hannah Montana Linux?

[–] [email protected] 11 points 8 months ago

Neovim for most things. At work I use VSCode for Java stuff

[–] [email protected] 12 points 9 months ago

HTMX, Python, JavaScript.

Though I would like to try Go for the backend if I would just find some time for it.

Also Svelte and Sveltekit is very nice

[–] [email protected] 4 points 9 months ago

I love HTMX ❤️

[–] [email protected] 30 points 9 months ago (3 children)

Arrow functions should be used only for callbacks. I hate that people has started defining named functions with arrow functions in JS. Arrow functions are not hoisted and the ordering of your functions is going to get wonky, because you need to define all you functions first before composing them, when it should be the other way around. Start with the most high-level function which calls lower level functions.