- Aeroplane October 2009 mix
- KIHARA - Rock and Roll Sweetheart
- Recdux promo DJ mix August 09
- The Revenge - Warmageddon Mix
- Negativ Magick Mix
- Hot - Straight from the chamber vol.5
- Youth - Gaia Techno Mix
- DâM-FunK - CLAE presents Beautiful Music 4 Beautiful People
- Technical Itch - Peel Session 16.04.02
- [Cole Medina - DiskUnion Mix](http://www.djhistory.com/fo
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' | |
| def main | |
| # e.g. http://youpy.jottit.com/dajare | |
| url = ARGV.shift | |
| a = WWW::Mechanize.new { |agent| | |
| agent.user_agent_alias = 'Mac FireFox' | |
| } |
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
| // ==UserScript== | |
| // @name Discogs.com: show thumbnail | |
| // @namespace http://d.hatena.ne.jp/youpy/ | |
| // @include http://www.discogs.com/* | |
| // @require http://gist.github.com/3242.txt | |
| // @require http://github.com/cho45/jsdeferred/raw/master/jsdeferred.userscript.js | |
| // ==/UserScript== | |
| // API usage is limited to 5,000 requests per 24-hour period, per IP address. |
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
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'scissor/echonest' | |
| require 'pit' | |
| config = Pit.get('echonest.com', :require => { | |
| 'api_key' => 'your Echo Nest API key' | |
| }) | |
| Scissor.echonest_api_key = config['api_key'] |
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
| # moved to http://github.com/youpy/scissor-echonest/blob/master/examples/afromb.rb |
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 'spec' | |
| require 'benchmark' | |
| describe 'File#flock' do | |
| before do | |
| @lock_file = '/tmp/xxx.lock' | |
| end | |
| after do |
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 worker = {}; | |
| worker.start = function(uri, data) { | |
| var deferred = new Deferred(); | |
| var worker = new Worker(uri); | |
| worker.onmessage = function(event) { deferred.call(event); }; | |
| worker.onerror = function(event) { deferred.fail(event); }; | |
| worker.postMessage(data); | |
| deferred.canceller = function() { worker.terminate() }; |
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
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'spotlight' | |
| require 'fileutils' | |
| include FileUtils::Verbose | |
| if ARGV.size < 2 | |
| warn "usage: {$0} /path/to/foo.savedSearch /path/to/dest_dir [ln | mv | cp | ln_s]" |
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
| #!/usr/bin/env ruby | |
| if ARGV.size != 1 | |
| warn "usage: #{$0} instance_name" | |
| exit 1 | |
| end | |
| instance_name = ARGV.shift | |
| values = `rds-describe-db-instances`.split(/[\r\n]+/).grep(/^DBINSTANCE/).map do |line| |
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
| #!/usr/bin/env python | |
| __version__ = "0.00001" | |
| import sys | |
| import optparse | |
| try: | |
| import Foundation | |
| import WebKit |