PHP

Quick tip: writing files in node.js

Posted on:

The quick and dirty way is: var fs = require(‘fs’); fs.writeFile(“/tmp/test”, “Hey there!”, function(err) { if(err) { console.log(err); } else { console.log(“The file was saved!”); } }); but […]

iOS

iOS 8 Beta 3 is out

Posted on:

Apple today released the third beta of iOS 8 to developers, three weeks after releasing the second beta update and more than a month since unveiling the new […]