Skip to content

Instantly share code, notes, and snippets.

View wrunk's full-sized avatar

Warren Runk wrunk

View GitHub Profile
def my_thread_func(comment_id):
# form url based on comment id so http://www.evite.com/services/<comment_id>/whatever
# send request
# check result, log error
from multiprocessing.pool import ThreadPool as Pool
def main():
# Read file into a list of IDs
list_of_ids = [read from file]
@wrunk
wrunk / curl_json_post.sh
Created December 12, 2012 17:47
curl: POST a json body to a server
# POST a json body.
curl -v -H "Content-Type: application/json" -X POST \
-d '{"action": "Say Hello"}' \
http://example.com/say/hello
@wrunk
wrunk / wsgi_proxy.py
Created December 10, 2012 21:30
Python WSGI Proxy
# A simple example of using the simple wsgiproxy as a nudge fallback app.
# We used this to proxy unfinished requests from appengine, back to our
# ec2 app
from nudge.publisher import ServicePublisher
from wsgiproxy.app import WSGIProxyApp
PROTO = 'http'
FALLBACK_HOST = 'example.com'
@wrunk
wrunk / shellpers.sh
Last active February 10, 2018 02:38
Shellpers
# Prepend something to the beginning of each line
cat .gitignore| while read line; do echo "[ERROR] $line"; done > somefile.txt
# Delete all the GD pyc files starting in this dir
find . -name '*.pyc' -exec rm -f {} \;
#
# ** Below are some SHELLpers to deal with removing crap from a go vendor dir
# NOTE cgo stuff might not like this process ^_^
@wrunk
wrunk / py_re.py
Created December 3, 2012 22:11
Python regular expressions cheatsheet
import re
# ---------------------------------------------------------------------------- #
# Regex sting substitution
#
# As a first example, lets say we have a jinja2 template that needs
# a particular section(s) replaced
LEFT_NAV = re.compile(r'{{\s*left_nav\s*}}')
@wrunk
wrunk / simple_iter_class.py
Created October 2, 2012 22:19
Simple python iterator class
class TestIter(object):
def __init__(self):
self.i = 0
self.l = [1,2,3,4]
def __iter__(self):
return self
@wrunk
wrunk / lru_cache.py
Created June 20, 2012 06:04
Python dumbed down lru cache class
import logging
'''
THIS IS A WORK IN PROGRESS. Do not use unless you fully understand this
code, and can make needed modifications.
'''
class LRUCache(object):
''' Dumb/fake least recently used cache to just run in memory.
'''
@wrunk
wrunk / python_yaml_example.py
Created June 19, 2012 00:02
Quick python example of using yaml
'''
This is a quick reference example to get you started with yaml. Please review this,
but spend the time to fully read the wikipedia page on yaml:
http://en.wikipedia.org/wiki/Yaml
Note that the magic quote-less yaml parsing will still always strip values.
To avoid this you need to use quotes. Quotes can also force types to string type,
and are always valid (meaning omitting quotes is for convenience not necessity).
'''
@wrunk
wrunk / print_call_stack.py
Created April 11, 2012 22:49
Printing a python call stack independent of an exception
import traceback
for line in traceback.format_stack():
print line.strip()
@wrunk
wrunk / sha224_digest.py
Last active October 1, 2015 06:08
Quick python sha224 digest example
#!/usr/bin/env python
'''
Example of a way you could hash a password with a salt.
Pass the password as the first and only parameter.
WARNING this is just an example. NEVER put a real password in the clear
on the command line like this.
'''