Skip to content

Instantly share code, notes, and snippets.

View zgramana's full-sized avatar

Zachary Gramana zgramana

View GitHub Profile
@mathias-brandewinder
mathias-brandewinder / word2vec.fsx
Created March 22, 2016 17:45
Word2Vec experiment
#I "../packages/"
#r @"FSharp.Data/lib/net40/FSharp.Data.dll"
#r @"StemmersNet/lib/net20/StemmersNet.dll"
#r @"FSharp.Collections.ParallelSeq/lib/net40/FSharp.Collections.ParallelSeq.dll"
#load "Utilities.fs"
open FSharp.Data
@garuma
garuma / Parser.jay
Last active January 13, 2016 19:37
%{
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
namespace MarkdownParser
{
class Counter
{
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=JWR66N
ro.build.display.id=JWR66N
ro.build.version.incremental=711294
ro.build.version.sdk=18
ro.build.version.codename=REL
ro.build.version.release=4.3
ro.build.date=Sat Jun 15 19:53:50 UTC 2013
ro.build.date.utc=1371326030
@roidrage
roidrage / ebooks.md
Created December 2, 2011 15:15
Self-published and awesome
@carlhoerberg
carlhoerberg / global.asax.cs
Created March 15, 2011 10:38
How to get precompiled mvc 3 site working in Mono 2.10
public class MonoWebFormViewEngine : WebFormViewEngine
{
protected override bool FileExists(ControllerContext controllerContext, string virtualPath)
{
return base.FileExists(controllerContext, virtualPath.Replace("~", ""));
}
}
public class MonoRazorViewEngine : RazorViewEngine
{