Skip to content

Instantly share code, notes, and snippets.

View pheuter's full-sized avatar

Mark Fayngersh pheuter

View GitHub Profile
#!/usr/bin/env ruby
require 'fileutils'
require 'open-uri'
def folders
FileUtils.mkdir_p %w(public/css public/js public/img views).map {|f| "#{ARGV[0]}/#{f}" }
end
def files
open("#{ARGV[0]}/Procfile",'w') { |f| f.write "web: bundle exec ruby web.rb -p $PORT" }
@pheuter
pheuter / MITClassof2015.html
Created November 14, 2011 05:32
Search through students by name, school, and interests. Leveraged by ThriftDB
<!DOCTYPE !html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>MIT Class of 2015 | Search</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.min.js"></script>
<script type="text/javascript" src="http://jashkenas.github.com/coffee-script/extras/coffee-script.js"></script>
<style type="text/css" media="screen">
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:none;}ins{background-color:#
class Quote():
def __init__(self, elements):
self.elements = elements
def __str__(self):
return "["+", ".join([str(e) for e in self.elements])+"]"
@pheuter
pheuter / serve.go
Created July 31, 2011 18:34
go http streaming
package main
import (
"fmt"
"io"
"io/ioutil"
"strings"
"exec"
"http"
)
@pheuter
pheuter / lisp.hs
Created May 1, 2011 03:34
Minimal Lisp in Haskell
{-# LANGUAGE OverloadedStrings #-}
{- To Run:
Load in ghci
:set -XOverloadedStrings (for convenience)
Execute repl expr -}
import Control.Applicative
import Data.Attoparsec hiding (Result)
import Data.Attoparsec.Char8 (char8, isDigit_w8, isSpace_w8)
λxy.x y
x y
λx.λy.x y (a b)
a b
λx.x y
λy.y y
λx.x
λy.y
λfx.f x