Getting to Know Me

Just recently, I noticed that my blog still carried the default About page that normally comes with free WordPress accounts – shame! I’m certain there aren’t many of you out there who care about who I am, you care about the content. Either way, bare with me while I re-introduce myself. My name is Khalil [...]

Enable Debugging in Silverlight Applications

If you ever wonder why the breakpoints in your Silverlight application are never hit, it is simply because you have not enabled debugging for it. The following steps describe how you can enable debugging for your Silverlight apps. From the Solution Explorer, select the web project that hosts your Silverlight XAP files, and then Double-click [...]

Create CSV From a Simple Collection.

Here is a handy snippet I normally use to create a CSV string from a simple collection of strings: 1: public string ToCsv(IEnumerable<string> collection){ 2: return string.Join(“,”, collection.ToArray()); 3: }

10 LINQ Myths

While brushing up on my LINQ, I stumbled upon this LINQ myth buster. If you haven’t heard, now you know.

Vista, Where’s My Hibernate Button

I noticed that Windows Vista annoyingly hides the hibernate button when one performs a Disk Cleanup or defragmentation operation. This behaviour may not exist with your system, but if it does then you can bring back your hibernate option. From the command prompt, enter the command: powercfg –H on Note that you’ll need to be [...]

The Toughest Developer Puzzle Ever!

Haha, this was really a timewaster considering the fact that I had no difficulty getting as far as I can (Level 5). Hehe. You may want to test your might with the “toughest developer puzzle ever“!!!

Motivation is Hard; Failure is Easy

Motivation is Hard; Failure is Easy Posted using ShareThis

Microsoft Offers Free Certification to Students

I have lived with the conviction that certifications do not determine the best of developers, or the level of growth in our profession; many other things do. Statistics (from DreamSpark) claims that 55% of hiring managers consider certification as a criterion for hiring; 46% consider it as a criterion for promotion; and 43% of individuals [...]

Data Models for Free

Just yesterday, I discovered an article about a Library of Free Data Models,I knew I had to see the website for myself. I must say, the collection there is quite fascinating. To those who find it important, Enjoy!

Windows XP Style XPlorerBar for WPF on CodeProject

I’ve used the XP Style explorer bar several times in my Windows Forms projects. Here is pretty impressive CodeProject article written by Olivier Simon with an implementation of a fully customizable XPlorerBar for WPF.

Follow

Get every new post delivered to your Inbox.