Odoo apps licensing

If you ever want to implement projects with Odoo and, like us, you are a bit itchy about non-free-software licenses and alternative BSD or LGPL-like licenses, you might want to know this. Odoo itself was previously (as OpenERP) AGPL, but it apparently (following David from Odoo S.A.

PHP's call_user_func_array() is slow

I just solved an issue that had me waking up in the middle of the night for weeks (just pushing it a bit) and I have to thank PHP's community and in particular a guy named Brad Proctor for writing a very short but very important comment in the PHP manual, and I quote:
This function is relatively slow (as of PHP 5.3.3) and if you are calling a method with a known number of parameters it is much faster to call it this way: $class->{$method}($param1, $param2);
He mentions