I hereby claim:
- I am jhgg on github.
- I am jhgg (https://keybase.io/jhgg) on keybase.
- I have a public key whose fingerprint is 3E89 8988 DB3A 4A28 17C7 DA97 E8CF 5EA0 05DD 3BC2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
const registeredTypes = {}; | |
export default function register(type) { | |
invariant(!registeredTypes.hasOwnProperty(type.name), `Cannot register duplicate type of name ${type.name}`); | |
registeredTypes[type.name] = type; | |
} | |
export default function type(typeName) { | |
invariant(registeredTypes.hasOwnProperty(type.name), `Unknown Type ${type.name}`); | |
return registeredTypes[typeName]; |
<!-- To get image embeds showing up --> | |
<meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" /> | |
<!-- If available, provide image width & height --> | |
<meta property="og:image:width" content="640" /> | |
<meta property="og:image:height" content="480" /> |
[ | |
{ | |
"src": "http://24.media.tumblr.com/tumblr_m1lew907mE1qejbiro1_1280.jpg", | |
"width": 600, | |
"height": 476 | |
}, | |
{ | |
"src": "http://25.media.tumblr.com/Jjkybd3nSces6pgsQAXKUKjb_500.jpg", | |
"width": 500, | |
"height": 375 |
""" | |
raven_utils.flask_sentry | |
~~~~~~~~~~~~~~~~~~~ | |
:copyright: (c) 2010-2012 by the Sentry Team, see AUTHORS for more details. | |
:license: BSD, see LICENSE for more details. | |
""" | |
from __future__ import absolute_import |
""" | |
raven_utils.flask_sentry | |
~~~~~~~~~~~~~~~~~~~ | |
:copyright: (c) 2010-2012 by the Sentry Team, see AUTHORS for more details. | |
:license: BSD, see LICENSE for more details. | |
""" | |
from __future__ import absolute_import |
from gevent.monkey import patch_all | |
patch_all() | |
import itertools | |
from gevent.event import AsyncResult | |
from gevent import spawn | |
from redis import StrictRedis | |
from werkzeug.local import LocalProxy |
use std::time::Duration; | |
use discord_cassandra_cpp::{session_scope::Unbound, *}; | |
use tokio::{join, time::sleep}; | |
async fn create_unbound_session() -> Result<Session<Unbound>> { | |
let contact_points = "127.0.0.1"; | |
let mut cluster = Cluster::default(); | |
cluster.set_contact_points(contact_points)?; | |
cluster.set_load_balance_round_robin(); |