rafaelmoreira.net programming notes

Notas de programação que não rendem um post completo para o blog, em português e em inglês.

Dica rápida: Remover um origin de um repositório git

Mais simples impossível

git remote rm origin

E voilá.

Restore SQL backup - DreamHost

mysql -u dbuser -p -h dbhost.yoursite.com dbname < /path/to/backup.sql

Restore a mysql backup in command line

Posted April 7, 2011

Como deixar uma linha vertical numa coluna arbitrária no TextMate

Use the "View -> Wrap Column -> Other..." menu option to set the right margin. Then, in the preferences dialog ("General" tab), tick the "Show Right Margin Indicator" option

Simples!

undo scaffolding in rails - Stack Overflow

How to undo scaffold in Rails

You usually do scaffolding using

rails g scaffold SomeName

similarly

you can destroy/undo it using ( it probably will delete all the files created by "generate")

rails undo scaffold SomeName