Skip to content

Instantly share code, notes, and snippets.

View puryfury's full-sized avatar
👁️
Watching you

(Ծ‸ Ծ) puryfury

👁️
Watching you
View GitHub Profile
@puryfury
puryfury / DBConn.cs
Created May 17, 2013 11:59
Nancy Firebird Embedded DB Access Base Example
using System;
using System.Configuration;
using System.Collections.Generic;
using System.Data.Common;
using System.Linq;
using System.IO;
using System.Reflection;
using System.Web;
using FirebirdSql.Data.FirebirdClient;
@puryfury
puryfury / AttributeDriver.cs
Last active December 17, 2015 10:58
Nancy Attrubute-Driven Module Example
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Web;
using Nancy;
namespace Nancy
@puryfury
puryfury / AOP.cs
Created May 17, 2013 11:56
Nancy Web App AOP Example
using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Linq;
using System.Reflection;
using System.Web;
using System.Web.Helpers;
using Nancy;
@puryfury
puryfury / Session.cs
Created May 17, 2013 11:54
BinaryRage based Nancy Session Example
using Nancy;
using Nancy.Bootstrapper;
using Nancy.Cookies;
using Nancy.Cryptography;
using Nancy.Session;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Security.Cryptography;
using System.IO;