Skip to content
View johnathan-sewell's full-sized avatar
Block or Report

Block or report johnathan-sewell

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. page-party page-party Public

    Experiments with Partykit

    TypeScript 1

  2. nodeschool-promise-it-wont-hurt nodeschool-promise-it-wont-hurt Public

    JavaScript

  3. nodeschool-functional-javascript nodeschool-functional-javascript Public

    JavaScript

  4. Setting up NHibernate session per we... Setting up NHibernate session per web request - Global.asax
    1
    public static ISessionFactory SessionFactory { get; private set; }
    2
    protected void Application_Start()
    3
    {
    4
    	AreaRegistration.RegisterAllAreas();
    5
    
                  
  5. Bare bones NHibernate configuration ... Bare bones NHibernate configuration for Lexikon app
    1
    <?xml version="1.0" encoding="utf-8" ?>
    2
    <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    3
    	<session-factory>
    4
    		<!-- properties -->
    5
    		<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
  6. Enables you to use relative paths wi... Enables you to use relative paths with EPiServer VirtualPathVersioningProvider
    1
    using System;
    2
    using System.Collections.Specialized;
    3
    using System.IO;
    4
    using System.Web.Hosting;
    5