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/nKvvdoAjqG4/mqdefault.jpg
Creating Custom GitHub Issue Templates
· ☕ 2 min read
In order to create more accessible open source projects GitHub has introduced templates for Issues and Pull Requests to help improve the clarity and quality of new issues and open pull requests.

https://d33wubrfki0l68.cloudfront.net/bd86cfb4bdff5dde3f8581a14c9e9a8b43bf2a69/589cc/images/posts/tutorials/font-ligatures.png
Enable Font Ligatures in VS Code
· ☕ 2 min read
Font ligatures combine multiple characters into a single unique character. Some fonts provide ligatures specifically for software development.

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/w2gxWTOPw7U/mqdefault.jpg
Using Command Prompt to Create a Symbolic Link on Windows
· ☕ 2 min read
Symbolic Links allow you to create a reference in your file system to another file or directory. This allows you to reference the same file in multiple places without having to physically copy it into each place.

https://i.ytimg.com/vi/_VnONfOgP8M/mqdefault.jpg
Using PowerShell to Create a Symbolic Link on Windows
· ☕ 2 min read
Symbolic Links allow you to create a reference in your file system to another file or directory. This allows you to reference the same file in multiple places without having to physically copy it into each place.

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/940uUL0Nvwc/mqdefault.jpg
Building OBS Overlay's in Unity 3D
· ☕ 2 min read
OBS (Open Broadcasting Software) is a tool for recording your screen and other sources to create lets plays, live streams and more.

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.