This article contains a collection of some of the top easy-to-use CSS libraries to add effects and...
Author - Nicola Pietroluongo
Mutation testing with PHP
In this post we are going to see what mutation test is and how to apply this technique in PHP. What...
Are you ready to refactor?
If it works doesn’t imply it’s good. Improving the internal structure of a project is...
The benefits of using Git
Introduction (Previously published on PHPClasses.org) As you may be aware, Git is a version control...
Article I wrote on php[arch]
Build a Local CI with Docker for PHP. If you struggle to find a fast way to test your code against...
Check the articles I wrote on Sitepoint.com
Randomness in PHP – Do You Feel Lucky? (This article analyzes problems related to random number...
Follow Fakerino on Google+
PHP fake data generator
I am pleased to announce a new young PHP project called Fakerino. Fakerino is a fake data generator...
Get web page window size with Javascript
It’s difficult to know the exactly window size, because every browser has different way to...
Javascript var_dump, print_r PHP like
function var_dump(obj) { var res = ''; for (var i in obj) { res += i + ": " + obj[i] + "\n"; }...