How To Create a Dump File in Postgres Compatible with Heroku  
  
    When Heroku creates a dump file of your Postgres database it uses the `-Fc` option
It is equivalent to running 
	pg_dump -Fc -d name_of_db > name_of_db.dump
	
This command will let you import your database with the `pg_restore` command
	pg_rest...  
  
    
      Written by Sean Behan on 03/06/2017
    
  
 
  
    How To Export A MySQL Database to JSON, CSV and XML with Ruby and the ActiveRecord Gem  
  
    It's trivial to export data from a mysql database with Ruby and ActiveRecord. All you have to do is establish a connection and define a class that represents the table. 
	require 'rubygems'
	require 'active_record'
	ActiveRecord::Base.establish_con...  
  
    
      Written by Sean Behan on 06/23/2012
    
  
 
  
    How to Import/Export Your Wordpress Blogroll... er, Your Links  
  
    It's not immediately apparent how to import/export the links in your Wordpress blogroll. One would expect that the import/export tool, used to backup/restore Wordpress posts and pages would handle this functionality as well. But the import/export tool has...  
  
    
      Written by Sean Behan on 06/17/2012