User Anders B - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T09:04:04Zhttp://stackoverflow.com/feeds/user/41324http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1484871/extending-activerecordbase-in-rails-does-not-work-in-the-test-environment/1673291#16732910Answer by Anders B for Extending ActiveRecord::Base in Rails does not work in the test environmentAnders B2009-11-04T11:43:49Z2009-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#16664580Answer by Anders B for implicit conversion of Object to XML in flex 3Anders B2009-11-03T10:22:27Z2009-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-1Answer by Anders B for Problem using SQLite :memory: with NHibernateAnders B2009-01-29T16:13:45Z2009-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#3235180Answer by Anders B for Problems while submitting a UTF-8 form textarea with JQuery/AJAXAnders B2008-11-27T11:29:55Z2008-11-27T11:29:55Z<p>I hade the same problem and fixed it with downgrading to mysql-connector-odbc-3.51.16.</p>