This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var audio = []; | |
| var numTracks = 4; | |
| function preload() { | |
| audio[0] = loadSound('/audio/001.mp3'); | |
| audio[1] = loadSound('/audio/002.mp3'); | |
| audio[2] = loadSound('/audio/003.mp3'); | |
| audio[3] = loadSound('/audio/004.mp3'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rubygems' | |
| require 'httparty' | |
| require 'json' | |
| url = 'https://runsignup.com/Race/Results/?raceId=24868&resultSetId=13392&page=1&num=10&last_name=&first_name=&bib_num=&city=&gender=&countrycode=&state=' | |
| response = HTTParty.get(url, headers: { | |
| "Accept" => "application/json, */*; q=0.01", | |
| "X-NewRelic-ID" => "VQQBV1FXGwQIXFRaAw==", | |
| "X-Requested-With" => "XMLHttpRequest" | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "headings": [{ | |
| "key": "race_placement", | |
| "name": "Place", | |
| "align": "right", | |
| "hidden": false | |
| }, { | |
| "key": "bib_num", | |
| "name": "Bib", | |
| "align": "right", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| begin | |
| # iceberg! | |
| rescue StandardError => e | |
| # lifeboats | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Process: Tumble [324] | |
| Path: /Applications/Tumble.app/Contents/MacOS/Tumble | |
| Identifier: com.chrisallick.Tumble | |
| Version: 0.0.1 (2) | |
| Code Type: X86-64 (Native) | |
| Parent Process: ??? [1] | |
| Responsible: Tumble [324] | |
| User ID: 502 | |
| Date/Time: 2015-12-09 10:13:38.553 -0500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Process: Tumble [1808] | |
| Path: /Applications/Tumble.app/Contents/MacOS/Tumble | |
| Identifier: com.chrisallick.Tumble | |
| Version: 0.0.1 (2) | |
| Code Type: X86-64 (Native) | |
| Parent Process: ??? [1] | |
| Responsible: Tumble [1808] | |
| User ID: 502 | |
| Date/Time: 2015-12-09 10:23:41.615 -0500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 12/9/15 10:13:20.462 AM com.apple.preference.network.remoteservice[1781] Failed to connect (o_advancedMenu) outlet from (ANPNetworkController) to (NSMenu): missing setter or instance variable | |
| 12/9/15 10:13:20.462 AM com.apple.preference.network.remoteservice[1781] Failed to connect (o_fillerButton) outlet from (ANPNetworkController) to (NSButton): missing setter or instance variable | |
| 12/9/15 10:13:20.541 AM com.apple.preference.network.remoteservice[1781] Failed to connect (o_mainTabView) outlet from (ANPAdvancedTabController) to (NSTabView): missing setter or instance variable | |
| 12/9/15 10:13:20.541 AM com.apple.preference.network.remoteservice[1781] Failed to connect (o_serviceImageView) outlet from (ANPAdvancedTabController) to (NSImageView): missing setter or instance variable | |
| 12/9/15 10:13:20.541 AM com.apple.preference.network.remoteservice[1781] Failed to connect (o_serviceNameField) outlet from (ANPAdvancedTabController) to (NSTextField): missing setter or instance variable | |
| 12/9/15 10:13:20.541 AM com.ap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rubygems' | |
| require 'twilio-ruby' | |
| # | |
| # YOU MUST FILL THIS OUT | |
| # AFTER SIGNING UP WITH TWILIO | |
| # | |
| account_sid = "_account_sid_goes_here_" | |
| auth_token = "_auth_token_goes_here_" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rubygems' | |
| require 'mechanize' | |
| require 'twilio-ruby' | |
| mechanize = Mechanize.new | |
| page = mechanize.get('_snip_') | |
| item = page.at('.coming-soon-sub') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function setup() { | |
| createCanvas(640, 480); | |
| // use anti-aliasing | |
| smooth(); | |
| // no stroke on my shapes | |
| noStroke(); | |
| /* |