Git, TortoiseGit, Github and the rest
24 Aug 2010via blogs.lessthandot.com A good article on getting started with Git, TortoiseGit and Github Posted via email from solution revolution
via blogs.lessthandot.com A good article on getting started with Git, TortoiseGit and Github Posted via email from solution revolution
via hungoverowls.tumblr.com Normally this blog is just about code but hungover owls. Quality Posted via email from solution revolution
.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,...
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