Javascript closures
Closures in JavaScript zijn functies met ‘vrije variabelen’. De functie onthoud zijn omgeving waarin hij gemaakt is. Je kunt een closure gebruiken […]
Closures in JavaScript zijn functies met ‘vrije variabelen’. De functie onthoud zijn omgeving waarin hij gemaakt is. Je kunt een closure gebruiken […]
Definitie: Een prototype is een object waarvan geïnstantieerde objecten de properties erven. (bron: JavaScriptWeblog) Als je, bijvoorbeeld, een functie ‘car’ maakt (wat dan […]
In this example, I want to make the owners and permissions of files in the current directory equal to the same file […]
It can be a bit painful to get the database connection started from your PHPStorm IDE to your MySQL database. As a […]
PHP CodeSniffer, aka phpcs, helps you in detecting violations in your PHP code. Violations can be: opening curly brackets in the wrong […]
Use PHP Code Sniffer to detect violations to coding standards in your PHP files. To use PHP Code Sniffer in PHPStorm, open […]
PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards. $ sudo pear install PHP_CodeSniffer That’s […]
What is PHP Mess Detector? Given its homepage, it aims to detect: Possible bugs Suboptimal code Overcomplicated expressions Unused parameters, methods, properties […]
Install PEAR on your OSX Mountain Lion machine to easily install PHP libraries. $ which pear -bash: pear: command not found Install […]
Install xdebug on the server Installing Xdebug on the server is not in the scope of this article. You can find related […]