I have a bunch of things I have cooking, kinda on and off.
-
Working with @Burger@burggit.moe on Burggit, obviously.
-
Have a minecraft modding project I work on occasionally. Not something I think I’ll ever share publicly (might share some screenshots at some point though.).
-
There’s a super secret super cool project I’ve been working on for Shota Services, which I hope people will enjoy when it comes out.
-
As well as a bunch of smaller things like tweaking various sites and some other things which are too early for me to reveal.
What have you been doing to express your creativity recently?
I dunno that much about web dev, but from my understanding:
I think that’s called ASI if you haven’t come across the term already. Semi-colons are less like “optional”, and more like the JS parser takes its best guess as to where semi-colons should go in addition to explicit ones.
Personally, I prefer to leave code formatting decisions like that to an opinionated formatter like Prettier and just never think about it again.
These are trappings of functional programming. If you’re learning this stuff mostly for fun, I can recommend taking a detour to dabble in a purely(-ish) functional language for at least a little bit. It’ll probably be even more of a head-scratcher than JS, but it should quickly become obvious as to why anonymous functions are a handy convenience. More importantly it forces you to conceptualize a problem from a functional approach, which you might otherwise avoid in more popular multi-paradigm languages since it’s unfamiliar.
As for why functional programming is handy, there’s doubtless more thorough and knowledgeable primers on the web, but as for me the two big ones that immediately come to mind are:
For JS, lifetimes and scope seem like they’d be kind of unwieldy, without knowing a bit about FP and more specifically closures.
Never heard of that. Gonna look into Prettier.
I just read that and while it’s still confusing, it helps me to understand that a little better. I guess it makes sense I have a hard time understanding it, since back when I started learning programming, OOP was the hot stuff.