“You can’t delegate thinking...” — Charles Duhigg zed zed is a nice editor with crisp fonts, I use the github dark theme. The built in terminal is fast. However when you first install it enables AI, auto-completion and other helpful features that I don't want. My zed configuration This is a way to globally turn off these features. ~/.config/zed/settings.json { "disable_ai": true,…
Koans are a great way to practice test driven skills and learn by doing. elixir-koans is a nice repo to learn Elixir syntax by getting tests to pass. You can try doing 10 minutes a day or solve them all in one go if your that way inclined 💪. Install git clone https://github.com/elixirkoans/elixir-koans cd elixir-koans mix deps.get Launch the koans mix meditate You can leave this command running…
I wanted to play around with guile a scheme dialect from the GNU guix project on a mac. Install brew install guile Only to launch the repl and get this annoying behaviour when pressing the up or down arrows when you expect to see the last command you have run... ^[[A^[[A Fix: rlwrap The fix for this is to wrap guile in rlwrap: # Install rlwrap brew install rlwrap # Run Guile with readline support…