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
| # 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
| 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
| // 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
| Angular 4 | |
| https://www.youtube.com/playlist?list=PLty0cFLf07jUJalJ-RtVxi-EzrPYDSm09 |
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
| Machine Learning, Python y el Titanic | |
| https://www.youtube.com/watch?v=6MZFsZ9HINE | |
| Machine Learning en Español Crear un básico "Hola Mundo con 0 y 1" | |
| https://www.youtube.com/watch?v=gZvdtodOaHk |
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
| #Plugin contacto form 7 | |
| [_remote_ip] Muestra la IP del usuario | |
| [_user_agent] Muestra la información del agente de usuario usado | |
| [_url] Muestra la página desde la que nos envían el formulario | |
| [_date] Muestra la fecha de envío | |
| [_time] Muestra la hora de envío | |
| [_post_title] Muestra el título del artículo donde está el formulario |
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
| /* (320x480) iPhone (Original, 3G, 3GS) */ | |
| @media only screen and (min-device-width: 320px) and (max-device-width: 480px) { | |
| /* insert styles here */ | |
| } | |
| /* (320x480) Smartphone, Portrait */ | |
| @media only screen and (device-width: 320px) and (orientation: portrait) { | |
| /* insert styles here */ | |
| } | |
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
| tienes que descargar la dll dependiendo de tu version php y tu sistema operativo;ejemplo | |
| php_sqlsrv_56_ts.dll | |
| php_pdo_sqlsrv_56_ts.dll | |
| estos dos son para php5.6 y 32 bits sistema operativo | |
| una vez descargada lo copias en php/ext y en tu php.ini agregas estas lineas | |
| extension=php_sqlsrv_56_ts.dll | |
| extension=php_pdo_sqlsrv_56_ts.dll | |
| de aca descarga los dll |
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
| 1. npm init --yes | |
| 2. npm i express | |
| 3. npm install express-handlebars mongoose morgan multer fs-extra errorhandler md5 |