View RazorJavaScriptSupport.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Compilation; | |
using System.Web.Mvc; | |
using System.Web.Razor; | |
using System.Web.WebPages.Razor; | |
[assembly: PreApplicationStartMethod(typeof(AshMind.Web.Mvc.Razor.RazorJavaScriptSupport), "SetupAll")] |
View MonoidsInCSharp.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Monoid<T> { | |
public T None { get; private set; } | |
public Func<T, T, T> Operation { get; private set; } | |
public Monoid(Func<T,T,T> operation, T none) { | |
this.Operation = operation; | |
this.None = none; | |
} | |
} |
View FluentNHibernate.DesignByCommitee.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AutoMap.AssemblyOf<...>(new BusinessModelAutomapping()) | |
.Conventions.AddAssembly(Assembly.GetExecutingAssembly()) | |
.UseOverridesFromAssembly(Assembly.GetExecutingAssembly()) | |
.Alterations(a => a.AddFromAssembly(Assembly.GetExecutingAssembly())); |
View dcraw.gamma_curve.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void CLASS gamma_curve (double pwr, double ts, int mode, int imax) | |
{ | |
int i; | |
double g[6], bnd[2]={0,0}, r; | |
g[0] = pwr; | |
g[1] = ts; | |
g[2] = g[3] = g[4] = 0; | |
bnd[g[1] >= 1] = 1; | |
if (g[1] && (g[1]-1)*(g[0]-1) <= 0) { |
View QueryPropagatingRoute.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class QueryPropagatingRoute : RouteBase { | |
private readonly RouteBase target; | |
private readonly string[] queryStringKeys; | |
public QueryPropagatingRoute(RouteBase target, params string[] queryStringKeys) { | |
this.target = target; | |
this.queryStringKeys = queryStringKeys; | |
} | |
public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values) { |
View linq.fsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
let items = [-2; -1; 0; 1; 2] | |
let where = Seq.filter | |
let select = Seq.map | |
let each = Seq.iter | |
let positive x = x > 0 |
View FSharpCheat1.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
type Test() = | |
let f = fun x -> x | |
member this.F with get() = f | |
let t = Test() | |
ignore (t.F "5") // 1 | |
// ignore (t.F 5) // 2 | |
Console.WriteLine(t.F.GetType().BaseType) |
View htmlpeek.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var init = function($) { | |
$("<style type='text/css'></style>").text('.cx { background: #f5f2f0; color: black; }' + | |
' .cx .tag { color: #999; }' + | |
' .cx .tag .title, .cx .css .attribute { color: #905; }' + | |
' .cx .tag .attribute, .cx .string, .cx .css .tag, .cx .css .class { color: #690; }' + | |
' .cx .tag .value, .cx .keyword { color: #07a; }' + | |
' .cx { font-family: Consolas, Courier New; position: absolute; z-index: 50000; left: 0; top: 0; right: 0; white-space: pre; }') | |
.appendTo($('head')); | |
var source = $('<code></code>').text(document.documentElement.outerHTML) |
View jquery.loadScriptsFromGitHub.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/ashmind/8749472 | |
// jQuery plugin to load JS files from GitHub. | |
// NOT FOR PRODUCTION, use something like Bower instead. | |
// This is for quick iteration sites like CodePen or JSFiddle. | |
(function($) { | |
// this API requires blob SHA. get the SHA by requesting | |
// https://api.github.com/repos/:owner/:repo/contents/:path | |
$.loadScriptsFromGitHub = function(scripts, success) { |
View escher.lizard.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function drawLizard(context, size) { | |
var c = context; | |
var s = size; | |
c.save(); | |
c.strokeStyle = '#000000'; | |
c.fillStyle = '#000000'; | |
var m = c.moveTo.bind(c); | |
var l = c.lineTo.bind(c); | |
c.beginPath(); |
OlderNewer