Skip to content

Instantly share code, notes, and snippets.

@theuntitled
theuntitled / DataContext.cs
Last active December 14, 2018 11:12
Elmah v1.2 POCO and Code First Migration
using System.Data.Entity;
using ProjectName.Models;
namespace ProjectName {
public class DataContext : DbContext {
internal DbSet<ElmahError> ElmahErrors { get; set; }
}
@theuntitled
theuntitled / compass-config.rb
Last active August 29, 2015 14:03
Generates an inline svg with the specified styles
require File.join(File.dirname(__FILE__), 'inline-svg.rb');
# ... your stuff
input[type=date] {
-webkit-min-logical-width: 100%;
-webkit-appearance: menulist-button;
}