Software Development
33 posts
Design Patterns Game
Smashing Magazine linked to this game ( http://designpatternsgame.com/patterns) recently. There are 23 multiple choice questions and you can switch between ES5 or ES6 Javascript. Give it a try!
Unexpected C# Behaviour
I recently stumbled across the unexpected behavior of C# when dealing with static variables. I put it a green unit test: private static string a = $"a{b}"; private static string…