https://i.ytimg.com/vi/tnsQBlnwNvY/mqdefault.jpg
Using Steam VR Vive Tracker's in Unity 3D
· ☕ 1 min read
Lets set up a Vive Tracker inside of Unity 3D. HTC’s tracker gives you six degree of freedom tracking including position, yaw, pitch and roll.

https://i.ytimg.com/vi/aX7wIp-r48c/mqdefault.jpg
The Most Complicated Nothing Shader - Unity 3D Grab Pass
· ☕ 1 min read
Grab Passes are a really complicated and expensive way to do nothing in a shader. A Grab Pass is an additional pass added to your shader that captures the scene and allows you to use that captured texture in your shader.

https://i.ytimg.com/vi/dRcDtFcKG28/mqdefault.jpg
Exporting A Minecraft Build to Unity 3D
· ☕ 1 min read
Minecraft recently added the ability to export your builds as 3D models that can be uploaded to Remix 3D or opened in Paint 3D.

https://i.ytimg.com/vi/v3Dq_oVHsNs/mqdefault.jpg
Custom Particle Emitters in Unity 3D
· ☕ 1 min read
Lets build a custom particle emitter that can emit particles on the ground anywhere in a rectangle. This is the first step of lighting the grass in our grass renderer on fire.

https://i.ytimg.com/vi/4zizgh2duqY/mqdefault.jpg
Lets Make Improved Bezier Curves
· ☕ 1 min read
Extending Bezier Curves. Turns out you can recursively define them with relatively little work. In this video we’ll implement Bezier Curves using a recursive algorithm so we can support any number of points from 1 to thousands.

https://i.ytimg.com/vi/Cv292D_8NN0/mqdefault.jpg
Welcome to Docker, Docker Hub and Mongo DB
· ☕ 1 min read
Our first look at containers and how to use them using Docker for Windows. We’ll be creating a MongoDB instance using an image from Docker Hub and then connecting to it using a local mongo cli.

https://i.ytimg.com/vi/NeZcAYJdkv4/mqdefault.jpg
Sending Array's To Shaders - Lets Make an Energy Shield - Part 1
· ☕ 1 min read
Lets start building a cool energy shield shader that can dynamically react to collisions and more. To begin we’ll be looking at how to pass collision information to our shield by sending an array of positions to our shader.

https://i.ytimg.com/vi/j1i68gUqIQg/mqdefault.jpg
3D Printing a Sticky Note Holder in 3D Builder
· ☕ 1 min read
Lets build a very simple holder for some sticky notes and a pen. We’re going to look at how to leverage 3D Builder a free tool included with Windows 10 and Cura a free program from Ultimaker.

https://i.ytimg.com/vi/4nmVXKu6e_Q/mqdefault.jpg
Growing Trie's - Lets Make a Simple Prefix Tree in C#
· ☕ 2 min read
Lets explore how we might build a trie data structure. A trie is a tree that is used to represent strings (or really any enumerable type) in a way that allows it to be easily searched in a way where it can provide potential answers given a prefix.

https://i.ytimg.com/vi/fHQk_vwEOiM/mqdefault.jpg
Reactive Serial Communication in UWP - Data Cube
· ☕ 1 min read
Data Cube is back! The Internet of Things coolest way to visualize interactive data. Data Cube is an IoT device that allows interactions from other places (YouTube Views, Twitter Tweets or simple Website Views) to be visualized as data traveling along an LED strip.

https://i.ytimg.com/vi/rGt9haUx-aQ/mqdefault.jpg
Lets Make a Dissolving Shader
· ☕ 1 min read
A mage blasts a rock with a magic missile, the magic engulfs the stone in flame and slowly tears it apart.

https://i.ytimg.com/vi/3Za2NfBAkNk/mqdefault.jpg
Building a Website with ASP.NET Razor Pages
· ☕ 1 min read
Have you ever wanted to be able to use code to help build your webpages? Maybe loop over a list and create a table or inject user data onto the page without javascript or anything else?