Sep 16 Word of the Day
(noun) A successful type of theft which results in an acceptable, impressive and rewarding payday for the protagonist.
Last night, hit a good lick. I brought home three figures easy for about two hours worth of my time. Not too bad I don't think.
by Nikki Stixx January 18, 2021
2
Little pieces (bits) of code found on the net (web).
Simple things like stupid html tricks, css hacks, javascript tricks, not complex programs like chat clients.
Simple things like stupid html tricks, css hacks, javascript tricks, not complex programs like chat clients.
Look at this javascript webit I found!
//shake your browser
function shake(n) {
if (self.moveBy) {
for (i = 15; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
}
//shake your browser
function shake(n) {
if (self.moveBy) {
for (i = 15; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
}
by Shrikey March 27, 2004