This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- postgres snippets | |
-- show databases owned by a specific user | |
psql -d postgres -c "SELECT datname FROM pg_database JOIN pg_authid ON pg_database.datdba = pg_authid.oid WHERE rolname = 'rolename'" | |
-- see all active sessions | |
SELECT * FROM pg_stat_activity; | |
-- kill sessions | |
SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = 'dbname' AND pid <> pg_backend_pid(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# get external ip | |
wget -q -O - checkip.dyndns.org | sed -e 's/.*Current IP Address: //' -e 's/<.*$//' | |
# javafy regex | |
echo '/^\d{5}\\(?:[-\s]\d{4})?$/' | sed 's/\\/\\\\/g' | |
# loop to make dirs | |
for i in {1..5}; do mkdir unit$i; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# installs node into a python virtualenv | |
# dependencies: pip, virtualenv, virtualenvwrapper | |
# | |
# install dependencies: | |
# sudo easy_install pip | |
# sudo pip install virtualenv virtualenvwrapper | |
# | |
# Usage: mknodeenv myproject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Source this from .bash_profile | |
# | |
# TODO py-ify and ansible-fy this | |
# append source .mypystuff to .bash_profile | |
# | |
# Usage: mkpy projectname | |
function get_st3_prj_file() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# this file should be in your path before | |
# instantclient/sqlplus is picked up. | |
# make sure to chmod +x | |
source /path/to/your/env/settings/.bash_profile | |
/path/to/instantclient/sqlplus $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
VERSION=$(<VERSION) | |
echo "Current VERSION: ${VERSION}" | |
V_LIST=(`echo $VERSION | tr '.' ' '`) | |
V_MAJOR=${V_LIST[0]} | |
V_MINOR=${V_LIST[1]} | |
V_PATCH=${V_LIST[2]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from functools import wraps | |
from inspect import getargspec | |
import boto3 | |
AWS_REGION = os.getenv('AWS_REGION', 'us-east-1') | |
def get_client(name, client_type='client', region=None, *args, **kwargs): |
OlderNewer