View attr_np_mp.py
import attr | |
import numpy as np | |
import attr._make | |
original_make_cmp = attr._make._make_cmp |
View gist:8707177
Compiling with clang++ with the same options as cindex uses | |
❯ clang++ -v -std=c++11 -I. -c build/sodium_sodium.cpp-sodium_sodium.h.cpp | |
clang version 3.4 (tags/RELEASE_34/final) | |
Target: x86_64-unknown-linux-gnu | |
Thread model: posix | |
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-unknown-linux-gnu/4.8.2 | |
Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-unknown-linux-gnu/4.8.2 | |
Found candidate GCC installation: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.2 | |
Found candidate GCC installation: /usr/lib64/gcc/x86_64-unknown-linux-gnu/4.8.2 |
View build.log
(xdress)~/S/xdress git:clang ❯❯❯ python setup.py build ⬆ ✱ | |
XXXXXXX XXXXXXXDDDDDDDDDDDDD | |
X:::::X X:::::XD::::::::::::DDD | |
X:::::X X:::::XD:::::::::::::::DD | |
X::::::X X::::::XDDD:::::DDDDD:::::D | |
XXX:::::X X:::::XXX D:::::D D:::::D | |
X:::::X X:::::X D:::::D D:::::D | |
X:::::X:::::X D:::::D D:::::D | |
X:::::::::X D:::::D D:::::D |
View log.txt
(xdress)~/S/xdress git:clang ❯❯❯ python setup.py build ⬆ | |
XXXXXXX XXXXXXXDDDDDDDDDDDDD | |
X:::::X X:::::XD::::::::::::DDD | |
X:::::X X:::::XD:::::::::::::::DD | |
X::::::X X::::::XDDD:::::DDDDD:::::D | |
XXX:::::X X:::::XXX D:::::D D:::::D | |
X:::::X X:::::X D:::::D D:::::D | |
X:::::X:::::X D:::::D D:::::D | |
X:::::::::X D:::::D D:::::D |
View build-3.3.log
(xdress)~/S/xdress git:clang ❯❯❯ unset CPPFLAGS | |
(xdress)~/S/xdress git:clang ❯❯❯ unset LD_LIBRARY_PATH | |
(xdress)~/S/xdress git:clang ❯❯❯ python setup.py build | |
XXXXXXX XXXXXXXDDDDDDDDDDDDD | |
X:::::X X:::::XD::::::::::::DDD | |
X:::::X X:::::XD:::::::::::::::DD | |
X::::::X X::::::XDDD:::::DDDDD:::::D | |
XXX:::::X X:::::XXX D:::::D D:::::D | |
X:::::X X:::::X D:::::D D:::::D |
View funcparserlib_vcf.py
import sys | |
import os | |
import re | |
import logging | |
import collections | |
import pprint | |
from funcparserlib.lexer import make_tokenizer, Spec | |
from funcparserlib.parser import (maybe, many, eof, skip, fwd, name_parser_vars, SyntaxError) | |
from funcparserlib.contrib.common import const, n, op, op_, sometok |
View vcf.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View foo.html
<html> | |
<body> | |
<h1>hi</h1> | |
</body> | |
</html> |
View example.py
import tornado.ioloop | |
import tornado.web | |
import tornado.escape | |
import tornado.options | |
import tornado.httputil | |
import jinja2 | |
import pyjade.compiler | |
import coffeescript | |
import markdown |
View backbonehandler.py
""" | |
Backbone.js handler and mongodb based handler for Tornado. | |
`BackboneHandler` handles the sync protocol for Backbone.js. Inherit | |
from the class and implement the model methods: | |
* create_model | |
* update_model | |
* get_model | |
* delete_model | |
* get_collection |
NewerOlder