I hereby claim:
- I am eestrada on github.
- I am eestrada (https://keybase.io/eestrada) on keybase.
- I have a public key ASCTNsS-svtJ6qajCzUfiRVAcnbPfIt-EVZkH2AA6UH8Vgo
To claim this, I am signing this object:
| # Revert a commit and then check it out as a local change. | |
| # Useful if you want to revert only some of the changes from a commit. | |
| # The working directory and index should already be clean first. | |
| git config --global alias.revclean '!f() { git revert -n $@; git reset HEAD . ; git revert --abort; }; f()' | |
| # push all references to a given remote, then fetch all updates from all remotes. | |
| # This is useful if a remote has more than one push target (like an "all" remote), | |
| # since other remotes that are pushed to won't update their references otherwise. | |
| git config --global alias.pushfetch '!f() { git push "$1" --all; git fetch --all; }; f' |
| from __future__ import division, absolute_import, print_function | |
| # This is free and unencumbered software released into the public domain. | |
| # | |
| # Anyone is free to copy, modify, publish, use, compile, sell, or | |
| # distribute this software, either in source code form or as a compiled | |
| # binary, for any purpose, commercial or non-commercial, and by any | |
| # means. | |
| # | |
| # In jurisdictions that recognize copyright laws, the author or authors |
| # This is free and unencumbered software released into the public domain | |
| # using the wording of the Unlicense. Please refer to <http://unlicense.org/> | |
| from __future__ import division, absolute_import, print_function, unicode_literals | |
| """Use the stdlib module `difflib` to do fuzzy matching. | |
| This module also has mixin classes to make searching containers easier. | |
| It will also use LRU caching when available. |
| from string import whitespace | |
| atom_end = set('()"\'') | set(whitespace) | |
| def parse(sexp): | |
| stack, i, length = [[]], 0, len(sexp) | |
| while i < length: | |
| c = sexp[i] | |
| print c, stack |
| from __future__ import print_function | |
| import sys | |
| import imp | |
| def find_all(modname, paths=None): | |
| """Find all occurrences of a given module on a given list of paths. | |
| If no paths are given, sys.path is used. |
| #!/usr/bin/env python | |
| """How to do regular expressions in sqlite3 (using python).""" | |
| from __future__ import division, absolute_import, print_function, unicode_literals | |
| import re | |
| import sys | |
| import time | |
| import datetime | |
| import sqlite3 |
| # This is free and unencumbered software released into the public domain. | |
| # | |
| # Anyone is free to copy, modify, publish, use, compile, sell, or | |
| # distribute this software, either in source code form or as a compiled | |
| # binary, for any purpose, commercial or non-commercial, and by any | |
| # means. | |
| # | |
| # In jurisdictions that recognize copyright laws, the author or authors | |
| # of this software dedicate any and all copyright interest in the | |
| # software to the public domain. We make this dedication for the benefit |
| import string | |
| import sys | |
| import logging | |
| import json | |
| from flask import Flask | |
| from flask import Response, request | |
| logger = logging.getLogger(__name__) | |
| logger.info("Stackdriver webhook-sample starting up on %s" % (string.replace(sys.version, '\n', ' '))) |
I hereby claim:
To claim this, I am signing this object: