Skip to content

Instantly share code, notes, and snippets.

@benagricola
Created May 20, 2015 13:56
Show Gist options
  • Save benagricola/77bc15259fddab918545 to your computer and use it in GitHub Desktop.
Save benagricola/77bc15259fddab918545 to your computer and use it in GitHub Desktop.
local num = 144678151251494874
local bin = ""
while num > 0 do
local char = num % 256
num = num - char
num = num / 256
bin = string.char(char) .. bin
end
print(pickle.unpack('bbNn',bin))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment