Skip to content

Instantly share code, notes, and snippets.

View skatsuta's full-sized avatar

Soshi Katsuta skatsuta

View GitHub Profile
@skatsuta
skatsuta / disasm.fsx
Created July 6, 2014 10:32
8086 逆アセンブラ 統合版
let bin = System.IO.File.ReadAllBytes "../../cc"
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 8 do
printf " "
printfn "%s" asm
i <- i + len
@skatsuta
skatsuta / ginb
Created June 1, 2014 12:01
grunt-init and npm install and bower install
grunt-init && npm install && bower install
@skatsuta
skatsuta / mkcd
Last active August 29, 2015 14:02
mkdir and cd
mkdir -p $1 && cd $1