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 […]

PHP

Zmiana jezyka

Posted on:

Po ponad dwóch latach prowadzenia bloga postanowiłem zmienić jego koncepcję – pierwotną ideą było pisanie o rzeczach które trudno wygooglować albo do których nie udało mi się znaleźć […]