This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
Conventions for this fork:
- done
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
Conventions for this fork:
var ClientRouter = Backbone.Router.extend({ | |
routes: { | |
'404': 'notfound', | |
'500': 'error', | |
'auth': 'auth', | |
'authCallback?oauth_token=:oauth_token&oauth_verifier=:oauth_verifier': 'authCallback', | |
'': 'defaultRoute' | |
}, | |
defaultRoute: function() { |
var mongoose = require('mongoose'); | |
var Schema = mongoose.Schema; | |
var assert = require('assert') | |
console.log('\n==========='); | |
console.log(' mongoose version: %s', mongoose.version); | |
console.log('========\n\n'); | |
mongoose.connect('localhost', 'testing_1088'); | |
mongoose.connection.on('error', function () { |
// 1. Go to page https://www.linkedin.com/settings/email-frequency | |
// 2. You may need to login | |
// 3. Open JS console | |
// ([How to?](http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers)) | |
// 4. Copy the following code in and execute | |
// 5. No more emails | |
// | |
// Bookmarklet version: | |
// http://chengyin.github.io/linkedin-unsubscribed/ |
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
import requests | |
from sets import Set | |
_seed = 'http://apibunny.com/cells/taTKQ3Kn4KNnmwVI' | |
_base = 'http://apibunny.com/cells/' | |
visited = Set() | |
def processJson(json) : | |
cells = json.get('cells')[0] | |
<?php | |
use Guzzle\Http\Client; | |
use Guzzle\Http\Exception\BadResponseException; | |
use Illuminate\Console\Command; | |
use Illuminate\Foundation\Application; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Input\InputArgument; | |
class MazeCommand extends Command |
return function(request, next_middleware) | |
local response = next_middleware() | |
if (response.headers['content-type'] == 'application/json') then | |
local data = json.decode(response.body) | |
if (data.mazes) then | |
data['@context'] = 'http://www.hydra-cg.com/examples/maze' | |
data['id'] = data.mazes[1].id | |
data['@type'] = 'Maze' |
{ | |
"folders": | |
[ | |
{ | |
"path": "/path/to/my/app/", | |
"folder_exclude_patterns": [".meteor", "packages"] | |
} | |
] | |
} |