I hereby claim:
- I am karanlyons on github.
- I am karanlyons (https://keybase.io/karanlyons) on keybase.
- I have a public key whose fingerprint is 58E3 3A33 462A 60BC AB6E 8E86 69B3 9688 5CB5 219B
To claim this, I am signing this object:
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
try: | |
from sys import _getframe | |
except ImportError: | |
import sys | |
try: |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import copy | |
class _DuctView(object): | |
""" | |
*Almost* like `DictView`, but worse. | |
""" |
#!/usr/bin/env python | |
# encoding: utf-8 | |
# $ brew install libev | |
# $ pip install http://gevent.googlecode.com/files/gevent-1.0b2.tar.gz | |
# $ chmod +x ./gevent_fib.py | |
# $ ./gevent_fib.py | |
import time |
[ | |
{ | |
"music": [ | |
{ | |
"artist": "Dinah Washington", | |
"song": "Destination Moon", | |
"time": "00:05:40.49" | |
}, | |
{ | |
"artist": "Frank Sinatra", |
#!/usr/bin/env python2.7 | |
# -*- coding: utf-8 -*- | |
from decimal import Decimal | |
from difflib import get_close_matches | |
class Thesaurus(dict): | |
''' | |
For when a dictionary is too boring. |
# -*- coding: utf-8 -*- | |
from __future__ import division, absolute_import, print_function, unicode_literals | |
import operator | |
from django.contrib.admin.util import lookup_needs_distinct | |
from django.contrib import admin | |
from django.db.models import Q |
var slice_re = new RegExp(/^(.*?)\[(-?\d*?)(:?)(-?\d*?)(:?)(-?\d*?)\]$/); | |
function xpath(path, objects) { | |
var selectors, selector, is_array_selector, array_components, array_components_length, array_rules, j, i, is_regex_selector, tail_path, objects_length, heap, object, matches, key, matches_length, match, array_start, array_end, array_interval, _, k; | |
if (!Array.isArray(objects)) { | |
objects = [objects]; | |
} | |
selectors = path.split('.'); |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python2.7 | |
# -*- coding: utf-8 -*- | |
from __future__ import division, absolute_import, print_function, unicode_literals | |
import inspect | |
from collections import OrderedDict | |
class PartialManager(type): |
UPDATE <TABLE> SET | |
<COLUMN>=<RANGE_TYPE>( | |
lower(<COLUMN>), -- Swap out for actual value | |
upper(<COLUMN>), -- Swap out for actual value | |
concat( | |
CASE WHEN lower_inc(<COLUMN>) THEN '[' ELSE '(' END, | |
CASE WHEN upper_inc(<COLUMN>) THEN ']' ELSE ')' END | |
) | |
) | |
WHERE <CONDITION>; |