Javascript Stamp
console.log(stamp)
by JamesKyle
HTML
Brought to you by the <a target="_blank" href="https://twitter.com/#!/thejameskyle" class="notranslate">James Kyle</a>. Follow him for more!
CSS
body {
font: 1em/1.2em "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 30px;
}
a {
color: #36c;
}
JavaScript
console.stamp = function() {
var u = document.URL,
t = new Date(),
s = '\n' + u + ' at ' + t + '\n';
console.log(s);
}
console.stamp();