Skip to content

Instantly share code, notes, and snippets.

@MyNameIsKodos
Created February 14, 2015 02:22
Show Gist options
  • Save MyNameIsKodos/343c0e09abac85d2a023 to your computer and use it in GitHub Desktop.
Save MyNameIsKodos/343c0e09abac85d2a023 to your computer and use it in GitHub Desktop.
Random stuff lib
function str2hex(a) return a:gsub(".",function(a) return string.format("%02x",a:byte()) end) end
function hex2str(a) return a:gsub("..",function(a) return string.char(tonumber(a,16)) end) end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment