User Anders B - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T09:04:04Z http://stackoverflow.com/feeds/user/41324 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1484871/extending-activerecordbase-in-rails-does-not-work-in-the-test-environment/1673291#1673291 0 Answer by Anders B for Extending ActiveRecord::Base in Rails does not work in the test environment Anders B 2009-11-04T11:43:49Z 2009-11-04T11:43:49Z <p>This works for me.</p> <pre><code>module ModelExtensions def human_name_for(attr_hash) # do something end end </code></pre> <p>In environment.rb</p> <pre><code>include ModelExtensions ActiveRecord.extend(ModelExtensions) </code></pre> <p>Then this works ArObject.human_name _for(:asd)</p> http://stackoverflow.com/questions/1512129/implicit-conversion-of-object-to-xml-in-flex-3/1666458#1666458 0 Answer by Anders B for implicit conversion of Object to XML in flex 3 Anders B 2009-11-03T10:22:27Z 2009-11-03T10:22:27Z <p>How to convert as3 objects to xml</p> <p><a href="http://blog.flexexamples.com/2008/03/04/converting-objects-to-xml-packets-using-the-simplexmlencoder-class-in-flex/" rel="nofollow">http://blog.flexexamples.com/2008/03/04/converting-objects-to-xml-packets-using-the-simplexmlencoder-class-in-flex/</a></p> http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/492289#492289 -1 Answer by Anders B for Problem using SQLite :memory: with NHibernate Anders B 2009-01-29T16:13:45Z 2009-01-29T16:13:45Z <p>I hade alot off problems with SQLite memory database. So now we are using SQLite working with files on a ramdrive disk.</p> http://stackoverflow.com/questions/29751/problems-while-submitting-a-utf-8-form-textarea-with-jquery-ajax/323518#323518 0 Answer by Anders B for Problems while submitting a UTF-8 form textarea with JQuery/AJAX Anders B 2008-11-27T11:29:55Z 2008-11-27T11:29:55Z <p>I hade the same problem and fixed it with downgrading to mysql-connector-odbc-3.51.16.</p>