Skip to content

Instantly share code, notes, and snippets.

View leandrotoledo's full-sized avatar

Leandro Toledo leandrotoledo

  • Google
  • Reston, VA
View GitHub Profile
@leandrotoledo
leandrotoledo / css-issue-steam
Created February 15, 2013 01:47
CS:S - Black screen with Intel driver issue
Processor Information:
Vendor: GenuineIntel
Speed: 2534 Mhz
4 logical processors
2 physical processors
HyperThreading: Supported
FCMOV: Supported
SSE2: Supported
SSE3: Supported
SSSE3: Supported
@leandrotoledo
leandrotoledo / gist:3019746
Created June 29, 2012 18:13
MDB to PostgreSQL with mdb-tools example
#!/bin/sh
mdb-schema Acadesc.mdb postgres | sed 's/Char/Varchar/g' | sed 's/Postgres_Unknown 0x0c/text/g' | psql -h localhost -U postgres -w -d acadesc > /dev/null 2>&1
tables=$(echo -en $(mdb-schema Acadesc.mdb postgres | grep "CREATE TABLE" | awk '{ print $3 }' | sed -e 's/"//g');)
for i in $tables
do
mdb-export -I postgres Acadesc.mdb $i | psql -h localhost -U postgres -w -d acadesc > /dev/null 2>&1
done