-
Crear una carpeta en Google Drive para subir los archivos del proyecto.
-
Subir el archivo de
ventas.csva la carpeta. -
Crear un enlace para compartir el archivo:
a. Clic derecho sobre el archivo.
Click the "Download ZIP" button and extract the files somewhere in your PC
- Docker
- Docker compose
- NVIDIA Container Toolkit [1]
[1] In case you have a NVIDIA card
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
| [ | |
| { | |
| "codigo": "01111", | |
| "actividadEconomica": "Agricultura ganadería silvicultura y pesca", | |
| "subClasificacion": "Producción agrícola pecuaria caza y actividades de servicios conexas", | |
| "giroEconomico": "Cultivo de cereales excepto arroz y para forrajes" | |
| }, | |
| { | |
| "codigo": "01112", | |
| "actividadEconomica": "Agricultura ganadería silvicultura y pesca", |
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
| [push] | |
| default = current | |
| autoSetupRemote = true | |
| [alias] | |
| last = log -1 --stat | |
| pick = cherry-pick | |
| co = checkout | |
| cl = clone | |
| ci = commit | |
| st = status -sb |
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
| #!/usr/bin/env node | |
| const { spawn } = require("child_process"); | |
| const procesoHijo = spawn("bash", ["script.sh", "1", "+", "3"]); // Planto la semilla de la planta de tomates | |
| let salida = []; | |
| procesoHijo.stdout.on("data", function leerSalida(data) { // Cosecho los resultados, cada tomate que da la planta | |
| // Se llama cada vez que el proceso hijo imprime en la consola | |
| salida.push(data); | |
| }); |
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
| name: E2E test | |
| on: [push] | |
| jobs: | |
| e2e-test: | |
| runs-on: ubuntu-latest | |
| services: | |
| maildev: | |
| image: maildev/maildev |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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
| function isEmpty(text) { | |
| return !Boolean(text); | |
| } | |
| function isShort(text, minLength) { | |
| return isEmpty(text) || text.length < minLength; | |
| } | |
| const fillDetailConfig = { | |
| id: 'fill-details', | |
| context: { |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
NewerOlder