Archive for 'Programming'
Subversion "Shelving"
Posted on 07. Jan, 2009 by bryan.
I had one of those moments yesterday where you get 60% of the way through fixing a problem a certain way, and then discover that there was a simpler, more elegant solution that would require 10% of the effort. Problem being, I had just written a lot of code that I didn’t necessarily want to [...]
Continue Reading
Great new Visual Studio color theme
Posted on 28. Mar, 2008 by bryan.
The other day Tomas Restrepo released a new Visual Studio Color Theme called Distant Shores. It is a low-contrast theme with a dark background, and I must admit I am a BIG FAN! Have a look at the following screen shot. BTW – The font I am using is Damien Guard’s Envy CodeR font that [...]
Continue Reading
My First Linq Program
Posted on 18. Jun, 2007 by bryan.
I successfully coded my very first LINQ program today, and man is it a doozie! Observe:
class Program
{
static void Main(string[] args)
{
List<Student> studentList = new List<Student>();
studentList.Add(new Student(“Charlie”, “Brown”));
[...]

