Here’s the work-in-progress Raspberry Pi Retro arcade machine … It works thanks to this website Read more →
Month: June 2013
Basic MSMQ example
ClassLibrary project public class Command1 { public int id { get; set; } public string name { get; set; } } static string queue = @”.private$Command1Queue”; Client project static void Main(string[] args) { MessageQueue msMq = new MessageQueue(queue); while (true) { var key = Console.ReadKey(); switch (key.Key) { case ConsoleKey.Escape: return; default: string name = “SomeName”; for (int i =… Read more →
MassTransit
How shite can documentation be? Just look at MassTransit. FAIL. this link was a tiny bit useful The following code took a few hours to form – it shouldn’t be so difficult. Why spend an age writing something that looks to be great and then offer little to no help in how to use it? public class Model1 { public… Read more →
More TDD Kata’s
The Bowling Game Kata Gutter game scores zero – When you roll all misses, you get a total score of zero. All ones scores 20 – When you knock down one pin with each ball, your total score is 20. A spare in the first frame, followed by three pins, followed by all misses scores 16. A strike in the… Read more →
SQL Server Maintenance
http://www.sqlservercentral.com/scripts/Backup/62380/ Backup Integrity check Index & statistics maintenance Read more →