Dotnet Getting started building a simple Nancy API What? Other than it being totally AWESOME?! Nancy is a framework for creating web applications. It makes sure to implement the super-duper-happy-path, which means it requires very little effort to get a website up and running. Here I will give a basic overview of how to build a Nancy API.
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?
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.