Technology

Programming, systems engineering, and all things IT

feed

Wanted: Talented .Net Web/Windows developer

My current employer is looking for a solid .Net/C# developer with experience programming web sites (ASP.Net, MVC, AJAX, JavaScript, etc.) and Windows applications (WinForms, WPF, etc.). If you’re interested in working for a great company located in downtown Manhattan, shoot me an email with your resume.
Check out the craigslist posting for more details.

John Dvorak apparently can’t use Google to find the right spelling for a tech product

John C. Dvorak, the legendary PC Magazine columnist, recently wrote a column about open source software (from the angle of Sun/Oracle and open source licensing). In it, he called PostgreSQL a MySQL killer – and every time misspelled it as PostgrSQL.

Come on, John, it’s not like PostgrSQL accidentally came up in your spell check… [...]

Does anyone want to take over EQ2Craft.com, an online database for EverQuest 2?

Quite a few years ago, I wrote a web site, EQ2Craft, as a fan site/resource for EverQuest 2 tradeskill professions. I haven’t played EverQuest 2 in years, nor have I cared to maintain EQ2Craft in years.
If anyone wants to take over the site, it’s yours for the taking. I’ll send you the SQL databases, ASP.Net [...]

Code comments: the best defense need not be offensive

I just wrote a line of code, then added a comment before it.

//these tests don’t bubble up, so…
test.Reset();

Then I thought, “Why am I commenting that? Isn’t the code’s intent explicit enough?” It is quite clear what the code is doing (resetting a test). However, the comment is necessary to give some insight into the business [...]

Mocking indexed properties with Moq

A coworker of mine (who just got back from the Microsoft MVP events in Seattle, congrats, Matt!) has turned me on to using Moq, which I must say is an impressive mocking framework that has made unit testing notably easier.
Recently I had the need to mock the IRequest interface of the Castle MonoRail framework – [...]