Category Archives: Programming
NETMF and the SparkFun SerLCD
Well… I’ve been spending some quality time with the .NET Micro Framework the last couple weeks. I’ve been always interested in electronics and the inner parts of devices. I even bought some Atmel AVR microcontrollers and a handful of components … Continue reading
Vici CoolStorage ported to MonoTouch
Philippe ported Vici CoolStorage to MonoTouch over the weekend. This makes Vici CoolStorage available for iPhone development using the MonoTouch framework. Due to the lack of reflection on MonoTouch class declarations are not abstract. Classes have to be declared as … Continue reading
Vici Project support has moved to StackExchange
We all love Stack Overflow, so when Joel Spolsky told the world that the platform would be made publicity available we move the Vici Project support to StackExchange. All questions regarding Vici MVC, Vici CoolStorage, Vici Parser, Vici WinService and … Continue reading
iPhone development books
Just a list of books regarding iPhone development. It’s just for personal use. Please leave a comment with your experiences of a book (what do you like/dislike about one of the books) or when a book seems to be missing … Continue reading
Improve website page loading with Page Speed
Thanks to a colleague I discovered Google’s Firefox add-on Page Speed. It helps you determine what you can do to improve the loading speed of you web pages. Page Speed needs to be used in combination with the well known … Continue reading
You want ASP.NET MVC? Choose Vici MVC!
Yesterday, Philippe Leybaert released Vici MVC 2.0. This full-blown MVC framework for building ASP.NET web applications without using WebForms is now part of the open-source Vici Project. Philippe describes Vici Project as follows: “The idea of the Vici Project is to provide … Continue reading
MonoDevelop 2.0 and Mono 2.4 officially released
The Mono project has announced the official release of Mono 2.4 and MonoDevelop 2.0. The new version of MonoDevelop introduces support for a long-awaited integrated debugging tool. Full article at Ars Technica Release notes Wanna test it right away? Download … Continue reading
Internet Explorer 8 and ASP.NET MVC 1.0 released on MIX09
Well, well, well… Microsoft has released two new “things”… First, you can all enjoy the official 1.0 release of ASP.NET MVC by downloading it from the Microsoft Download Center. I must say that I’m not really thrilled about it, because … Continue reading
GetHashCode() on a 32-bit vs a 64-bit platform
If you compile your .NET application with the standard “Any CPU” option, it will run as a 32-bit process on a 32-bit OS and as a 64-bit process on a 64-bis process. When you use GetHashCode() the generated hashes on … Continue reading
GetHashCode() in .NET 1.1 vs .NET 2.0
notepadd When migrating GarageTV from .NET 1.1 to .NET 3.5 I ran in a “strange” problem. It seems that there is a SearchBarrel table containing the links between keywords and posts (and some other info like keyword weight etc), so … Continue reading