Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am r-richmond on github.
  • I am rrichmond (https://keybase.io/rrichmond) on keybase.
  • I have a public key ASB1Rc7TUBQ1jiooaDLlqAgqY3a3hhHJXLXH5MLXy2hJVgo

To claim this, I am signing this object:

@r-richmond
r-richmond / install.bash
Created July 21, 2017 23:49
Install script for wine-overwatch
#!/usr/bin bash
WINEPATH='/Applications/Wine/';
WINESOURCE='/Applications/Wine/wine-overwatch';
WINEINSTALL='/Applications/Wine/wine-install';
WINE32='/Applications/Wine/wine32-build';
WINE64='/Applications/Wine/wine64-build';
# remove
@r-richmond
r-richmond / main.py
Created January 31, 2017 18:28
Show pyodbc Data Sources
import pyodbc as po
def show_odbc_sources():
sources = po.dataSources()
dsns = sources.keys()
#dsns.sort()
sl = []
i = 0
for dsn in dsns: