This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%= f.select :state, [ ["Acre", "AC"], | |
| ["Alagoas", "AL"], | |
| ["Amapá", "AP"], | |
| ["Amazonas", "AM"], | |
| ["Bahia", "BA"], | |
| ["Ceará", "CE"], | |
| ["Distrito Federal", "DF"], | |
| ["Espírito Santo", "ES"], | |
| ["Goiás", "GO"], | |
| ["Maranhão", "MA"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vacuumdb --full --analyze --username postgres --dbname [DBNAME] --host [HOSTNAME] | |
| pg_dump [DBNAME] -Ft -v -U postgres -f tmp/[DBNAME].tar --host [HOSTNAME] | |
| dropdb [DBNAME] --username postgres --host [HOSTNAME] | |
| createdb --encoding UTF8 [DBNAME] --username postgres --host [HOSTNAME] --template template0 | |
| pg_restore tmp/[DBNAME].tar | psql --dbname [DBNAME] --username postgres --host [HOSTNAME] | |
| vacuumdb --full --analyze --username postgres --dbname [DBNAME] --host [HOSTNAME] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| [ -z "$PS1" ] && return | |
| # don't put duplicate lines in the history. See bash(1) for more options | |
| export HISTCONTROL=ignoredups | |
| # ... and ignore same sucessive entries. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "socket" | |
| local_ip = UDPSocket.open {|s| s.connect("64.233.187.99", 1); s.addr.last} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body{padding:0;margin:0;font:13px Arial,Helvetica,Garuda,sans-serif;*font-size:small;*font:x-small;} | |
| h1,h2,h3,h4,h5,h6,ul,li,em,strong,pre,code{padding:0;margin:0;line-height:1em;font-size:100%;font-weight:normal;font-style: normal;} | |
| table{font-size:inherit;font:100%;} | |
| ul{list-style:none;} | |
| img{border:0;} | |
| p{margin:1em 0;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem list | cut -d" " -f1 | xargs gem uninstall -aIx |
NewerOlder