Skip to content

Instantly share code, notes, and snippets.

View epicserve's full-sized avatar

Brent O'Connor epicserve

View GitHub Profile
@epicserve
epicserve / send_email.py
Created January 3, 2012 21:07
A little script to test sending email
#!/usr/bin/env python
from argparse import ArgumentParser
import smtplib
from email.mime.text import MIMEText
"""
Example Usage:
./send_email.py \
@epicserve
epicserve / checkpid_test.py
Created February 23, 2012 09:00
Pidcheck is a python decorator to check and see if a process with the same PID is still running.
#!/usr/bin/env python
from checkpid import pidcheck
from time import sleep
import logging
log = logging.getLogger("checkpid")
log.setLevel(logging.INFO)
log.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
#!/usr/bin/env python
import tempfile
import shutil
"""
Here is a test I created to recreate a problem I was having when I used
tempfile.NamedTemporaryFile(). The problem is that when I use tempfile my
data in my CSV is truncated off the end of the file.
# I downloaded the following:
- http://www.nginx.org/download/nginx-1.0.12.tar.gz
- https://github.com/agentzh/headers-more-nginx-module/tarball/v0.17rc1
sudo ./configure \
--prefix=/etc/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-client-body-temp-path=/var/lib/nginx/body \
@epicserve
epicserve / gist:2054901
Created March 17, 2012 04:18
Bash command to determine how much memory all gunicorn processes are taking
ps ax -o rss,cmd --sort -rss | grep gunicorn | awk '{ SUM += $1} END { printf "%.2f MB\n", SUM/1000 }'
@epicserve
epicserve / share_link_on_facebook_fan_page_test.py
Created March 17, 2012 22:21
Share a link on your Facebook fan page.
@epicserve
epicserve / mem_report.sh
Created April 26, 2012 22:55
A quick script for printing out memory usage of various services
CELERY=`ps -A -o pid,rss,command | grep celeryd | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'`
GUNICORN=`ps -A -o pid,rss,command | grep gunicorn | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'`
REDIS=`ps -A -o pid,rss,command | grep redis | grep -v grep | awk '{total+=$2}END{printf("%d", total)}'`
NGINX=`ps -A -o pid,rss,command | grep nginx | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'`
OTHER=`ps -A -o pid,rss,command | grep -v nginx | grep -v celeryd | grep -v gunicorn | grep -v redis | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'`
websites=`ps -A -o user,pid,rss,command | grep gunicorn | egrep -o "[a-z_]+\.py$" | sort | uniq | perl -wpe 's|\.py$||;' | xargs`
printf "%-10s %3s MB\n" "Celery:" $CELERY
printf "%-10s %3s MB\n" "Gunicorn:" $GUNICORN
printf "%-10s %3s MB\n" "Nginx:" $NGINX
printf "%-10s %3s KB\n" "Redis:" $REDIS
@epicserve
epicserve / how_to_bulk_change_git_origin_url.md
Created May 17, 2012 18:27
How to change your remote origin URL for all your Git repositories

How to change your remote origin URL for all your Git repositories

  1. First cd to the directory where all of your sites are located

     $ cd /srv/sites
    
  2. Change all previous urls from url = [email protected]:foo.git to url = [email protected]:foo.git

     $ cwd=`pwd`; for d in *; do if [[ -e "$cwd/$d/.git/config" ]]; then echo "$cwd/$d/.git/config" | xargs perl -i.bak -wpe 's|(url = git\@old-server(\.example\.com)?):([-_a-z]+)\.git|url = git\@new-server.example.com:$3.git|g'; fi; done
    
@epicserve
epicserve / get_video_thumbnails.py
Created June 7, 2012 18:08
This snippet uses the video ID from either Vimeo or YouTube to download the highest quality video still available.
#!/usr/bin/env python
import requests
import urllib2
def download_sill_to_disk(url, target_path):
import shutil
req = urllib2.urlopen(url)
with open(target_path, 'wb') as fp:
@epicserve
epicserve / steps_taken_to_fix_python_after_installing_osx_10.8.md
Created July 26, 2012 04:29
How to fix your python virtualenvs after installing OS X 10.8 Mountian Lion

Ran the following so virtualenvwrapper worked again:

$ sudo curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python
$ sudo pip install virtualenvwrapper

After I tried using django-admin.py runserver in a virtualenv I got the following error.

IOError: [Errno 2] No such file or directory: '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/__init__.py'

Running the following fixed that error: