- Instructions
- Basic Scratch 2.0 Guide
- Sample Adventure
- Additional Links
- Present what a Quest Adventure looks like: http://machinarium.net/demo/
Programming 101 - Absolute Beginner | |
=================================== | |
Programming Logic (Karel the Robot) | |
http://studio.code.org/s/course3/stage/2/puzzle/1 (blocks. basic) | |
http://light-bot.com/hocflash.html (block. puzzles) | |
http://codecombat.com/ (javascript) | |
Kodable: |
Coderdojo provides multiple activities setup in different tables. | |
The most popular activities are: Scratch, Build a website, and LittleBits | |
1) Scratch | |
http://scratch.mit.edu/ | |
You should try the "Get started link" | |
http://scratch.mit.edu/projects/editor/?tip_bar=getStarted | |
Another good tutorial |
1) Running Mocha tests | |
http://visionmedia.github.io/mocha/#getting-started | |
$ npm install -g mocha | |
$ mkdir test | |
$ $EDITOR test/test.js | |
var assert = require("assert") | |
describe('Array', function(){ |
http://synthesiagame.com/ | |
Maroon 5, Payphone | |
http://www.youtube.com/watch?v=gXXvZU5EpWY | |
Alphaville, Forever Young | |
http://www.youtube.com/watch?v=zWikzFPrFIA | |
pianoitall.com offers many youtubes on Synthesia, as well as the musical sheet and MIDI file. |
;; | |
;; Minecraft. Part 1. Right hand. | |
;; Based on: https://www.youtube.com/watch?v=0v5tE9fwqQo | |
;; | |
;; MIDI reference for notes | |
;; http://computer-music.postbit.com/upload/131/posts/midi-notes-numbers.gif | |
;; http://www.midimountain.com/midi/midi_note_numbers.html | |
;; | |
;; Musical Theory (using JS) | |
;; https://github.com/saebekassebil/teoria |
var getPaletteColors = function () { | |
var $items = $('div.collection-assets-item > .content'); | |
var palette = []; | |
$items.each(function () { | |
var self = this; | |
var $frame = $('.frame', this); |