Skip to content

Instantly share code, notes, and snippets.

View caoakleyii's full-sized avatar

Chris Oakley caoakleyii

View GitHub Profile
@gbraad
gbraad / README.md
Last active September 7, 2023 11:57
The core algorithm/TOTP implementation used by GAuth: http://github.com/gbraad/gauth/, https://gauth.apps.gbraad.nl
@jasonbradley
jasonbradley / gist:4357406
Created December 22, 2012 03:47
Lua convert HEX to RGB
function Util:hex2rgb(hex)
hex = hex:gsub("#","")
return tonumber("0x"..hex:sub(1,2)), tonumber("0x"..hex:sub(3,4)), tonumber("0x"..hex:sub(5,6))
end