-
Archives
-
Meta
Monthly Archives: August 2008
Multi Monitor Wallpapers at FrozenTear.com
I’ve put up some of my multi monitor wallpapers at frozentear.com. If you develop on a 3200×1200 screen you might want to check this out. No promises, I’m a coder not an artist. :)
Posted in Other
Leave a comment
ISession Extension for Saving Multiple Objects
Incredibly simple, but quite useful: public static void Save(this ISession session, params object [] entities) { foreach (var o in entities) { session.Save(o); … Continue reading
Posted in c#, NHibernate
Leave a comment
Abstract Class Mappings
If you’re running into this error in NHibernate: System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. Parameter name: Attempting to parse a null value into an sql string. Examine your mappings for abstract classes that aren’t implemented, … Continue reading
Posted in Uncategorized
Leave a comment
Death to Foo and Bar
I’ve had it with Foo and Bar. They are right out. For too long we programmers have put up with these sorry excuses for example classes in documentation, lectures, examples, and now that TDD is all the rage, tests. There … Continue reading
Posted in Uncategorized
Leave a comment
NHibernate Developer
W00t! I’ve been accepted as a developer of NHibernate. I’m looking forward to helping this project move along as I discover things that I can fix…
Posted in Uncategorized
1 Comment