Posts
NBN FTTN is the Worst
NBN is the Worst We have fibre to the node (FTTN) and it drops out a number of times per day.
Posts
Python Class and Instance Variables Explained
Python Instance and Class Variables Call me late to the game, but TIL about Python Instance and Class variables the hard way. Setting up mulplie classes using composition and was struck wondering why when storing data in a list of class instances, the data was stored across all instances.
As specified 9.3.5. Class and Instance Variables
class Dog: kind = 'canine' # class variable shared by all instances def __init__(self, name): self.