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
require 'formula' | |
class Libstemmer < Formula | |
# upstream is constantly changing the tarball, | |
# so doing checksum verification here would require | |
# constant, rapid updates to this formula. | |
head 'http://snowball.tartarus.org/dist/libstemmer_c.tgz' | |
homepage 'http://snowball.tartarus.org/' | |
end |
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
// ==UserScript== | |
// @name Feedly Tweak - Open feed item in background by pressing 'v' | |
// @namespace http://micbase.com/feedly-tweak-open-item-background-tab-firefox | |
// @description Feedly Tweak - Open feed item in background by pressing 'v' | |
// @include http*://feedly.com/* | |
// @grant GM_openInTab | |
// ==/UserScript== | |
var x; | |
var link; |