#Code

Pleasures of Programming


I have a confession to make, I still haven’t used Claude Code. I have, at times, used LLM Chatbots to help answer questions and even generate some code for me, in a similar way that I would have copy/pasted from stack exchange before LLMs. But I haven’t set up Claude yet.

Read more →

Clojure performance considerations


One of the nice things about the clojure programming language is how flexible built-in functions are. Like python, clojure is not typed, so you can spend less time worrying about how your functions/methods handle types, and more thinking about the actual data that is being worked on. In this way, it is more of a ‘data-first’ kind of language.

Read more →