Recent Comments
John on RSA using BouncyCastle: Hi, I am looking for an infrastructure like JCE in java so I can “install”...
DW on Extension methods for copying or cloning objects: I found this framework helpful. Thanks. One suggestion: in...
yoosiba on Continuous Testing for Visual Studio: Hey. I have installed your plugin into my MSVS2008. I also added to...
makeitfaster on Continuous Testing for Visual Studio: [...] Continuous Testing for Visual Studio 2008 and 2010 [...]
Sebastian Vilstrup on Continuous Testing for Visual Studio: After a few mails back and forth with Håvard, we got it...
Valamas on Continuous Testing for Visual Studio: Thank you for a wonderful product. It was only weeks ago I though...
Twitter
- @runegri There's always the Sketchup warehouse if you're looking for 3D models: http://bit.ly/bARU6i 2010/07/18
- Congratulations Spain! :) 2010/07/11
- RT @sh1mmer: I might be crazy, but I'm going to write a DNS server using Node.js. #everythingisanail 2010/07/09
Category Archives: Software Design
Object-Relational Mappings Considered Harmful
Creating an Object-Relational Mapping (ORM) has become the de facto way of handling persistence in the object-oriented programming paradigm. Almost all systems require some form of persistent state, and relational databases have become the de facto place to put that … Continue reading
Five advices on implementing a cache
I’ve spent the last few days at work implementing a cache in the data access layer (DAL) of one of our services. The cache works great, and speeds up our service very much in some cases, and somewhat in all … Continue reading