This file contains 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
javascript:void((function(){var%20u=location.href,e=encodeURIComponent,c='http://pip.io/api/posts/post/create',m=prompt('Post%20this%20link%20on%20Pip.io',document.title);if(m!=null){c+='?attachments=[{%22type%22:2,%22url%22:%22'+e(u)+'%22}]&body='+e(m)+'&targets=&channels=&cc=&cc_data=&source_id=0&source_type=1&is_public=1&reply_id=0';var%20w=window.open(c,'pipwin','height=1;width=1');setTimeout(function(){w.close();},2000);}})()) |
This file contains 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 Pipio() { | |
this.background = '#ffffff'; | |
} | |
Pipio.prototype = new Service('Pipio'); | |
Pipio.prototype.constructor = function() { | |
}; | |
Pipio.prototype.authenticate = function(username, password, success, error) { |
This file contains 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/python | |
# -*- encoding:utf-8 -*- | |
"""Translate Google's Transcript into srt file. | |
Takes google's transcript filename as argument (xml extension required). | |
NB: to get google's transcript, use tihs URL: | |
http://video.google.com/timedtext?lang=en&v=VIDEO_ID | |
""" |
This file contains 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
Models.register({ | |
name : 'LoveIt', | |
ICON : 'http://assets.loveit.com/assets/favicon.ico', | |
LINK : 'http://loveit.com/', | |
LOGIN_URL : 'http://loveit.com/me/login', | |
BOOKMARK_URL : 'http://loveit.com/loves/bookmarklet/create', | |
UPLOAD_URL : 'http://loveit.com/loves/upload/image', | |
POST_URL : 'http://loveit.com/loves/upload/create', |
This file contains 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() { | |
addAround(grobal, 'download', function(proceed, args, self) { | |
try { | |
return proceed(args); | |
} | |
catch (e) { | |
return _download.apply(self, args); | |
} | |
}); |
This file contains 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"?> | |
<root> | |
<item> | |
<name>Remap PC Application to Hyper</name> | |
<appendix>OS X doesn't have a Hyper. This maps PC Application to Control + Shift + Option + Command.</appendix> | |
<identifier>pc_application_to_hyper</identifier> | |
<autogen> | |
--KeyToKey-- |
This file contains 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
source "https://rubygems.org" | |
gem "cucumber-chef", :git => "git://github.com/Atalanta/cucumber-chef", :tag => "v2.1.0.rc.5" |
This file contains 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
source "https://rubygems.org" | |
gem "cucumber-chef", :git => "git://github.com/Atalanta/cucumber-chef", :tag => "v2.1.0.rc.6" |
This file contains 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
set myPath to (path to me) | |
tell application "Finder" | |
set myFolder to (container of myPath) as string | |
end tell | |
set volumeScriptPath to myFolder & "volume.scpt" | |
set volumeScript to load script file volumeScriptPath | |
set volume (theVolume of volumeScript) |
This file contains 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() { | |
update(Extractors['Video - Nico Nico Douga'], { | |
extract : function(ctx) { | |
var externalPlayerURL = 'http://ext.nicovideo.jp/thumb_' + ctx.pathname.slice(1) + '?thumb_mode=swf&ap=1&c=1'; | |
var video_id = ctx.pathname.extract(/watch\/(sm\d+)/); | |
return request('http://ext.nicovideo.jp/api/getthumbinfo/' + video_id).addCallback(function(res) { | |
var xml = res.responseXML; | |
var status = xml.getElementsByTagName('nicovideo_thumb_response')[0].getAttribute('status'); |
OlderNewer