├── .all-contributorsrc ├── .editorconfig ├── .eslintignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .mdlintignore ├── .mdlintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEPLOYMENT.md ├── LICENSE ├── README.md ├── README.pt.md ├── dist ├── learning-objectives.json ├── projects.json ├── projects │ ├── artist-launch.json │ ├── burger-queen-api-client.json │ ├── burger-queen-api.json │ ├── card-validation.json │ ├── chat-app.json │ ├── cipher.json │ ├── computing-service-deployment.json │ ├── container-service-deployment.json │ ├── data-lovers.json │ ├── dataverse-chat.json │ ├── dataverse.json │ ├── design-assigned.json │ ├── design-detectives.json │ ├── design-lab.json │ ├── dockerfile-deployment.json │ ├── emergency-room.json │ ├── fleet-management-api.json │ ├── fleet-management-fullstack.json │ ├── guess-the-number.json │ ├── how-might-we.json │ ├── job-application.json │ ├── md-links.json │ ├── memory-match.json │ ├── mindset-mvp.json │ ├── movie-challenge-fw.json │ ├── movie-challenge.json │ ├── notes.json │ ├── open-project.json │ ├── roman-numerals-slack.json │ ├── roman-numerals.json │ ├── salesforce.json │ ├── social-network-fw.json │ ├── social-network.json │ ├── sql-student-database.json │ ├── sqlzoo-mystery.json │ ├── text-analyzer.json │ ├── trivia.json │ ├── uxploradoras-ui.json │ ├── uxploradoras-ux.json │ ├── uxploradoras.json │ └── wordpress-plugin.json ├── topics.json └── topics │ ├── browser.json │ ├── content-management.json │ ├── css.json │ ├── functional.json │ ├── html.json │ ├── interaction-design.json │ ├── intro-ux.json │ ├── javascript.json │ ├── learning-mindset.json │ ├── paradigms.json │ ├── prototyping.json │ ├── scm.json │ ├── shell.json │ └── ux-research.json ├── guides ├── learning-with-ai │ ├── README.md │ └── README.pt.md ├── router-spa │ ├── README.md │ └── README.pt.md └── typescript │ ├── README.md │ └── README.pt.md ├── learning-objectives ├── README.md ├── data.yml └── intl │ ├── es.yml │ └── pt.yml ├── package.json ├── projects ├── 00-how-might-we │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 00-trivia │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── project.yml │ ├── src │ │ ├── index.html │ │ ├── main.js │ │ └── style.css │ └── thumb.png ├── 01-card-validation │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── FAQ.md │ ├── README.md │ ├── README.pt.md │ ├── package.json │ ├── project.yml │ ├── src │ │ ├── index.html │ │ ├── index.js │ │ ├── style.css │ │ └── validator.js │ ├── test │ │ ├── .eslintrc │ │ └── validator.spec.js │ └── thumb.png ├── 01-cipher │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── FAQ.md │ ├── README.md │ ├── README.pt.md │ ├── package.json │ ├── project.yml │ ├── src │ │ ├── cipher.js │ │ ├── index.html │ │ ├── index.js │ │ └── style.css │ ├── test │ │ ├── .eslintrc │ │ └── cipher.spec.js │ └── thumb.png ├── 01-design-detectives │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 01-text-analyzer │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .github │ │ └── workflows │ │ │ └── playwright.yml │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── package-lock.json │ ├── package.json │ ├── playwright-report │ │ └── .gitignore │ ├── playwright.config.ts │ ├── project.yml │ ├── read-only │ │ └── test │ │ │ ├── e2e │ │ │ └── app.spec.js │ │ │ └── oa │ │ │ ├── oa-css.spec.js │ │ │ ├── oa-html.spec.js │ │ │ ├── oa-javascript.spec.js │ │ │ └── oa-web-api.spec.js │ ├── src │ │ ├── analyzer.js │ │ ├── index.html │ │ ├── index.js │ │ └── style.css │ ├── test │ │ ├── .eslintrc │ │ └── analyzer.spec.js │ └── thumb.png ├── 02-data-lovers │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── EXTRA.md │ ├── FAQ.md │ ├── README.md │ ├── README.pt.md │ ├── package.json │ ├── project.yml │ ├── src │ │ ├── data.js │ │ ├── data │ │ │ ├── athletes │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── athletes.js │ │ │ │ └── athletes.json │ │ │ ├── breakingbad │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── breakingbad.js │ │ │ │ └── breakingbad.json │ │ │ ├── countries │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── countries.js │ │ │ │ └── countries.json │ │ │ ├── ghibli │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── ghibli.js │ │ │ │ └── ghibli.json │ │ │ ├── got │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── got.js │ │ │ │ └── got.json │ │ │ ├── lol │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── lol.js │ │ │ │ └── lol.json │ │ │ ├── pokemon │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── pokemon.js │ │ │ │ └── pokemon.json │ │ │ ├── rickandmorty │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── rickandmorty.js │ │ │ │ └── rickandmorty.json │ │ │ └── tarot │ │ │ │ ├── README.md │ │ │ │ ├── README.pt.md │ │ │ │ ├── tarot.js │ │ │ │ └── tarot.json │ │ ├── index.html │ │ ├── main.js │ │ └── style.css │ ├── test │ │ ├── .eslintrc │ │ └── data.spec.js │ └── thumb.png ├── 02-dataverse │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .github │ │ └── workflows │ │ │ └── playwright.yml │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── docs │ │ ├── 01-milestone.md │ │ ├── 01-milestone.pt.md │ │ ├── 02-milestone.md │ │ ├── 02-milestone.pt.md │ │ ├── 03-milestone.md │ │ ├── 03-milestone.pt.md │ │ ├── 04-milestone.md │ │ └── 04-milestone.pt.md │ ├── package.json │ ├── playwright.config.js │ ├── project.yml │ ├── src │ │ ├── data │ │ │ └── dataset.js │ │ ├── dataFunctions.js │ │ ├── index.html │ │ ├── main.js │ │ ├── style.css │ │ └── view.js │ ├── test │ │ ├── .eslintrc │ │ ├── data.js │ │ └── dataFunctions.spec.js │ ├── tests-read-only │ │ ├── .eslintrc │ │ ├── e2e │ │ │ └── app.spec.js │ │ └── oa │ │ │ ├── oa-css.spec.js │ │ │ ├── oa-html.spec.js │ │ │ ├── oa-javascript.spec.js │ │ │ ├── oa-prompting.spec.js │ │ │ └── oa-web-api.spec.js │ └── thumb.png ├── 02-design-assigned │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 02-emergency-room │ ├── .babelrc │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── emergency-room.jpg │ ├── package.json │ ├── project.yml │ ├── src │ │ ├── index.html │ │ ├── index.js │ │ └── queue.js │ ├── test │ │ └── queue.test.js │ └── thumb.png ├── 02-memory-match │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── package.json │ ├── project.yml │ ├── src │ │ ├── components │ │ │ ├── App.js │ │ │ └── App.spec.js │ │ ├── data │ │ │ ├── README.md │ │ │ ├── pokemon │ │ │ │ ├── pokemon.js │ │ │ │ └── pokemon.json │ │ │ └── webdev │ │ │ │ ├── webdev.js │ │ │ │ └── webdev.json │ │ ├── index.html │ │ ├── main.js │ │ └── style.css │ └── thumb.png ├── 02-mindset-mvp │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 02-uxploradoras-ui │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 02-uxploradoras │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 03-dataverse-chat │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── docs │ │ ├── 01-milestone.md │ │ ├── 01-milestone.pt.md │ │ ├── 02-milestone.md │ │ ├── 02-milestone.pt.md │ │ ├── 03-milestone.md │ │ ├── 03-milestone.pt.md │ │ ├── 04-milestone.md │ │ ├── 04-milestone.pt.md │ │ ├── 05-milestone.md │ │ ├── 05-milestone.pt.md │ │ └── assets │ │ │ ├── previewApiKey.png │ │ │ ├── previewDetail.gif │ │ │ ├── previewGrupalChat.gif │ │ │ └── previewSPA.gif │ ├── package.json │ ├── project.yml │ ├── src │ │ ├── index.html │ │ ├── index.js │ │ └── views │ │ │ └── Example.js │ └── thumb.png ├── 03-design-lab │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 03-movie-challenge │ ├── README.md │ ├── README.pt.md │ ├── project.yml │ └── thumb.png ├── 03-social-network │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── babel.config.js │ ├── package.json │ ├── project.yml │ ├── src │ │ ├── index.html │ │ ├── lib │ │ │ └── index.js │ │ └── main.js │ ├── stylelint.config.js │ ├── test │ │ └── index.spec.js │ ├── thumb.png │ └── vite.config.js ├── 03-uxploradoras-ux │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 04-burger-queen-api-client │ ├── README.md │ ├── README.pt.md │ ├── docs │ │ ├── FAQ.md │ │ └── FAQ.pt.md │ ├── project.yml │ └── thumb.png ├── 04-burger-queen-api │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── burger-queen-api.yml │ ├── config.js │ ├── connect.js │ ├── controller │ │ ├── __tests__ │ │ │ ├── .eslintrc │ │ │ └── users.spec.js │ │ └── users.js │ ├── db-data │ │ └── .gitignore │ ├── docker-compose.yml │ ├── e2e │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── auth.spec.js │ │ ├── globalSetup.js │ │ ├── globalTeardown.js │ │ ├── jest.config.js │ │ ├── orders.spec.js │ │ ├── products.spec.js │ │ └── users.spec.js │ ├── guides │ │ ├── GETTING-STARTED-DOCKER.md │ │ ├── GETTING-STARTED-DOCKER.pt.md │ │ ├── GETTING-STARTED-MONGODB.md │ │ └── GETTING-STARTED-MONGODB.pt.md │ ├── index.js │ ├── jest-mongodb-config.js │ ├── jsdoc.conf │ ├── middleware │ │ ├── auth.js │ │ └── error.js │ ├── package.json │ ├── project.yml │ ├── routes │ │ ├── auth.js │ │ ├── index.js │ │ ├── orders.js │ │ ├── products.js │ │ └── users.js │ └── thumb.png ├── 04-guess-the-number │ ├── README.md │ ├── README.pt.md │ ├── docs │ │ ├── FAQ-java.md │ │ ├── FAQ-java.pt.md │ │ ├── README-csharp.md │ │ ├── README-csharp.pt.md │ │ ├── README-java.md │ │ ├── README-java.pt.md │ │ ├── README-python.md │ │ └── README-python.pt.md │ ├── project.yml │ └── thumb.png ├── 04-md-links │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── README.pt.md │ ├── docs │ │ ├── 01-milestone.md │ │ ├── 02-milestone.md │ │ ├── 03-milestone.md │ │ ├── 04-milestone.md │ │ └── 05-milestone.md │ ├── index.js │ ├── package.json │ ├── project.yml │ ├── test │ │ └── md-links.spec.js │ └── thumb.png ├── 04-notes │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 04-sqlzoo-mystery │ ├── README.md │ ├── README.pt.md │ ├── project.yml │ └── thumb.png ├── 05-artist-launch │ ├── LookerStudio.md │ ├── PowerBI.md │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 05-chat-app │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.json │ ├── README.md │ ├── docker-compose.yml │ ├── docs │ │ └── images │ │ │ ├── ci-pipeline.png │ │ │ ├── comunicacion-bidireccional.png │ │ │ ├── localhost-vs-deploymentv3.png │ │ │ ├── pgadmin-login.png │ │ │ └── train.jpg │ ├── package.json │ ├── project.yml │ ├── setup │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── node.js.yml │ │ └── primeras-historias.md │ └── thumb.png ├── 05-computing-service-deployment │ ├── README.md │ └── project.yml ├── 05-container-service-deployment │ ├── README.md │ └── project.yml ├── 05-dockerfile-deployment │ ├── README.md │ └── project.yml ├── 05-fleet-management-api │ ├── README.md │ ├── README.pt.md │ ├── docs │ │ ├── extension-cli.md │ │ ├── extension-cli.pt.md │ │ ├── extension.md │ │ ├── extension.pt.md │ │ ├── stack-csharp.md │ │ ├── stack-csharp.pt.md │ │ ├── stack-java.md │ │ ├── stack-java.pt.md │ │ ├── stack-node.md │ │ ├── stack-node.pt.md │ │ ├── stack-python-django.md │ │ ├── stack-python-django.pt.md │ │ ├── stack-python.md │ │ └── stack-python.pt.md │ ├── postman │ │ ├── collection-auth.json │ │ ├── collection.json │ │ └── environment.json │ ├── project.yml │ └── thumb.png ├── 05-fleet-management-fullstack │ ├── README.md │ ├── client │ │ └── .gitkeep │ ├── data │ │ └── .gitkeep │ ├── docs │ │ ├── architecture.jpg │ │ ├── example-endpoint-api-graphql.png │ │ ├── example-endpoint-api-rest.png │ │ ├── first-10-lines-9557-txt.png │ │ └── first-10-lines-taxis-txt.png │ ├── project.yml │ ├── server │ │ └── .gitkeep │ └── thumb.png ├── 05-movie-challenge-fw │ ├── README.md │ ├── README.pt.md │ ├── docs │ │ ├── movie-challenge-fw.bmpr │ │ ├── movie-detail.png │ │ └── movie-list.png │ ├── project.yml │ └── thumb.png ├── 05-open-project │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 05-roman-numerals-slack │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 05-roman-numerals │ ├── .gitignore │ ├── README.md │ ├── bin │ │ └── cli.js │ ├── index.js │ ├── index.spec.js │ ├── package.json │ ├── project.yml │ └── thumb.png ├── 05-salesforce │ ├── README.md │ └── project.yml ├── 05-social-network-fw │ ├── README.md │ ├── project.yml │ └── thumb.png ├── 05-sql-student-database │ ├── README.md │ ├── README.pt.md │ ├── project.yml │ └── thumb.png ├── 05-wordpress-plugin │ ├── .gitignore │ ├── README.md │ ├── apache2 │ │ ├── ports.conf │ │ ├── sites-available │ │ │ ├── 000-default.conf │ │ │ └── 001-php-playground.conf │ │ └── sites-enabled │ │ │ ├── 000-default.conf │ │ │ └── 001-php-playground.conf │ ├── docker-compose.yml │ ├── html │ │ └── .keep │ ├── logs │ │ └── .keep │ ├── php-playground │ │ ├── hola.php │ │ └── index.html │ ├── project.yml │ └── thumb.png └── 06-job-application │ ├── Activities.md │ ├── Activities.pt.md │ ├── Mentoring.md │ ├── Mentoring.pt.md │ ├── README.md │ ├── README.pt.md │ ├── project.yml │ └── thumb.png ├── scripts ├── README.md ├── build.mjs ├── check-projects-deps.sh ├── create-cohort-project.mjs ├── create-gource-video.sh ├── propagate.sh ├── script-utils.mjs └── test │ ├── fixtures │ └── project-with-localized-docs │ │ ├── README.md │ │ ├── README.pt.md │ │ └── docs │ │ ├── docs.jp.md │ │ ├── docs.md │ │ └── docs.pt.md │ └── script-utils.spec.mjs └── topics ├── .eslintrc ├── _template ├── 01-lorem-ipsum │ ├── 00-opening │ │ └── README.md │ ├── 01-self-learning-1 │ │ └── README.md │ ├── 02-self-learning-2 │ │ └── README.md │ └── 07-closing │ │ └── README.md ├── 02-another-unit │ └── 00-opening │ │ └── README.md └── README.md ├── browser ├── 02-dom │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-dom │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-bom │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-dom-methods-selection │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-dom-methods-crud │ │ ├── README.md │ │ └── README.pt.md │ ├── 05-dom-methods-crud-attributes │ │ ├── README.md │ │ └── README.pt.md │ ├── 06-reflow-browser │ │ ├── README.md │ │ └── README.pt.md │ ├── 07-events │ │ ├── 02-events │ │ │ ├── README.md │ │ │ └── README.pt.md │ │ ├── 03-bubbling-capturing │ │ │ ├── README.md │ │ │ └── README.pt.md │ │ ├── 04-this-eventtarget │ │ │ ├── README.md │ │ │ └── README.pt.md │ │ ├── README.md │ │ └── README.pt.md │ ├── 08-data-attributes │ │ ├── README.md │ │ └── README.pt.md │ ├── 09-practical-cases │ │ ├── README.md │ │ └── README.pt.md │ ├── 10-guided-exercises │ │ ├── README.md │ │ └── README.pt.md │ ├── 11-code-challenges │ │ ├── README.md │ │ └── README.pt.md │ └── 15-closing │ │ ├── README.md │ │ └── README.pt.md ├── 03-browser-apis │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-audio-video │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-media-challenges │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-web-storage │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-storage-challenges │ │ ├── README.md │ │ └── README.pt.md │ ├── 05-geolocation │ │ ├── README.md │ │ └── README.pt.md │ ├── 06-geolocation-challenges │ │ ├── README.md │ │ └── README.pt.md │ ├── 07-dnd │ │ ├── README.md │ │ └── README.pt.md │ ├── 08-dnd-challenges │ │ ├── README.md │ │ └── README.pt.md │ └── 09-more-apis │ │ ├── README.md │ │ └── README.pt.md ├── 04-xhr │ ├── 01-client-server │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-ajax │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-apis │ │ ├── README.md │ │ ├── README.pt.md │ │ └── ejemplos-apis.png │ ├── 04-xhr │ │ ├── README.md │ │ ├── README.pt.md │ │ └── sintax_open.png │ ├── 05-xhr-demo │ │ ├── README.md │ │ ├── README.pt.md │ │ └── images │ │ │ ├── add-news1.png │ │ │ ├── add-news2.png │ │ │ ├── add-news3.png │ │ │ ├── consola-data.png │ │ │ ├── consola-data2.png │ │ │ ├── form-addEvent.png │ │ │ ├── getnews.png │ │ │ ├── handle-error.png │ │ │ ├── index-inicial.png │ │ │ ├── pantalla-final.png │ │ │ ├── pantalla-inicial.png │ │ │ └── traemos-elementos.png │ ├── 07-xhr-challenges │ │ ├── README.md │ │ ├── README.pt.md │ │ └── muestra.png │ ├── 08-xhr-recap │ │ ├── README.md │ │ └── README.pt.md │ ├── 09-jq-ajax │ │ ├── README.md │ │ └── README.pt.md │ ├── 10-fetch │ │ ├── README.md │ │ └── README.pt.md │ ├── 12-jq-ajax-challenges │ │ ├── README.md │ │ └── README.pt.md │ ├── 13-jq-ajax-recap │ │ ├── README.md │ │ └── README.pt.md │ ├── 15-third-party-apis │ │ ├── README.md │ │ └── README.pt.md │ ├── 16-web-apis │ │ ├── README.md │ │ ├── README.pt.md │ │ └── web-apis.png │ ├── 17-rest │ │ ├── README.md │ │ └── README.pt.md │ ├── 18-crud │ │ ├── README.md │ │ └── README.pt.md │ └── 19-api-challenges │ │ ├── README.md │ │ └── README.pt.md ├── README.md ├── README.pt.md └── thumb.png ├── content-management ├── 00-information-architecture │ ├── 00-information-architecture │ │ └── README.md │ ├── 01-card-sorting │ │ └── README.md │ └── 02-sitemap │ │ └── README.md ├── 01-user-flows │ └── 00-user-flows │ │ └── README.md ├── 02-content-prototyping │ └── 00-content-prototyping │ │ └── README.md ├── 03-ux-writing │ ├── 00-intro │ │ └── README.md │ └── 01-microcopy │ │ └── README.md ├── README.md └── thumb.png ├── css ├── 01-css │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-intro-css │ │ ├── README.md │ │ ├── README.pt.md │ │ └── img-inline-style.png │ ├── 02-boxmodel-and-display │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-practice │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-flexbox │ │ ├── README.md │ │ └── README.pt.md │ ├── 05-positioning-and-floats │ │ ├── README.md │ │ ├── README.pt.md │ │ └── img-normal-flow.png │ ├── 06-tipography-and-icons │ │ ├── README.md │ │ └── README.pt.md │ ├── 07-practice-2 │ │ ├── README.md │ │ ├── README.pt.md │ │ └── img-tipo.png │ ├── 08-practical-cases │ │ ├── README.md │ │ └── README.pt.md │ ├── 10-practice-3 │ │ ├── README.md │ │ ├── README.pt.md │ │ └── img-nuestras-coders.png │ └── 11-code-challenges │ │ ├── README.md │ │ └── README.pt.md ├── 02-responsive │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-grid-system │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-media-queries │ │ ├── README.md │ │ ├── README.pt.md │ │ └── media_feature.png │ ├── 03-rwd │ │ ├── README.md │ │ └── README.pt.md │ ├── 05-practice │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── ejercicio-grid-gral.png │ │ ├── ex-desktop-mobile.png │ │ ├── ex-desktop-mobile2.png │ │ ├── ex-desktop-mobile3.png │ │ ├── love-love-panda.png │ │ ├── rock-desktop.png │ │ └── rock-movil.png │ └── 06-code-challenges │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── desktop.png │ │ ├── kitten-dawn.png │ │ ├── kitten-night.png │ │ ├── kitten-sunnyday.png │ │ └── responsive.png ├── 03-frameworks │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-framework │ │ ├── README.md │ │ ├── README.pt.md │ │ └── cdn-example.png │ ├── 02-bootstrap │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── bcdn.png │ │ └── btn-example.PNG │ ├── 03-materialize-and-more │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-components │ │ ├── README.md │ │ ├── README.pt.md │ │ └── links-bootstrap.png │ ├── 06-practice │ │ ├── README.md │ │ ├── README.pt.md │ │ └── template-bootstrap.png │ └── 07-code-challenges │ │ ├── README.md │ │ ├── README.pt.md │ │ └── images │ │ ├── desktop.png │ │ ├── modal-conductor.png │ │ ├── modal-inicio-sesion.png │ │ ├── modal-registrate.png │ │ └── v-movil.png ├── README.md ├── README.pt.md └── thumb.png ├── functional ├── 01-state │ ├── 00-opening │ │ └── README.md │ ├── 01-pure-fun │ │ └── README.md │ ├── 02-practice │ │ ├── 01-discount │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── discount.js │ │ │ ├── solution │ │ │ │ └── discount.js │ │ │ └── test │ │ │ │ └── discount.spec.js │ │ ├── 02-serialize-user │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── serializeUser.js │ │ │ ├── solution │ │ │ │ └── serializeUser.js │ │ │ └── test │ │ │ │ └── serializeUser.spec.js │ │ └── README.md │ ├── 03-immutability │ │ └── README.md │ ├── 04-practice-2 │ │ ├── 01-parse-items │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── parseItems.js │ │ │ ├── solution │ │ │ │ └── parseItems.js │ │ │ └── test │ │ │ │ └── parseItems.spec.js │ │ └── README.md │ └── 08-closing │ │ └── README.md ├── 03-hof │ ├── 00-opening │ │ └── README.md │ ├── 01-hof │ │ └── README.md │ ├── 02-practice │ │ ├── 01-repeat │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── repeat.js │ │ │ ├── solution │ │ │ │ └── repeat.js │ │ │ └── test │ │ │ │ └── repeat.spec.js │ │ └── README.md │ ├── 03-partial-application │ │ └── README.md │ ├── 04-practice-2 │ │ ├── 01-bound-logger │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── boundLogger.js │ │ │ ├── solution │ │ │ │ └── boundLogger.js │ │ │ └── test │ │ │ │ └── boundLogger.spec.js │ │ ├── 02-logger │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── logger.js │ │ │ ├── solution │ │ │ │ └── logger.js │ │ │ └── test │ │ │ │ └── logger.spec.js │ │ └── README.md │ ├── 05-currying │ │ └── README.md │ ├── 06-practice-3 │ │ ├── 01-curry-n │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── curryN.js │ │ │ ├── solution │ │ │ │ └── curryN.js │ │ │ └── test │ │ │ │ └── curryN.spec.js │ │ └── README.md │ └── 10-closing │ │ └── README.md ├── 05-flow-control │ ├── 00-opening │ │ └── README.md │ ├── 01-recursion │ │ └── README.md │ ├── 02-practice │ │ ├── 01-apply-discount │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── applyDiscount.js │ │ │ ├── solution │ │ │ │ └── applyDiscount.js │ │ │ └── test │ │ │ │ └── applyDiscount.spec.js │ │ ├── 02-reduce │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── reduce.js │ │ │ ├── solution │ │ │ │ └── reduce.js │ │ │ └── test │ │ │ │ └── reduce.spec.js │ │ ├── 03-get-dependencies │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── getDependencies.js │ │ │ ├── solution │ │ │ │ └── getDependencies.js │ │ │ └── test │ │ │ │ └── getDependencies.spec.js │ │ └── README.md │ ├── 03-async │ │ └── README.md │ ├── 04-practice-2 │ │ ├── 01-load-users │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── loadUsers.js │ │ │ ├── solution │ │ │ │ └── loadUsers.js │ │ │ └── test │ │ │ │ └── loadUsers.spec.js │ │ └── README.md │ └── 08-closing │ │ └── README.md ├── README.md └── thumb.png ├── html ├── 01-intro │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-your-first-website │ │ ├── README.md │ │ └── README.pt.md │ └── 02-closing │ │ ├── README.md │ │ └── README.pt.md ├── 02-html5 │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-markup │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-semantic-html │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-forms │ │ ├── README.md │ │ └── README.pt.md │ └── 04-closing │ │ ├── README.md │ │ └── README.pt.md ├── README.md ├── README.pt.md └── thumb.png ├── interaction-design ├── 00-sketching │ └── 00-sketching │ │ └── README.md ├── 01-visual-design │ ├── 00-web-design-history │ │ └── README.md │ ├── 01-visual-design-basics │ │ └── README.md │ ├── 02-color │ │ └── README.md │ ├── 03-color-exercises │ │ └── README.md │ ├── 04-typography │ │ └── README.md │ └── 05-hierarchy │ │ └── README.md ├── 02-design-of-everyday-things │ └── 00-design-principles │ │ └── README.md ├── 03-usability-and-accessibility │ ├── 00-usability │ │ └── README.md │ └── 01-accessibility │ │ └── README.md ├── README.md └── thumb.png ├── intro-ux ├── 00-que-es-uxd │ └── 00-que-es-uxd │ │ └── README.md ├── 01-el-proceso-de-diseno │ └── 00-el-proceso-de-diseno │ │ └── README.md ├── 02-metodologias-relacionadas │ └── 00-metodologias-relacionadas │ │ └── README.md ├── 03-design-disruptors │ └── 00-documental │ │ └── README.md ├── README.md └── thumb.png ├── javascript ├── 01-basics │ ├── 01-values-variables-and-types │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-variables │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-comments │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-guided-exercises │ │ ├── README.md │ │ └── README.pt.md │ └── 06-exercises │ │ ├── 01-coin-convert │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ └── coinConvert.js │ │ ├── solution │ │ │ └── coinConvert.js │ │ └── test │ │ │ └── coinConvert.spec.js │ │ ├── 02-restaurant-bill │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ └── restaurantBill.js │ │ ├── solution │ │ │ └── restaurantBill.js │ │ └── test │ │ │ └── restaurantBill.spec.js │ │ ├── README.md │ │ └── README.pt.md ├── 02-flow-control │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-conditionals-and-loops │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-loops │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-practical-cases │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-functions │ │ ├── README.md │ │ └── README.pt.md │ ├── 05-guided-exercises │ │ ├── README.md │ │ └── README.pt.md │ ├── 06-code-challenges │ │ ├── 01-power-of-two │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── powerOfTwo.js │ │ │ ├── solution │ │ │ │ ├── .eslintrc │ │ │ │ └── powerOfTwo.js │ │ │ └── test │ │ │ │ └── powerOfTwo.spec.js │ │ ├── 02-reverse │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── reverse.js │ │ │ ├── solution │ │ │ │ └── reverse.js │ │ │ └── test │ │ │ │ └── reverse.spec.js │ │ ├── 03-count-vowels │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── countVowels.js │ │ │ ├── solution │ │ │ │ └── countVowels.js │ │ │ └── test │ │ │ │ └── countVowels.spec.js │ │ ├── 04-even-or-odd │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── evenOrOdd.js │ │ │ ├── solution │ │ │ │ └── evenOrOdd.js │ │ │ └── test │ │ │ │ └── evenOrOdd.spec.js │ │ ├── 05-max │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── max.js │ │ │ ├── solution │ │ │ │ └── max.js │ │ │ └── test │ │ │ │ └── max.spec.js │ │ ├── 06-is-prime │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── isPrime.js │ │ │ ├── solution │ │ │ │ └── isPrime.js │ │ │ └── test │ │ │ │ └── isPrime.spec.js │ │ ├── 07-can-drive-and-vote │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── canDriveAndVote.js │ │ │ ├── solution │ │ │ │ └── canDriveAndVote.js │ │ │ └── test │ │ │ │ └── canDriveAndVote.spec.js │ │ ├── 08-are-odd │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ ├── .eslintrc │ │ │ │ └── areOdd.js │ │ │ ├── solution │ │ │ │ └── areOdd.js │ │ │ └── test │ │ │ │ └── areOdd.spec.js │ │ ├── README.md │ │ └── README.pt.md │ └── 08-closing │ │ ├── README.md │ │ └── README.pt.md ├── 03-functions │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-classic │ │ ├── README.md │ │ └── README.pt.md │ └── 02-arrow │ │ ├── README.md │ │ └── README.pt.md ├── 04-arrays │ ├── 01-arrays │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-array-proto │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-filter-map-sort-reduce │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-guided-exercises │ │ ├── README.md │ │ └── README.pt.md │ └── 06-practice │ │ ├── 01-compute-average-length-of-words │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── computeAverageLengthOfWords.js │ │ ├── solution │ │ │ └── computeAverageLengthOfWords.js │ │ └── test │ │ │ └── computeAverageLengthOfWords.spec.js │ │ ├── 02-get-nth-element │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getNthElement.js │ │ ├── solution │ │ │ └── getNthElement.js │ │ └── test │ │ │ └── getNthElement.spec.js │ │ ├── 03-convert-double-space-to-single │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── convertDoubleSpaceToSingle.js │ │ ├── solution │ │ │ └── convertDoubleSpaceToSingle.js │ │ └── test │ │ │ └── convertDoubleSpaceToSingle.spec.js │ │ ├── 04-are-valid-credentials │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── areValidCredentials.js │ │ ├── solution │ │ │ └── areValidCredentials.js │ │ └── test │ │ │ └── areValidCredentials.spec.js │ │ ├── 05-find-pair-for-sum │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── findPairForSum.js │ │ ├── solution │ │ │ └── findPairForSum.js │ │ └── test │ │ │ └── findPairForSum.spec.js │ │ ├── 06-filter-odd-elements │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── filterOddElements.js │ │ ├── solution │ │ │ └── filterOddElements.js │ │ └── test │ │ │ └── filterOddElements.spec.js │ │ ├── 07-find-shortest-word-among-mixed-elements │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── findShortestWordAmongMixedElements.js │ │ ├── solution │ │ │ └── findShortestWordAmongMixedElements.js │ │ └── test │ │ │ └── findShortestWordAmongMixedElements.spec.js │ │ ├── 08-find-smallest-number-among-mixed-elements │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── findSmallestNumberAmongMixedElements.js │ │ ├── solution │ │ │ └── findSmallestNumberAmongMixedElements.js │ │ └── test │ │ │ └── findSmallestNumberAmongMixedElements.spec.js │ │ ├── 09-get-longest-word-of-mixed-elements │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getLongestWordOfMixedElements.js │ │ ├── solution │ │ │ └── getLongestWordOfMixedElements.js │ │ └── test │ │ │ └── getLongestWordOfMixedElements.spec.js │ │ ├── 10-get-largest-number-among-mixed-elements │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getLargestNumberAmongMixedElements.js │ │ ├── solution │ │ │ └── getLargestNumberAmongMixedElements.js │ │ └── test │ │ │ └── getLargestNumberAmongMixedElements.spec.js │ │ ├── 11-compute-sum-of-all-elements │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── computeSumOfAllElements.js │ │ ├── solution │ │ │ └── computeSumOfAllElements.js │ │ └── test │ │ │ └── computeSumOfAllElements.spec.js │ │ ├── 12-compute-sum-between │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── computeSumBetween.js │ │ ├── solution │ │ │ └── computeSumBetween.js │ │ └── test │ │ │ └── computeSumBetween.spec.js │ │ ├── 13-get-longest-of-three-words │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getLongestOfThreeWords.js │ │ ├── solution │ │ │ └── getLongestOfThreeWords.js │ │ └── test │ │ │ └── getLongestOfThreeWords.spec.js │ │ ├── 14-find-shortest-of-three-words │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── findShortestOfThreeWords.js │ │ ├── solution │ │ │ └── findShortestOfThreeWords.js │ │ └── test │ │ │ └── findShortestOfThreeWords.spec.js │ │ ├── 15-calculate-bill-total │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── calculateBillTotal.js │ │ ├── solution │ │ │ └── calculateBillTotal.js │ │ └── test │ │ │ └── calculateBillTotal.spec.js │ │ ├── 16-convert-score-to-grade │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── convertScoreToGrade.js │ │ ├── solution │ │ │ └── convertScoreToGrade.js │ │ └── test │ │ │ └── convertScoreToGrade.spec.js │ │ ├── README.md │ │ └── README.pt.md ├── 05-objects │ ├── 01-objects │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-object-proto │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-arrays-and-objects │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-guided-exercises │ │ ├── README.md │ │ └── README.pt.md │ └── 06-practice │ │ ├── 00-add-array-property │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── addArrayProperty.js │ │ ├── solution │ │ │ └── addArrayProperty.js │ │ └── test │ │ │ └── addArrayProperty.spec.js │ │ ├── 01-object-properties-counter │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── objectPropertiesCounter.js │ │ ├── solution │ │ │ └── objectPropertiesCounter.js │ │ └── test │ │ │ └── objectPropertiesCounter.spec.js │ │ ├── 02-remove-string-values-longer-than │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── removeStringValuesLongerThan.js │ │ ├── solution │ │ │ └── removeStringValuesLongerThan.js │ │ └── test │ │ │ └── removeStringValuesLongerThan.spec.js │ │ ├── 03-get-element-of-array-property │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getElementOfArrayProperty.js │ │ ├── solution │ │ │ └── getElementOfArrayProperty.js │ │ └── test │ │ │ └── getElementOfArrayProperty.spec.js │ │ ├── 04-greet-customer │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── greetCustomer.js │ │ ├── solution │ │ │ └── greetCustomer.js │ │ └── test │ │ │ └── greetCustomer.spec.js │ │ ├── 05-transform-first-and-last │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── transformFirstAndLast.js │ │ ├── solution │ │ │ └── transformFirstAndLast.js │ │ └── test │ │ │ └── transformFirstAndLast.spec.js │ │ ├── 06-get-all-keys │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getAllKeys.js │ │ ├── solution │ │ │ └── getAllKeys.js │ │ └── test │ │ │ └── getAllKeys.spec.js │ │ ├── 07-from-list-to-object │ │ ├── .eslintrc │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ └── fromListToObject.js │ │ ├── solution │ │ │ └── fromListToObject.js │ │ └── test │ │ │ └── fromListToObject.spec.js │ │ ├── 08-list-all-values │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── listAllValues.js │ │ ├── solution │ │ │ └── listAllValues.js │ │ └── test │ │ │ └── listAllValues.spec.js │ │ ├── 09-transform-employee-data │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── transformEmployeeData.js │ │ ├── solution │ │ │ └── transformEmployeeData.js │ │ └── test │ │ │ └── transformEmployeeData.spec.js │ │ ├── 10-convert-object-to-list │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── convertObjectToList.js │ │ ├── solution │ │ │ └── convertObjectToList.js │ │ └── test │ │ │ └── convertObjectToList.spec.js │ │ ├── 11-get-sum-of-all-elements-at-property │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getSumOfAllElementsAtProperty.js │ │ ├── solution │ │ │ └── getSumOfAllElementsAtProperty.js │ │ └── test │ │ │ └── getSumOfAllElementsAtProperty.spec.js │ │ ├── 12-get-product-of-all-elements-at-property │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── getProductOfAllElementsAtProperty.js │ │ ├── solution │ │ │ └── getProductOfAllElementsAtProperty.js │ │ └── test │ │ │ └── getProductOfAllElementsAtProperty.spec.js │ │ ├── 13-add-object-property │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── addObjectProperty.js │ │ ├── solution │ │ │ └── addObjectProperty.js │ │ └── test │ │ │ └── addObjectProperty.spec.js │ │ ├── 14-add-full-name-property │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── addFullNameProperty.js │ │ ├── solution │ │ │ └── addFullNameProperty.js │ │ └── test │ │ │ └── addFullNameProperty.spec.js │ │ ├── README.md │ │ └── README.pt.md ├── 06-strings │ ├── 01-strings │ │ ├── README.md │ │ └── README.pt.md │ └── 02-practice │ │ ├── 01-currency-amount │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── currencyAmount.js │ │ ├── solution │ │ │ └── currencyAmount.js │ │ └── test │ │ │ └── currencyAmount.spec.js │ │ ├── 02-first-and-last-to-upper │ │ ├── README.md │ │ ├── README.pt.md │ │ ├── boilerplate │ │ │ ├── .eslintrc │ │ │ └── firstAndLastToUpper.js │ │ ├── solution │ │ │ └── firstAndLastToUpper.js │ │ └── test │ │ │ └── firstAndLastToUpper.spec.js │ │ ├── README.md │ │ └── README.pt.md ├── 07-built-ins │ └── 01-intro │ │ ├── README.md │ │ └── README.pt.md ├── 08-async │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-callbacks │ │ ├── README.md │ │ └── README.pt.md │ ├── 05-promises │ │ ├── README.md │ │ └── README.pt.md │ └── 08-closing │ │ ├── README.md │ │ └── README.pt.md ├── 09-errors │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-strict-mode │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-try-catch │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-callbacks │ │ ├── README.md │ │ ├── README.pt.md │ │ └── files │ │ │ └── callback.js │ ├── 04-promises │ │ ├── README.md │ │ ├── README.pt.md │ │ └── files │ │ │ └── promise.js │ ├── 05-practice │ │ ├── 01-validate-string │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ └── validateString.js │ │ │ ├── solution │ │ │ │ └── validateString.js │ │ │ └── test │ │ │ │ └── validateString.spec.js │ │ ├── 02-parse-json │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ └── parseJson.js │ │ │ ├── solution │ │ │ │ └── parseJson.js │ │ │ └── test │ │ │ │ └── parseJson.spec.js │ │ ├── README.md │ │ └── README.pt.md │ └── 07-closing │ │ ├── README.md │ │ └── README.pt.md ├── 10-debugging │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-intro │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-error-messages │ │ ├── README.md │ │ ├── README.pt.md │ │ └── img-line-number.png │ ├── 03-code-challenges │ │ ├── 01-say-hello │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ └── sayHello.js │ │ │ ├── solution │ │ │ │ └── sayHello.js │ │ │ └── test │ │ │ │ └── sayHello.spec.js │ │ ├── 02-create-array │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ └── createArray.js │ │ │ ├── solution │ │ │ │ └── createArray.js │ │ │ └── test │ │ │ │ └── createArray.spec.js │ │ ├── 03-calculate-tip │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ └── calculateTip.js │ │ │ ├── solution │ │ │ │ └── calculateTip.js │ │ │ └── test │ │ │ │ └── calculateTip.spec.js │ │ ├── 04-tell-fortune │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ └── tellFortune.js │ │ │ ├── solution │ │ │ │ └── tellFortune.js │ │ │ └── test │ │ │ │ └── tellFortune.spec.js │ │ ├── 05-what-to-wear │ │ │ ├── README.md │ │ │ ├── README.pt.md │ │ │ ├── boilerplate │ │ │ │ └── whatToWear.js │ │ │ ├── solution │ │ │ │ └── whatToWear.js │ │ │ └── test │ │ │ │ └── whatToWear.spec.js │ │ ├── README.md │ │ └── README.pt.md │ ├── 04-breakpoints │ │ ├── README.md │ │ └── README.pt.md │ └── 05-closing │ │ ├── README.md │ │ └── README.pt.md ├── 11-testing │ ├── 00-opening │ │ ├── README.md │ │ └── README.pt.md │ ├── 01-basics │ │ ├── README.md │ │ ├── README.pt.md │ │ └── files │ │ │ ├── .eslintrc │ │ │ ├── isVowel.js │ │ │ └── isVowel.spec.js │ ├── 02-frameworks │ │ ├── README.md │ │ ├── README.pt.md │ │ └── files │ │ │ ├── .eslintrc │ │ │ ├── isVowel.js │ │ │ └── isVowel.spec.js │ ├── 03-assertions │ │ ├── README.md │ │ ├── README.pt.md │ │ └── files │ │ │ ├── isVowel-chai-assert.spec.js │ │ │ ├── isVowel-node-assert.spec.js │ │ │ ├── isVowel-vanilla-assert.spec.js │ │ │ └── isVowel.js │ ├── 04-browser │ │ ├── README.md │ │ ├── README.pt.md │ │ └── files │ │ │ ├── example.html │ │ │ ├── makeVowelsUpperCase.js │ │ │ ├── makeVowelsUpperCase.spec.js │ │ │ └── test.html │ └── 10-closing │ │ ├── README.md │ │ └── README.pt.md ├── README.md ├── README.pt.md └── thumb.png ├── learning-mindset ├── 01-welcome-and-objectives │ ├── 01-welcome-and-objectives │ │ └── README.md │ └── 02-learning-misunderstandings │ │ └── README.md ├── README.md └── thumb.png ├── paradigms ├── 01-paradigms │ ├── 00-opening │ │ └── README.md │ ├── 01-overview │ │ └── README.md │ ├── 02-history │ │ └── README.md │ ├── 03-declarative-vs-imperative │ │ └── README.md │ ├── 04-imperative-exercise │ │ ├── 01-print-primes │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── printPrimes.js │ │ │ ├── solution │ │ │ │ └── printPrimes.js │ │ │ └── test │ │ │ │ └── printPrimes.spec.js │ │ └── README.md │ ├── 05-procedural │ │ └── README.md │ ├── 06-modules │ │ └── README.md │ ├── 07-procedural-exercise │ │ ├── 01-get-primes │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── getPrimes.js │ │ │ ├── solution │ │ │ │ └── getPrimes.js │ │ │ └── test │ │ │ │ └── getPrimes.spec.js │ │ └── README.md │ ├── 08-oop │ │ └── README.md │ ├── 09-oop-exercise │ │ ├── 01-notes │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── notes.js │ │ │ ├── solution │ │ │ │ └── notes.js │ │ │ └── test │ │ │ │ └── notes.spec.js │ │ └── README.md │ ├── 10-fp │ │ └── README.md │ ├── 11-fp-exercise │ │ ├── 01-notes │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── notes.js │ │ │ ├── solution │ │ │ │ └── notes.js │ │ │ └── test │ │ │ │ └── notes.spec.js │ │ └── README.md │ └── 13-closing │ │ └── README.md ├── 03-proto │ ├── 00-opening │ │ └── README.md │ ├── 01-this-and-bind │ │ └── README.md │ ├── 02-object-create │ │ └── README.md │ ├── 03-prototypal-inheritance │ │ └── README.md │ ├── 04-ejercicios │ │ ├── 01-simple-objects │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── simpleObjects.js │ │ │ ├── solution │ │ │ │ └── simpleObjects.js │ │ │ └── test │ │ │ │ └── simpleObjects.spec.js │ │ ├── 02-proto │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── proto.js │ │ │ ├── solution │ │ │ │ └── proto.js │ │ │ └── test │ │ │ │ └── proto.spec.js │ │ ├── 03-dynamic-lookups │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── dynamicLookups.js │ │ │ ├── solution │ │ │ │ └── dynamicLookups.js │ │ │ └── test │ │ │ │ └── dynamicLookups.spec.js │ │ ├── 04-property-assignments │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── propertyAssignments.js │ │ │ ├── solution │ │ │ │ └── propertyAssignments.js │ │ │ └── test │ │ │ │ └── propertyAssignments.spec.js │ │ ├── 05-arrays-and-objects │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── arraysAndObjects.js │ │ │ ├── solution │ │ │ │ └── arraysAndObjects.js │ │ │ └── test │ │ │ │ └── arraysAndObjects.spec.js │ │ ├── 06-object-create │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── objectCreate.js │ │ │ ├── solution │ │ │ │ └── objectCreate.js │ │ │ └── test │ │ │ │ └── objectCreate.spec.js │ │ ├── 07-dot-new │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── dotNew.js │ │ │ ├── solution │ │ │ │ └── dotNew.js │ │ │ └── test │ │ │ │ └── dotNew.spec.js │ │ ├── 08-constructor-functions │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── constructorFunctions.js │ │ │ ├── solution │ │ │ │ └── constructorFunctions.js │ │ │ └── test │ │ │ │ └── constructorFunctions.spec.js │ │ ├── 09-implicit-this │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── implicitThis.js │ │ │ ├── solution │ │ │ │ └── implicitThis.js │ │ │ └── test │ │ │ │ └── implicitThis.spec.js │ │ ├── 10-function-prototype │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── functionPrototype.js │ │ │ ├── solution │ │ │ │ └── functionPrototype.js │ │ │ └── test │ │ │ │ └── functionPrototype.spec.js │ │ └── README.md │ └── 06-closing │ │ └── README.md ├── 06-composition │ ├── 00-opening │ │ └── README.md │ ├── 01-closures │ │ └── README.md │ ├── 02-factories │ │ └── README.md │ ├── 03-object-assign │ │ └── README.md │ ├── 04-composition-over-inheritance │ │ └── README.md │ ├── 05-exercises │ │ ├── 01-hof │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── hof.js │ │ │ ├── solution │ │ │ │ └── hof.js │ │ │ └── test │ │ │ │ └── hof.spec.js │ │ ├── 02-map │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── map.js │ │ │ ├── solution │ │ │ │ └── map.js │ │ │ └── test │ │ │ │ └── map.spec.js │ │ ├── 03-filter │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── filter.js │ │ │ ├── solution │ │ │ │ └── filter.js │ │ │ └── test │ │ │ │ └── filter.spec.js │ │ ├── 04-reduce │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── reduce.js │ │ │ ├── solution │ │ │ │ └── reduce.js │ │ │ └── test │ │ │ │ └── reduce.spec.js │ │ ├── 05-arrow-functions │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── arrowFunctions.js │ │ │ ├── solution │ │ │ │ └── arrowFunctions.js │ │ │ └── test │ │ │ │ └── arrowFunctions.spec.js │ │ ├── 06-closures │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── closures.js │ │ │ ├── solution │ │ │ │ └── closures.js │ │ │ └── test │ │ │ │ └── closures.spec.js │ │ ├── 07-factories │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── factories.js │ │ │ ├── solution │ │ │ │ └── factories.js │ │ │ └── test │ │ │ │ └── factories.spec.js │ │ ├── 08-object-assign │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── objectAssign.js │ │ │ ├── solution │ │ │ │ └── objectAssign.js │ │ │ └── test │ │ │ │ └── objectAssign.spec.js │ │ ├── 09-composition │ │ │ ├── README.md │ │ │ ├── boilerplate │ │ │ │ └── composition.js │ │ │ ├── solution │ │ │ │ └── composition.js │ │ │ └── test │ │ │ │ └── composition.spec.js │ │ └── README.md │ └── 07-closing │ │ └── README.md ├── README.md └── thumb.png ├── prototyping ├── 00-prototyping │ ├── 00-wireframes │ │ └── README.md │ └── 01-figma │ │ └── README.md ├── README.md └── thumb.png ├── scm ├── 01-git │ ├── 01-git │ │ ├── README.md │ │ └── README.pt.md │ ├── 02-install │ │ ├── README.md │ │ └── README.pt.md │ ├── 03-configure │ │ ├── README.md │ │ └── README.pt.md │ └── 04-commands │ │ ├── README.md │ │ └── README.pt.md ├── 02-github │ └── 01-github │ │ ├── README.md │ │ └── README.pt.md ├── README.md ├── README.pt.md └── thumb.png ├── shell ├── 01-intro │ └── 01-intro │ │ ├── README.md │ │ └── README.pt.md ├── 02-filesystem │ └── 01-fs │ │ ├── README.md │ │ └── README.pt.md ├── 03-environment │ └── 01-env │ │ ├── README.md │ │ └── README.pt.md ├── 04-process │ └── 01-ps │ │ ├── README.md │ │ └── README.pt.md ├── 05-scripts │ └── 01-scripts │ │ ├── README.md │ │ └── README.pt.md ├── README.md ├── README.pt.md └── thumb.png └── ux-research ├── 00-problem-understanding ├── 00-problem-understanding │ └── README.md └── 01-analisis-competitivo-y-comparativo │ └── README.md ├── 01-qualitative-research ├── 00-interviews │ └── README.md ├── 01-interviews-exercises │ └── README.md ├── 02-interview-guide │ └── README.md ├── 03-interview-guide-exercise │ └── README.md ├── 04-observation │ └── README.md ├── 05-observation-exercise │ └── README.md ├── 06-usability-testing │ └── README.md └── 07-user-recruiting │ └── README.md ├── 02-quantitative-research ├── 00-intro │ └── README.md ├── 01-analytics │ └── README.md └── 02-surveys │ └── README.md ├── 03-synthesis ├── 00-synthesis │ └── README.md ├── 01-affinity-mapping │ └── README.md ├── 02-user-personas │ └── README.md ├── 03-customer-journey-maps │ └── README.md ├── 04-user-stories │ └── README.md ├── 05-ideation-prompts │ └── README.md ├── 06-presentations │ └── README.md └── 07-storytelling │ └── README.md ├── 04-business-problem-understanding ├── 00-business-basics │ └── README.md ├── 01-business-models │ └── README.md ├── 02-business-objectives │ └── README.md └── 03-business-immersion │ └── README.md ├── 05-product-metrics ├── 00-vanity-metrics │ └── README.md ├── 01-conversion-funnels │ └── README.md ├── 02-lean-analytics │ └── README.md ├── 03-landing-page-optimization │ └── README.md ├── 04-analytics │ └── README.md └── 05-heart-metrics │ └── README.md ├── README.md └── thumb.png /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/.mdlintignore -------------------------------------------------------------------------------- /.mdlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/.mdlintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/README.md -------------------------------------------------------------------------------- /README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/README.pt.md -------------------------------------------------------------------------------- /dist/learning-objectives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/learning-objectives.json -------------------------------------------------------------------------------- /dist/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects.json -------------------------------------------------------------------------------- /dist/projects/artist-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/artist-launch.json -------------------------------------------------------------------------------- /dist/projects/burger-queen-api-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/burger-queen-api-client.json -------------------------------------------------------------------------------- /dist/projects/burger-queen-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/burger-queen-api.json -------------------------------------------------------------------------------- /dist/projects/card-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/card-validation.json -------------------------------------------------------------------------------- /dist/projects/chat-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/chat-app.json -------------------------------------------------------------------------------- /dist/projects/cipher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/cipher.json -------------------------------------------------------------------------------- /dist/projects/computing-service-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/computing-service-deployment.json -------------------------------------------------------------------------------- /dist/projects/container-service-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/container-service-deployment.json -------------------------------------------------------------------------------- /dist/projects/data-lovers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/data-lovers.json -------------------------------------------------------------------------------- /dist/projects/dataverse-chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/dataverse-chat.json -------------------------------------------------------------------------------- /dist/projects/dataverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/dataverse.json -------------------------------------------------------------------------------- /dist/projects/design-assigned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/design-assigned.json -------------------------------------------------------------------------------- /dist/projects/design-detectives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/design-detectives.json -------------------------------------------------------------------------------- /dist/projects/design-lab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/design-lab.json -------------------------------------------------------------------------------- /dist/projects/dockerfile-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/dockerfile-deployment.json -------------------------------------------------------------------------------- /dist/projects/emergency-room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/emergency-room.json -------------------------------------------------------------------------------- /dist/projects/fleet-management-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/fleet-management-api.json -------------------------------------------------------------------------------- /dist/projects/fleet-management-fullstack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/fleet-management-fullstack.json -------------------------------------------------------------------------------- /dist/projects/guess-the-number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/guess-the-number.json -------------------------------------------------------------------------------- /dist/projects/how-might-we.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/how-might-we.json -------------------------------------------------------------------------------- /dist/projects/job-application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/job-application.json -------------------------------------------------------------------------------- /dist/projects/md-links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/md-links.json -------------------------------------------------------------------------------- /dist/projects/memory-match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/memory-match.json -------------------------------------------------------------------------------- /dist/projects/mindset-mvp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/mindset-mvp.json -------------------------------------------------------------------------------- /dist/projects/movie-challenge-fw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/movie-challenge-fw.json -------------------------------------------------------------------------------- /dist/projects/movie-challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/movie-challenge.json -------------------------------------------------------------------------------- /dist/projects/notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/notes.json -------------------------------------------------------------------------------- /dist/projects/open-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/open-project.json -------------------------------------------------------------------------------- /dist/projects/roman-numerals-slack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/roman-numerals-slack.json -------------------------------------------------------------------------------- /dist/projects/roman-numerals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/roman-numerals.json -------------------------------------------------------------------------------- /dist/projects/salesforce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/salesforce.json -------------------------------------------------------------------------------- /dist/projects/social-network-fw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/social-network-fw.json -------------------------------------------------------------------------------- /dist/projects/social-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/social-network.json -------------------------------------------------------------------------------- /dist/projects/sql-student-database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/sql-student-database.json -------------------------------------------------------------------------------- /dist/projects/sqlzoo-mystery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/sqlzoo-mystery.json -------------------------------------------------------------------------------- /dist/projects/text-analyzer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/text-analyzer.json -------------------------------------------------------------------------------- /dist/projects/trivia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/trivia.json -------------------------------------------------------------------------------- /dist/projects/uxploradoras-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/uxploradoras-ui.json -------------------------------------------------------------------------------- /dist/projects/uxploradoras-ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/uxploradoras-ux.json -------------------------------------------------------------------------------- /dist/projects/uxploradoras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/uxploradoras.json -------------------------------------------------------------------------------- /dist/projects/wordpress-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/projects/wordpress-plugin.json -------------------------------------------------------------------------------- /dist/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics.json -------------------------------------------------------------------------------- /dist/topics/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/browser.json -------------------------------------------------------------------------------- /dist/topics/content-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/content-management.json -------------------------------------------------------------------------------- /dist/topics/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/css.json -------------------------------------------------------------------------------- /dist/topics/functional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/functional.json -------------------------------------------------------------------------------- /dist/topics/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/html.json -------------------------------------------------------------------------------- /dist/topics/interaction-design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/interaction-design.json -------------------------------------------------------------------------------- /dist/topics/intro-ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/intro-ux.json -------------------------------------------------------------------------------- /dist/topics/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/javascript.json -------------------------------------------------------------------------------- /dist/topics/learning-mindset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/learning-mindset.json -------------------------------------------------------------------------------- /dist/topics/paradigms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/paradigms.json -------------------------------------------------------------------------------- /dist/topics/prototyping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/prototyping.json -------------------------------------------------------------------------------- /dist/topics/scm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/scm.json -------------------------------------------------------------------------------- /dist/topics/shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/shell.json -------------------------------------------------------------------------------- /dist/topics/ux-research.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/dist/topics/ux-research.json -------------------------------------------------------------------------------- /guides/learning-with-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/guides/learning-with-ai/README.md -------------------------------------------------------------------------------- /guides/learning-with-ai/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/guides/learning-with-ai/README.pt.md -------------------------------------------------------------------------------- /guides/router-spa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/guides/router-spa/README.md -------------------------------------------------------------------------------- /guides/router-spa/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/guides/router-spa/README.pt.md -------------------------------------------------------------------------------- /guides/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/guides/typescript/README.md -------------------------------------------------------------------------------- /guides/typescript/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/guides/typescript/README.pt.md -------------------------------------------------------------------------------- /learning-objectives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/learning-objectives/README.md -------------------------------------------------------------------------------- /learning-objectives/data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/learning-objectives/data.yml -------------------------------------------------------------------------------- /learning-objectives/intl/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/learning-objectives/intl/es.yml -------------------------------------------------------------------------------- /learning-objectives/intl/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/learning-objectives/intl/pt.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/package.json -------------------------------------------------------------------------------- /projects/00-how-might-we/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-how-might-we/.editorconfig -------------------------------------------------------------------------------- /projects/00-how-might-we/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /projects/00-how-might-we/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-how-might-we/README.md -------------------------------------------------------------------------------- /projects/00-how-might-we/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-how-might-we/project.yml -------------------------------------------------------------------------------- /projects/00-how-might-we/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-how-might-we/thumb.png -------------------------------------------------------------------------------- /projects/00-trivia/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-trivia/.editorconfig -------------------------------------------------------------------------------- /projects/00-trivia/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /projects/00-trivia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-trivia/README.md -------------------------------------------------------------------------------- /projects/00-trivia/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-trivia/README.pt.md -------------------------------------------------------------------------------- /projects/00-trivia/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-trivia/project.yml -------------------------------------------------------------------------------- /projects/00-trivia/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-trivia/src/index.html -------------------------------------------------------------------------------- /projects/00-trivia/src/main.js: -------------------------------------------------------------------------------- 1 | /* 2 | Aquí va tu JavaScript 3 | */ 4 | -------------------------------------------------------------------------------- /projects/00-trivia/src/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Aquí van los estilos 3 | */ -------------------------------------------------------------------------------- /projects/00-trivia/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/00-trivia/thumb.png -------------------------------------------------------------------------------- /projects/01-card-validation/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/.babelrc -------------------------------------------------------------------------------- /projects/01-card-validation/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/.editorconfig -------------------------------------------------------------------------------- /projects/01-card-validation/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/.eslintrc -------------------------------------------------------------------------------- /projects/01-card-validation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/.gitignore -------------------------------------------------------------------------------- /projects/01-card-validation/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/FAQ.md -------------------------------------------------------------------------------- /projects/01-card-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/README.md -------------------------------------------------------------------------------- /projects/01-card-validation/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/README.pt.md -------------------------------------------------------------------------------- /projects/01-card-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/package.json -------------------------------------------------------------------------------- /projects/01-card-validation/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/project.yml -------------------------------------------------------------------------------- /projects/01-card-validation/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/src/index.html -------------------------------------------------------------------------------- /projects/01-card-validation/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/src/index.js -------------------------------------------------------------------------------- /projects/01-card-validation/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/01-card-validation/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/src/validator.js -------------------------------------------------------------------------------- /projects/01-card-validation/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/test/.eslintrc -------------------------------------------------------------------------------- /projects/01-card-validation/test/validator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/test/validator.spec.js -------------------------------------------------------------------------------- /projects/01-card-validation/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-card-validation/thumb.png -------------------------------------------------------------------------------- /projects/01-cipher/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/.babelrc -------------------------------------------------------------------------------- /projects/01-cipher/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/.editorconfig -------------------------------------------------------------------------------- /projects/01-cipher/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/.eslintrc -------------------------------------------------------------------------------- /projects/01-cipher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/.gitignore -------------------------------------------------------------------------------- /projects/01-cipher/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/FAQ.md -------------------------------------------------------------------------------- /projects/01-cipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/README.md -------------------------------------------------------------------------------- /projects/01-cipher/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/README.pt.md -------------------------------------------------------------------------------- /projects/01-cipher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/package.json -------------------------------------------------------------------------------- /projects/01-cipher/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/project.yml -------------------------------------------------------------------------------- /projects/01-cipher/src/cipher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/src/cipher.js -------------------------------------------------------------------------------- /projects/01-cipher/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/src/index.html -------------------------------------------------------------------------------- /projects/01-cipher/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/src/index.js -------------------------------------------------------------------------------- /projects/01-cipher/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/01-cipher/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/test/.eslintrc -------------------------------------------------------------------------------- /projects/01-cipher/test/cipher.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/test/cipher.spec.js -------------------------------------------------------------------------------- /projects/01-cipher/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-cipher/thumb.png -------------------------------------------------------------------------------- /projects/01-design-detectives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-design-detectives/README.md -------------------------------------------------------------------------------- /projects/01-design-detectives/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-design-detectives/project.yml -------------------------------------------------------------------------------- /projects/01-design-detectives/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-design-detectives/thumb.png -------------------------------------------------------------------------------- /projects/01-text-analyzer/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/.babelrc -------------------------------------------------------------------------------- /projects/01-text-analyzer/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/.editorconfig -------------------------------------------------------------------------------- /projects/01-text-analyzer/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/.eslintrc -------------------------------------------------------------------------------- /projects/01-text-analyzer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/.gitignore -------------------------------------------------------------------------------- /projects/01-text-analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/README.md -------------------------------------------------------------------------------- /projects/01-text-analyzer/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/README.pt.md -------------------------------------------------------------------------------- /projects/01-text-analyzer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/package-lock.json -------------------------------------------------------------------------------- /projects/01-text-analyzer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/package.json -------------------------------------------------------------------------------- /projects/01-text-analyzer/playwright-report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/playwright-report/.gitignore -------------------------------------------------------------------------------- /projects/01-text-analyzer/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/playwright.config.ts -------------------------------------------------------------------------------- /projects/01-text-analyzer/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/project.yml -------------------------------------------------------------------------------- /projects/01-text-analyzer/src/analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/src/analyzer.js -------------------------------------------------------------------------------- /projects/01-text-analyzer/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/src/index.html -------------------------------------------------------------------------------- /projects/01-text-analyzer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/src/index.js -------------------------------------------------------------------------------- /projects/01-text-analyzer/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/01-text-analyzer/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/test/.eslintrc -------------------------------------------------------------------------------- /projects/01-text-analyzer/test/analyzer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/test/analyzer.spec.js -------------------------------------------------------------------------------- /projects/01-text-analyzer/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/01-text-analyzer/thumb.png -------------------------------------------------------------------------------- /projects/02-data-lovers/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/.babelrc -------------------------------------------------------------------------------- /projects/02-data-lovers/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/.editorconfig -------------------------------------------------------------------------------- /projects/02-data-lovers/.eslintignore: -------------------------------------------------------------------------------- 1 | src/data 2 | -------------------------------------------------------------------------------- /projects/02-data-lovers/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/.eslintrc -------------------------------------------------------------------------------- /projects/02-data-lovers/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | coverage/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /projects/02-data-lovers/EXTRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/EXTRA.md -------------------------------------------------------------------------------- /projects/02-data-lovers/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/FAQ.md -------------------------------------------------------------------------------- /projects/02-data-lovers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/package.json -------------------------------------------------------------------------------- /projects/02-data-lovers/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/project.yml -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/athletes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/athletes/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/athletes/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/athletes/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/athletes/athletes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/athletes/athletes.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/athletes/athletes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/athletes/athletes.json -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/breakingbad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/breakingbad/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/countries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/countries/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/countries/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/countries/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/countries/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/countries/countries.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/ghibli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/ghibli/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/ghibli/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/ghibli/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/ghibli/ghibli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/ghibli/ghibli.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/ghibli/ghibli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/ghibli/ghibli.json -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/got/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/got/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/got/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/got/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/got/got.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/got/got.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/got/got.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/got/got.json -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/lol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/lol/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/lol/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/lol/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/lol/lol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/lol/lol.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/lol/lol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/lol/lol.json -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/pokemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/pokemon/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/pokemon/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/pokemon/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/pokemon/pokemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/pokemon/pokemon.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/pokemon/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/pokemon/pokemon.json -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/rickandmorty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/rickandmorty/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/tarot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/tarot/README.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/tarot/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/tarot/README.pt.md -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/tarot/tarot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/tarot/tarot.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/data/tarot/tarot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/data/tarot/tarot.json -------------------------------------------------------------------------------- /projects/02-data-lovers/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/index.html -------------------------------------------------------------------------------- /projects/02-data-lovers/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/src/main.js -------------------------------------------------------------------------------- /projects/02-data-lovers/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/02-data-lovers/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/test/.eslintrc -------------------------------------------------------------------------------- /projects/02-data-lovers/test/data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/test/data.spec.js -------------------------------------------------------------------------------- /projects/02-data-lovers/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-data-lovers/thumb.png -------------------------------------------------------------------------------- /projects/02-dataverse/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/.babelrc -------------------------------------------------------------------------------- /projects/02-dataverse/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/.editorconfig -------------------------------------------------------------------------------- /projects/02-dataverse/.eslintignore: -------------------------------------------------------------------------------- 1 | src/data 2 | -------------------------------------------------------------------------------- /projects/02-dataverse/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/.eslintrc -------------------------------------------------------------------------------- /projects/02-dataverse/.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /projects/02-dataverse/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/.gitignore -------------------------------------------------------------------------------- /projects/02-dataverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/README.md -------------------------------------------------------------------------------- /projects/02-dataverse/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/README.pt.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/01-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/01-milestone.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/01-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/01-milestone.pt.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/02-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/02-milestone.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/02-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/02-milestone.pt.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/03-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/03-milestone.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/03-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/03-milestone.pt.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/04-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/04-milestone.md -------------------------------------------------------------------------------- /projects/02-dataverse/docs/04-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/docs/04-milestone.pt.md -------------------------------------------------------------------------------- /projects/02-dataverse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/package.json -------------------------------------------------------------------------------- /projects/02-dataverse/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/playwright.config.js -------------------------------------------------------------------------------- /projects/02-dataverse/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/project.yml -------------------------------------------------------------------------------- /projects/02-dataverse/src/data/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/src/data/dataset.js -------------------------------------------------------------------------------- /projects/02-dataverse/src/dataFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/src/dataFunctions.js -------------------------------------------------------------------------------- /projects/02-dataverse/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/src/index.html -------------------------------------------------------------------------------- /projects/02-dataverse/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/src/main.js -------------------------------------------------------------------------------- /projects/02-dataverse/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/02-dataverse/src/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/src/view.js -------------------------------------------------------------------------------- /projects/02-dataverse/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/test/.eslintrc -------------------------------------------------------------------------------- /projects/02-dataverse/test/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/test/data.js -------------------------------------------------------------------------------- /projects/02-dataverse/test/dataFunctions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/test/dataFunctions.spec.js -------------------------------------------------------------------------------- /projects/02-dataverse/tests-read-only/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/tests-read-only/.eslintrc -------------------------------------------------------------------------------- /projects/02-dataverse/tests-read-only/e2e/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/tests-read-only/e2e/app.spec.js -------------------------------------------------------------------------------- /projects/02-dataverse/tests-read-only/oa/oa-css.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/tests-read-only/oa/oa-css.spec.js -------------------------------------------------------------------------------- /projects/02-dataverse/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-dataverse/thumb.png -------------------------------------------------------------------------------- /projects/02-design-assigned/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-design-assigned/README.md -------------------------------------------------------------------------------- /projects/02-design-assigned/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-design-assigned/project.yml -------------------------------------------------------------------------------- /projects/02-design-assigned/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-design-assigned/thumb.png -------------------------------------------------------------------------------- /projects/02-emergency-room/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/.babelrc -------------------------------------------------------------------------------- /projects/02-emergency-room/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/.eslintrc -------------------------------------------------------------------------------- /projects/02-emergency-room/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | coverage/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /projects/02-emergency-room/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/README.md -------------------------------------------------------------------------------- /projects/02-emergency-room/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/README.pt.md -------------------------------------------------------------------------------- /projects/02-emergency-room/emergency-room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/emergency-room.jpg -------------------------------------------------------------------------------- /projects/02-emergency-room/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/package.json -------------------------------------------------------------------------------- /projects/02-emergency-room/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/project.yml -------------------------------------------------------------------------------- /projects/02-emergency-room/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/src/index.html -------------------------------------------------------------------------------- /projects/02-emergency-room/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/02-emergency-room/src/queue.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/02-emergency-room/test/queue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/test/queue.test.js -------------------------------------------------------------------------------- /projects/02-emergency-room/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-emergency-room/thumb.png -------------------------------------------------------------------------------- /projects/02-memory-match/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/.babelrc -------------------------------------------------------------------------------- /projects/02-memory-match/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/.editorconfig -------------------------------------------------------------------------------- /projects/02-memory-match/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/.eslintrc -------------------------------------------------------------------------------- /projects/02-memory-match/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | coverage/ 4 | node_modules/ -------------------------------------------------------------------------------- /projects/02-memory-match/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/README.md -------------------------------------------------------------------------------- /projects/02-memory-match/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/README.pt.md -------------------------------------------------------------------------------- /projects/02-memory-match/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/package.json -------------------------------------------------------------------------------- /projects/02-memory-match/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/project.yml -------------------------------------------------------------------------------- /projects/02-memory-match/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/components/App.js -------------------------------------------------------------------------------- /projects/02-memory-match/src/components/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/components/App.spec.js -------------------------------------------------------------------------------- /projects/02-memory-match/src/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/data/README.md -------------------------------------------------------------------------------- /projects/02-memory-match/src/data/pokemon/pokemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/data/pokemon/pokemon.js -------------------------------------------------------------------------------- /projects/02-memory-match/src/data/pokemon/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/data/pokemon/pokemon.json -------------------------------------------------------------------------------- /projects/02-memory-match/src/data/webdev/webdev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/data/webdev/webdev.js -------------------------------------------------------------------------------- /projects/02-memory-match/src/data/webdev/webdev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/data/webdev/webdev.json -------------------------------------------------------------------------------- /projects/02-memory-match/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/index.html -------------------------------------------------------------------------------- /projects/02-memory-match/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/src/main.js -------------------------------------------------------------------------------- /projects/02-memory-match/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/02-memory-match/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-memory-match/thumb.png -------------------------------------------------------------------------------- /projects/02-mindset-mvp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-mindset-mvp/README.md -------------------------------------------------------------------------------- /projects/02-mindset-mvp/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-mindset-mvp/project.yml -------------------------------------------------------------------------------- /projects/02-mindset-mvp/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-mindset-mvp/thumb.png -------------------------------------------------------------------------------- /projects/02-uxploradoras-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-uxploradoras-ui/README.md -------------------------------------------------------------------------------- /projects/02-uxploradoras-ui/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-uxploradoras-ui/project.yml -------------------------------------------------------------------------------- /projects/02-uxploradoras-ui/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-uxploradoras-ui/thumb.png -------------------------------------------------------------------------------- /projects/02-uxploradoras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-uxploradoras/README.md -------------------------------------------------------------------------------- /projects/02-uxploradoras/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-uxploradoras/project.yml -------------------------------------------------------------------------------- /projects/02-uxploradoras/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/02-uxploradoras/thumb.png -------------------------------------------------------------------------------- /projects/03-dataverse-chat/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/.babelrc -------------------------------------------------------------------------------- /projects/03-dataverse-chat/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/.editorconfig -------------------------------------------------------------------------------- /projects/03-dataverse-chat/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/.eslintrc -------------------------------------------------------------------------------- /projects/03-dataverse-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/.gitignore -------------------------------------------------------------------------------- /projects/03-dataverse-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/README.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/README.pt.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/01-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/01-milestone.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/01-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/01-milestone.pt.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/02-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/02-milestone.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/02-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/02-milestone.pt.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/03-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/03-milestone.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/03-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/03-milestone.pt.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/04-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/04-milestone.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/04-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/04-milestone.pt.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/05-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/05-milestone.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/05-milestone.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/05-milestone.pt.md -------------------------------------------------------------------------------- /projects/03-dataverse-chat/docs/assets/previewSPA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/docs/assets/previewSPA.gif -------------------------------------------------------------------------------- /projects/03-dataverse-chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/package.json -------------------------------------------------------------------------------- /projects/03-dataverse-chat/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/project.yml -------------------------------------------------------------------------------- /projects/03-dataverse-chat/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/src/index.html -------------------------------------------------------------------------------- /projects/03-dataverse-chat/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/src/index.js -------------------------------------------------------------------------------- /projects/03-dataverse-chat/src/views/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/src/views/Example.js -------------------------------------------------------------------------------- /projects/03-dataverse-chat/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-dataverse-chat/thumb.png -------------------------------------------------------------------------------- /projects/03-design-lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-design-lab/README.md -------------------------------------------------------------------------------- /projects/03-design-lab/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-design-lab/project.yml -------------------------------------------------------------------------------- /projects/03-design-lab/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-design-lab/thumb.png -------------------------------------------------------------------------------- /projects/03-movie-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-movie-challenge/README.md -------------------------------------------------------------------------------- /projects/03-movie-challenge/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-movie-challenge/README.pt.md -------------------------------------------------------------------------------- /projects/03-movie-challenge/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-movie-challenge/project.yml -------------------------------------------------------------------------------- /projects/03-movie-challenge/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-movie-challenge/thumb.png -------------------------------------------------------------------------------- /projects/03-social-network/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/.eslintrc.json -------------------------------------------------------------------------------- /projects/03-social-network/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/.gitignore -------------------------------------------------------------------------------- /projects/03-social-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/README.md -------------------------------------------------------------------------------- /projects/03-social-network/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/README.pt.md -------------------------------------------------------------------------------- /projects/03-social-network/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/babel.config.js -------------------------------------------------------------------------------- /projects/03-social-network/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/package.json -------------------------------------------------------------------------------- /projects/03-social-network/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/project.yml -------------------------------------------------------------------------------- /projects/03-social-network/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/src/index.html -------------------------------------------------------------------------------- /projects/03-social-network/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/src/lib/index.js -------------------------------------------------------------------------------- /projects/03-social-network/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/src/main.js -------------------------------------------------------------------------------- /projects/03-social-network/stylelint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'stylelint-config-recommended', 3 | }; 4 | -------------------------------------------------------------------------------- /projects/03-social-network/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/test/index.spec.js -------------------------------------------------------------------------------- /projects/03-social-network/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/thumb.png -------------------------------------------------------------------------------- /projects/03-social-network/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-social-network/vite.config.js -------------------------------------------------------------------------------- /projects/03-uxploradoras-ux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-uxploradoras-ux/README.md -------------------------------------------------------------------------------- /projects/03-uxploradoras-ux/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-uxploradoras-ux/project.yml -------------------------------------------------------------------------------- /projects/03-uxploradoras-ux/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/03-uxploradoras-ux/thumb.png -------------------------------------------------------------------------------- /projects/04-burger-queen-api-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api-client/README.md -------------------------------------------------------------------------------- /projects/04-burger-queen-api-client/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api-client/README.pt.md -------------------------------------------------------------------------------- /projects/04-burger-queen-api-client/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api-client/docs/FAQ.md -------------------------------------------------------------------------------- /projects/04-burger-queen-api-client/docs/FAQ.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api-client/docs/FAQ.pt.md -------------------------------------------------------------------------------- /projects/04-burger-queen-api-client/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api-client/project.yml -------------------------------------------------------------------------------- /projects/04-burger-queen-api-client/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api-client/thumb.png -------------------------------------------------------------------------------- /projects/04-burger-queen-api/.eslintignore: -------------------------------------------------------------------------------- 1 | docs -------------------------------------------------------------------------------- /projects/04-burger-queen-api/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/.eslintrc -------------------------------------------------------------------------------- /projects/04-burger-queen-api/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | secrets.env 3 | docs 4 | -------------------------------------------------------------------------------- /projects/04-burger-queen-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/README.md -------------------------------------------------------------------------------- /projects/04-burger-queen-api/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/README.pt.md -------------------------------------------------------------------------------- /projects/04-burger-queen-api/burger-queen-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/burger-queen-api.yml -------------------------------------------------------------------------------- /projects/04-burger-queen-api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/config.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/connect.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/controller/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/controller/users.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/db-data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /projects/04-burger-queen-api/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/docker-compose.yml -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/.eslintignore: -------------------------------------------------------------------------------- 1 | # Ignore script containig dynamic import (node-fetch) 2 | globalSetup.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/e2e/.eslintrc -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/e2e/auth.spec.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/globalSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/e2e/globalSetup.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/globalTeardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/e2e/globalTeardown.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: '@shelf/jest-mongodb', 3 | }; 4 | -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/orders.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/e2e/orders.spec.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/products.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/e2e/products.spec.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/e2e/users.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/e2e/users.spec.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/index.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/jest-mongodb-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/jest-mongodb-config.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/jsdoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/jsdoc.conf -------------------------------------------------------------------------------- /projects/04-burger-queen-api/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/middleware/auth.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/middleware/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/middleware/error.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/package.json -------------------------------------------------------------------------------- /projects/04-burger-queen-api/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/project.yml -------------------------------------------------------------------------------- /projects/04-burger-queen-api/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/routes/auth.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/routes/index.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/routes/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/routes/orders.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/routes/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/routes/products.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/routes/users.js -------------------------------------------------------------------------------- /projects/04-burger-queen-api/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-burger-queen-api/thumb.png -------------------------------------------------------------------------------- /projects/04-guess-the-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/README.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/README.pt.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/FAQ-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/FAQ-java.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/FAQ-java.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/FAQ-java.pt.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/README-csharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/README-csharp.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/README-csharp.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/README-csharp.pt.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/README-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/README-java.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/README-java.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/README-java.pt.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/README-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/README-python.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/docs/README-python.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/docs/README-python.pt.md -------------------------------------------------------------------------------- /projects/04-guess-the-number/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/project.yml -------------------------------------------------------------------------------- /projects/04-guess-the-number/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-guess-the-number/thumb.png -------------------------------------------------------------------------------- /projects/04-md-links/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/.editorconfig -------------------------------------------------------------------------------- /projects/04-md-links/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/.eslintrc -------------------------------------------------------------------------------- /projects/04-md-links/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | .nyc_output/ 4 | coverage/ 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /projects/04-md-links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/README.md -------------------------------------------------------------------------------- /projects/04-md-links/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/README.pt.md -------------------------------------------------------------------------------- /projects/04-md-links/docs/01-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/docs/01-milestone.md -------------------------------------------------------------------------------- /projects/04-md-links/docs/02-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/docs/02-milestone.md -------------------------------------------------------------------------------- /projects/04-md-links/docs/03-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/docs/03-milestone.md -------------------------------------------------------------------------------- /projects/04-md-links/docs/04-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/docs/04-milestone.md -------------------------------------------------------------------------------- /projects/04-md-links/docs/05-milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/docs/05-milestone.md -------------------------------------------------------------------------------- /projects/04-md-links/index.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | // ... 3 | }; 4 | -------------------------------------------------------------------------------- /projects/04-md-links/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/package.json -------------------------------------------------------------------------------- /projects/04-md-links/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/project.yml -------------------------------------------------------------------------------- /projects/04-md-links/test/md-links.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/test/md-links.spec.js -------------------------------------------------------------------------------- /projects/04-md-links/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-md-links/thumb.png -------------------------------------------------------------------------------- /projects/04-notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-notes/README.md -------------------------------------------------------------------------------- /projects/04-notes/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-notes/project.yml -------------------------------------------------------------------------------- /projects/04-notes/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-notes/thumb.png -------------------------------------------------------------------------------- /projects/04-sqlzoo-mystery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-sqlzoo-mystery/README.md -------------------------------------------------------------------------------- /projects/04-sqlzoo-mystery/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-sqlzoo-mystery/README.pt.md -------------------------------------------------------------------------------- /projects/04-sqlzoo-mystery/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-sqlzoo-mystery/project.yml -------------------------------------------------------------------------------- /projects/04-sqlzoo-mystery/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/04-sqlzoo-mystery/thumb.png -------------------------------------------------------------------------------- /projects/05-artist-launch/LookerStudio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-artist-launch/LookerStudio.md -------------------------------------------------------------------------------- /projects/05-artist-launch/PowerBI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-artist-launch/PowerBI.md -------------------------------------------------------------------------------- /projects/05-artist-launch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-artist-launch/README.md -------------------------------------------------------------------------------- /projects/05-artist-launch/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-artist-launch/project.yml -------------------------------------------------------------------------------- /projects/05-artist-launch/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-artist-launch/thumb.png -------------------------------------------------------------------------------- /projects/05-chat-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/.eslintrc.json -------------------------------------------------------------------------------- /projects/05-chat-app/.gitignore: -------------------------------------------------------------------------------- 1 | node_moudles/ 2 | -------------------------------------------------------------------------------- /projects/05-chat-app/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | .github/workflows/node.js.yml 4 | -------------------------------------------------------------------------------- /projects/05-chat-app/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/.prettierrc.json -------------------------------------------------------------------------------- /projects/05-chat-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/README.md -------------------------------------------------------------------------------- /projects/05-chat-app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/docker-compose.yml -------------------------------------------------------------------------------- /projects/05-chat-app/docs/images/ci-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/docs/images/ci-pipeline.png -------------------------------------------------------------------------------- /projects/05-chat-app/docs/images/pgadmin-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/docs/images/pgadmin-login.png -------------------------------------------------------------------------------- /projects/05-chat-app/docs/images/train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/docs/images/train.jpg -------------------------------------------------------------------------------- /projects/05-chat-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/package.json -------------------------------------------------------------------------------- /projects/05-chat-app/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/project.yml -------------------------------------------------------------------------------- /projects/05-chat-app/setup/primeras-historias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/setup/primeras-historias.md -------------------------------------------------------------------------------- /projects/05-chat-app/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-chat-app/thumb.png -------------------------------------------------------------------------------- /projects/05-computing-service-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-computing-service-deployment/README.md -------------------------------------------------------------------------------- /projects/05-computing-service-deployment/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-computing-service-deployment/project.yml -------------------------------------------------------------------------------- /projects/05-container-service-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-container-service-deployment/README.md -------------------------------------------------------------------------------- /projects/05-container-service-deployment/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-container-service-deployment/project.yml -------------------------------------------------------------------------------- /projects/05-dockerfile-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-dockerfile-deployment/README.md -------------------------------------------------------------------------------- /projects/05-dockerfile-deployment/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-dockerfile-deployment/project.yml -------------------------------------------------------------------------------- /projects/05-fleet-management-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/README.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/README.pt.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/extension-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/extension-cli.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/extension.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/extension.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/extension.pt.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/stack-csharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/stack-csharp.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/stack-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/stack-java.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/stack-java.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/stack-java.pt.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/stack-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/stack-node.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/stack-node.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/stack-node.pt.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/docs/stack-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/docs/stack-python.md -------------------------------------------------------------------------------- /projects/05-fleet-management-api/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/project.yml -------------------------------------------------------------------------------- /projects/05-fleet-management-api/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-api/thumb.png -------------------------------------------------------------------------------- /projects/05-fleet-management-fullstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-fullstack/README.md -------------------------------------------------------------------------------- /projects/05-fleet-management-fullstack/client/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/05-fleet-management-fullstack/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/05-fleet-management-fullstack/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-fullstack/project.yml -------------------------------------------------------------------------------- /projects/05-fleet-management-fullstack/server/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/05-fleet-management-fullstack/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-fleet-management-fullstack/thumb.png -------------------------------------------------------------------------------- /projects/05-movie-challenge-fw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-movie-challenge-fw/README.md -------------------------------------------------------------------------------- /projects/05-movie-challenge-fw/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-movie-challenge-fw/README.pt.md -------------------------------------------------------------------------------- /projects/05-movie-challenge-fw/docs/movie-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-movie-challenge-fw/docs/movie-detail.png -------------------------------------------------------------------------------- /projects/05-movie-challenge-fw/docs/movie-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-movie-challenge-fw/docs/movie-list.png -------------------------------------------------------------------------------- /projects/05-movie-challenge-fw/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-movie-challenge-fw/project.yml -------------------------------------------------------------------------------- /projects/05-movie-challenge-fw/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-movie-challenge-fw/thumb.png -------------------------------------------------------------------------------- /projects/05-open-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-open-project/README.md -------------------------------------------------------------------------------- /projects/05-open-project/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-open-project/project.yml -------------------------------------------------------------------------------- /projects/05-open-project/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-open-project/thumb.png -------------------------------------------------------------------------------- /projects/05-roman-numerals-slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals-slack/README.md -------------------------------------------------------------------------------- /projects/05-roman-numerals-slack/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals-slack/project.yml -------------------------------------------------------------------------------- /projects/05-roman-numerals-slack/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals-slack/thumb.png -------------------------------------------------------------------------------- /projects/05-roman-numerals/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /projects/05-roman-numerals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals/README.md -------------------------------------------------------------------------------- /projects/05-roman-numerals/bin/cli.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/05-roman-numerals/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/05-roman-numerals/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals/index.spec.js -------------------------------------------------------------------------------- /projects/05-roman-numerals/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals/package.json -------------------------------------------------------------------------------- /projects/05-roman-numerals/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals/project.yml -------------------------------------------------------------------------------- /projects/05-roman-numerals/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-roman-numerals/thumb.png -------------------------------------------------------------------------------- /projects/05-salesforce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-salesforce/README.md -------------------------------------------------------------------------------- /projects/05-salesforce/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-salesforce/project.yml -------------------------------------------------------------------------------- /projects/05-social-network-fw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-social-network-fw/README.md -------------------------------------------------------------------------------- /projects/05-social-network-fw/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-social-network-fw/project.yml -------------------------------------------------------------------------------- /projects/05-social-network-fw/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-social-network-fw/thumb.png -------------------------------------------------------------------------------- /projects/05-sql-student-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-sql-student-database/README.md -------------------------------------------------------------------------------- /projects/05-sql-student-database/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-sql-student-database/README.pt.md -------------------------------------------------------------------------------- /projects/05-sql-student-database/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-sql-student-database/project.yml -------------------------------------------------------------------------------- /projects/05-sql-student-database/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-sql-student-database/thumb.png -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/.gitignore -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/README.md -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/apache2/ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/apache2/ports.conf -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/docker-compose.yml -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/html/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/logs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/php-playground/hola.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/php-playground/hola.php -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/php-playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/php-playground/index.html -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/project.yml -------------------------------------------------------------------------------- /projects/05-wordpress-plugin/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/05-wordpress-plugin/thumb.png -------------------------------------------------------------------------------- /projects/06-job-application/Activities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/Activities.md -------------------------------------------------------------------------------- /projects/06-job-application/Activities.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/Activities.pt.md -------------------------------------------------------------------------------- /projects/06-job-application/Mentoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/Mentoring.md -------------------------------------------------------------------------------- /projects/06-job-application/Mentoring.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/Mentoring.pt.md -------------------------------------------------------------------------------- /projects/06-job-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/README.md -------------------------------------------------------------------------------- /projects/06-job-application/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/README.pt.md -------------------------------------------------------------------------------- /projects/06-job-application/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/project.yml -------------------------------------------------------------------------------- /projects/06-job-application/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/projects/06-job-application/thumb.png -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/build.mjs -------------------------------------------------------------------------------- /scripts/check-projects-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/check-projects-deps.sh -------------------------------------------------------------------------------- /scripts/create-cohort-project.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/create-cohort-project.mjs -------------------------------------------------------------------------------- /scripts/create-gource-video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/create-gource-video.sh -------------------------------------------------------------------------------- /scripts/propagate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/propagate.sh -------------------------------------------------------------------------------- /scripts/script-utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/script-utils.mjs -------------------------------------------------------------------------------- /scripts/test/fixtures/project-with-localized-docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/fixtures/project-with-localized-docs/README.pt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/fixtures/project-with-localized-docs/docs/docs.jp.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/fixtures/project-with-localized-docs/docs/docs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/fixtures/project-with-localized-docs/docs/docs.pt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/script-utils.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/scripts/test/script-utils.spec.mjs -------------------------------------------------------------------------------- /topics/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/.eslintrc -------------------------------------------------------------------------------- /topics/_template/01-lorem-ipsum/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/_template/01-lorem-ipsum/00-opening/README.md -------------------------------------------------------------------------------- /topics/_template/01-lorem-ipsum/07-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/_template/01-lorem-ipsum/07-closing/README.md -------------------------------------------------------------------------------- /topics/_template/02-another-unit/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/_template/02-another-unit/00-opening/README.md -------------------------------------------------------------------------------- /topics/_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/_template/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/00-opening/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/01-dom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/01-dom/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/01-dom/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/01-dom/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/02-bom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/02-bom/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/02-bom/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/02-bom/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/04-dom-methods-crud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/04-dom-methods-crud/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/04-dom-methods-crud/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/04-dom-methods-crud/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/06-reflow-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/06-reflow-browser/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/06-reflow-browser/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/06-reflow-browser/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/07-events/02-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/07-events/02-events/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/07-events/02-events/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/07-events/02-events/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/07-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/07-events/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/07-events/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/07-events/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/08-data-attributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/08-data-attributes/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/08-data-attributes/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/08-data-attributes/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/09-practical-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/09-practical-cases/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/09-practical-cases/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/09-practical-cases/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/10-guided-exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/10-guided-exercises/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/10-guided-exercises/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/10-guided-exercises/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/11-code-challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/11-code-challenges/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/11-code-challenges/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/11-code-challenges/README.pt.md -------------------------------------------------------------------------------- /topics/browser/02-dom/15-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/15-closing/README.md -------------------------------------------------------------------------------- /topics/browser/02-dom/15-closing/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/02-dom/15-closing/README.pt.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/00-opening/README.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/01-audio-video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/01-audio-video/README.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/03-web-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/03-web-storage/README.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/05-geolocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/05-geolocation/README.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/07-dnd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/07-dnd/README.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/07-dnd/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/07-dnd/README.pt.md -------------------------------------------------------------------------------- /topics/browser/03-browser-apis/09-more-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/03-browser-apis/09-more-apis/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/01-client-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/01-client-server/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/01-client-server/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/01-client-server/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/02-ajax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/02-ajax/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/02-ajax/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/02-ajax/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/03-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/03-apis/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/03-apis/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/03-apis/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/03-apis/ejemplos-apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/03-apis/ejemplos-apis.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/04-xhr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/04-xhr/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/04-xhr/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/04-xhr/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/04-xhr/sintax_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/04-xhr/sintax_open.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/05-xhr-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/05-xhr-demo/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/05-xhr-demo/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/05-xhr-demo/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/05-xhr-demo/images/add-news1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/05-xhr-demo/images/add-news1.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/05-xhr-demo/images/add-news2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/05-xhr-demo/images/add-news2.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/05-xhr-demo/images/add-news3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/05-xhr-demo/images/add-news3.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/05-xhr-demo/images/getnews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/05-xhr-demo/images/getnews.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/07-xhr-challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/07-xhr-challenges/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/07-xhr-challenges/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/07-xhr-challenges/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/07-xhr-challenges/muestra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/07-xhr-challenges/muestra.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/08-xhr-recap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/08-xhr-recap/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/08-xhr-recap/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/08-xhr-recap/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/09-jq-ajax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/09-jq-ajax/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/09-jq-ajax/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/09-jq-ajax/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/10-fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/10-fetch/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/10-fetch/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/10-fetch/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/12-jq-ajax-challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/12-jq-ajax-challenges/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/13-jq-ajax-recap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/13-jq-ajax-recap/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/13-jq-ajax-recap/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/13-jq-ajax-recap/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/15-third-party-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/15-third-party-apis/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/15-third-party-apis/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/15-third-party-apis/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/16-web-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/16-web-apis/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/16-web-apis/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/16-web-apis/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/16-web-apis/web-apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/16-web-apis/web-apis.png -------------------------------------------------------------------------------- /topics/browser/04-xhr/17-rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/17-rest/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/17-rest/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/17-rest/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/18-crud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/18-crud/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/18-crud/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/18-crud/README.pt.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/19-api-challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/19-api-challenges/README.md -------------------------------------------------------------------------------- /topics/browser/04-xhr/19-api-challenges/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/04-xhr/19-api-challenges/README.pt.md -------------------------------------------------------------------------------- /topics/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/README.md -------------------------------------------------------------------------------- /topics/browser/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/README.pt.md -------------------------------------------------------------------------------- /topics/browser/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/browser/thumb.png -------------------------------------------------------------------------------- /topics/content-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/content-management/README.md -------------------------------------------------------------------------------- /topics/content-management/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/content-management/thumb.png -------------------------------------------------------------------------------- /topics/css/01-css/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/00-opening/README.md -------------------------------------------------------------------------------- /topics/css/01-css/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/01-intro-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/01-intro-css/README.md -------------------------------------------------------------------------------- /topics/css/01-css/01-intro-css/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/01-intro-css/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/01-intro-css/img-inline-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/01-intro-css/img-inline-style.png -------------------------------------------------------------------------------- /topics/css/01-css/02-boxmodel-and-display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/02-boxmodel-and-display/README.md -------------------------------------------------------------------------------- /topics/css/01-css/02-boxmodel-and-display/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/02-boxmodel-and-display/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/03-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/03-practice/README.md -------------------------------------------------------------------------------- /topics/css/01-css/03-practice/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/03-practice/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/04-flexbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/04-flexbox/README.md -------------------------------------------------------------------------------- /topics/css/01-css/04-flexbox/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/04-flexbox/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/05-positioning-and-floats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/05-positioning-and-floats/README.md -------------------------------------------------------------------------------- /topics/css/01-css/06-tipography-and-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/06-tipography-and-icons/README.md -------------------------------------------------------------------------------- /topics/css/01-css/06-tipography-and-icons/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/06-tipography-and-icons/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/07-practice-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/07-practice-2/README.md -------------------------------------------------------------------------------- /topics/css/01-css/07-practice-2/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/07-practice-2/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/07-practice-2/img-tipo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/07-practice-2/img-tipo.png -------------------------------------------------------------------------------- /topics/css/01-css/08-practical-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/08-practical-cases/README.md -------------------------------------------------------------------------------- /topics/css/01-css/08-practical-cases/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/08-practical-cases/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/10-practice-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/10-practice-3/README.md -------------------------------------------------------------------------------- /topics/css/01-css/10-practice-3/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/10-practice-3/README.pt.md -------------------------------------------------------------------------------- /topics/css/01-css/10-practice-3/img-nuestras-coders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/10-practice-3/img-nuestras-coders.png -------------------------------------------------------------------------------- /topics/css/01-css/11-code-challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/11-code-challenges/README.md -------------------------------------------------------------------------------- /topics/css/01-css/11-code-challenges/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/01-css/11-code-challenges/README.pt.md -------------------------------------------------------------------------------- /topics/css/02-responsive/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/00-opening/README.md -------------------------------------------------------------------------------- /topics/css/02-responsive/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/css/02-responsive/01-grid-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/01-grid-system/README.md -------------------------------------------------------------------------------- /topics/css/02-responsive/01-grid-system/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/01-grid-system/README.pt.md -------------------------------------------------------------------------------- /topics/css/02-responsive/02-media-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/02-media-queries/README.md -------------------------------------------------------------------------------- /topics/css/02-responsive/02-media-queries/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/02-media-queries/README.pt.md -------------------------------------------------------------------------------- /topics/css/02-responsive/03-rwd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/03-rwd/README.md -------------------------------------------------------------------------------- /topics/css/02-responsive/03-rwd/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/03-rwd/README.pt.md -------------------------------------------------------------------------------- /topics/css/02-responsive/05-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/05-practice/README.md -------------------------------------------------------------------------------- /topics/css/02-responsive/05-practice/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/05-practice/README.pt.md -------------------------------------------------------------------------------- /topics/css/02-responsive/05-practice/rock-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/05-practice/rock-desktop.png -------------------------------------------------------------------------------- /topics/css/02-responsive/05-practice/rock-movil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/05-practice/rock-movil.png -------------------------------------------------------------------------------- /topics/css/02-responsive/06-code-challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/06-code-challenges/README.md -------------------------------------------------------------------------------- /topics/css/02-responsive/06-code-challenges/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/02-responsive/06-code-challenges/desktop.png -------------------------------------------------------------------------------- /topics/css/03-frameworks/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/00-opening/README.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/01-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/01-framework/README.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/01-framework/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/01-framework/README.pt.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/01-framework/cdn-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/01-framework/cdn-example.png -------------------------------------------------------------------------------- /topics/css/03-frameworks/02-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/02-bootstrap/README.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/02-bootstrap/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/02-bootstrap/README.pt.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/02-bootstrap/bcdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/02-bootstrap/bcdn.png -------------------------------------------------------------------------------- /topics/css/03-frameworks/02-bootstrap/btn-example.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/02-bootstrap/btn-example.PNG -------------------------------------------------------------------------------- /topics/css/03-frameworks/04-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/04-components/README.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/04-components/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/04-components/README.pt.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/06-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/06-practice/README.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/06-practice/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/06-practice/README.pt.md -------------------------------------------------------------------------------- /topics/css/03-frameworks/07-code-challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/03-frameworks/07-code-challenges/README.md -------------------------------------------------------------------------------- /topics/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/README.md -------------------------------------------------------------------------------- /topics/css/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/README.pt.md -------------------------------------------------------------------------------- /topics/css/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/css/thumb.png -------------------------------------------------------------------------------- /topics/functional/01-state/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/01-state/00-opening/README.md -------------------------------------------------------------------------------- /topics/functional/01-state/01-pure-fun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/01-state/01-pure-fun/README.md -------------------------------------------------------------------------------- /topics/functional/01-state/02-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/01-state/02-practice/README.md -------------------------------------------------------------------------------- /topics/functional/01-state/03-immutability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/01-state/03-immutability/README.md -------------------------------------------------------------------------------- /topics/functional/01-state/04-practice-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/01-state/04-practice-2/README.md -------------------------------------------------------------------------------- /topics/functional/01-state/08-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/01-state/08-closing/README.md -------------------------------------------------------------------------------- /topics/functional/03-hof/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/03-hof/00-opening/README.md -------------------------------------------------------------------------------- /topics/functional/03-hof/01-hof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/03-hof/01-hof/README.md -------------------------------------------------------------------------------- /topics/functional/03-hof/02-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/03-hof/02-practice/README.md -------------------------------------------------------------------------------- /topics/functional/03-hof/04-practice-2/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 10min 4 | --- 5 | 6 | # Ejercicios de aplicación parcial 7 | -------------------------------------------------------------------------------- /topics/functional/03-hof/05-currying/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/03-hof/05-currying/README.md -------------------------------------------------------------------------------- /topics/functional/03-hof/06-practice-3/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 10min 4 | --- 5 | 6 | # Ejercicios de currying 7 | -------------------------------------------------------------------------------- /topics/functional/03-hof/10-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/03-hof/10-closing/README.md -------------------------------------------------------------------------------- /topics/functional/05-flow-control/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/05-flow-control/00-opening/README.md -------------------------------------------------------------------------------- /topics/functional/05-flow-control/02-practice/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 10min 4 | --- 5 | 6 | # Ejercicios de recursividad 7 | -------------------------------------------------------------------------------- /topics/functional/05-flow-control/03-async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/05-flow-control/03-async/README.md -------------------------------------------------------------------------------- /topics/functional/05-flow-control/04-practice-2/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 10min 4 | --- 5 | 6 | # Ejercicios de asincronía 7 | -------------------------------------------------------------------------------- /topics/functional/05-flow-control/08-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/05-flow-control/08-closing/README.md -------------------------------------------------------------------------------- /topics/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/README.md -------------------------------------------------------------------------------- /topics/functional/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/functional/thumb.png -------------------------------------------------------------------------------- /topics/html/01-intro/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/01-intro/00-opening/README.md -------------------------------------------------------------------------------- /topics/html/01-intro/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/01-intro/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/html/01-intro/01-your-first-website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/01-intro/01-your-first-website/README.md -------------------------------------------------------------------------------- /topics/html/01-intro/01-your-first-website/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/01-intro/01-your-first-website/README.pt.md -------------------------------------------------------------------------------- /topics/html/01-intro/02-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/01-intro/02-closing/README.md -------------------------------------------------------------------------------- /topics/html/01-intro/02-closing/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/01-intro/02-closing/README.pt.md -------------------------------------------------------------------------------- /topics/html/02-html5/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/00-opening/README.md -------------------------------------------------------------------------------- /topics/html/02-html5/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/html/02-html5/01-markup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/01-markup/README.md -------------------------------------------------------------------------------- /topics/html/02-html5/01-markup/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/01-markup/README.pt.md -------------------------------------------------------------------------------- /topics/html/02-html5/02-semantic-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/02-semantic-html/README.md -------------------------------------------------------------------------------- /topics/html/02-html5/02-semantic-html/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/02-semantic-html/README.pt.md -------------------------------------------------------------------------------- /topics/html/02-html5/03-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/03-forms/README.md -------------------------------------------------------------------------------- /topics/html/02-html5/03-forms/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/03-forms/README.pt.md -------------------------------------------------------------------------------- /topics/html/02-html5/04-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/04-closing/README.md -------------------------------------------------------------------------------- /topics/html/02-html5/04-closing/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/02-html5/04-closing/README.pt.md -------------------------------------------------------------------------------- /topics/html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/README.md -------------------------------------------------------------------------------- /topics/html/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/README.pt.md -------------------------------------------------------------------------------- /topics/html/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/html/thumb.png -------------------------------------------------------------------------------- /topics/interaction-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/interaction-design/README.md -------------------------------------------------------------------------------- /topics/interaction-design/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/interaction-design/thumb.png -------------------------------------------------------------------------------- /topics/intro-ux/00-que-es-uxd/00-que-es-uxd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/intro-ux/00-que-es-uxd/00-que-es-uxd/README.md -------------------------------------------------------------------------------- /topics/intro-ux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/intro-ux/README.md -------------------------------------------------------------------------------- /topics/intro-ux/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/intro-ux/thumb.png -------------------------------------------------------------------------------- /topics/javascript/01-basics/02-variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/01-basics/02-variables/README.md -------------------------------------------------------------------------------- /topics/javascript/01-basics/02-variables/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/01-basics/02-variables/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/01-basics/03-comments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/01-basics/03-comments/README.md -------------------------------------------------------------------------------- /topics/javascript/01-basics/03-comments/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/01-basics/03-comments/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/01-basics/06-exercises/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 30min 4 | --- 5 | 6 | # Ejercicios 7 | -------------------------------------------------------------------------------- /topics/javascript/01-basics/06-exercises/README.pt.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 30min 4 | --- 5 | 6 | # Exercícios 7 | -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/02-flow-control/00-opening/README.md -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/02-loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/02-flow-control/02-loops/README.md -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/02-loops/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/02-flow-control/02-loops/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/06-code-challenges/04-even-or-odd/solution/evenOrOdd.js: -------------------------------------------------------------------------------- 1 | module.exports = n => ((n % 2 === 0) ? 0 : 1); 2 | -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/06-code-challenges/05-max/boilerplate/max.js: -------------------------------------------------------------------------------- 1 | const max = (A, B, C) => { 2 | 3 | 4 | }; 5 | 6 | module.exports = max; 7 | -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/06-code-challenges/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 120min 4 | --- 5 | 6 | # Retos de Código 7 | -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/06-code-challenges/README.pt.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 120min 4 | --- 5 | 6 | # Desafios de Código 7 | -------------------------------------------------------------------------------- /topics/javascript/02-flow-control/08-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/02-flow-control/08-closing/README.md -------------------------------------------------------------------------------- /topics/javascript/03-functions/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/03-functions/00-opening/README.md -------------------------------------------------------------------------------- /topics/javascript/03-functions/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/03-functions/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/03-functions/01-classic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/03-functions/01-classic/README.md -------------------------------------------------------------------------------- /topics/javascript/03-functions/01-classic/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/03-functions/01-classic/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/03-functions/02-arrow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/03-functions/02-arrow/README.md -------------------------------------------------------------------------------- /topics/javascript/03-functions/02-arrow/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/03-functions/02-arrow/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/04-arrays/01-arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/04-arrays/01-arrays/README.md -------------------------------------------------------------------------------- /topics/javascript/04-arrays/01-arrays/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/04-arrays/01-arrays/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/04-arrays/02-array-proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/04-arrays/02-array-proto/README.md -------------------------------------------------------------------------------- /topics/javascript/04-arrays/02-array-proto/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/04-arrays/02-array-proto/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/04-arrays/06-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/04-arrays/06-practice/README.md -------------------------------------------------------------------------------- /topics/javascript/04-arrays/06-practice/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/04-arrays/06-practice/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/05-objects/01-objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/05-objects/01-objects/README.md -------------------------------------------------------------------------------- /topics/javascript/05-objects/01-objects/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/05-objects/01-objects/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/05-objects/02-object-proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/05-objects/02-object-proto/README.md -------------------------------------------------------------------------------- /topics/javascript/05-objects/06-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/05-objects/06-practice/README.md -------------------------------------------------------------------------------- /topics/javascript/05-objects/06-practice/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/05-objects/06-practice/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/06-strings/01-strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/06-strings/01-strings/README.md -------------------------------------------------------------------------------- /topics/javascript/06-strings/01-strings/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/06-strings/01-strings/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/06-strings/02-practice/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 15min 4 | --- 5 | 6 | # Retos de código 7 | -------------------------------------------------------------------------------- /topics/javascript/06-strings/02-practice/README.pt.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 15min 4 | --- 5 | 6 | # Desafios de código 7 | -------------------------------------------------------------------------------- /topics/javascript/07-built-ins/01-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/07-built-ins/01-intro/README.md -------------------------------------------------------------------------------- /topics/javascript/07-built-ins/01-intro/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/07-built-ins/01-intro/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/08-async/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/00-opening/README.md -------------------------------------------------------------------------------- /topics/javascript/08-async/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/08-async/01-callbacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/01-callbacks/README.md -------------------------------------------------------------------------------- /topics/javascript/08-async/01-callbacks/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/01-callbacks/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/08-async/05-promises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/05-promises/README.md -------------------------------------------------------------------------------- /topics/javascript/08-async/05-promises/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/05-promises/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/08-async/08-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/08-closing/README.md -------------------------------------------------------------------------------- /topics/javascript/08-async/08-closing/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/08-async/08-closing/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/00-opening/README.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/01-strict-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/01-strict-mode/README.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/01-strict-mode/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/01-strict-mode/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/02-try-catch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/02-try-catch/README.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/02-try-catch/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/02-try-catch/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/03-callbacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/03-callbacks/README.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/03-callbacks/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/03-callbacks/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/04-promises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/04-promises/README.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/04-promises/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/04-promises/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/05-practice/01-validate-string/boilerplate/validateString.js: -------------------------------------------------------------------------------- 1 | module.exports = (str) => { 2 | // ... 3 | }; 4 | -------------------------------------------------------------------------------- /topics/javascript/09-errors/05-practice/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 30min 4 | --- 5 | 6 | # Ejercicios 7 | -------------------------------------------------------------------------------- /topics/javascript/09-errors/05-practice/README.pt.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 30min 4 | --- 5 | 6 | # Exercícios 7 | -------------------------------------------------------------------------------- /topics/javascript/09-errors/07-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/07-closing/README.md -------------------------------------------------------------------------------- /topics/javascript/09-errors/07-closing/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/09-errors/07-closing/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/10-debugging/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/10-debugging/00-opening/README.md -------------------------------------------------------------------------------- /topics/javascript/10-debugging/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/10-debugging/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/10-debugging/01-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/10-debugging/01-intro/README.md -------------------------------------------------------------------------------- /topics/javascript/10-debugging/01-intro/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/10-debugging/01-intro/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/10-debugging/04-breakpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/10-debugging/04-breakpoints/README.md -------------------------------------------------------------------------------- /topics/javascript/10-debugging/05-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/10-debugging/05-closing/README.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/00-opening/README.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/00-opening/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/00-opening/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/01-basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/01-basics/README.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/01-basics/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/01-basics/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/02-frameworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/02-frameworks/README.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/03-assertions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/03-assertions/README.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/04-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/04-browser/README.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/04-browser/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/04-browser/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/10-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/10-closing/README.md -------------------------------------------------------------------------------- /topics/javascript/11-testing/10-closing/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/11-testing/10-closing/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/README.md -------------------------------------------------------------------------------- /topics/javascript/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/README.pt.md -------------------------------------------------------------------------------- /topics/javascript/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/javascript/thumb.png -------------------------------------------------------------------------------- /topics/learning-mindset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/learning-mindset/README.md -------------------------------------------------------------------------------- /topics/learning-mindset/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/learning-mindset/thumb.png -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/01-paradigms/00-opening/README.md -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/01-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/01-paradigms/01-overview/README.md -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/02-history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/01-paradigms/02-history/README.md -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/06-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/01-paradigms/06-modules/README.md -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/08-oop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/01-paradigms/08-oop/README.md -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/09-oop-exercise/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 10min 4 | --- 5 | 6 | # Ejercicio OOP 7 | -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/10-fp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/01-paradigms/10-fp/README.md -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/11-fp-exercise/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 10min 4 | --- 5 | 6 | # Ejercicio FP 7 | -------------------------------------------------------------------------------- /topics/paradigms/01-paradigms/13-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/01-paradigms/13-closing/README.md -------------------------------------------------------------------------------- /topics/paradigms/03-proto/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/03-proto/00-opening/README.md -------------------------------------------------------------------------------- /topics/paradigms/03-proto/01-this-and-bind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/03-proto/01-this-and-bind/README.md -------------------------------------------------------------------------------- /topics/paradigms/03-proto/02-object-create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/03-proto/02-object-create/README.md -------------------------------------------------------------------------------- /topics/paradigms/03-proto/04-ejercicios/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 90min 4 | --- 5 | 6 | # Ejercicios 7 | -------------------------------------------------------------------------------- /topics/paradigms/03-proto/06-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/03-proto/06-closing/README.md -------------------------------------------------------------------------------- /topics/paradigms/06-composition/00-opening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/06-composition/00-opening/README.md -------------------------------------------------------------------------------- /topics/paradigms/06-composition/05-exercises/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: practice 3 | duration: 90min 4 | --- 5 | 6 | # Ejercicios 7 | -------------------------------------------------------------------------------- /topics/paradigms/06-composition/07-closing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/06-composition/07-closing/README.md -------------------------------------------------------------------------------- /topics/paradigms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/README.md -------------------------------------------------------------------------------- /topics/paradigms/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/paradigms/thumb.png -------------------------------------------------------------------------------- /topics/prototyping/00-prototyping/01-figma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/prototyping/00-prototyping/01-figma/README.md -------------------------------------------------------------------------------- /topics/prototyping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/prototyping/README.md -------------------------------------------------------------------------------- /topics/prototyping/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/prototyping/thumb.png -------------------------------------------------------------------------------- /topics/scm/01-git/01-git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/01-git/README.md -------------------------------------------------------------------------------- /topics/scm/01-git/01-git/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/01-git/README.pt.md -------------------------------------------------------------------------------- /topics/scm/01-git/02-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/02-install/README.md -------------------------------------------------------------------------------- /topics/scm/01-git/02-install/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/02-install/README.pt.md -------------------------------------------------------------------------------- /topics/scm/01-git/03-configure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/03-configure/README.md -------------------------------------------------------------------------------- /topics/scm/01-git/03-configure/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/03-configure/README.pt.md -------------------------------------------------------------------------------- /topics/scm/01-git/04-commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/04-commands/README.md -------------------------------------------------------------------------------- /topics/scm/01-git/04-commands/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/01-git/04-commands/README.pt.md -------------------------------------------------------------------------------- /topics/scm/02-github/01-github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/02-github/01-github/README.md -------------------------------------------------------------------------------- /topics/scm/02-github/01-github/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/02-github/01-github/README.pt.md -------------------------------------------------------------------------------- /topics/scm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/README.md -------------------------------------------------------------------------------- /topics/scm/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/README.pt.md -------------------------------------------------------------------------------- /topics/scm/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/scm/thumb.png -------------------------------------------------------------------------------- /topics/shell/01-intro/01-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/01-intro/01-intro/README.md -------------------------------------------------------------------------------- /topics/shell/01-intro/01-intro/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/01-intro/01-intro/README.pt.md -------------------------------------------------------------------------------- /topics/shell/02-filesystem/01-fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/02-filesystem/01-fs/README.md -------------------------------------------------------------------------------- /topics/shell/02-filesystem/01-fs/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/02-filesystem/01-fs/README.pt.md -------------------------------------------------------------------------------- /topics/shell/03-environment/01-env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/03-environment/01-env/README.md -------------------------------------------------------------------------------- /topics/shell/03-environment/01-env/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/03-environment/01-env/README.pt.md -------------------------------------------------------------------------------- /topics/shell/04-process/01-ps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/04-process/01-ps/README.md -------------------------------------------------------------------------------- /topics/shell/04-process/01-ps/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/04-process/01-ps/README.pt.md -------------------------------------------------------------------------------- /topics/shell/05-scripts/01-scripts/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: read 3 | duration: 5min 4 | --- 5 | 6 | # Scripts 7 | -------------------------------------------------------------------------------- /topics/shell/05-scripts/01-scripts/README.pt.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: read 3 | duration: 5min 4 | --- 5 | 6 | # Scripts 7 | -------------------------------------------------------------------------------- /topics/shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/README.md -------------------------------------------------------------------------------- /topics/shell/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/README.pt.md -------------------------------------------------------------------------------- /topics/shell/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/shell/thumb.png -------------------------------------------------------------------------------- /topics/ux-research/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/ux-research/README.md -------------------------------------------------------------------------------- /topics/ux-research/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laboratoria/curriculum/HEAD/topics/ux-research/thumb.png --------------------------------------------------------------------------------