View Jinja-static-site.py
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Jinja2 static site renderer using Flask | |
@author Tarun Bhardwaj | |
@license FreeBSD Licence | |
""" | |
from flask import Flask, abort, render_template | |
from jinja2 import TemplateNotFound |
View change_db_owner.sh
#!/bin/bash | |
usage() | |
{ | |
cat << EOF | |
usage: $0 options | |
This script set ownership for all table, sequence and views for a given database | |
Credit: Based on http://stackoverflow.com/a/2686185/305019 by Alex Soto |