Jean-Jacques Strydom

@psionicalch.com

Lisp, Scheme & Linux Enthusiast My DMs are always open. I might not necessarily respond but you should at least try.

The plan is to wrap GSAP in a runtime that uses data-* attributes. So something akin to AlpineJS or HTMX but specifically for animations. Then expose the data-* attributes in WordPress as attributes on the custom block. I plan to even have timelines working. #wordpress #webdev #gsap

Jean-Jacques Strydom@psionicalch.com · 11mo ago

Just got done creating a proof-of-concept custom WordPress block. I wanted all the power of GSAP in WordPress but I refuse to pay to for it. So I ended up paying in time. 🤣 #webdev #wordpress #gsap

"Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp." - Greenspun's tenth rule of programming

It's reasons like this that I believe learning programming from a generalist approach is so extremely important. You get to see many different view points. You get to see the same problem solved in dozens of unique ways. Specialization leads to tunnel vision. #programming

Jean-Jacques Strydom@psionicalch.com · last yr.

I never considered creating a router as nested arrays. I mean it's a good way to internally represent a router but I'm so used to seeing routers in a more OOP style of programming where you create a router instance. #webdev #clojure

The more programming languages I learn the less unique they all seem. It's just the same features and implementations. Only thing that really changes is the syntax. It makes arguments over which programming language is the best seem EXTREMELY stupid. #programming

I always though channels and goroutines were unique to Golang. Turns out Clojure also has them, and then some. In Clojure you can have a buffered channel (just like in Go). But you could also have a buffered channel that drops either the newest or oldest value when full 🤯

Bild

Clojure's atom feels like such a weird escape hatch. Why create an FP language is you're just going to add mutable state in, in any case? I think Elixir's GenServer is a much better way to have a form of mutable state whilst sticking to FP.