#API Partners at Hacking Journalism
##API Intros There will be API intros to some of the APIs. These will be running through the afternoon on Saturday.
- 2:00 pm Embedly
- 2:30 pm Parse.ly
- 3:00 pm Twitter
- 3:30 pm Enigma
- 4:00 pm MuckRock
- 4:30 pm Guardian
#API Partners at Hacking Journalism
##API Intros There will be API intros to some of the APIs. These will be running through the afternoon on Saturday.
#General Information for Hacking Journalism
#Hackathon Timeline ##Saturday
To understand some of the pieces, it is helpful to interact with them together. Not sure how this will turn out, but that's part of the fun. Turn the sound up, maybe lock your screen orientation, and check these out:
#General Information for Hacking Journalism
#Developer Materials at Hacking Journalism
##API Intros There will be workshops through Saturday afternoon
You can find me at @whichlight
I'll share a few things during the talk. You can check them out:
http://www.prettydots.com/ - draw dots together
http://danceydots.com/ - make sounds together
http://whichlight.github.io/arty-party-synth/ - arpeggiator thing
#General Information for Hacking Journalism
| var whiteNoiseGen = function(){ | |
| var bufferSize = 4096; //Math.pow(2,13); //between 8 & 14 | |
| //make this a global var so it isnt garbage collected | |
| whiteNoise = context.createScriptProcessor(bufferSize, 0, 2); | |
| whiteNoise.onaudioprocess = function(e) { | |
| var outputBuffer = e.outputBuffer; | |
| for (var channel = 0; channel < outputBuffer.numberOfChannels; channel++) { | |
| var outputData = outputBuffer.getChannelData(channel); | |
| for (var i = 0; i < bufferSize; i++) { |