Learning anything new is always a challenge. Especially if you are starting from ground zero, I recently had a client of mine ask for a Unity Interactive that pulls in 100,000+ data points to do a data visualization. I'm by far no expert in unity3d but this did … [Read more...] about The Self-Taught Game Programmer
C#
How to enable vi mode in MonoDevelop
For OSX: MonoDevelop → Preferences → Text Editor → Behavior → Navigation (use vi modes) For Windows: Edit → Preferences → Text Editor → Behavior → Navigation (use vi modes) … [Read more...] about How to enable vi mode in MonoDevelop
How to setup monoDevelop for ASP.NET applications in Linux / Ubuntu?
sudo apt-add-repository ppa:directhex/ppa sudo apt-get update sudo apt-get install monodevelop sudo apt-get install mono-xsp What just happened? Simply, added an external package, updated those packages, then installed mono develop then finally last part install … [Read more...] about How to setup monoDevelop for ASP.NET applications in Linux / Ubuntu?
How to get the source code for any website using C# Video
How to get the source code for any website using C#
Here is a small console application that will read any URL, and return back the source code for that page, in this example, we are fetching the source code from coding horror. Let's get started with some shell commands Let's go ahead and save this class but let's … [Read more...] about How to get the source code for any website using C#
How to run/compile C# application in Ubuntu/Linux?
How to run C# application in ubuntu?
Let's get started, pull up a terminal and fire up sublime install mono-gmcs to compile our C# programs Now we are ready to write some code! let's get started by creating our first class and call it printHello.cs Let's go ahead and save this class but let's … [Read more...] about How to run C# application in ubuntu?
C# Programming
Why the Videos? I'm a college student studying the art of computer science, since this semester I'm taking advance C# programming, I decided to create videos as i learn new information about C# and the .net framework. All this sounds good but what is it in it for … [Read more...] about C# Programming
A new type of String in C# verbatim Strings!
using System; using System.Collections.Generic; using System.Linq; namespace firstProject { class Program { static void Main(string[] args) { //verbatim string string foo = @"This is an as is a verbatim string with … [Read more...] about A new type of String in C# verbatim Strings!