Skip to content

Instantly share code, notes, and snippets.

View willf's full-sized avatar
✒️
pondering

Will Fitzgerald willf

✒️
pondering
View GitHub Profile
@willf
willf / genders.txt
Created February 14, 2014 01:45
Custom Genders in Facebook
Agender
Androgynous
Bigender
Cis Female
Cis Male
Cis Man
Cis Person
Cisgender
Cisgender Female
Cisgender Male
@willf
willf / student.scala
Created June 25, 2014 15:30
Simple Scala Student class
case class Student (fn: String, ln: String) {
def name() = s"$fn $ln"
def greet() = s"Hello, $name"
}
val s = Student("John", "Doe")
val l = List(s,s,s)
val res = l.map{_.name.length}.sum
@willf
willf / gist:5f36c2cfb8512acabb24
Created June 22, 2015 13:15
Simple elastic search calls
from elasticsearch import Elasticsearch
es = Elasticsearch()
es.create(index="test", doc_type="articles", body={"content": "One more fox"})
res = es.search(index="test", doc_type="articles", body={"query": {"match": {"content": "fox"}}})
print("%d documents found" % res['hits']['total'])
for doc in res['hits']['hits']:
print("%s) %s" % (doc['_id'], doc['_source']['content']))
@willf
willf / stats.rb
Created September 16, 2009 03:21 — forked from mojombo/stats.rb
one pass through records (for mean and variance); annoyingly proper definition of median
# Run the given block +num+ times and then print out the mean, median, min,
# max, and stddev of the run. For example:
#
# irb> stats(10) { sleep(rand / 100) }
# mean: 5.99ms
# median: 6.76ms
# min: 1.49ms
# max: 9.28ms
# stddev: 2.54ms
@willf
willf / sequence lines of text in f#.fs
Created May 25, 2010 06:45
read a sequence of lines in F# #fsharp
open System
open System.IO
let readLines (sr:TextReader) =
Seq.initInfinite (fun _ -> sr.ReadLine())
|> Seq.takeWhile (fun x -> x <> null)
let consoleLines() =
readLines Console.In
@willf
willf / bash command to sort on a tsv column, not the first column.sh
Created May 25, 2010 15:23
sorting on numeric keys on in the first column
sort -k2 -rn -t" "
# where the text bewteen the "" is Ctrl-V TAB
@willf
willf / use parallelisms.fsharp
Created June 1, 2010 14:15
Simple use of PSeq
#if INTERACTIVE
#r"FSharp.PowerPack.Parallel.Seq.dll"
#endif
// or add dll to References
open Microsoft.FSharp.Collections
[1;2;3] |> PSeq.sum;;
@willf
willf / text of the first 10 LI items in a XHTML document
Created June 2, 2010 15:48
command line .. look for all LI or TRs in a document
need to change the DTD declarations to point to a local copy of the W3 DTD
locally:
> ls *.dtd *.ent
xhtml1-transitional.dtd xhtml-lat1.ent xhtml-special.ent xhtml-symbol.ent
change:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr">
@willf
willf / do a sync http requesst.fs
Created June 8, 2010 21:04
Do a synchronous http request
open System
open System.IO
open System.Net
open System.Web
// get contents synchronously
let http_sync (uri:Uri) =
let reader = new StreamReader(WebRequest.Create(uri).GetResponse().GetResponseStream())
reader.ReadToEnd()
@willf
willf / gist:965713
Created May 11, 2011 01:01
Writing a GO test to test for the presence of a failure
func TestOutOfBoundsBad(t *testing.T) {
v := MakeBitSet(64)
defer func() {
if r := recover(); r == nil {
t.Error("Out of index error within the next set of bits should have caused a panic")
}
}()
v.SetBit(1000)
}