Order your own Hero Hack Pack and get started with Open Source and Microsoft technology.
Each Hero Hack Pack contains free evaluation editions of Windows Server 2008 and Visual Studio 2008, plus resources for getting started [...]
Entries Tagged as 'Dotnet'
Hero Hack Pack
April 15th, 2008 · No Comments · Heroes, Programming, Tools
Tags: Dotnet·Microsoft·Open Source·Visual Studio 2008·Windows Server 2008
Java vs C# – switch statements
March 19th, 2008 · 1 Comment · C#, Java
This is my first installment of a new blog series I’m planning to call Java vs C#.
Today, I’ll be discussing the behavior of “switch” statements in both Java and C#.
Consider this snippet for Java which prints out the values “1″, “2″ and “Default” when value = 1.
Since I did not add “break” statements after each [...]
Tags: C#·Dotnet·Java·Programming
Fibonacci
February 5th, 2008 · No Comments · Books, Programming
If you were given a task to compute the nth Fibonacci number, how would you do it?
You would go straight away and write a recursive function right?
public static int getNumberRecurse(int n) {
if (n == 0 | n == 1) {
return 1;
[...]
Tags: Algorithms·Dotnet·Java·Math·Puzzles
IT HERO3S Solutions Challenge
January 17th, 2008 · No Comments · Heroes, Philippines, Programming
The IT HERO3S CHALLENGE is a Solutions Development Challenge for Developers and IT Professionals in the Philippines. The aim of the contest is to provide a solution for an actual NEED by any of the participating NGOs. Unfortunately, the deadline for submission of entries was two days ago (January 15, 2008).
Too bad I didn’t have [...]
Tags: Dotnet·Microsoft·NGO·Philippines
