Skip to content

Instantly share code, notes, and snippets.

View bretweinraub's full-sized avatar

Bret Weinraub bretweinraub

View GitHub Profile
cat test/fixtures/hospitals.yml
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
one:
id: 1
name: E.O.Ü. T.F.
two:
id: 2
bweinraub@localhost:~/dev/aura.git/alexion(alexion)-> rake db:fixtures:load FIXTURES=hospitals
(in /home/bweinraub/dev/aura.git/alexion)
postgres@localhost:~()-> psql -l
List of databases
Name | Owner | Encoding | Collation | Ctype | Access privileges
----------------------------+-----------+-----------+-----------+-------+-----------------------
adb_development | postgres | SQL_ASCII | C | C |
alexion_development | postgres | UTF8 | C | C |
alexion_test | bweinraub | UTF8 | C | C |
aura_dashboard_development | postgres | SQL_ASCII | C | C |
aura_dashboard_test | bweinraub | UTF8 | C | C |
aura_site_development | postgres | SQL_ASCII | C | C |
Hospital.create(:name => "E.O.Ü. T.F.")
ActiveRecord::StatementInvalid: PGError: ERROR: invalid byte sequence for encoding "UTF8": 0xdc2e
HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding".
@bretweinraub
bretweinraub / gist:913593
Created April 11, 2011 14:19
better rvm use
rvmuse () {
if [ -d ~/.rvm/gems ]; then
rvmdir=~/.rvm/gems
else
if [ -d /usr/local/rvm/gems ]; then
rvmdir=/usr/local/rvm/gems
else
echo "RVM installed?"
return
fi
NameVirtualHost *:80
<VirtualHost *:80>
ServerName espace-allemand.ch
ServerAlias *.espace-allemand.ch
ServerAdmin www-admin@espace-allemand.ch
DocumentRoot /var/www/espace-allemand/production
DirectoryIndex index.html
<Directory /var/www/espace-allemand/production >
AllowOverride All
Order Deny,Allow