Skip to content

Instantly share code, notes, and snippets.

View rcmachado's full-sized avatar

Rodrigo Machado rcmachado

View GitHub Profile
@rcmachado
rcmachado / main.py
Last active March 1, 2019 17:56 — forked from eduardocardoso/main.py
Generating a JWT token
from __future__ import absolute_import
#
# To run:
#
# $ pip install pyjwt
# $ python main.py
#
import jwt
@rcmachado
rcmachado / satchmo_requirements.txt
Created May 12, 2010 14:55 — forked from ingenieroariel/satchmo_requirements.txt
Requirements for Satchmo 0.9-dev
http://www.djangoproject.com/download/1.2-rc-1/tarball/
pycrypto
http://www.satchmoproject.com/snapshots/trml2pdf-1.2.tar.gz
django-registration
PyYAML
-e svn+http://django-app-plugins.googlecode.com/svn/trunk/#egg=django-app-plugins
-e hg+https://sorl-thumbnail.googlecode.com/hg/#egg=sorl-thumbnail
-e hg+http://bitbucket.org/bkroeze/django-threaded-multihost/#egg=django-threaded-multihost
-e hg+http://bitbucket.org/chris1610/satchmo/#egg=satchmo
-e hg+http://bitbucket.org/bkroeze/django-caching-app-plugins/#egg=django-caching-app-plugins
@rcmachado
rcmachado / nginx.conf
Created February 25, 2010 21:33 — forked from thewebfellas/nginx.conf
Thin configuration for nginx (with a little correction)
user nginx;
worker_processes 5;
error_log /var/log/nginx.error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}