I started learning clojure yesterday.
Initial useful (for me) command in clojure REPL : dir 1
As per the example given in the documentation, (dir clojure.repl) produced list of commands (?) - one of which is demunge
I had no idea about it, and so I tried dir(demunge) and it returned nil 😆
I could not find it in the documentation, so I asked ChatGPT about it, and it explained the following: 2
Continue Reading »
I recently started writing C# code at work. While I can read and understand the sample code (and modify partially per my requirement) I still trip up by new-ness (to me) of the ecosystem.
So while I intuitively understand that using is equivalent of require in Ruby (or import in python), I didn’t know which ones are “standard library” and which ones are not.
The sample code worked with standard library, but writing to Azure Service bus requires external library.
Continue Reading »
Several years ago, I came across a quote1 about how learning python via Django. The author said that if you don’t properly know python, you may not understand what is Django specific and what is not.
FWIW, even after working with python, I never used Django in any of my main project. But I did learn python first before the frameworks.
Fast forward to few days ago. I am working on Ruby code to read from Azure Service Bus.
Continue Reading »