Programming
Faster Bash Startup
2 Aug 2020
My Bash start-up time is around 1.7 seconds. This doesn’t sound like it’s too bad, but it feels like hours when you want to open a new window to only…
Continue reading →
Mutability and Containers
8 Dec 2019
Containers A container is an object that contains a reference to another object. A common example would be a List. >>> shopping_list = ["milk", "bread", "eggs"] >>> onions = "onions"…
Continue reading →
Identity Types and Values
21 Nov 2019
Everything in Python is an object. From an instance of a class to an attribute of that instance and even the class itself. An Object has three basic properties that…
Continue reading →
Cool Things: basecs
13 Feb 2019
Cool Things is a series of intereting things, resources or projects that I’ve found. basecs is a great blog series by Vaidehi Joshi on some of the Computer Science fundamentals…
Continue reading →
Cool Things: Data Structure Visualisations
10 Feb 2019
Cool Things is a series of intereting things, resources or projects that I’ve found. Data Structure Visualisations is a site containing a number of visualisations of data structures and algorithms.…
Continue reading →