Unity Persistent Data Path (Application.persistentDataPath)
The Unity persistentDataPath is read only and will return the path where you can save data that will be persitent betwen sessions. Even app updates doesn’t touch the files in…
C# Ping Check the easy way
How can we check if a computer, server, or another device is online? We can use a C# Ping check. If you can check the device with the ping command…
C# return index of a object in a List
How to return the index of a list type that is an object in C#. Most examples only shows simple string types when they show how to find the index…
Install .net core 5 on Raspberry Pi/Raspbian
How to Install .net core 5 on Raspberry Pi (Raspbian 32 bit). At the moment of writing this, there is only a beta version of the 64 bit Raspbian. So…
C# 99 bottles of beer on the wall
C# 99 bottles of beer on the wall is an easy programming challenge. The challenge can be solved in at least dozens of ways. Here is one quite compact way…
4 Best Free Nas Software That Is Open Source
Free NAS software or operating systems that are free to use and will turn a computer into a NAS more advanced than the dedicated boxes sold. What is NAS An…
WordPress: Your site does not have a default theme
If you get the message Your site does not have a default theme, it is because you are missing the default theme. The default theme is used by WordPress in…
Raspbian default password
Looking for the Raspbian default password? It is the most essential username and password that you will need for your raspberry. At least if you are running Raspbian and can’t…
OpenMediaVault default password
OpenMediaVault default password is printed in the documentation. I did not see it the first time I installed it either. So I had to do some detective work my self…
Unity Random Bool with three different methods
Do you need to create a random Bool or Boolean in Unity? Here is 3 different methods to show you how to do Unity Random Bool. Bool can also be…