Github outage official status updates
status.github.com36 pointsby zbanks9 comments
var fs = require('fs');
function writeFile(filename){
return function(err){
if (err) throw err;
console.log('Wrote ' + filename);
}
}
function writeHello(){
return fs.writeFile('./hello.txt', 'Hello!', writeFile("hello.txt"));
}
function writeWorld(){
return fs.writeFile('./world.txt', 'World!', writeFile("world.txt"));
}
writeHello();
writeWorld();
They are not publishing their own source.
If you're running a small, open source project, this seems like an easy way to manage deployments. Kudos to them for a free plan.