Skip to content

Instantly share code, notes, and snippets.

let bin = System.IO.File.ReadAllBytes "../../test"
let mutable i = 0
let show len asm =
printf "%08X " i
for j = 0 to len - 1 do
printf "%02X" bin.[i + j]
for j = len to 5 do
printf " "
printfn "%s" asm
i <- i + len
#!/usr/bin/env ruby
confbase = 'git-ssh-create'
init_command = 'git --bare init'
server = `git config --global #{confbase}.server`.chomp
if server.empty?
warn "Please set git config server."
warn " git config --global #{confbase}.server '[username@]yourserver.example.com'"
exit 1
@sousk
sousk / jquery.easing.1.3.js
Created February 22, 2010 03:28 — forked from cho45/sample3.html
animation demo script with jsdeffered described at http://subtech.g.hatena.ne.jp/cho45/20100221/1266758781
/*
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to offer multiple easing options
*
* TERMS OF USE - jQuery Easing
*
* Open source under the BSD License.
*