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(); |
View WorstThings
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
1. Syntax of `switch`. | |
2. Syntax of `for`. | |
3. Array initializers thorugh `{}` (so now it is both `new[] {}` and `{}`) | |
4. Having both `delegate(..) {..}` and `(..) => ..`. | |
5. Reserving `*` for rarely-used pointer syntax. |
View ancestorClass.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
angular.module('...').directive('ancestorClass', function() { | |
'use strict'; | |
function link(scope, element, attrs) { | |
var targets = element.parents().filter(attrs.selector); | |
scope.$watch(attrs.class, function(value) { | |
for (var key in value) { | |
targets.toggleClass(key, value[key]); | |
} | |
}, true); |
View PvcBuildIdeas.csx
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
// current | |
pvc.Task("build", () => { | |
pvc.Source("WebApplication.sln") | |
.Pipe(new PvcMSBuild( | |
buildTarget: "Clean;Build", | |
enableParallelism: true | |
)) | |
.Pipe(new PvcSomethingElse(...)); | |
}); |
View ExpressionProblem
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 Node {} | |
public class NodeA : Node {} | |
public class NodeB : Node {} | |
public class NodeBProcessor : Processor<NodeB> { | |
} | |
public class ProcessingDispatcher { | |
public void Dispatch(Node node) { | |
var processor = FindBestProcessorFor(node); |
View ContractResolverWithPatchSupport.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 AshMind.Extensions; | |
using Newtonsoft.Json.Serialization; | |
namespace PatchDesignDemo { | |
public class ContractResolverWithPatchSupport : DefaultContractResolver { | |
private readonly IContractResolver _inner; |
View AssertExtensibility.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; | |
namespace SomeUnit { | |
public class AssertHelper { | |
public static AssertHelper Assert { get; } = new AssertHelper(); | |
} | |
} | |
namespace SomeUnit.Extensions { | |
public static class AssertExtensions { |
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 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())); |
OlderNewer