Skip to content

Instantly share code, notes, and snippets.

View marinofranz's full-sized avatar
✈️
Anything is VFR if you’re brave enough

Marinó marinofranz

✈️
Anything is VFR if you’re brave enough
  • Hafnarfjörður, Iceland
  • 11:29 (UTC)
View GitHub Profile
@agustinhaller
agustinhaller / makeId.js
Created August 8, 2013 03:06
makeId function
function makeid(length)
{
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for(var i=0; i < length; i++)
{
text += possible.charAt(Math.floor(Math.random() * possible.length));
}