How to connect to database from Unity

Please disregard any security risks with this approach Do not do it like this. It doesn’t matter if security will come before or after. You will end of re-writing the whole code because the password is hard-coded in your application which can be decompiled and retrieved easily. Do the connection the correct way now so that you won’t … Read more

.NET Core vs Mono

What is the difference between .NET Core and Mono? I found a statement on the official site that said: “Code written for it is also portable across application stacks, such as Mono.” My goal is to use C#, LINQ, EF7 and Visual Studio to create a website that can be ran/hosted on Linux. Someone told … Read more

Bash script: bad interpreter

The first line, #!/bin/bash, tells Linux where to find the interpreter. The script should also be executable with chmod +x script.sh, which it appears you did. It is highly likely that you created this file with a windows editor, which will place a <cr><lf> at the end of each line. This is the standard under … Read more