Wouldn’t it be cool if you could run C# code in a web browser? Blazor is a tool that compiles C# code into functioning web assembly that can be deployed like a normal webpage.
KodeLife is a powerful cross platform shader editor for Mac, PC or Linux. It overlays a text editor and debugger on top of the real-time results of your shader.
Last video we added support for wind to blow snow across our terrain. That was cool but the implementation was fixed and required us to have wind move in a specific direction.
Mermaid is a language that allows you to define Flowcharts, Signal Diagrams and Gantt Charts and generate them. This makes it extremely easy to generate charts for websites, system designs or other uses for charts.
Webhooks are really popular these days. Every service seems to have support for them these days. Lets try using these fancy new function as a service things to consume them.
Ever wanted to bring your WPF or UWP application across platforms. What if you could ship your same app built on familiar WPF designs to MacOS, Linux and even Android and iOS?
We’re returning to our Mixer game with a game plan this time. The goal is to build small games that can be used almost like an interactive screen saver when you need to AFK during a live stream.
Lets explore drawing lines using the mouse in Unity. We’ll approach this in two parts. The first is to figure out how to cast a line from our camera where our mouse is.
Testing code is important. It ensures that the code you just wrote works, but more importantly it serves as documentation about exactly what your code does and ensures that after months of maintenance and changes that the code you haven’t touched in months still does what you think.
It’s time to add another layer to our Shield Shader. Projectiles are going to start causing distortions in the shield as they impact it instead of just pulsing a color along the shield.
Now that we’ve explored how to work with git locally lets dig into the remote aspects of it. We’ll explore how to clone a remote repository, how to make some quick modifications and then push that new branch up to the remote repository.
Git is a powerful tool for collaborating with teammates but can also be extremely handy when working alone. It makes experimenting with new features and preventing breaking things in your code a lot easier.
Docker for Windows/Mac has recently introduced built in Kubernetes support. With no prior experience using Kubernetes on Docker let’s see if we can setup and deploy a simple ASP.