Deserializing Interface Properties using Json.Net
The Problem Let’s say that you have a simple class structure such as this one: public class Thing { public string Name { get; set; } } public class ThingContainer { public Thing TheThing { get; set; }...
View ArticleProxyApi: Now With Intellisense!
After announcing ProxyApi in my last post I had a few people suggest that it would be more useful if it included some kind of intellisense. So…now it does! Install the new ProxyApi.Intellisense NuGet...
View ArticleSingle Page Applications using Node & Knockout
This post is going to be a short walkthrough on how to use Node and KnockoutJS to create a simple single page application. What is a Single Page Application? …a web application or web site that fits on...
View ArticleProtecting your CouchDB Views
If you work with a SQL or other RDBMS database you most likely have your schema backed up somewhere under source control. Maybe it’s a bunch of SQL scripts, maybe it’s the classes from which you...
View Article