gem 'tire'ENV['ELASTICSEARCH_URL'] = ENV['BONSAI_URL']| #!/usr/bin/env ruby | |
| # jazzfonica.rb for Mac OS X | |
| # Scans the visible networks for JAZZTEL_XXXX or WLAN_XXXX and calculates the password | |
| # Ported from PHP example at http://kz.ath.cx/wlan/codigo.txt | |
| # Download and execute with ruby (e.g. ruby jazzfonica.rb) from a Terminal | |
| require 'digest/md5' | |
| messages = [] | |
| unless !File.exists?('/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/airport') |
| #!/usr/bin/env ruby | |
| # jazzfonica.rb for Mac OS X | |
| # Scans the visible networks for JAZZTEL_XXXX or WLAN_XXXX and calculates the password | |
| # Ported from PHP example at http://kz.ath.cx/wlan/codigo.txt | |
| # Download and execute with ruby (e.g. ruby jazzfonica.rb) from a Terminal | |
| #ported to ubuntu from https://gist.github.com/1024587 | |
| #it will ask for sudo privileges. | |
| #if your wlan card is not "wlan0" change the "my_wifi_card" variable |
| Get the Heroku db as detailed here: | |
| http://devcenter.heroku.com/articles/pgbackups#exporting_via_a_backup | |
| 1. heroku pgbackups:capture | |
| 2. heroku pgbackups:url <backup_num> #=>backup_url | |
| - get backup_num with cmd "heroku pgbackups" | |
| 3. curl -o latest.dump <backup_url> | |
| Then locally do: | |
| $ pg_restore --verbose --clean --no-acl --no-owner -h localhost -U myuser -d mydb latest.dump |
sudo apt-get install vim tmux git curl| AF | Afghanistan | |
|---|---|---|
| AX | Åland Islands | |
| AL | Albania | |
| DZ | Algeria | |
| AS | American Samoa | |
| AD | Andorra | |
| AO | Angola | |
| AI | Anguilla | |
| AQ | Antarctica | |
| AG | Antigua and Barbuda |
| #!/usr/bin/env ruby | |
| # | |
| # This script migrates your Heroku app from a Shared DB to a Postgres `dev` Plan | |
| # | |
| # Usage: | |
| # ruby migrate.rb [app_name] | |
| # | |
| def usage | |
| puts "migrate.rb [app_name]" |
| sudo su postgres | |
| psql | |
| update pg_database set datistemplate=false where datname='template1'; | |
| drop database Template1; | |
| create database template1 with owner=postgres encoding='UTF-8' | |
| lc_collate='en_US.utf8' lc_ctype='en_US.utf8' template template0; | |
| update pg_database set datistemplate=true where datname='template1'; |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
belongs_to association does not automatically save the object. It does not save the associated object either.has_one association, that object is automatically saved (in order to update its foreign key).has_one association) is unsaved (that is, new_record? returns true) then the child objects are not saved. They will automatically when the parent object is saved.