(don't read this post if you are eating because it might make you throw up)
This blog contains stuff that I don't want to forget but might be useful to someone else too. Posts are short and to the point with enough detail for future me to make sense of.
Thursday, 16 August 2018
Wednesday, 15 August 2018
Subscribe to:
Posts (Atom)
Scala with Cats: Answers to revision questions
I'm studying the 'Scala with Cats' book. I want the information to stick so I am applying a technique from 'Ultralearning...
-
Ansible is a great tool for config management on a set of remote machines. However, Ansible can be used to execute commands locally too. M...
-
The Question: You have to climb up a ladder. The ladder has exactly N rungs, numbered from 1 to N. With each step, you can ascend b...
-
Tree: 3 5 2 1 4 6 Preorder Traversal root -> left subtree -> right subtree 3 -> 5 -> ...