Skip to content

Instantly share code, notes, and snippets.

@swiatczak
swiatczak / gist:a5f151098f7c8720d430e238ed0b8a5c
Created April 12, 2017 04:00 — forked from TerryMooreII/gist:3773572
Get Oracle DBMS_Output from Python's cx_Oracle library
import cx_Oracle
conn = cx_Oracle.Connection("userid/password@tns")
curs = conn.cursor()
curs.callproc("dbms_output.enable")
sqlCode = """
some long
sql code
with dbms_output
@swiatczak
swiatczak / indexDecolor.py
Created June 16, 2016 23:57 — forked from jfcamel/indexDecolor.py
a gimp plugin (python-fu)
# -*- coding: utf-8 -*-
from gimpfu import *
import os
import glob # unused
colorpalette = []
def decolorFiles(dirname, ext, suffix):