Skip to content

Instantly share code, notes, and snippets.

View Ingramz's full-sized avatar

Indrek Ardel Ingramz

View GitHub Profile
@Ingramz
Ingramz / castpaperer.js
Created July 16, 2014 11:42 — forked from anonymous/castpaperer
Quick and dirty script to download Chromecast wallpapers.
var https = require('https');
var fs = require('fs');
var request = require('request');
var crypto = require('crypto');
function nothing(){}
function download(uri, filename, callback)
{
fs.exists(filename, function(exists)