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/env ruby | |
links = [] | |
lineLen = 24 | |
spaces = lineLen - 3 | |
while line = gets | |
ex = /\[(.*?)\]\[\]/ | |
line.scan(ex).each do |m| | |
links << m[0] |
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 last.fm Mutual Friends | |
// @namespace http://z3c.info/ | |
// @description Shows mutual friends when visiting a user's profile | |
// @include http://www.last.fm/user/* | |
// @include http://www.lastfm.*/user/* | |
// @exclude http://www.last.fm/user/*/* | |
// @exclude http://www.lastfm.*/user/*/* | |
// ==/UserScript== | |
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 last.fm One-click paste Taste-O-Meter | |
// @namespace http://z3c.info/ | |
// @description Inserts results of Teste-O-Meter between you and the last user who replied on the same topic | |
// @include http://www.last.fm/group/*/forum/* | |
// @include http://www.lastfm.*/group/*/forum/* | |
// ==/UserScript== | |
// | |
// As the code below demonstrates I love chaining function calls :) |
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 Gmail Bottom Posting v3 | |
// @namespace http://z3c.info/ | |
// @description Inserts the caret _after_ the quoted text when replying to emails using Gmail. Please view source for full credits. | |
// @include https://mail.google.tld/mail/* | |
// @include http://mail.google.tld/mail/* | |
// @include https://mail.google.tld/a/* | |
// @include http://mail.google.tld/a/* | |
// ==/UserScript== | |
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 twitter Easy block | |
// @namespace http://z3c.info/ | |
// @description Adds the block button on user's profile page | |
// @include http://twitter.com/* | |
// @exclude http://twitter.com/*/* | |
// ==/UserScript== | |
$ = unsafeWindow.jQuery; | |
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 last.fm Numeric Compatibility | |
// @namespace http://z3c.info/ | |
// @description Displays the numeric compatibility with a user | |
// @include http://www.last.fm/user/* | |
// @include http://www.lastfm*/user/* | |
// @exclude http://www.last.fm/user/*/* | |
// @exclude http://www.lastfm*/user/*/* | |
// ==/UserScript== | |
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 last.fm About Me Preview | |
// @namespace http://z3c.info/ | |
// @description Displays the Preview button when editing "About You" section in user settings | |
// @include http://www.last.fm/settings | |
// @include http://www.lastfm*/settings | |
// ==/UserScript== | |
$ = unsafeWindow.$; | |
$$ = unsafeWindow.$$; |
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 twitter Search v2 | |
// @namespace http://z3c.info/ | |
// @description Adds a search field to the Twitter interface | |
// @include http://twitter.com/home | |
// ==/UserScript== | |
// Twitter Search script | |
// version 0.3 | |
// 2009-01-31 |
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 questionablecontent.net RSS text | |
// @namespace http://z3c.info/ | |
// @description Displays text from RSS feed below the comic | |
// @include http://www.questionablecontent.net/ | |
// @include http://www.questionablecontent.net/index.php | |
// @include http://www.questionablecontent.net/view.php?comic=* | |
// @include http://questionablecontent.net/ | |
// @include http://questionablecontent.net/index.php | |
// @include http://questionablecontent.net/view.php?comic=* |
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 twitter Komplimenti | |
// @namespace http://z3c.info/ | |
// @description Daje komplimente korisniku | |
// @include http://twitter.com/home | |
// ==/UserScript== | |
$ = unsafeWindow.jQuery; | |
var MessageProvider = new (function () { |
OlderNewer