Evan Grantham-Brown

Results 5 comments of Evan Grantham-Brown

Does anyone understand what is causing this issue exactly? I have an application that needs to connect to both an Oracle database and a PostGres database, and I keep running...

E-mailing it, since the output was about 4K lines. My system is a Vagrant VM running CentOS (on a Windows host, if it matters). Thanks!

My solution: 1. Add 'gem ethon' to your Gemfile. (If you don't do this, you will get 'uninitialized constant Ethon' in step 3.) 2. Add the following to config/environments/production.rb: `config.log_level...

(Note that in all other ways this component appears to work quite well. Thanks for creating it!)

Check out mwxml, a library designed for this specific task (parsing Wikipedia XML dumps): ``` import mwxml file_location = "/path/to/wikipedia/dump.xml" dump = mwxml.Dump.from_file(open(file_location)) for page in dump: for revision in...