├── .gitignore ├── README.md └── dojos ├── 20160414-tdd-jasmine ├── README.md ├── package.json ├── spec │ ├── podcast.spec.js │ ├── support │ │ └── jasmine.json │ └── user.spec.js └── src │ ├── episode.js │ ├── index.js │ ├── podcast.js │ └── user.js ├── 20160525-angularjs ├── README.md ├── app │ ├── css │ │ └── app.css │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── controllers │ │ └── apoiaseController.js │ │ ├── directives │ │ └── dfApoiadorDirective.js │ │ └── services │ │ └── apoiadoresFactory.js ├── gulpfile.js └── package.json ├── 20160921-react ├── .gitignore ├── apresentacao │ ├── Readme.md │ ├── gulp │ │ ├── index.js │ │ ├── paths.js │ │ └── tasks │ │ │ ├── browser-sync.js │ │ │ ├── default.js │ │ │ ├── deploy-pages.js │ │ │ ├── imagemin.js │ │ │ ├── jade.js │ │ │ ├── js.js │ │ │ ├── notes.js │ │ │ ├── stylus.js │ │ │ └── watch.js │ ├── gulpfile.js │ ├── package.json │ └── src │ │ ├── img │ │ └── react.svg │ │ ├── js │ │ ├── main.js │ │ └── vendor │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ ├── highlight │ │ │ └── highlight.js │ │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ │ └── reveal.min.js │ │ ├── slides │ │ ├── coding-dojo.jade │ │ ├── event-handlers.jade │ │ ├── happy-coding.jade │ │ ├── intro.jade │ │ ├── lifecycle.jade │ │ ├── nosso-desafio.jade │ │ ├── oque-e.jade │ │ ├── stateful.jade │ │ └── stateless.jade │ │ ├── styl │ │ ├── highlight-themes │ │ │ ├── agate.styl │ │ │ ├── androidstudio.styl │ │ │ ├── arduino-light.styl │ │ │ ├── arta.styl │ │ │ ├── ascetic.styl │ │ │ ├── atelier-cave-dark.styl │ │ │ ├── atelier-cave-light.styl │ │ │ ├── atelier-dune-dark.styl │ │ │ ├── atelier-dune-light.styl │ │ │ ├── atelier-estuary-dark.styl │ │ │ ├── atelier-estuary-light.styl │ │ │ ├── atelier-forest-dark.styl │ │ │ ├── atelier-forest-light.styl │ │ │ ├── atelier-heath-dark.styl │ │ │ ├── atelier-heath-light.styl │ │ │ ├── atelier-lakeside-dark.styl │ │ │ ├── atelier-lakeside-light.styl │ │ │ ├── atelier-plateau-dark.styl │ │ │ ├── atelier-plateau-light.styl │ │ │ ├── atelier-savanna-dark.styl │ │ │ ├── atelier-savanna-light.styl │ │ │ ├── atelier-seaside-dark.styl │ │ │ ├── atelier-seaside-light.styl │ │ │ ├── atelier-sulphurpool-dark.styl │ │ │ ├── atelier-sulphurpool-light.styl │ │ │ ├── brown-paper.styl │ │ │ ├── codepen-embed.styl │ │ │ ├── color-brewer.styl │ │ │ ├── dark.styl │ │ │ ├── darkula.styl │ │ │ ├── default.styl │ │ │ ├── docco.styl │ │ │ ├── dracula.styl │ │ │ ├── far.styl │ │ │ ├── foundation.styl │ │ │ ├── github-gist.styl │ │ │ ├── github.styl │ │ │ ├── googlecode.styl │ │ │ ├── grayscale.styl │ │ │ ├── gruvbox-dark.styl │ │ │ ├── gruvbox-light.styl │ │ │ ├── hopscotch.styl │ │ │ ├── hybrid.styl │ │ │ ├── idea.styl │ │ │ ├── ir-black.styl │ │ │ ├── kimbie.dark.styl │ │ │ ├── kimbie.light.styl │ │ │ ├── magula.styl │ │ │ ├── mono-blue.styl │ │ │ ├── monokai-sublime.styl │ │ │ ├── monokai.styl │ │ │ ├── obsidian.styl │ │ │ ├── paraiso-dark.styl │ │ │ ├── paraiso-light.styl │ │ │ ├── pojoaque.styl │ │ │ ├── purebasic.styl │ │ │ ├── qtcreator_dark.styl │ │ │ ├── qtcreator_light.styl │ │ │ ├── railscasts.styl │ │ │ ├── rainbow.styl │ │ │ ├── school-book.styl │ │ │ ├── solarized-dark.styl │ │ │ ├── solarized-light.styl │ │ │ ├── sunburst.styl │ │ │ ├── tomorrow-night-blue.styl │ │ │ ├── tomorrow-night-bright.styl │ │ │ ├── tomorrow-night-eighties.styl │ │ │ ├── tomorrow-night.styl │ │ │ ├── tomorrow.styl │ │ │ ├── vs.styl │ │ │ ├── xcode.styl │ │ │ ├── xt256.styl │ │ │ └── zenburn.styl │ │ ├── main.styl │ │ ├── reveal-themes │ │ │ ├── beige.styl │ │ │ ├── black.styl │ │ │ ├── blood.styl │ │ │ ├── league.styl │ │ │ ├── moon.styl │ │ │ ├── night.styl │ │ │ ├── serif.styl │ │ │ ├── simple.styl │ │ │ ├── sky.styl │ │ │ ├── solarized.styl │ │ │ └── white.styl │ │ └── vendor │ │ │ └── reveal.styl │ │ └── templates │ │ ├── inc │ │ ├── head.jade │ │ └── scripts.jade │ │ └── index.jade ├── demo │ ├── .gitignore │ ├── README.md │ ├── db.json │ ├── index.html │ ├── package.json │ └── src │ │ ├── Apoiador.js │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Busca.js │ │ ├── favicon.ico │ │ ├── index.css │ │ ├── index.js │ │ └── logo.svg └── dojo │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ └── src │ ├── Apoiadores.js │ ├── App.css │ ├── App.test.js │ ├── favicon.ico │ ├── index.css │ ├── index.js │ └── logo.svg ├── 20161112-vuejs ├── README.md ├── demo-vue │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── db.json │ ├── index.html │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── home │ │ │ │ ├── home.css │ │ │ │ ├── home.js │ │ │ │ └── template.js │ │ │ └── index │ │ │ │ ├── App.css │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ └── template.js │ │ └── main.js │ ├── webpack.config.js │ └── yarn.lock └── dojo-vue │ ├── .babelrc │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── db.json │ ├── index.html │ ├── package.json │ ├── src │ ├── components │ │ ├── app │ │ │ ├── app.css │ │ │ ├── app.js │ │ │ └── template.js │ │ └── profile │ │ │ └── profile.js │ └── main.js │ └── webpack.config.js ├── 20170927-react-native ├── README.md ├── base │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── DESAFIO.md │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dojo │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── app.json │ ├── components │ │ └── Card.js │ ├── db.json │ ├── index.android.js │ ├── index.ios.js │ ├── ios │ │ ├── Dojo-tvOS │ │ │ └── Info.plist │ │ ├── Dojo-tvOSTests │ │ │ └── Info.plist │ │ ├── Dojo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Dojo-tvOS.xcscheme │ │ │ │ └── Dojo.xcscheme │ │ ├── Dojo │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ └── DojoTests │ │ │ ├── DojoTests.m │ │ │ └── Info.plist │ ├── package.json │ ├── screens │ │ ├── Gallery.js │ │ └── PlaceDetail.js │ ├── services │ │ └── Places.js │ └── yarn.lock └── demo │ ├── .babelrc │ ├── .eslintrc.json │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── README.md │ ├── app.json │ ├── components │ ├── BookingForm.js │ ├── Card.js │ ├── Detail.js │ ├── Gallery.js │ ├── Place.js │ └── PlaceDetails.js │ ├── db.json │ ├── package-lock.json │ ├── package.json │ ├── screens │ ├── Details.js │ └── Gallery.js │ └── yarn.lock ├── 20171114-react-native ├── README.md ├── base │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dojo │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── app.json │ ├── db.json │ ├── index.android.js │ ├── index.ios.js │ ├── ios │ │ ├── Dojo-tvOS │ │ │ └── Info.plist │ │ ├── Dojo-tvOSTests │ │ │ └── Info.plist │ │ ├── Dojo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Dojo-tvOS.xcscheme │ │ │ │ └── Dojo.xcscheme │ │ ├── Dojo │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ └── DojoTests │ │ │ ├── DojoTests.m │ │ │ └── Info.plist │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── Card.js │ │ │ ├── FormReservation.js │ │ │ └── PlacesServices.js │ │ └── screens │ │ │ ├── Gallery.js │ │ │ └── Reservation.js │ └── yarn.lock └── demo │ ├── .babelrc │ ├── .eslintrc.json │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── README.md │ ├── app.json │ ├── db.json │ ├── package-lock.json │ ├── package.json │ ├── screens │ └── Gallery.js │ └── yarn.lock └── 20181212-jest-enzyme ├── .editorconfig ├── .gitignore ├── README.md ├── db.json ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── Components ├── CartSummaryModal │ ├── CartSummaryModal.css │ ├── CartSummaryModal.js │ └── StyleHoc.js └── Ingredient │ ├── Ingredient.css │ └── Ingredient.js ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js ├── services ├── __mocks__ │ └── ingredientsServices.js └── ingredientsServices.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/README.md -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/README.md -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/package.json -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/spec/podcast.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/spec/podcast.spec.js -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/spec/support/jasmine.json -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/spec/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/spec/user.spec.js -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/src/episode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/src/episode.js -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/src/index.js -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/src/podcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/src/podcast.js -------------------------------------------------------------------------------- /dojos/20160414-tdd-jasmine/src/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160414-tdd-jasmine/src/user.js -------------------------------------------------------------------------------- /dojos/20160525-angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/README.md -------------------------------------------------------------------------------- /dojos/20160525-angularjs/app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/app/css/app.css -------------------------------------------------------------------------------- /dojos/20160525-angularjs/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/app/index.html -------------------------------------------------------------------------------- /dojos/20160525-angularjs/app/js/app.js: -------------------------------------------------------------------------------- 1 | angular.module('app', []); 2 | -------------------------------------------------------------------------------- /dojos/20160525-angularjs/app/js/controllers/apoiaseController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/app/js/controllers/apoiaseController.js -------------------------------------------------------------------------------- /dojos/20160525-angularjs/app/js/directives/dfApoiadorDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/app/js/directives/dfApoiadorDirective.js -------------------------------------------------------------------------------- /dojos/20160525-angularjs/app/js/services/apoiadoresFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/app/js/services/apoiadoresFactory.js -------------------------------------------------------------------------------- /dojos/20160525-angularjs/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/gulpfile.js -------------------------------------------------------------------------------- /dojos/20160525-angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160525-angularjs/package.json -------------------------------------------------------------------------------- /dojos/20160921-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/.gitignore -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/Readme.md -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/index.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/paths.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/browser-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/browser-sync.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/default.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/deploy-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/deploy-pages.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/imagemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/imagemin.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/jade.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/js.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/notes.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/stylus.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulp/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/gulp/tasks/watch.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/gulpfile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | require('./gulp'); 4 | -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/package.json -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/img/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/img/react.svg -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/main.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/classList.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/head.min.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/highlight/highlight.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/notes-server/client.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/notes-server/index.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/notes-server/notes.html -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/notes/notes.html -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/notes/notes.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/js/vendor/reveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/js/vendor/reveal.min.js -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/coding-dojo.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/coding-dojo.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/event-handlers.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/event-handlers.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/happy-coding.jade: -------------------------------------------------------------------------------- 1 | section 2 | h2 Happy coding! 3 | -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/intro.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/intro.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/lifecycle.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/lifecycle.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/nosso-desafio.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/nosso-desafio.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/oque-e.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/oque-e.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/stateful.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/stateful.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/slides/stateless.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/slides/stateless.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/agate.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/agate.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/androidstudio.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/androidstudio.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/arduino-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/arduino-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/arta.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/arta.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/ascetic.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/ascetic.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-cave-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-cave-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-cave-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-cave-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-dune-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-dune-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-dune-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-dune-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-estuary-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-estuary-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-estuary-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-estuary-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-forest-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-forest-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-forest-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-forest-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-heath-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-heath-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-heath-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-heath-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-lakeside-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-lakeside-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-lakeside-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-lakeside-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-plateau-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-plateau-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-plateau-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-plateau-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-savanna-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-savanna-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-savanna-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-savanna-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-seaside-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-seaside-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-seaside-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-seaside-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-sulphurpool-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-sulphurpool-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-sulphurpool-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/atelier-sulphurpool-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/brown-paper.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/brown-paper.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/codepen-embed.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/codepen-embed.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/color-brewer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/color-brewer.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/darkula.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/darkula.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/default.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/default.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/docco.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/docco.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/dracula.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/dracula.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/far.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/far.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/foundation.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/foundation.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/github-gist.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/github-gist.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/github.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/github.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/googlecode.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/googlecode.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/grayscale.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/grayscale.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/gruvbox-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/gruvbox-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/gruvbox-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/gruvbox-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/hopscotch.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/hopscotch.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/hybrid.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/hybrid.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/idea.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/idea.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/ir-black.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/ir-black.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/kimbie.dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/kimbie.dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/kimbie.light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/kimbie.light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/magula.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/magula.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/mono-blue.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/mono-blue.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/monokai-sublime.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/monokai-sublime.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/monokai.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/monokai.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/obsidian.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/obsidian.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/paraiso-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/paraiso-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/paraiso-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/paraiso-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/pojoaque.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/pojoaque.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/purebasic.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/purebasic.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/qtcreator_dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/qtcreator_dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/qtcreator_light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/qtcreator_light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/railscasts.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/railscasts.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/rainbow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/rainbow.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/school-book.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/school-book.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/solarized-dark.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/solarized-dark.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/solarized-light.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/solarized-light.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/sunburst.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/sunburst.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night-blue.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night-blue.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night-bright.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night-bright.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night-eighties.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night-eighties.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow-night.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/tomorrow.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/vs.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/vs.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/xcode.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/xcode.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/xt256.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/xt256.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/highlight-themes/zenburn.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/highlight-themes/zenburn.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/main.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/beige.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/beige.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/black.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/black.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/blood.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/blood.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/league.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/league.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/moon.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/moon.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/night.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/night.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/serif.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/serif.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/simple.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/simple.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/sky.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/sky.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/solarized.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/solarized.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/reveal-themes/white.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/reveal-themes/white.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/styl/vendor/reveal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/styl/vendor/reveal.styl -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/templates/inc/head.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/templates/inc/head.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/templates/inc/scripts.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/templates/inc/scripts.jade -------------------------------------------------------------------------------- /dojos/20160921-react/apresentacao/src/templates/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/apresentacao/src/templates/index.jade -------------------------------------------------------------------------------- /dojos/20160921-react/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/.gitignore -------------------------------------------------------------------------------- /dojos/20160921-react/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/README.md -------------------------------------------------------------------------------- /dojos/20160921-react/demo/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/db.json -------------------------------------------------------------------------------- /dojos/20160921-react/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/index.html -------------------------------------------------------------------------------- /dojos/20160921-react/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/package.json -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/Apoiador.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/Apoiador.js -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/App.css -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/App.js -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/App.test.js -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/Busca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/Busca.js -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/favicon.ico -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/index.css -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/index.js -------------------------------------------------------------------------------- /dojos/20160921-react/demo/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/demo/src/logo.svg -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/.gitignore -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/README.md -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/index.html -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/package.json -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/src/Apoiadores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/src/Apoiadores.js -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/src/App.css -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/src/App.test.js -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/src/favicon.ico -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/src/index.css -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/src/index.js -------------------------------------------------------------------------------- /dojos/20160921-react/dojo/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20160921-react/dojo/src/logo.svg -------------------------------------------------------------------------------- /dojos/20161112-vuejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/README.md -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/.babelrc -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/README.md -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/db.json -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/index.html -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/package.json -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/components/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/components/home/home.css -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/components/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/components/home/home.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/components/home/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/components/home/template.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/components/index/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/components/index/App.css -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/components/index/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/components/index/index.css -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/components/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/components/index/index.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/components/index/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/components/index/template.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/src/main.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/webpack.config.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/demo-vue/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/demo-vue/yarn.lock -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/.babelrc -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/.eslintrc -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/README.md -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/db.json -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/index.html -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/package.json -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/src/components/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/src/components/app/app.css -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/src/components/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/src/components/app/app.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/src/components/app/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/src/components/app/template.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/src/components/profile/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/src/components/profile/profile.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/src/main.js -------------------------------------------------------------------------------- /dojos/20161112-vuejs/dojo-vue/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20161112-vuejs/dojo-vue/webpack.config.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/README.md -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/.babelrc -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/.flowconfig -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/App.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/App.test.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/DESAFIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/DESAFIO.md -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/README.md -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/BUCK -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/build.gradle -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/java/com/dojo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/java/com/dojo/MainActivity.java -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/java/com/dojo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/java/com/dojo/MainApplication.java -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/build.gradle -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/gradle.properties -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/gradlew -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/gradlew.bat -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/keystores/BUCK -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Dojo' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/app.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/components/Card.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/db.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/index.android.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/index.ios.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo-tvOS/Info.plist -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo-tvOS.xcscheme -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo.xcscheme -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo/AppDelegate.h -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo/AppDelegate.m -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo/Info.plist -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/Dojo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/Dojo/main.m -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/DojoTests/DojoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/DojoTests/DojoTests.m -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/ios/DojoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/ios/DojoTests/Info.plist -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/package.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/screens/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/screens/Gallery.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/screens/PlaceDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/screens/PlaceDetail.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/services/Places.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/services/Places.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/base/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/base/yarn.lock -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/.babelrc -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/.eslintrc.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/.flowconfig -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/App.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/App.test.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/README.md -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/app.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/components/BookingForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/components/BookingForm.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/components/Card.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/components/Detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/components/Detail.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/components/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/components/Gallery.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/components/Place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/components/Place.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/components/PlaceDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/components/PlaceDetails.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/db.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/package-lock.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/package.json -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/screens/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/screens/Details.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/screens/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/screens/Gallery.js -------------------------------------------------------------------------------- /dojos/20170927-react-native/demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20170927-react-native/demo/yarn.lock -------------------------------------------------------------------------------- /dojos/20171114-react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/README.md -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/.babelrc -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/.flowconfig -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/.gitignore -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/App.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/App.test.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/README.md -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/BUCK -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/build.gradle -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/java/com/dojo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/java/com/dojo/MainActivity.java -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/java/com/dojo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/java/com/dojo/MainApplication.java -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/build.gradle -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/gradle.properties -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/gradlew -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/gradlew.bat -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/keystores/BUCK -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Dojo' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/app.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/db.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/index.android.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/index.ios.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo-tvOS/Info.plist -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo-tvOS.xcscheme -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo.xcodeproj/xcshareddata/xcschemes/Dojo.xcscheme -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo/AppDelegate.h -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo/AppDelegate.m -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo/Info.plist -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/Dojo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/Dojo/main.m -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/DojoTests/DojoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/DojoTests/DojoTests.m -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/ios/DojoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/ios/DojoTests/Info.plist -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/package-lock.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/package.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/src/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/src/components/Card.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/src/components/FormReservation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/src/components/FormReservation.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/src/components/PlacesServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/src/components/PlacesServices.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/src/screens/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/src/screens/Gallery.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/src/screens/Reservation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/src/screens/Reservation.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/base/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/base/yarn.lock -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/.babelrc -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/.eslintrc.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/.flowconfig -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/App.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/App.test.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/README.md -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/app.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/db.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/package-lock.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/package.json -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/screens/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/screens/Gallery.js -------------------------------------------------------------------------------- /dojos/20171114-react-native/demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20171114-react-native/demo/yarn.lock -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/.editorconfig -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/.gitignore -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/README.md -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/db.json -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/package-lock.json -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/package.json -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/public/favicon.ico -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/public/index.html -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/public/manifest.json -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/App.css -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/App.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/App.test.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/Components/CartSummaryModal/CartSummaryModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/Components/CartSummaryModal/CartSummaryModal.css -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/Components/CartSummaryModal/CartSummaryModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/Components/CartSummaryModal/CartSummaryModal.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/Components/CartSummaryModal/StyleHoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/Components/CartSummaryModal/StyleHoc.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/Components/Ingredient/Ingredient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/Components/Ingredient/Ingredient.css -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/Components/Ingredient/Ingredient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/Components/Ingredient/Ingredient.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/index.css -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/index.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/logo.svg -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/serviceWorker.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/services/__mocks__/ingredientsServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/services/__mocks__/ingredientsServices.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/services/ingredientsServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/services/ingredientsServices.js -------------------------------------------------------------------------------- /dojos/20181212-jest-enzyme/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campinas-front-end/Dojos/HEAD/dojos/20181212-jest-enzyme/src/setupTests.js --------------------------------------------------------------------------------