Skip to content

Instantly share code, notes, and snippets.

@nefftd
Created December 2, 2014 00:53
Show Gist options
  • Save nefftd/aef5a150ed8cf641aa8d to your computer and use it in GitHub Desktop.
Save nefftd/aef5a150ed8cf641aa8d to your computer and use it in GitHub Desktop.
local function big_jenna(len)
if len < 1 then return '' end
local s = {}
for i = 1,math.min(len,10000) do
s[i] = math.random(33,126) -- change to desired printable range [1,256]
end
return string.char(unpack(s)) .. big_jenna(len - 10000)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment