Software Development Developing with Ruby on Rails using Docker for Windows I have been using Vagrant for a while in order to develop Ruby applications in an isolated environment, and it has served me well. But I wanted to give Docker a try! Especially since they have released Docker for Windows. Previously we only had the Docker Toolbox that included a
Software Development Lets Play With Nancy! I have just discovered Nancy when I was trying to find a way to decouple the MVC element from my ASP.NET applications. I knew there had to be a way! It is very easy to decouple your Web API stuff using the readily available Owin packages ( Microsoft.AspNet.WebApi.
Software Development Hello, Entity Framework With the near release of Entity Framework 7, I thought it was about time I gave my two cents on the usefulness of the current version. I’ve been using it for a few years now, and have found it easy (and fun) to use. But, what is Entity Framework?
Software Development JM09K Matrix Keypad Quirks Some more details may be required for the JM09K Matrix Keypad. I spent far too long trying to find out what pins needed to be hooked up, as they are not the same as the matrix keypads used in some of the Arduino projects I found. Luckily, I managed to
C Sharp Programming FEZ Panda II with Matrix Keypad After a few days of attempting to get this to work I thought I would save some time for anyone else attempting this particular activity. I am using the JM09K keypad that I bought quite a while ago. I am also using the FEZ Panda II A link to the
C Sharp Programming Deriving from our RegistryConfig class Now we have our abstract RegistryConfig class ready to use we can create our new subclass. This will hopefully show you how easy it is to create properties that utilize the methods of the RegistryConfig class! Creating our subclass Lets call our new class TestConfig and build a constructor that
C Sharp Programming Extending the C# Registry-based configuration class So we now have our RegistryConfig class ready... but how can we make it better?! Use reflection! We will use reflection to perform initialization on the classes properties, so that the settings can be added to the registry straight away. This will ensure that the registry has all the properties
C Sharp Programming C# .NET Registry-based configuration base class I usually find myself wanting to be able to configure my application without having to change the underlying code. And although Visual Studio allows you to create application settings inside the IDE (saved to a .exe.config file), I would prefer to use the registry to hold my applications configuration.