├── .gitignore ├── 001 - Combining Redux and Firebase ├── .babelrc ├── README.md ├── index.html ├── package.json ├── src │ ├── actions │ │ ├── index.js │ │ └── types.js │ ├── components │ │ ├── app.js │ │ └── post_item.js │ ├── index.js │ └── reducers │ │ ├── index.js │ │ └── posts_reducer.js ├── style │ └── style.css ├── test │ ├── components │ │ └── app_test.js │ └── test_helper.js └── webpack.config.js ├── 002 - Basics of Redux Thunk ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── actions │ │ └── index.js │ ├── components │ │ └── app.js │ ├── index.js │ └── reducers │ │ └── index.js ├── style │ └── style.css ├── test │ ├── components │ │ └── app_test.js │ └── test_helper.js └── webpack.config.js ├── 003 - Dynamic Forms with Redux Form ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── actions │ │ └── index.js │ ├── components │ │ ├── app.js │ │ ├── posts_index.js │ │ ├── posts_new.bak.js │ │ ├── posts_new.js │ │ └── posts_show.js │ ├── index.js │ ├── reducers │ │ ├── index.js │ │ └── reducer_posts.js │ └── routes.js ├── style │ └── style.css └── webpack.config.js ├── 004 - Logicless Components with Reselect ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── actions │ │ ├── index.js │ │ └── types.js │ ├── components │ │ ├── app.js │ │ ├── posts_list.js │ │ └── selected_posts_list.js │ ├── index.js │ ├── reducers │ │ ├── index.js │ │ ├── reducer_posts.js │ │ └── reducer_selected_posts.js │ └── selectors │ │ └── selected_posts.js ├── style │ └── style.css └── webpack.config.js ├── 005 - A Better Way to Load Data ├── .babelrc ├── README.md ├── index.html ├── package.json ├── src │ ├── actions │ │ ├── index.js │ │ └── types.js │ ├── components │ │ ├── app.js │ │ └── photos.js │ ├── index.js │ ├── reducers │ │ ├── index.js │ │ └── photos_reducer.js │ ├── routes │ │ ├── index.js │ │ └── route_callbacks.js │ └── store.js ├── style │ └── style.css ├── test │ ├── components │ │ └── app_test.js │ └── test_helper.js └── webpack.config.js ├── 006 - Animation of React Components ├── .babelrc ├── README.md ├── index.html ├── npm-debug.log ├── package.json ├── src │ ├── actions │ │ └── index.js │ ├── components │ │ └── app.js │ ├── index.js │ └── reducers │ │ └── index.js ├── style │ └── style.css ├── test │ ├── components │ │ └── app_test.js │ └── test_helper.js └── webpack.config.js ├── 008 - Building Modals with React ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── actions │ │ └── index.js │ ├── components │ │ ├── app.js │ │ ├── bad_modal.js │ │ ├── colors.js │ │ └── modal.js │ ├── index.js │ └── reducers │ │ └── index.js ├── style │ └── style.css ├── test │ ├── components │ │ └── app_test.js │ └── test_helper.js └── webpack.config.js ├── 011 ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── server.js ├── src │ ├── actions │ │ └── index.js │ ├── components │ │ ├── app.js │ │ └── child.js │ ├── index.js │ └── reducers │ │ └── index.js ├── style │ └── style.css ├── test │ ├── components │ │ └── app_test.js │ └── test_helper.js └── webpack.config.js ├── 013 - Deployment of Webpack Apps ├── .babelrc ├── .gitignore ├── index.html ├── package.json ├── server.js ├── src │ ├── components │ │ ├── search_bar.js │ │ ├── video_detail.js │ │ ├── video_item.js │ │ └── video_list.js │ └── index.js ├── style │ └── style.css └── webpack.config.js ├── 016 ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── actions │ │ └── index.js │ ├── components │ │ ├── app.js │ │ └── google_map.js │ ├── index.js │ └── reducers │ │ └── index.js ├── style │ └── style.css ├── test │ ├── components │ │ └── app_test.js │ └── test_helper.js └── webpack.config.js ├── 017 - React Native Testing ├── rn_cli_example │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── __tests__ │ │ ├── index.android.js │ │ └── index.ios.js │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── rn_cli_example │ │ │ │ │ ├── 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 │ ├── index.android.js │ ├── index.ios.js │ ├── ios │ │ ├── rn_cli_example-tvOS │ │ │ └── Info.plist │ │ ├── rn_cli_example-tvOSTests │ │ │ └── Info.plist │ │ ├── rn_cli_example.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── rn_cli_example-tvOS.xcscheme │ │ │ │ └── rn_cli_example.xcscheme │ │ ├── rn_cli_example │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ └── rn_cli_exampleTests │ │ │ ├── Info.plist │ │ │ └── rn_cli_exampleTests.m │ ├── package.json │ └── yarn.lock └── testing │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── README.md │ ├── __snapshots__ │ └── App.test.js.snap │ ├── app.json │ ├── package.json │ └── yarn.lock ├── 018 - RN vs Flutter ├── .gitkeep └── diagrams.xml ├── 019 - Animations ├── .gitkeep ├── dev │ ├── .gitignore │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── main_dart.xml │ │ └── workspace.xml │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── scoped │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── scoped.iml │ ├── scoped_android.iml │ └── test │ │ └── widget_test.dart ├── diagrams.xml └── prod │ ├── .gitignore │ ├── .idea │ ├── libraries │ │ ├── Dart_SDK.xml │ │ └── Flutter_for_Android.xml │ ├── modules.xml │ ├── runConfigurations │ │ └── main_dart.xml │ └── workspace.xml │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── prod │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ └── main.dart │ ├── prod.iml │ ├── prod_android.iml │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── 20 - redux ├── .gitkeep ├── code.js └── diagrams.xml ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/.babelrc -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/README.md -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/index.html -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/package.json -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/src/actions/index.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/src/actions/types.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/src/components/app.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/src/components/post_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/src/components/post_item.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/src/index.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/src/reducers/index.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/src/reducers/posts_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/src/reducers/posts_reducer.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/style/style.css -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/test/components/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/test/components/app_test.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/test/test_helper.js -------------------------------------------------------------------------------- /001 - Combining Redux and Firebase/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/001 - Combining Redux and Firebase/webpack.config.js -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/.babelrc -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | bundle.js 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/README.md -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/index.html -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/package.json -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/src/actions/index.js -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/src/components/app.js -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/src/index.js -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/src/reducers/index.js -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/style/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/test/components/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/test/components/app_test.js -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/test/test_helper.js -------------------------------------------------------------------------------- /002 - Basics of Redux Thunk/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/002 - Basics of Redux Thunk/webpack.config.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/.babelrc -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | bundle.js 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/README.md -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/index.html -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/package.json -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/actions/index.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/components/app.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/components/posts_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/components/posts_index.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/components/posts_new.bak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/components/posts_new.bak.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/components/posts_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/components/posts_new.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/components/posts_show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/components/posts_show.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/index.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/reducers/index.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/reducers/reducer_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/reducers/reducer_posts.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/src/routes.js -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/style/style.css: -------------------------------------------------------------------------------- 1 | form a { 2 | margin-left: 5px; 3 | } 4 | -------------------------------------------------------------------------------- /003 - Dynamic Forms with Redux Form/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/003 - Dynamic Forms with Redux Form/webpack.config.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/.babelrc -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | bundle.js 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/README.md -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/index.html -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/package.json -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/actions/index.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/actions/types.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/components/app.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/components/posts_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/components/posts_list.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/components/selected_posts_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/components/selected_posts_list.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/index.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/reducers/index.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/reducers/reducer_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/reducers/reducer_posts.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/reducers/reducer_selected_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/reducers/reducer_selected_posts.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/src/selectors/selected_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/src/selectors/selected_posts.js -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/style/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /004 - Logicless Components with Reselect/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/004 - Logicless Components with Reselect/webpack.config.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/.babelrc -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/README.md -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/index.html -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/package.json -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/actions/index.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/actions/types.js: -------------------------------------------------------------------------------- 1 | export const FETCH_PHOTOS = 'fetch_photos'; 2 | -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/components/app.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/components/photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/components/photos.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/index.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/reducers/index.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/reducers/photos_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/reducers/photos_reducer.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/routes/index.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/routes/route_callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/routes/route_callbacks.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/src/store.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/style/style.css: -------------------------------------------------------------------------------- 1 | .list-group-item { 2 | display: inline-block !important; 3 | } 4 | -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/test/components/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/test/components/app_test.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/test/test_helper.js -------------------------------------------------------------------------------- /005 - A Better Way to Load Data/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/005 - A Better Way to Load Data/webpack.config.js -------------------------------------------------------------------------------- /006 - Animation of React Components/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/.babelrc -------------------------------------------------------------------------------- /006 - Animation of React Components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/README.md -------------------------------------------------------------------------------- /006 - Animation of React Components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/index.html -------------------------------------------------------------------------------- /006 - Animation of React Components/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/npm-debug.log -------------------------------------------------------------------------------- /006 - Animation of React Components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/package.json -------------------------------------------------------------------------------- /006 - Animation of React Components/src/actions/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /006 - Animation of React Components/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/src/components/app.js -------------------------------------------------------------------------------- /006 - Animation of React Components/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/src/index.js -------------------------------------------------------------------------------- /006 - Animation of React Components/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/src/reducers/index.js -------------------------------------------------------------------------------- /006 - Animation of React Components/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/style/style.css -------------------------------------------------------------------------------- /006 - Animation of React Components/test/components/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/test/components/app_test.js -------------------------------------------------------------------------------- /006 - Animation of React Components/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/test/test_helper.js -------------------------------------------------------------------------------- /006 - Animation of React Components/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/006 - Animation of React Components/webpack.config.js -------------------------------------------------------------------------------- /008 - Building Modals with React/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/.babelrc -------------------------------------------------------------------------------- /008 - Building Modals with React/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | bundle.js 3 | npm-debug.log 4 | 5 | # IntelliJ 6 | *.iml 7 | /.idea -------------------------------------------------------------------------------- /008 - Building Modals with React/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/README.md -------------------------------------------------------------------------------- /008 - Building Modals with React/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/index.html -------------------------------------------------------------------------------- /008 - Building Modals with React/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/package.json -------------------------------------------------------------------------------- /008 - Building Modals with React/src/actions/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /008 - Building Modals with React/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/src/components/app.js -------------------------------------------------------------------------------- /008 - Building Modals with React/src/components/bad_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/src/components/bad_modal.js -------------------------------------------------------------------------------- /008 - Building Modals with React/src/components/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/src/components/colors.js -------------------------------------------------------------------------------- /008 - Building Modals with React/src/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/src/components/modal.js -------------------------------------------------------------------------------- /008 - Building Modals with React/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/src/index.js -------------------------------------------------------------------------------- /008 - Building Modals with React/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/src/reducers/index.js -------------------------------------------------------------------------------- /008 - Building Modals with React/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/style/style.css -------------------------------------------------------------------------------- /008 - Building Modals with React/test/components/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/test/components/app_test.js -------------------------------------------------------------------------------- /008 - Building Modals with React/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/test/test_helper.js -------------------------------------------------------------------------------- /008 - Building Modals with React/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/008 - Building Modals with React/webpack.config.js -------------------------------------------------------------------------------- /011/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/.babelrc -------------------------------------------------------------------------------- /011/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | bundle.js 3 | npm-debug.log 4 | 5 | # IntelliJ 6 | *.iml 7 | /.idea -------------------------------------------------------------------------------- /011/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/README.md -------------------------------------------------------------------------------- /011/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/index.html -------------------------------------------------------------------------------- /011/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/package.json -------------------------------------------------------------------------------- /011/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/server.js -------------------------------------------------------------------------------- /011/src/actions/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /011/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/src/components/app.js -------------------------------------------------------------------------------- /011/src/components/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/src/components/child.js -------------------------------------------------------------------------------- /011/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/src/index.js -------------------------------------------------------------------------------- /011/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/src/reducers/index.js -------------------------------------------------------------------------------- /011/style/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /011/test/components/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/test/components/app_test.js -------------------------------------------------------------------------------- /011/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/test/test_helper.js -------------------------------------------------------------------------------- /011/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/011/webpack.config.js -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/.babelrc -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | bundle.js 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/index.html -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/package.json -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/server.js -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/src/components/search_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/src/components/search_bar.js -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/src/components/video_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/src/components/video_detail.js -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/src/components/video_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/src/components/video_item.js -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/src/components/video_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/src/components/video_list.js -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/src/index.js -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/style/style.css -------------------------------------------------------------------------------- /013 - Deployment of Webpack Apps/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/013 - Deployment of Webpack Apps/webpack.config.js -------------------------------------------------------------------------------- /016/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/.babelrc -------------------------------------------------------------------------------- /016/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | bundle.js 3 | npm-debug.log 4 | 5 | # IntelliJ 6 | *.iml 7 | /.idea -------------------------------------------------------------------------------- /016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/README.md -------------------------------------------------------------------------------- /016/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/index.html -------------------------------------------------------------------------------- /016/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/package.json -------------------------------------------------------------------------------- /016/src/actions/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /016/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/src/components/app.js -------------------------------------------------------------------------------- /016/src/components/google_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/src/components/google_map.js -------------------------------------------------------------------------------- /016/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/src/index.js -------------------------------------------------------------------------------- /016/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/src/reducers/index.js -------------------------------------------------------------------------------- /016/style/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /016/test/components/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/test/components/app_test.js -------------------------------------------------------------------------------- /016/test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/test/test_helper.js -------------------------------------------------------------------------------- /016/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/016/webpack.config.js -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/.buckconfig -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/.flowconfig -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/.gitignore -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/__tests__/index.android.js -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/__tests__/index.ios.js -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/BUCK -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/build.gradle -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/java/com/rn_cli_example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/java/com/rn_cli_example/MainActivity.java -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/java/com/rn_cli_example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/java/com/rn_cli_example/MainApplication.java -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/build.gradle -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/gradle.properties -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/gradlew -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/gradlew.bat -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/keystores/BUCK -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'rn_cli_example' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/app.json -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/index.android.js -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/index.ios.js -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example-tvOS/Info.plist -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example-tvOSTests/Info.plist -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example.xcodeproj/xcshareddata/xcschemes/rn_cli_example-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example.xcodeproj/xcshareddata/xcschemes/rn_cli_example-tvOS.xcscheme -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example.xcodeproj/xcshareddata/xcschemes/rn_cli_example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example.xcodeproj/xcshareddata/xcschemes/rn_cli_example.xcscheme -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example/AppDelegate.h -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example/AppDelegate.m -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example/Info.plist -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_example/main.m -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_exampleTests/Info.plist -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/ios/rn_cli_exampleTests/rn_cli_exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/ios/rn_cli_exampleTests/rn_cli_exampleTests.m -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/package.json -------------------------------------------------------------------------------- /017 - React Native Testing/rn_cli_example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/rn_cli_example/yarn.lock -------------------------------------------------------------------------------- /017 - React Native Testing/testing/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/.babelrc -------------------------------------------------------------------------------- /017 - React Native Testing/testing/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/.flowconfig -------------------------------------------------------------------------------- /017 - React Native Testing/testing/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /017 - React Native Testing/testing/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /017 - React Native Testing/testing/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/App.js -------------------------------------------------------------------------------- /017 - React Native Testing/testing/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/App.test.js -------------------------------------------------------------------------------- /017 - React Native Testing/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/README.md -------------------------------------------------------------------------------- /017 - React Native Testing/testing/__snapshots__/App.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/__snapshots__/App.test.js.snap -------------------------------------------------------------------------------- /017 - React Native Testing/testing/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/app.json -------------------------------------------------------------------------------- /017 - React Native Testing/testing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/package.json -------------------------------------------------------------------------------- /017 - React Native Testing/testing/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/017 - React Native Testing/testing/yarn.lock -------------------------------------------------------------------------------- /018 - RN vs Flutter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /018 - RN vs Flutter/diagrams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/018 - RN vs Flutter/diagrams.xml -------------------------------------------------------------------------------- /019 - Animations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /019 - Animations/dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/.gitignore -------------------------------------------------------------------------------- /019 - Animations/dev/.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /019 - Animations/dev/.idea/libraries/Flutter_for_Android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/.idea/libraries/Flutter_for_Android.xml -------------------------------------------------------------------------------- /019 - Animations/dev/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/.idea/modules.xml -------------------------------------------------------------------------------- /019 - Animations/dev/.idea/runConfigurations/main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/.idea/runConfigurations/main_dart.xml -------------------------------------------------------------------------------- /019 - Animations/dev/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/.idea/workspace.xml -------------------------------------------------------------------------------- /019 - Animations/dev/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/.metadata -------------------------------------------------------------------------------- /019 - Animations/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/README.md -------------------------------------------------------------------------------- /019 - Animations/dev/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/.gitignore -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/build.gradle -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/java/com/example/scoped/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/java/com/example/scoped/MainActivity.java -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/dev/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /019 - Animations/dev/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/build.gradle -------------------------------------------------------------------------------- /019 - Animations/dev/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /019 - Animations/dev/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /019 - Animations/dev/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /019 - Animations/dev/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/gradlew -------------------------------------------------------------------------------- /019 - Animations/dev/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/gradlew.bat -------------------------------------------------------------------------------- /019 - Animations/dev/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/android/settings.gradle -------------------------------------------------------------------------------- /019 - Animations/dev/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/.gitignore -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/Info.plist -------------------------------------------------------------------------------- /019 - Animations/dev/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/ios/Runner/main.m -------------------------------------------------------------------------------- /019 - Animations/dev/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/lib/main.dart -------------------------------------------------------------------------------- /019 - Animations/dev/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/pubspec.lock -------------------------------------------------------------------------------- /019 - Animations/dev/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/pubspec.yaml -------------------------------------------------------------------------------- /019 - Animations/dev/scoped.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/scoped.iml -------------------------------------------------------------------------------- /019 - Animations/dev/scoped_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/scoped_android.iml -------------------------------------------------------------------------------- /019 - Animations/dev/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/dev/test/widget_test.dart -------------------------------------------------------------------------------- /019 - Animations/diagrams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/diagrams.xml -------------------------------------------------------------------------------- /019 - Animations/prod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/.gitignore -------------------------------------------------------------------------------- /019 - Animations/prod/.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /019 - Animations/prod/.idea/libraries/Flutter_for_Android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/.idea/libraries/Flutter_for_Android.xml -------------------------------------------------------------------------------- /019 - Animations/prod/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/.idea/modules.xml -------------------------------------------------------------------------------- /019 - Animations/prod/.idea/runConfigurations/main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/.idea/runConfigurations/main_dart.xml -------------------------------------------------------------------------------- /019 - Animations/prod/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/.idea/workspace.xml -------------------------------------------------------------------------------- /019 - Animations/prod/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/.metadata -------------------------------------------------------------------------------- /019 - Animations/prod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/README.md -------------------------------------------------------------------------------- /019 - Animations/prod/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/.gitignore -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/build.gradle -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/java/com/example/prod/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/java/com/example/prod/MainActivity.java -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /019 - Animations/prod/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /019 - Animations/prod/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/build.gradle -------------------------------------------------------------------------------- /019 - Animations/prod/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /019 - Animations/prod/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /019 - Animations/prod/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /019 - Animations/prod/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/gradlew -------------------------------------------------------------------------------- /019 - Animations/prod/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/gradlew.bat -------------------------------------------------------------------------------- /019 - Animations/prod/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/android/settings.gradle -------------------------------------------------------------------------------- /019 - Animations/prod/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/.gitignore -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/Info.plist -------------------------------------------------------------------------------- /019 - Animations/prod/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/ios/Runner/main.m -------------------------------------------------------------------------------- /019 - Animations/prod/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/lib/main.dart -------------------------------------------------------------------------------- /019 - Animations/prod/prod.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/prod.iml -------------------------------------------------------------------------------- /019 - Animations/prod/prod_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/prod_android.iml -------------------------------------------------------------------------------- /019 - Animations/prod/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/pubspec.lock -------------------------------------------------------------------------------- /019 - Animations/prod/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/pubspec.yaml -------------------------------------------------------------------------------- /019 - Animations/prod/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/019 - Animations/prod/test/widget_test.dart -------------------------------------------------------------------------------- /20 - redux/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20 - redux/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/20 - redux/code.js -------------------------------------------------------------------------------- /20 - redux/diagrams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/20 - redux/diagrams.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/RallyCodingWeekly/HEAD/README.md --------------------------------------------------------------------------------