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
| # $ brew install https://raw.github.com/gist/1121425/rubberband.rb | |
| require 'formula' | |
| class Rubberband < Formula | |
| homepage '' | |
| url 'http://code.breakfastquay.com/attachments/download/35/rubberband-1.8.1-gpl-executable-osx-universal.tar.bz2' | |
| version '1.8.1' | |
| sha1 'bceba7dba8cdd773a318ca973ed9c5806be03262' |
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 make b.hatena.jp/youpy usable | |
| // @namespace http://d.hatena.ne.jp/youpy/ | |
| // @include http://b.hatena.ne.jp/youpy* | |
| // @require https://raw.github.com/gist/3242/62166dfb4126bfd1b26ba586551fe96c469aec77/dollarX.js | |
| // ==/UserScript== | |
| $X('//style')[0].innerHTML = ''; |
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
| " memo using g+ | |
| js <<EOF | |
| (function () { | |
| commands.addUserCommand( | |
| ['memo'], | |
| 'post memo to G+', | |
| function(args){ | |
| let message = args[0]; | |
| liberator.execute(":gp -t memo " + message); |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.03"> | |
| <data> | |
| <int key="IBDocument.SystemTarget">1050</int> | |
| <string key="IBDocument.SystemVersion">9L30</string> | |
| <string key="IBDocument.InterfaceBuilderVersion">677</string> | |
| <string key="IBDocument.AppKitVersion">949.54</string> | |
| <string key="IBDocument.HIToolboxVersion">353.00</string> | |
| <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> | |
| <bool key="EncodedWithXMLCoder">YES</bool> |
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' | |
| class JDWebInterface | |
| include HTTParty | |
| base_uri 'localhost:8765' | |
| basic_auth 'jd', 'jd' | |
| def self.add_link(links_as_str) | |
| post('/link_adder.tmpl', :query => {:do => 'Add', :addlinks => links_as_str}) |
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 'pit' | |
| require 'scissor/echonest' | |
| Scissor.echonest_api_key = Pit.get('echonest.com', :require => { | |
| 'api_key' => 'your Echo Nest API key' | |
| })['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
| let INFO = <> | |
| <plugin name="GooglePlusPoster" version="0.1" | |
| summary="Post to Google+" | |
| lang="en-US" | |
| xmlns="http://vimperator.org/namespaces/liberator"> | |
| <author email="[email protected]">teramako</author> | |
| <license>MPL 1.1</license> | |
| <project name="Vimperator" minVersion="3.0"/> | |
| <item> | |
| <tags>:googleplus-setup</tags> |
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 G+: notify update | |
| // @namespace http://buycheapviagraonlinenow.com/ | |
| // @include https://plus.google.com/* | |
| // ==/UserScript== | |
| var notifyServerUrl = 'http://localhost:5678/', // https://gist.github.com/1021283 | |
| element = document.querySelector('.gbids'), | |
| last; |
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 Google Docs: notify when change | |
| // @namespace http://buycheapviagraonlinenow.com/ | |
| // @include https://docs.google.com/document/d/*/edit* | |
| // ==/UserScript== | |
| var notifyServerUrl = 'http://localhost:5678/'; // https://gist.github.com/1021283 | |
| var notice; | |
| setInterval(function() { |
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 Gyazo.com: Redirect to image | |
| // @namespace http://buycheapviagraonlinenow.com/ | |
| // @include http://gyazo.com/* | |
| // @include http://cache.gyazo.com/* | |
| // ==/UserScript== | |
| /* jslint browser: true, maxerr: 50, maxlen: 80, indent: 4 */ | |
| // Edition 2011-06-17 |