Skip to content

Instantly share code, notes, and snippets.

View tkremmel's full-sized avatar

Thomas Kremmel tkremmel

View GitHub Profile
mike@rbci:~$ psql -U postgres
psql (9.0.3)
Type "help" for help.
postgres=# update pg_database set datallowconn = TRUE where datname = 'template0';
UPDATE 1
postgres=# \c template0
You are now connected to database "template0".
template0=# update pg_database set datistemplate = FALSE where datname = 'template1';
UPDATE 1
@tkremmel
tkremmel / gist:aa29478c0a487fac4970
Created July 30, 2014 08:54
Python: Inspect POST request using ipdb
import ipdb
ipdb.set_trace()
from requests import Request, Session
s = Session()
req = Request('POST', url,
data=data
)
prepped = req.prepare()
s.send(prepped)
@tkremmel
tkremmel / gist:237b183a30f0f399de67
Last active August 29, 2015 14:06
simpleloop - Dockerfile to build web host container images
############################################################
# Dockerfile to build web host container images
# Based on Ubuntu, Django, uwsgi, and Nginx
############################################################
# Set the base image to Ubuntu
FROM ubuntu:14.04
# File Author / Maintainer
MAINTAINER TK - simpleloop
@tkremmel
tkremmel / es_snapshot_restore
Last active December 2, 2015 13:24
elasticsearch snapshot and restore
# create a snapshot repository
curl -XPUT 'localhost:9200/_snapshot/my_snapshot' -d '
{
"type": "fs",
"settings": {
"location": "/var/data/elasticsearch/snapshots",
"compress": "true"
}
}'