-
Whoops, I superglued the superglue container to my finger.
-
Proxmox on DigitalOcean
I thought I’d try to install Proxmox 4 on DigitalOcean. How I struck on that idea was very convoluted, and I don’t have a specific purpose for doing so, but if you want LXC containers instead of Docker or rkt, and you want a full set of web admin tools, this might not be a…
-
What is a ghost’s favorite numeric base? BOOlean!
-
Just a Tree
Trying some inline processing.js.
-
Make PostgreSQL default to UTF-8
From here : UPDATE pg_database SET datistemplate=FALSE WHERE datname=’template1′; DROP DATABASE template1; CREATE DATABASE template1 WITH owner=postgres template=template0 encoding=’UTF8′; UPDATE pg_database SET datistemplate=TRUE WHERE datname=’template1′;
-
Gardians of the Galaxy was great.
-
I placed an iPhone screen down on my Nexus 4. The Nexus got confused, took a picture, then rebooted to contemplate what had just happened.
-
-
Fastest route to Postgres and Python with psycopg2 on OSX.
Download Postgres.app from postgresapp.com. Unzip into /Applications, then run it. To get psycopg2 to then install do: PATH=$PATH:/Applications/Postgres.app/Contents//Versions/9.3/bin/ pip install psycopg2 Tada! Your done and without having had to use fink or brew.