Skip to content

Instantly share code, notes, and snippets.

@kamicollo
kamicollo / cronjob.example.txt
Created September 17, 2017 18:19
Cron job for updating Goodreads data
0 5,17 * * * php /path/to/laravel/directory/artisan update:goodreads
Verifying that +aurimas is my openname (Bitcoin username). https://onename.io/aurimas
@kamicollo
kamicollo / picplz-downloader.js
Created June 4, 2012 20:17
One JS line to download all picplz photos at once
jQuery('a.download').each(function(a,b) { setTimeout(function(){ w = window.open(jQuery(b).attr('href'), '_blank'); setTimeout(function(){w.close()}, 1000);}, 2000);});