├── beta.js ├── testing.js ├── testing2.js ├── .gitignore ├── alpha.js ├── login.js ├── README.md ├── autentication.js ├── index-ts.ts ├── package.json ├── platzi ├── assets │ ├── icons │ │ ├── mdi_keyboard_arrow_down.svg │ │ ├── trending-up1.svg │ │ ├── arrow-right1.svg │ │ ├── trending-down1(1).svg │ │ ├── trending-down1(2).svg │ │ ├── trending-down1.svg │ │ ├── clock1.svg │ │ ├── eye1.svg │ │ ├── dollar-sign1.svg │ │ └── check-circle1.svg │ └── images │ │ ├── Group16.svg │ │ ├── Group19.svg │ │ ├── Group18.svg │ │ └── Bitcoin.svg ├── index.css └── index.html ├── test.html ├── index-ts.js ├── obj-arrays-enum.ts └── index.html /beta.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /alpha.js: -------------------------------------------------------------------------------- 1 | console.log("esto es una prueba") 2 | -------------------------------------------------------------------------------- /login.js: -------------------------------------------------------------------------------- 1 | console.log('login.js in the house') 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # git-learn 2 | learning git with tutorials 3 | este es un proyecto de prueba con git 😄 4 | -------------------------------------------------------------------------------- /autentication.js: -------------------------------------------------------------------------------- 1 | const testeo2 = () => { 2 | console.log("testeo2"); 3 | }; 4 | const testeto3 = () => { 5 | console.log("testeto3"); 6 | }; 7 | -------------------------------------------------------------------------------- /index-ts.ts: -------------------------------------------------------------------------------- 1 | //alias es creado usando 'type' y poniendole un Nombre primera letra en mayuscula donde podemos poner varios tipos por ejemplo 2 | // type Combinacion = number | string -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "typescript", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index-ts.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC" 11 | } 12 | -------------------------------------------------------------------------------- /platzi/assets/icons/mdi_keyboard_arrow_down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /platzi/assets/icons/trending-up1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /platzi/assets/icons/arrow-right1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /platzi/assets/icons/trending-down1(1).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /platzi/assets/icons/trending-down1(2).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /platzi/assets/icons/trending-down1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Document 9 | 10 | 11 | 12 |

This is a new test

13 | 14 | 15 | -------------------------------------------------------------------------------- /index-ts.js: -------------------------------------------------------------------------------- 1 | // Core Typed 2 | // -number 3 | // -string 4 | // -boolean 5 | // -object 6 | var person = { 7 | name: "John", 8 | age: 36, 9 | hobbies: ["walk", "run", "futbol"], 10 | }; 11 | console.log(person.name); 12 | for (var _i = 0, _a = person.hobbies; _i < _a.length; _i++) { 13 | var hobbie = _a[_i]; 14 | console.log(hobbie.toUpperCase()); 15 | } 16 | 17 | console.log("esto es una pruebita"); 18 | -------------------------------------------------------------------------------- /platzi/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --bitcoin-orange: #f7931a; 3 | --soft-orange: #ffe9d5; 4 | --secondary-blue: #1a9af7; 5 | --soft-blue: #e7f5ff; 6 | --warm-black: #201e1c; 7 | --grey: #bababa; 8 | --off-white: #faf8f7; 9 | --white: #ffffff; 10 | } 11 | 12 | * { 13 | box-sizing: border-box; 14 | margin: 0; 15 | padding: 0; 16 | } 17 | 18 | html { 19 | font-size: 62.5%; 20 | font-family: "DM Sans", sans-serif; 21 | } 22 | -------------------------------------------------------------------------------- /platzi/assets/icons/clock1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /platzi/assets/icons/eye1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /obj-arrays-enum.ts: -------------------------------------------------------------------------------- 1 | // Core Typed 2 | // -number 3 | // -string 4 | // -boolean 5 | // -object 6 | // -arrays 7 | // -tuples is an array of fixed length. Ex [1, 'admin'] 8 | 9 | 10 | 11 | 12 | const person:{ 13 | name: string, 14 | age: number, 15 | hobbies: string[], 16 | role: [number, string], 17 | } = { 18 | name: 'John', // string 19 | age: 36, // number 20 | hobbies: ['walk', 'run', 'futbol'], //arrays 21 | role: [1, 'admin'], //tuple 22 | }; 23 | 24 | console.log(person.name); 25 | 26 | for(let hobbie of person.hobbies){ 27 | console.log(hobbie.toUpperCase()) 28 | } 29 | -------------------------------------------------------------------------------- /platzi/assets/icons/dollar-sign1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /platzi/assets/icons/check-circle1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Document 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |

branch master

18 |

branch beta

19 |

branch master

20 |

branch master

21 |
22 |
23 |

branch beta

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /platzi/assets/images/Group16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /platzi/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Document 9 | 10 | 11 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |
21 |

22 | La próxima revolución en el intercambio de criptomonedas.

23 |

Batatabit te ayuda a navegar entre los diferentes precios y tendencias.

24 | Conoce Nuestros Planes i 25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /platzi/assets/images/Group19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /platzi/assets/images/Group18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /platzi/assets/images/Bitcoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | --------------------------------------------------------------------------------