Skip to content

Instantly share code, notes, and snippets.

@mstephenson6
mstephenson6 / PrintEverything.wsf
Last active January 3, 2016 21:19
PrintEverything
<job id="main">
<runtime>
<description>
Print everything in a folder (and its subfolders, recursively)
to the default printer. (c) 2011 mstephenson6, please share
with friends, bsd license
</description>
</runtime>
<resource id="WelcomeText">PrintEverything - easy way to print all files in a folder and its subfolders</resource>
@eculver
eculver / Auto-refresh bookmarklet
Created January 2, 2010 01:02
Auto-refresh bookmarklet
// origin: http://www.google.com/support/forum/p/Chrome/thread?tid=1a37ccbdde5902fd&hl=en
javascript:
timeout=prompt("Set timeout [s]");
current=location.href;
if(timeout>0)
setTimeout('reload()',1000*timeout);
else
location.replace(current);
function reload(){