blockly-mooc
v0.0.97
Published
Blockly is a web-based, graphical programming editor. Users can drag blocks together to build an application. No typing required. Credit goes to these awesome [developers](https://code.google.com/p/blockly/wiki/Credits#Engineers) and a small army of [translators](https://code.google.com/p/blockly/wiki/Credits#Translators).
Downloads
69
Readme
Blockly 20 Hour Curriculum
Blockly is a web-based, graphical programming editor. Users can drag blocks together to build an application. No typing required. Credit goes to these awesome developers and a small army of translators.
This repository contains the source code for the Blockly based 20 hour curriculum and Hour of Code. Information about Blockly can be found in the wiki.
Quick Start
# Get the code
git clone https://github.com/code-dot-org/blockly.git mooc
cd mooc
# Machine setup (OSX with Homebrew)
brew install node
npm install -g grunt-cli
# Build
npm install
grunt
# Run with live-reload server
grunt dev
open http://localhost:8000
Project Specification
Both of these tutorials are found on code.org/learn or csedweek.org/learn. At the end of 1-hour, you’re sent to a Drupal thank you page that leads you back to code.org/learn
1 hour tutorial
- 18 Maze puzzles + 6 videos, with celeb videos and licensed skins
- No auth/identity/login, no state
- Works on touch-screens, cross-browser (IE9+ required. IE8 highly desired)
- Looks good on smartphones / small screens
- Translated into at least spanish, and other non-bidi languages
20-hour curriculum
- X stages, Y puzzles, Z videos
- HAS student auth, teacher auth.
- Student can see a map of where they are. Earn “trophies”
- Teacher can see dashboard of student progress
- Both students and teachers earn real-world rewards upon completion.
- Works on touch-screens, cross-browser (IE9+ required. IE8 highly desired)
- NOT optimized for smartphones / small screens. NOT translated
To Contribute
First, helpful links
Style Guide
- In general follow google's javascript style guide.
- 80 character line length.
- 2 space indent.
- 4 space indent on long line breaks.
Quick Start
- Install and set up git
- Fork this repository (see upper right of page).
- Clone your new repo
git clone https://github.com/<username>/blockly.git
- Change directory to the newly cloned repo with
cd blockly
- Add this repo as a remote:
git remote add codedotorg https://github.com/code-dot-org/blockly.git
- [Hack]
- Merge in most up-to-date changes, repeat as needed:
git fetch codedotorg
git merge codedotorg/master
- Push changes to your fork, repeat as desired.
- Initiate pull request on your fork's page, targeting this repository.
- Find the pull request you initiated and assign it to someone. This requires that you are a collaborator on the project.
Additional Tips
- After submitting a pull request, start a new branch with
git checkout -b new_feature
. This allows you to keep working without affecting the pull request. - Once you have forked your own repository, you can makes as many commits, and push them to github, as you like. These will be pushed to your own repo and won't affect this shared repo.
- Once you have issued a pull request any additional pushes you make to your repo will automatically update the pull request. This is like running gcl update multiple times for the same change list.
- Use
git rebase --interactive
to clean up messy commits before issuing a pull request. - To use a global gitignore file read these instructions.