Skip to content

Instantly share code, notes, and snippets.

@javasboy
javasboy / db.py
Last active August 29, 2015 14:07
#!/usr/ali/bin/python
# coding=utf-8
'''Implements a simple database interface
Example 0: Create connection:
# Set auto commit to false
db = DB(False, host = 'x', user = 'x', passwd = 'x', db = 'x')
@javasboy
javasboy / decrypt
Created April 17, 2014 08:03 — forked from fser/decrypt
#!/bin/bash
openssl aes-256-cbc -d -a -in $1 -out $1.clear
echo "clear file is in $1.clear"