csharp
https://i.ytimg.com/vi/vqc9f7HU-Vc/mqdefault.jpg
Detecting Objects with Raycasts in Unity3D
· ☕ 3 min read
Raycasts provide a way for you to project lines through your scenes and detect the objects they hit as well as return important information about what they hit.

https://i.ytimg.com/vi/NxQv5N91bQg/mqdefault.jpg
Building worldofzero.com - Improved Video Descriptions
· ☕ 2 min read
I’ve recently been doing a lot of work on my website worldofzero.com in order to help launch the new version and improve the usability and accessibility of the site.

https://i.ytimg.com/vi/nxyabkSlQW4/mqdefault.jpg
Implementing C# Extension Methods
· ☕ 2 min read
In C# Extension Methods provide a way to add additional functionality onto a type that you have created or imported into your project.

https://i.ytimg.com/vi/uxxROAx6MMU/mqdefault.jpg
Exploring Top-Level Programs in C# 9
· ☕ 2 min read
Top-Level Programs is a new feature being introduced in C# 9.0 that significantly simplifies certain C# programs and allows you to remove almost all of the boilerplate code from them.

https://i.ytimg.com/vi/KGUY2BpC72c/mqdefault.jpg
Getting Started with Pathfinding using Dijkstra's Algorithm
· ☕ 1 min read
Lets explore pathfinding by implementing Dijkstra’s Algorithm. Dijkstra’s Algorithm is a pathfinding algorithm that works by calculating the distance from any node in a graph to a target node.

https://i.ytimg.com/vi/uzaFeSxM32k/mqdefault.jpg
Installing Nyancat using the .NET CLI
· ☕ 1 min read
The .NET CLI includes the ability to install additional developer tools like powershell. This is a powerful feature that enables you to add tools to your developer environment without leaving your terminal.

https://i.ytimg.com/vi/vavFf1Qiz20/mqdefault.jpg
An Appendable List with Operator Overloading
· ☕ 2 min read
C# supports operator overloading as a language feature. This enables you to modify the behavior of a variety of operators in your classes.

https://i.ytimg.com/vi/EJZ2xWGfFQw/mqdefault.jpg
I'm Learning Moq - A .NET Mocking Framework for Unit Tests
· ☕ 2 min read
Mocking describes a feature in programming that allows you to replace the functionality of an object with a blank version of itself or provide your own functionality in its place.

https://i.ytimg.com/vi/emzftWxwS1c/mqdefault.jpg
An Abstraction of our Character Controller
· ☕ 2 min read
Lets take a look at building an abstraction over a character controller in our 2D platforming game. The goal of this refactoring and abstraction pattern is to improve the testability and modularity of the character controller.

https://i.ytimg.com/vi/8GUKmvzRoMA/mqdefault.jpg
Building Coyote Time in a 2D Platformer
· ☕ 2 min read
Coyote Time is an idea in platformers that allows the player to jump for a few frames after they have left the platform they are on.

https://i.ytimg.com/vi/YHNhL5lfur0/mqdefault.jpg
Generating Gates - Sand Table - Part 2
· ☕ 1 min read
Continuing our development of the Sand Table prototype project we’re going to add gates. We’ll build two components for this.