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
| var interv = setInterval((function() { | |
| console.log('DING DING DING'); | |
| return arguments.callee; | |
| })(), 2000); |
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
| class MongoEncoder(json.JSONEncoder): | |
| def _iterencode(self, o, markers=None): | |
| if isinstance(o, ObjectId): | |
| return str(o) | |
| else: | |
| return json.JSONEncoder._iterencode(self, o, markers) | |
| def smart_json_response(data): | |
| data = json.dumps(data, cls = MongoEncoder, indent=4) | |
| return current_app.response_class(data, mimetype='application/json') |
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
| from geventwebsocket.handler import WebSocketHandler | |
| from gevent.pywsgi import WSGIServer | |
| from flask import Flask, request, render_template | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def index(): | |
| return render_template('index.html') |
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
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
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
| <!-- For iPhone 4 with high-resolution Retina display: --> | |
| <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png"> | |
| <!-- For first-generation iPad: --> | |
| <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png"> | |
| <!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: --> | |
| <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png"> |
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
| #!/bin/bash | |
| usage() | |
| { | |
| cat << EOF | |
| usage: $0 options | |
| This script set ownership for all table, sequence and views for a given database | |
| Credit: Based on http://stackoverflow.com/a/2686185/305019 by Alex Soto |
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
| package main | |
| import ( | |
| eventsource "github.com/antage/eventsource/http" | |
| redis "github.com/vmihailenco/redis" | |
| "log" | |
| "net/http" | |
| ) | |
| func haltOnErr(err error){ |
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
| # "stop, hammertime".rot13() // returns "fgbc, unzzregvzr" | |
| # "fgbc, unzzregvzr".rot13() // returns "stop, hammertime" | |
| String::rot13 = -> | |
| this.replace /[a-zA-Z]/g, (c) -> | |
| String.fromCharCode (if ((if c <= "Z" then 90 else 122)) >= (c = c.charCodeAt(0) + 13) then c else c - 26) |
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
| var zlib = require('zlib'); | |
| var redis = require('redis'); | |
| var redisClient = redis.createClient(); | |
| var crypto = require('crypto'); | |
| // Our custom caching write function | |
| function cached(body, lifetime, type) { | |
| var key = this.req.originalUrl; | |
| var res = this; | |
| var etag, len; |
OlderNewer