Monthly Archives: August 2005

Remembering Function Pointers

August 13th, 2005
Posted in C++ | No Comments

While driving on my way back home at the end of the day, I thought about the things that were very exciting to learn about during my early computing years. The notion of a function pointer was one of those things. I was very familiar with functions and variables. I was also familiar with the […]

Microsoft vs. Google

August 4th, 2005

I’ve been following the conflict between Google and Microsoft over the employment of Kai-Fu Lee . It seems that Microsoft is having a difficult time retaining their employees. Microsoft would rather litigate and mar their company image, and at the same time, enhance Google’s image as an employer that is willing to take risks when […]

Function Overloading and PHP

August 3rd, 2005

I’m proud of writing elegant code that can be easily read and intuitively understood. I use whitespace to increase my code’s readability, and I utilize simple, specialized programming language constructs to make my code more concise. For example, I’ll use PHP’s foreach construct, instead of a traditional for loop, to eliminate unnecessary indexers. This construct […]