I hereby claim:
- I am westurner on github.
- I am westurner (https://keybase.io/westurner) on keybase.
- I have a public key ASAy7kaQRXpchVfKf1DVN9rRrRQCVYJ_EnHxEyvj1b5fmwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
There are a number of specs that may be useful for your project and many others:
W3C Credentials CG: https://w3c-ccg.github.io
Schema.org (JSONLD, RDFa, )
#!/usr/bin/env python | |
""" | |
Something like this as e.g site.discover | |
(for use as ``python -m site.discover``) | |
could be helpful for explaining and diagnosing multiple pythons and pips | |
""" | |
import os | |
import re | |
try: |
def search_operators(str_): | |
matches = [] | |
for thing in [[x, getattr(int, x).__doc__] for x in dir(int) if x.startswith('__')]: | |
print((">>>>", (thing[0], thing[1]))) | |
if thing[1] is not None and "<==>" in thing[1]: | |
print(('<==>', thing[1].split(" <==> ")[::-1])) | |
if str_ in thing[1]: | |
matches.append(thing) | |
print('') |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from __future__ import print_function | |
""" | |
parse_inputrc -- parse a readline .inputrc file | |
.. note:: This probably only handles a subset of ``.inputrc`` syntax. | |
""" |
Verifying that +westurner is my blockchain ID. https://onename.com/westurner |
#!/usr/bin/env python | |
from __future__ import print_function | |
import logging | |
### | |
def addLevelName__TRACE(): | |
logging.addLevelName(8, 'TRACE') | |
### |
#!/usr/bin/env python | |
""" | |
ordereddefaultdict.OrderedDefaultDict | |
.. code:: bash | |
$ python ./ordereddefaultdict.py -t | |
$ nosetests ./ordereddefaultdict.py | |
$ py.test ./ordereddefaultdict.py |
# :*_markdown_github[__html] | |
# :*_markdown_commonmark[__html] | |
# Markdown[HTML] > MarkdownGithub[HTML] | |
# Markdown[HTML] > MarkdownCommonmark[HTML] | |
rdfx:Markdown a rdfs:Datatype ; | |
. | |
rdfx:MarkdownGithub a rdfs:Datatype ; |