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 Hacker News Steve Filter | |
// @description Filter "Hacker News" items about Steve Jobs | |
// @include http://news.ycombinator.com/* | |
// ==/UserScript== | |
(function(){ | |
var list = ['steve', 'jobs', 'job\'s']; | |
// get spans |
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
<?php | |
class Controller_Oauth extends Controller_App { | |
/** | |
* Models | |
* - Consumer (for keeping track of sites which have access to your oAuth provider) | |
* - Token (request token (type 0) or an access token, (type 1)) | |
* | |
*/ |
NewerOlder