├── .gitignore ├── 2021_11_24 katas ├── katas.html ├── katas.js └── katas_sol.js ├── 2021_12_01 git └── git.md ├── 2022_02_09 curriculum └── curriculum.md ├── 2022_02_17 react ├── app │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── pages │ │ ├── Details.js │ │ ├── Planets.js │ │ └── Welcome.js │ │ ├── reportWebVitals.js │ │ └── setupTests.js └── react.md ├── 2022_03_14 git avanzado ├── git2.md ├── nodeInitialDemo.png └── pullrequests.png ├── 2022_03_15 frontend ├── css │ └── style.css ├── frontend.md ├── html │ ├── estructura.html │ ├── form.html │ ├── index.html │ └── javascript.html ├── img │ ├── wireframe-divs.png │ └── wireframe.png └── js │ └── script.js ├── 2022_04_27 npm init ├── .env-template ├── README.md ├── app.js ├── inicialitzacio.md ├── package-lock.json └── package.json ├── 2022_05_10 git └── git.md ├── 2022_05_18 curriculum └── curriculum.md ├── 2022_06_01 github └── github.md ├── 2022_06_28 git + npm ├── .env-template ├── README.md ├── app.js ├── git_npm.md ├── img │ ├── git graph.PNG │ └── pull requests.PNG ├── package-lock.json └── package.json ├── 2022_07_12 frontend ├── css │ ├── card.css │ ├── style.css │ ├── web.css │ └── web_dark.css ├── frontend.md ├── html │ ├── card.html │ ├── form.html │ ├── index.html │ └── web.html ├── img │ ├── simpson.PNG │ ├── students.jpg │ ├── web.png │ ├── webform.png │ ├── wireframe-divs.png │ └── wireframe.png ├── js │ ├── card.js │ └── web.js ├── server │ ├── README.md │ ├── app.js │ ├── package.json │ └── public │ │ ├── css │ │ ├── card.css │ │ ├── style.css │ │ ├── web.css │ │ └── web_dark.css │ │ ├── html │ │ ├── card.html │ │ ├── form.html │ │ ├── index.html │ │ └── web.html │ │ ├── img │ │ └── students.jpg │ │ └── js │ │ ├── card.js │ │ └── web.js └── todo.md ├── 2022_09_29 git └── git.md ├── 2022_10_25 github └── github.md ├── 2022_10_25 pensament ├── pensament.md └── pensamientoEnfocado.odp ├── 2022_10_26 git └── git.md ├── 2023_01_18 git ├── esquema1.png ├── git.md └── gitgraph1.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/.gitignore -------------------------------------------------------------------------------- /2021_11_24 katas/katas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2021_11_24 katas/katas.html -------------------------------------------------------------------------------- /2021_11_24 katas/katas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2021_11_24 katas/katas.js -------------------------------------------------------------------------------- /2021_11_24 katas/katas_sol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2021_11_24 katas/katas_sol.js -------------------------------------------------------------------------------- /2021_12_01 git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2021_12_01 git/git.md -------------------------------------------------------------------------------- /2022_02_09 curriculum/curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_09 curriculum/curriculum.md -------------------------------------------------------------------------------- /2022_02_17 react/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/.gitignore -------------------------------------------------------------------------------- /2022_02_17 react/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/README.md -------------------------------------------------------------------------------- /2022_02_17 react/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/package-lock.json -------------------------------------------------------------------------------- /2022_02_17 react/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/package.json -------------------------------------------------------------------------------- /2022_02_17 react/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/public/favicon.ico -------------------------------------------------------------------------------- /2022_02_17 react/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/public/index.html -------------------------------------------------------------------------------- /2022_02_17 react/app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/public/logo192.png -------------------------------------------------------------------------------- /2022_02_17 react/app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/public/logo512.png -------------------------------------------------------------------------------- /2022_02_17 react/app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/public/manifest.json -------------------------------------------------------------------------------- /2022_02_17 react/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/public/robots.txt -------------------------------------------------------------------------------- /2022_02_17 react/app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/App.css -------------------------------------------------------------------------------- /2022_02_17 react/app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/App.js -------------------------------------------------------------------------------- /2022_02_17 react/app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/App.test.js -------------------------------------------------------------------------------- /2022_02_17 react/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/index.css -------------------------------------------------------------------------------- /2022_02_17 react/app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/index.js -------------------------------------------------------------------------------- /2022_02_17 react/app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/logo.svg -------------------------------------------------------------------------------- /2022_02_17 react/app/src/pages/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/pages/Details.js -------------------------------------------------------------------------------- /2022_02_17 react/app/src/pages/Planets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/pages/Planets.js -------------------------------------------------------------------------------- /2022_02_17 react/app/src/pages/Welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/pages/Welcome.js -------------------------------------------------------------------------------- /2022_02_17 react/app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/reportWebVitals.js -------------------------------------------------------------------------------- /2022_02_17 react/app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/app/src/setupTests.js -------------------------------------------------------------------------------- /2022_02_17 react/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_02_17 react/react.md -------------------------------------------------------------------------------- /2022_03_14 git avanzado/git2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_14 git avanzado/git2.md -------------------------------------------------------------------------------- /2022_03_14 git avanzado/nodeInitialDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_14 git avanzado/nodeInitialDemo.png -------------------------------------------------------------------------------- /2022_03_14 git avanzado/pullrequests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_14 git avanzado/pullrequests.png -------------------------------------------------------------------------------- /2022_03_15 frontend/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/css/style.css -------------------------------------------------------------------------------- /2022_03_15 frontend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/frontend.md -------------------------------------------------------------------------------- /2022_03_15 frontend/html/estructura.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/html/estructura.html -------------------------------------------------------------------------------- /2022_03_15 frontend/html/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/html/form.html -------------------------------------------------------------------------------- /2022_03_15 frontend/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/html/index.html -------------------------------------------------------------------------------- /2022_03_15 frontend/html/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/html/javascript.html -------------------------------------------------------------------------------- /2022_03_15 frontend/img/wireframe-divs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/img/wireframe-divs.png -------------------------------------------------------------------------------- /2022_03_15 frontend/img/wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/img/wireframe.png -------------------------------------------------------------------------------- /2022_03_15 frontend/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_03_15 frontend/js/script.js -------------------------------------------------------------------------------- /2022_04_27 npm init/.env-template: -------------------------------------------------------------------------------- 1 | HOST = localhost 2 | PORT = 3000 -------------------------------------------------------------------------------- /2022_04_27 npm init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_04_27 npm init/README.md -------------------------------------------------------------------------------- /2022_04_27 npm init/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_04_27 npm init/app.js -------------------------------------------------------------------------------- /2022_04_27 npm init/inicialitzacio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_04_27 npm init/inicialitzacio.md -------------------------------------------------------------------------------- /2022_04_27 npm init/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_04_27 npm init/package-lock.json -------------------------------------------------------------------------------- /2022_04_27 npm init/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_04_27 npm init/package.json -------------------------------------------------------------------------------- /2022_05_10 git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_05_10 git/git.md -------------------------------------------------------------------------------- /2022_05_18 curriculum/curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_05_18 curriculum/curriculum.md -------------------------------------------------------------------------------- /2022_06_01 github/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_01 github/github.md -------------------------------------------------------------------------------- /2022_06_28 git + npm/.env-template: -------------------------------------------------------------------------------- 1 | USERNAME = "OMAR" -------------------------------------------------------------------------------- /2022_06_28 git + npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_28 git + npm/README.md -------------------------------------------------------------------------------- /2022_06_28 git + npm/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_28 git + npm/app.js -------------------------------------------------------------------------------- /2022_06_28 git + npm/git_npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_28 git + npm/git_npm.md -------------------------------------------------------------------------------- /2022_06_28 git + npm/img/git graph.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_28 git + npm/img/git graph.PNG -------------------------------------------------------------------------------- /2022_06_28 git + npm/img/pull requests.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_28 git + npm/img/pull requests.PNG -------------------------------------------------------------------------------- /2022_06_28 git + npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_28 git + npm/package-lock.json -------------------------------------------------------------------------------- /2022_06_28 git + npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_06_28 git + npm/package.json -------------------------------------------------------------------------------- /2022_07_12 frontend/css/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/css/card.css -------------------------------------------------------------------------------- /2022_07_12 frontend/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/css/style.css -------------------------------------------------------------------------------- /2022_07_12 frontend/css/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/css/web.css -------------------------------------------------------------------------------- /2022_07_12 frontend/css/web_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/css/web_dark.css -------------------------------------------------------------------------------- /2022_07_12 frontend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/frontend.md -------------------------------------------------------------------------------- /2022_07_12 frontend/html/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/html/card.html -------------------------------------------------------------------------------- /2022_07_12 frontend/html/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/html/form.html -------------------------------------------------------------------------------- /2022_07_12 frontend/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/html/index.html -------------------------------------------------------------------------------- /2022_07_12 frontend/html/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/html/web.html -------------------------------------------------------------------------------- /2022_07_12 frontend/img/simpson.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/img/simpson.PNG -------------------------------------------------------------------------------- /2022_07_12 frontend/img/students.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/img/students.jpg -------------------------------------------------------------------------------- /2022_07_12 frontend/img/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/img/web.png -------------------------------------------------------------------------------- /2022_07_12 frontend/img/webform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/img/webform.png -------------------------------------------------------------------------------- /2022_07_12 frontend/img/wireframe-divs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/img/wireframe-divs.png -------------------------------------------------------------------------------- /2022_07_12 frontend/img/wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/img/wireframe.png -------------------------------------------------------------------------------- /2022_07_12 frontend/js/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/js/card.js -------------------------------------------------------------------------------- /2022_07_12 frontend/js/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/js/web.js -------------------------------------------------------------------------------- /2022_07_12 frontend/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/README.md -------------------------------------------------------------------------------- /2022_07_12 frontend/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/app.js -------------------------------------------------------------------------------- /2022_07_12 frontend/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/package.json -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/css/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/css/card.css -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/css/style.css -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/css/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/css/web.css -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/css/web_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/css/web_dark.css -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/html/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/html/card.html -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/html/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/html/form.html -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/html/index.html -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/html/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/html/web.html -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/img/students.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/img/students.jpg -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/js/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/js/card.js -------------------------------------------------------------------------------- /2022_07_12 frontend/server/public/js/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/server/public/js/web.js -------------------------------------------------------------------------------- /2022_07_12 frontend/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_07_12 frontend/todo.md -------------------------------------------------------------------------------- /2022_09_29 git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_09_29 git/git.md -------------------------------------------------------------------------------- /2022_10_25 github/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_10_25 github/github.md -------------------------------------------------------------------------------- /2022_10_25 pensament/pensament.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_10_25 pensament/pensament.md -------------------------------------------------------------------------------- /2022_10_25 pensament/pensamientoEnfocado.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_10_25 pensament/pensamientoEnfocado.odp -------------------------------------------------------------------------------- /2022_10_26 git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2022_10_26 git/git.md -------------------------------------------------------------------------------- /2023_01_18 git/esquema1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2023_01_18 git/esquema1.png -------------------------------------------------------------------------------- /2023_01_18 git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2023_01_18 git/git.md -------------------------------------------------------------------------------- /2023_01_18 git/gitgraph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/2023_01_18 git/gitgraph1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratocasterO/masterclasses-it-academy/HEAD/README.md --------------------------------------------------------------------------------