http://www.html5rocks.com/en/tutorials/speed/unnecessary-paints/?redirect_from_locale=es
http://www.html5rocks.com/en/tutorials/speed/css-paint-times/?redirect_from_locale=es
http://www.html5rocks.com/en/mobile/profiling/?redirect_from_locale=es
Git reference, spanish: http://git-scm.com/book/es
http://git-scm.com/book/es/Empezando-Acerca-del-control-de-versiones
http://www.proyectosagiles.org/
http://www.youtube.com/watch?v=_PWuSK2yiM0
Meter a todos en una sala: clientes, stakeholders, usuarios finales, el equipo
| <?php | |
| /** | |
| * ODBC for DBO | |
| * Modified by Sergio Melendez | |
| * | |
| * It works for a Linux / Apache / PHP / PDO_ODBC / ODBC / MSSQL environment | |
| * The PDO driver provided by Microsoft for Linux, doesn't implement some PDO methods, | |
| * you have to modify Model.php and DboSource.php as well (You can ask me for details) | |
| * | |
| * PHP versions 4 and 5 |
| <?php | |
| $server = $_SERVER['SERVER_NAME']; | |
| $host = 'http://200.48.11.178'; | |
| $clientCarroceria = new SoapClient($host."/webservices/carroceria.php?wsdl"); | |
| var_dump($clientCarroceria); | |
| //die(); |
| import datetime | |
| def prettydate(d): | |
| diff = datetime.datetime.utcnow() - d | |
| s = diff.seconds | |
| if diff.days > 7 or diff.days < 0: | |
| return d.strftime('%d %b %y') | |
| elif diff.days == 1: | |
| return '1 day ago' | |
| elif diff.days > 1: | |
| return '{} days ago'.format(diff.days) |
| <?php | |
| /** | |
| * Author: Sergio Melendez | |
| * www.inspiredsolutions.pe | |
| * | |
| * Usage: | |
| * $data = TreeArray::factory($array, $indicators)->get(); | |
| * | |
| * Input: [['a': 1, 'b': 2],['a': 1, 'b': 3]] | |
| * Input: ['a'] |