Posts
How to ask better questions
July 20, 2022•1,177 words
We all ask questions from time to time, so here are some of my favourite tips when it comes to how to improve the quality of your questions.
Mutable vs Immutable Data Types
July 20, 2022•674 words
Using mutable data types can be dangerous in multi-threaded applications. To help that we can make sure of thread safer immutable data types
What is Primitive obsession and how to fix it
July 19, 2022•648 words
Primitive obsession is an extremely common code smell, and when identified and fix, it greatly helps to reduce the amount of bugs that you may find in your code.
Minecraft Data Pack Programming: Command Syntax
June 15, 2022•2,972 words
Learn the beginnings of data pack development in Minecraft - using positions, entity selectors, and conditional logic in commands!
Minecraft Data Pack Programming: Introduction
June 14, 2022•2,316 words
Learn the beginnings of data pack development in Minecraft - using commands and functions to add custom behavior from scratch!
A Guide to Python's Secret Superpower: Magic Methods
June 8, 2022•2,548 words
Python has a secret superpower with a similarly stupendous name: Magic Methods. These methods can fundamentally change the way you code with Python...