Skip to content

Instantly share code, notes, and snippets.

@ctrl-shift
ctrl-shift / gist:5618320
Created May 21, 2013 08:27
postgres terminate all connections to db
select pg_terminate_backend(pid)
from pg_stat_activity
where datname = 'db name'
@superbrothers
superbrothers / ansi-color.php
Created August 23, 2012 01:49
ANSI color terminal output module for php
<?php
/**
* php-ansi-color
*
* Original
* https://github.com/loopj/commonjs-ansi-color
*
* @code
* <?php
* require_once "ansi-color.php";