PHP and operator overloading Not everyone knows that with PHP, and since 2006, it is possible to implement operator overloading, thanks to a...
current information about computer and internet
PHP and operator overloading Not everyone knows that with PHP, and since 2006, it is possible to implement operator overloading, thanks to a...
Fast Web, and lazy developers About 1 month ago, I have posted a little piece of code that, in some way, could be a little revolution for J...
Singleton From Wikipedia In software engineering, the singleton pattern is a design pattern that is used to restrict instantiation of a clas...
This is a quick post about libraries that uses native constructor in an obtrusive way. Using a Function prototype, that sounds like a non-se...
For those that do not know JsonML , this is a little summary. JsonML aim is to use JSON to transport layouts, instead of simple data. Unfo...
This is a quick post about two really common pieces of code that are used daily from libraries developers and not. Stop to use Math.floor Th...
One cool thing of JavaScript prototype model, is that you can change dynamically one or more method updating automatically every instance of...
Update Above technique could be used to create an implicit Singleton as well. class Demo { // your unbelievable stuff } function Demo($s...