Skip to content

Instantly share code, notes, and snippets.

@norganna
Created December 29, 2011 09:20
Show Gist options
  • Save norganna/1533161 to your computer and use it in GitHub Desktop.
Save norganna/1533161 to your computer and use it in GitHub Desktop.
<html>
<head>
<script>
var id = Math.floor(Math.random() * 100000000);
timer = setInterval(function() {
console.log("Hi, I'm " + id);
}, 1000);
console.log("Starting " + id + " at " + (new Date));
</script>
</head>
<body>Test</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment