Unlikely Teacher

1. Share Everything* [Programming Gotchas, Technology News, Insights on Living and Everything in Between]

Entries Tagged as 'Dotnet'

Hero Hack Pack

April 15th, 2008 · No Comments · Heroes, Programming, Tools

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 [...]

[Read more →]

Tags: ····

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 [...]

[Read more →]

Tags: ···

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;
[...]

[Read more →]

Tags: ····

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 [...]

[Read more →]

Tags: ···