An Introduction to writing high performance C# code
Writing high-performance C# code is a skill that can benefit any .NET developer. High-performance code can run faster, consume less memory, and scale better. Here are some tips and resources…
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." ― Martin Fowler
Writing high-performance C# code is a skill that can benefit any .NET developer. High-performance code can run faster, consume less memory, and scale better. Here are some tips and resources…
Preface OOP is a way of thinking / design pattern. It can be understood by way of a number of different analogs. Not all the analogs described here are perfect…
Over the last decade Unity has become the game engine of choice for a good chuck of game developers out there. This is due to many factors, the main factor…
Long story short, it helps you with the turning nothingness into somethingness, or at least simulates a sort of nothingness. In most languages out there like C#, if a variable…
Stack A stack is a stack of books, or a stack of sandbags or a stack of elephants or even a stack of unicorns. Basically a stack is anything that…
The primary language of Unity is C#. In my opinion C# is just like JAVA so if you know that you should be just fine. When you create a script…
Introduction: Unity is one of the most popular and easily accessible game engines to date. Which has lead it to become of the best documented and beginner friendly games engines.…
These methods are part of the “functional” aspect of JavaScript. JavaScript is a strange language in a good way. Before we get into this, know that all these methods above…
In today's digital age, securing web applications is paramount. One effective method for managing user authentication is through Token Authentication, specifically using JSON Web Tokens (JWT). This excerpt delves into…
Below are some questions I was recently asked, with my answers. Please let me know if any of them are wrong, its a learning opportunity for me What is the…