Posts
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...
Why I prefer Vue over Angular: DOM Pollution
June 6, 2022•472 words
Angular differs from Vue in some keys ways, including its "Incremental rendering". This shift introduces something I call "DOM Pollution"; its why I prefer Vue over Angular.
The Complete Guide to Regular Expressions (Regex)
April 17, 2022•3,440 words
A Regular Expression – or regex for short – is a syntax that allows you to match strings with specific patterns. Think of it as a suped-up text search
Rules of React's useEffect
February 22, 2022•2,437 words
useEffect is prolific in React apps. Here are four rules associated with the hook and in-depth explanations of why they're important.
Doomsday Rule
February 10, 2022•4,442 words
In this blog I talk about the Doomsday Rule, how it works, how to put it into code then how to make a program that tests you.