Hungover Owls

via hungoverowls.tumblr.com Normally this blog is just about code but hungover owls. Quality Posted via email from solution revolution

Continue Reading

My .NET ICache

.NET caching code used to help improve testability, swap out different implementations, and enhance the API. http://openmymind.net/2010/8/24/My-DOTNET-ICache# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 using System;using System.Web.Caching;public interface ICache{    T Get<T>(string key, params object[] keyArgs);    T Fetch<T>(string key, Func<T> callIfGetReturnsNull, params object[] keyArgs);    T Fetch<T>(string key, Func<T> callIfGetReturnsNull, DateTime absoluteExpiration,...

Continue Reading

Roll your own mocks with RealProxy

An article on writing your own mocking framework. This looks like a good side project to do at work.... Posted via email from solution revolution

Continue Reading

Design Through Testability - An Example

Posted via email from solution revolution

Continue Reading

50 Awesome New jQuery Plugins

via speckyboy.com Posted via email from solution revolution

Continue Reading