Skip to content

Instantly share code, notes, and snippets.

View zyegfryed's full-sized avatar

Sébastien Fievet zyegfryed

View GitHub Profile
@zyegfryed
zyegfryed / graphite-api.conf.py
Last active August 29, 2015 13:57
Graphite API init script
bind = "0.0.0.0:2005"
workers = 4
user = "carbon"
group = "carbon"

Keybase proof

I hereby claim:

  • I am zyegfryed on github.
  • I am zyegfryed (https://keybase.io/zyegfryed) on keybase.
  • I have a public key whose fingerprint is CB7D F78F 241E EC07 3006 43B3 1CA6 8A36 B419 64A5

To claim this, I am signing this object:

@zyegfryed
zyegfryed / gist:814432
Created February 7, 2011 14:25
Tastypie OAuth
from oauth2 import Error
from django.utils.translation import ugettext as _
from tastypie.authentication import Authentication
from oauth_provider.utils import initialize_server_request, send_oauth_error, get_oauth_request
from oauth_provider.consts import OAUTH_PARAMETERS_NAMES
from oauth_provider.store import store, InvalidTokenError
@zyegfryed
zyegfryed / check_for_updates.py
Created April 19, 2011 13:11 — forked from coordt/check_for_updates.py
Check locally installed packages against one or more package indexes for updates and list them. Using subprocess instead of stdout (wasn't working on my MacPython 2.6.1)
#!/usr/bin/env python
"""
Use pip to get a list of local packages to check against one or more package
indexes for updated versions.
"""
import sys
import xmlrpclib
import subprocess
from distutils.version import StrictVersion, LooseVersion
@zyegfryed
zyegfryed / indexes.py
Created August 18, 2012 12:59
Configurable SearchIndex for Haystack
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
# Python 2.7 has an importlib with import_module; for older Pythons,
# Django's bundled copy provides it.
try: # pragma: no cover
from importlib import import_module # pragma: no cover
except ImportError: # pragma: no cover
from django.utils.importlib import import_module # pragma: no cover
@zyegfryed
zyegfryed / .env
Created August 18, 2012 15:56
Procfile and environment file that plays nice with Python and foreman
PORT=8000
VENV_HOME=/usr/local/venv/develop
PYTHONUNBUFFERED=true
@zyegfryed
zyegfryed / install.sh
Created August 24, 2012 09:24
pystatsd installation script
apt-get install python-pip
pip install pystatsd
cat > /etc/default/statsd <<EOF
STATSD_PORT=8125 # port to run on (default: 8125)
PCT=90 # stats pct threshold (default: 90)
GRAPHITE_HOST=localhost # host to connect to graphite on (default: localhost)
GRAPHITE_PORT=2003 # port to connect to graphite on (default: 2003)
USER=nobody # user to run statsd as
@zyegfryed
zyegfryed / initd_tuqtng
Created November 28, 2013 14:56
Couchbase Query Engine (tuqtng) init script
#!/bin/bash
#
# /etc/rc.d/init.d/tuqtng
#
# Start up the Couchbase Query Language service daemon
#
# chkconfig: 2345 20 80
#
# processname: tuqtng
# config: /etc/sysconfig/tuqtng
@zyegfryed
zyegfryed / pdf.py
Created April 13, 2011 21:00
Outputting PDFs with Django and FDFgen
# -*- coding: utf-8 -*-
import codecs
import subprocess
from fdfgen import forge_fdf
from django.template import Template, loader
from django.template.loader import find_template, LoaderOrigin
class PdfTemplateError(Exception):
@zyegfryed
zyegfryed / postmortem.md
Created June 19, 2020 15:35 — forked from mlafeldt/postmortem.md
Example Postmortem from SRE book, pp. 487-491

Shakespeare Sonnet++ Postmortem (incident #465)

Date

2015-10-21

Authors

  • jennifer
  • martym