This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // crear carpeta ... | |
| // npm init | |
| // npm install express | |
| // usando generator | |
| http://expressjs.com/es/starter/generator.html | |
| http://expressjs.com/en/starter/generator.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Accediendo a servicios de Mac en la Nube | |
| http://www.macincloud.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # permite aumentar la cantidad de stock luego de un ingreso en articulo | |
| DELIMITER // | |
| CREATE TRIGGER tr_updStockIngreso AFTER INSERT ON detalle_ingreso | |
| FOR EACH ROW BEGIN | |
| UPDATE articulo SET stock = stock + NEW.cantidad | |
| WHERE articulo.idarticulo = NEW.idarticulo; | |
| END | |
| // | |
| DELIMITER ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| App CRUD MongoDB + PHP + Bootstrap - Parte 1 | |
| https://www.youtube.com/watch?v=g8H2FibWRGo&index=2&list=PL-iY8tyQ1nne4e6ke7CaPrjPmCfTyiHBC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Curso de Programación Web [Video 29] - Primeros Pasos con Laravel 5.3 | |
| https://www.youtube.com/watch?v=9QYG_10hr-s | |
| Sistema de administración para Laravel 5.3 con Voyager | |
| https://www.youtube.com/watch?v=X1CagClUi88&t=18s | |
| Laravel | |
| https://www.youtube.com/user/rimorsoft/playlists | |
| Taller básico de Laravel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Youtube: | |
| Optimización del rendimiento con MySQL | |
| https://www.youtube.com/watch?v=rsHXazV__Ec | |
| https://www.youtube.com/watch?v=1HH4ZYXhJYE | |
| Link: | |
| https://blog.infranetworking.com/como-detectar-consultas-lentas-en-mysql/ | |
| https://es.slideshare.net/onestic/rendimiento-y-optimizacin-de-mysql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Carrito Electrónico | |
| https://www.youtube.com/playlist?list=PLQBsSZ4qJdGmjeD8wZJ5HBOLf5QZyeTWr | |
| Template free para tiendas virtuales | |
| https://cssauthor.com/e-commerce-website-templates/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hacking con Python | |
| https://www.youtube.com/playlist?list=PLx2TI8AABspakKSRQIHjPRBDq9vyVU5SY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Retrofit: | |
| https://galideas.wordpress.com/category/android/ | |
| https://es.coursera.org/learn/aplicaciones-android/lecture/cfstR/retrofit | |
| https://code.tutsplus.com/es/tutorials/sending-data-with-retrofit-2-http-client-for-android--cms-27845 | |
| Android: https://github.com/pavan12228?tab=repositories | |
| http://www.hermosaprogramacion.com/ | |
| Curso Desarrollo de Aplicaciones en Android 2016 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Referencias: http://ht-solutions.pe/blog/2016/10/how-to-configurar-php-xampp-con-una-base-de-datos-sql-server/ | |
| Añadir en el php.ini , de acuerdo a la persion de PHP en mi caso PHP 5.6 | |
| https://drive.google.com/file/d/0B4z8EDCvDzDhUncteXFmcDAxNGc/view | |
| extension=php_pdo_sqlsrv_56_ts.dll | |
| extension=php_sqlsrv_56_ts.dll | |
| Instalar el driver: https://www.microsoft.com/en-us/download/details.aspx?id=36434 | |
| */ |