-
HTML5 attributes that will save your time
08 February 2014 —
Comments The HTML5 specification is in process to be a standard. New features are being included but some of them are already supported by major modern browsers. One of those features is a group of new HTML tag attributes, really useful to solve situations that used to be fixed by using javascript. Autofocus…
-
Compile NSIS scripts in Linux
01 February 2014 —
Comments NSIS is a well known system used to create Windows installers for any type of application based on scripts. It is good system. Once we have defined our script we can automatically build it to create application installers in minutes, including creation of Windows register entries, installation folde…
-
Introduction to PHP unit testing with PHPUnit
29 January 2014 —
Comments Nowadays we are in the era of agile methodologies. One of the best practices promoted by these methodologies is Test-Driven Development (TDD) It mainly consists on preparing small pieces of code that are responsible for testing parts of the real application. For this purpose each of the main program…