User J. Pablo Fern&#225;ndez - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:13:08Z http://stackoverflow.com/feeds/user/6068 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813738/how-do-i-make-rails-pick-up-gems-from-local-source-directories 1 How do I make Rails pick up gems from local source directories? J. Pablo Fernández 2009-11-28T20:41:53Z 2009-11-28T23:05:26Z <p>I'm creating a few gems by extracting out parts of a Rails project that can be reused (and that I have duplicated in other Rails projects). The problem I have is that testing every change to the gems is now very slow.</p> <p>Changing a Rails project is very fast as most of the time the change is re-loaded automatically, but changing a gem implies:</p> <ul> <li>stop the rails server</li> <li>go to the gem directory</li> <li>run sudo rake install, which is very slow</li> <li>go back to the rails project</li> <li>re-run the rails server, which also is very slow</li> </ul> <p>Is there a way for my Rails project to pick up the code from where I have the gem code, instead of the installed gem, to speed up development?</p> http://stackoverflow.com/questions/1778374/validatespresenceof-causes-afterinitialize-to-be-called-with-a-weird-self 1 validates_presence_of causes after_initialize to be called with a weird self J. Pablo Fernández 2009-11-22T10:32:09Z 2009-11-28T19:43:47Z <p>I've had this model which was working fine:</p> <pre><code>class Weight &lt; ActiveRecord::Base belongs_to :user validates_presence_of :weight, :measured_on attr_accessible :weight, :measured_on def after_initialize self.measured_on ||= Date.today end end </code></pre> <p>I added it this line</p> <pre><code>validates_uniqueness_of :measured_on, :scope =&gt; :user_id </code></pre> <p>and it started throwing an error on validation. Not a validation error but a Ruby error:</p> <pre><code>&gt;&gt; w.valid? ActiveRecord::MissingAttributeError: missing attribute: measured_on from /Users/pupeno/Projects/sano/app/models/weight.rb:8:in `after_initialize' </code></pre> <p>I've put a debugger statement in after_initialize and I've noticed something unexpected. When I create a new weight it works as expected and the self object on after_initialize is the expected weight:</p> <pre><code>&gt;&gt; w = Weight.new /Users/pupeno/Projects/sano/app/models/weight.rb:9 self.measured_on ||= Date.today (rdb:1) p self #&lt;Weight id: nil, user_id: nil, weight: nil, measured_on: nil, created_at: nil, updated_at: nil&gt; (rdb:1) c =&gt; #&lt;Weight id: nil, user_id: nil, weight: nil, measured_on: "2009-11-22", created_at: nil, updated_at: nil&gt; </code></pre> <p>When I run w.valid? it gets weird. after_initialize is called again, I'm not sure why, and the self object is nothing I expected:</p> <pre><code>&gt;&gt; w.valid? /Users/pupeno/Projects/sano/app/models/weight.rb:9 self.measured_on ||= Date.today (rdb:1) p self #&lt;Weight id: 1&gt; (rdb:1) p self.inspect "#&lt;Weight id: 1&gt;" (rdb:1) p self.class Weight(id: integer, user_id: integer, weight: float, measured_on: date, created_at: datetime, updated_at: datetime) (rdb:1) p self.measured_on ActiveRecord::MissingAttributeError Exception: missing attribute: measured_on (rdb:1) </code></pre> <p>It seems like another Weight object was created without any attributes but the id set. Any ideas why? Is this a bug or the expected behavior? Am I doing something wrong by setting the measured_on on after_initialize?</p> <p>My current workaround, in case anybody is having the same problem, is</p> <pre><code>class Weight &lt; ActiveRecord::Base belongs_to :user validates_presence_of :weight, :measured_on validates_uniqueness_of :measured_on, :scope =&gt; :user_id attr_accessible :weight, :measured_on def after_initialize if self.has_attribute? :measured_on self.measured_on ||= Date.today end end end </code></pre> <p>but I'd like to have a proper solution.</p> http://stackoverflow.com/questions/1586836/how-do-i-interact-with-the-amazon-product-advertising-api-in-my-rails-app/1807428#1807428 0 Answer by J. Pablo Fernández for How do I interact with the Amazon Product Advertising API in my Rails app? J. Pablo Fernández 2009-11-27T08:32:19Z 2009-11-27T08:32:19Z <p>Another pottential library to do this is <a href="http://github.com/completelynovel/amazon-product-advertising-api" rel="nofollow">amazon-product-advertising-api</a>, but I cannot say anything else about it as I haven't tried it.</p> http://stackoverflow.com/questions/1375119/how-do-you-add-another-namespace-to-wcf-syndicationfeed 0 How do you add another namespace to WCF SyndicationFeed? J. Pablo Fernández 2009-09-03T18:26:47Z 2009-11-23T22:28:01Z <p>In my feed generation code I have things like:</p> <pre><code>XNamespace itunesNS = "http://www.itunes.com/dtds/podcast-1.0.dtd"; feed.ElementExtensions.Add( new XElement(itunesNS + "subtitle", new XAttribute(XNamespace.Xmlns + "itunes", itunesNS.NamespaceName), "sample subtitle").CreateReader()); </code></pre> <p>which generates something like this:</p> <pre><code>&lt;itunes:subtitle xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"&gt;sample subtitle&lt;/itunes:subtitle&gt; </code></pre> <p>How can I get the declaration of the itunes namespace (xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd") in the channel element so it doesn't have to be repeated on every itunes element? </p> <p>My feed is created with System.ServiceModel.Syndication.SyndicationFeed.</p> http://stackoverflow.com/questions/1777311/where-did-the-div-classfieldwitherror-go 0 Where did the div class=fieldWithError go? J. Pablo Fernández 2009-11-22T00:32:17Z 2009-11-23T08:39:50Z <p>I have the following simple form:</p> <pre><code>&lt;% form_for(@weight) do |f| %&gt; &lt;%= f.error_messages %&gt; &lt;%= f.label :weight %&gt;: &lt;%= f.text_field :weight, :size =&gt; 5 %&gt; kg. &lt;%= f.submit "Add weight" %&gt; &lt;%= f.error_message_on :weight %&gt; &lt;% end %&gt; </code></pre> <p>which displays a form of only one field: weight.</p> <p>Normally it renders like this:</p> <pre><code>&lt;form action="/weights" class="new_weight" id="new_weight" method="post"&gt; &lt;div style="margin:0;padding:0;display:inline"&gt;&lt;input name="authenticity_token" type="hidden" value="jYoVJkDnv4a1DMGnelJpGPElbH0XWKPNlESTt9GvzdA=" /&gt;&lt;/div&gt; &lt;label for="weight_weight"&gt;Weight&lt;/label&gt;: &lt;input id="weight_weight" name="weight[weight]" size="5" type="text" /&gt; kg. &lt;input id="weight_submit" name="commit" type="submit" value="Add weight" /&gt; &lt;/form&gt; </code></pre> <p>which is fine. When I submit this form without setting any weight I get a validation error. f.error_messages and f.error_messages_on :weight correctly display the error messages, but the label and text field are not surrounded in a div with the class fieldWithError as I normally expect in forms in Rails. I instead get this:</p> <pre><code>&lt;form action="/weights" class="new_weight" id="new_weight" method="post"&gt; &lt;div style="margin:0;padding:0;display:inline"&gt;&lt;input name="authenticity_token" type="hidden" value="jYoVJkDnv4a1DMGnelJpGPElbH0XWKPNlESTt9GvzdA=" /&gt;&lt;/div&gt; &lt;div class="errorExplanation" id="errorExplanation"&gt; &lt;h2&gt;1 error prohibited this weight from being saved&lt;/h2&gt; &lt;p&gt;There were problems with the following fields:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Weight can't be blank&lt;/li&gt;&lt;/ul&gt; &lt;/div&gt; &lt;label for="weight_weight"&gt;Weight&lt;/label&gt;: &lt;input id="weight_weight" name="weight[weight]" size="5" type="text" /&gt; kg. &lt;input id="weight_submit" name="commit" type="submit" value="Add weight" /&gt; &lt;div class="formError"&gt;can't be blank&lt;/div&gt; &lt;/form&gt; </code></pre> <p>For reference, what I've should have gotten is this:</p> <pre><code>&lt;form action="/weights" class="new_weight" id="new_weight" method="post"&gt; &lt;div style="margin:0;padding:0;display:inline"&gt;&lt;input name="authenticity_token" type="hidden" value="jYoVJkDnv4a1DMGnelJpGPElbH0XWKPNlESTt9GvzdA=" /&gt;&lt;/div&gt; &lt;div class="errorExplanation" id="errorExplanation"&gt; &lt;h2&gt;1 error prohibited this weight from being saved&lt;/h2&gt; &lt;p&gt;There were problems with the following fields:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Weight can't be blank&lt;/li&gt;&lt;/ul&gt; &lt;/div&gt; &lt;div class="fieldWithErrors"&gt;&lt;label for="weight_weight"&gt;Weight&lt;/label&gt;&lt;/div&gt;: &lt;div class="fieldWithErrors"&gt;&lt;input id="weight_weight" name="weight[weight]" size="5" type="text" /&gt;&lt;/div&gt; kg. &lt;input id="weight_submit" name="commit" type="submit" value="Add weight" /&gt; &lt;div class="formError"&gt;can't be blank&lt;/div&gt; &lt;/form&gt; </code></pre> <p>Any ideas why I don't get those divs? I have formtastic installed and it's in use in other forms, but as far as I know that shouldn't interfere with this form.</p> <p>Update: just to be sure, I printed out debug(@weight), it has the errors:</p> <pre> --- &amp;id002 !ruby/object:Weight attributes: &nbsp; created_at: &nbsp; updated_at: &nbsp; weight: &nbsp; measured_on: &amp;id001 !timestamp &nbsp; &nbsp; at: &quot;2009-11-22 01:30:13.522589 +01:00&quot; &nbsp; &nbsp; &quot;@marshal_with_utc_coercion&quot;: false &nbsp; user_id: 1 attributes_cache: &nbsp; measured_on: *id001 changed_attributes: &nbsp; measured_on: &nbsp; user_id: errors: !ruby/object:ActiveRecord::Errors &nbsp; base: *id002 &nbsp; errors: &nbsp; &nbsp; weight: &nbsp; &nbsp; - !ruby/object:ActiveRecord::Error &nbsp; &nbsp; &nbsp; attribute: :weight &nbsp; &nbsp; &nbsp; base: *id002 &nbsp; &nbsp; &nbsp; message: :blank &nbsp; &nbsp; &nbsp; options: {} &nbsp; &nbsp; &nbsp; type: :blank new_record: true </pre> <p>Update: the model is</p> <pre><code>class Weight &lt; ActiveRecord::Base belongs_to :user validates_presence_of :weight, :measured_on attr_accessible :weight, :measured_on def after_initialize self.measured_on ||= Time.now end </code></pre> <p>end</p> http://stackoverflow.com/questions/875719/how-to-learn-the-necessary-anthropology-to-create-social-software 3 How to learn the necessary anthropology to create social software? J. Pablo Fernández 2009-05-17T23:17:05Z 2009-11-22T23:46:26Z <p>Joel Spolsky repeats over and over that today, knowing a bit of anthropology can be very useful for a programer because much of what's being created is social software.</p> <p>How can someone that already knows the computer science learn the anthropology needed to know how human beings works? Any books? Any recorded lectures?</p> http://stackoverflow.com/questions/433358/how-to-get-a-more-compact-automatic-indentation-in-eclipse-for-java 0 How to get a more compact automatic indentation in Eclipse (for Java)? J. Pablo Fernández 2009-01-11T18:22:04Z 2009-11-22T17:00:03Z <p>What is the code formating option to indent as:</p> <pre><code>Log.w(TAG, String.format( "Upgrading database from version %s to %s which will destroy all old data", oldVersion, newVersion)); </code></pre> <p>instead of as:</p> <pre><code>Log .w( TAG, String .format( "Upgrading database from version %s to %s which will destroy all old data", oldVersion, newVersion)); </code></pre> http://stackoverflow.com/questions/1777311/where-did-the-div-classfieldwitherror-go/1777445#1777445 1 Answer by J. Pablo Fernández for Where did the div class=fieldWithError go? J. Pablo Fernández 2009-11-22T01:23:54Z 2009-11-22T02:09:03Z <p>This is a bug in Formtastic. It was fixed but it seems that at this moment no released version of Formtastic has the fix.</p> <p>My own bug report is on <a href="http://github.com/justinfrench/formtastic/issues/closed/#issue/132" rel="nofollow">http://github.com/justinfrench/formtastic/issues/closed/#issue/132</a></p> <p>The fix can be seen on <a href="http://github.com/grimen/formtastic/commit/2b81d9af385dadf8b37dc14f387afe3d43e4958a" rel="nofollow">http://github.com/grimen/formtastic/commit/2b81d9af385dadf8b37dc14f387afe3d43e4958a</a></p> <p>Ultimately the problem was using justinfrench-formtastic from github, which is outdated and abandoned instead of formtastic from gemcutter.</p> http://stackoverflow.com/questions/1264487/how-to-get-a-related-object-sorted-with-entity-framework-for-asp-net-mvc 0 How to get a related object sorted with Entity Framework for ASP.NET MVC J. Pablo Fernández 2009-08-12T06:20:42Z 2009-11-21T19:08:33Z <p>Having two classes like Blog and Post, in Entity Framework (and LINQ-to-Entities), how can you get the blogs with the posts sorted by date. I was getting the blogs with the posts this way:</p> <pre><code>from blog in db.BlogSet.Include("Posts") select blog </code></pre> <p>and now I'm forced to do this:</p> <pre><code>public class BlogPosts { public Blog Blog { get; set; } public IEnumerable&lt;Post&gt; Posts { get; set; } } from blog in db.BlogSet select new BlogPosts() { Blog = blog, Posts = blog.Posts.OrderByDescending(p =&gt; p.PublicationTime) } </code></pre> <p>which is very convoluted and ugly. The reason why I'm creating a BlogPosts class is that now, since I have to pass two variables, Blog and Posts, to MVC, I need a view model.</p> <p>I'm even tempted to try this hack:</p> <pre><code>from blog in db.BlogSet select new Blog(blog) { Posts = blog.Posts.OrderByDescending(p =&gt; p.PublicationTime) } </code></pre> <p>but what's the correct way to do it? Is Entity Framework not the way to go with MVC?</p> http://stackoverflow.com/questions/432037/how-do-i-center-text-horizontally-and-vertical-in-a-textview-in-android 1 How do I center text horizontally and vertical in a TextView in Android? J. Pablo Fernández 2009-01-11T00:27:55Z 2009-11-21T12:25:56Z <p>How do I center text horizontally and vertical in a TextView in Android? So that it appears exactly in the middle of the screen.</p> http://stackoverflow.com/questions/1354764/cannot-put-breakpoint-in-an-asp-net-mvc-view-when-running-in-iis7 0 Cannot put breakpoint in an ASP.NET MVC view when running in IIS7 J. Pablo Fernández 2009-08-30T20:00:52Z 2009-11-21T07:00:02Z <p>I'm forced to use IIS7 because Casini is only x86 and we are running with x64 ELMAH.</p> <p>Something I've noticed since I've switched is that I cannot set breakpoints in ASP.NET MVC views anymore. I'm not totally sure it's because of IIS7, is it? Does it happen to you as well?</p> <p>The Visual Studio (2008) project is configured to use the local IIS7. I normally <em>run</em> the project by pressing F5, which actually doesn't run anything. It compiles the code and attaches itself to the corresponding IIS7 process.</p> <p>The limitation of breakpoints is very <strong>hard</strong> into my environment now. If I right click a piece of code in a view there's a "Breakpoint" sub-menu, like before, with the Insert Breakpoint. But when I try to insert a breakpoint I get a blue message at the bottom of Visual Studio saying:</p> <blockquote> <p>This is not a valid location for a breakpoint.</p> </blockquote> <p>and no breakpoint is set. Setting breakpoints in the compiled code, like the controller presents no problem.</p> <p>Is there any way to solve put a breakpoint in the view?</p> http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure/236313#236313 7 Answer by J. Pablo Fernández for What is the best way to do Gui in Clojure? J. Pablo Fernández 2008-10-25T12:19:06Z 2009-11-20T21:10:11Z <p>If you want to do GUI programming I'd point to <a href="http://en.wikibooks.org/wiki/Clojure%5FProgramming#Simple%5FGUI%5F%3A%5FTemperature%5FConverter" rel="nofollow">Temperature Converter</a> or <a href="http://clojure.googlegroups.com/web/ants.clj" rel="nofollow">the ants colony</a>.</p> <p>Many things in Swing are done by sub-classing, particularly if you are creating custom components. For that there are two essential functions/macros: <a href="http://clojure.org/api#toc383" rel="nofollow">proxy</a> and <a href="http://clojure.org/api#toc234" rel="nofollow">gen-class</a>.</p> <p>Now I understand where you are going with the more Lispy way. I don't think there's anything like that yet. I would strongly advise against trying to build a grandiose GUI-building framework a-la <a href="http://www.cliki.net/CLIM" rel="nofollow">CLIM</a>, but to do something more Lispy: start writing your Swing application and abstract out your common patterns with macros. When doing that you may end up with a language to write your kind of GUIs, or maybe some very generic stuff that can be shared and grow.</p> <p>One thing you lose when writing the GUIs in Clojure is the use of tools like Matisse. That can be a strong pointing to write some parts in Java (the GUI) and some parts in Clojure (the logic). Which actually makes sense as in the logic you'll be able to build a language for your kind of logic using macros and I think there's more to gain there than with the GUI. Obviously, it depends on your application.</p> http://stackoverflow.com/questions/1738017/getting-superexceptionnotifier-to-work 1 Getting super_exception_notifier to work J. Pablo Fernández 2009-11-15T16:31:10Z 2009-11-17T19:34:59Z <p>I've installed super_exception_notifier by running:</p> <pre><code>sudo gem install super_exception_notifier </code></pre> <p>and then I've tried enabling it in my project (which already has mailing working, since it sends emails for other purposes) like this. On environment.rb I added</p> <pre><code># Notification configuration require 'exception_notifier' ExceptionNotifier.configure_exception_notifier do |config| config[:exception_recipients] = %w(info@isitsciencefiction.com) config[:notify_error_codes] = %W( 404 405 500 503 ) end </code></pre> <p>and on my application_controller.rb I have:</p> <pre><code>require 'exception_notifiable' class ApplicationController &lt; ActionController::Base include ExceptionNotifiable </code></pre> <p>Am I missing something? because no matter what error I generate. Either a 404, a route error, division by zero in a controller or in the console, in development or production mode, I get no emails and no error messages or anything at all.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1750464/how-to-read-and-write-id3-tags-to-an-mp3-in-c 3 How to read and write ID3 tags to an MP3 in C#? J. Pablo Fernández 2009-11-17T17:30:52Z 2009-11-17T18:32:06Z <p>Is there a library for reading and writing ID3 tags to an MP3 in C#?</p> <p>I've actually seen a couple when searching, anybody using any that can be recommended?</p> http://stackoverflow.com/questions/141975/postgresqls-and-mysqls-full-text-search 2 PostgreSQL's and MySQL's full text search J. Pablo Fernández 2008-09-26T21:05:37Z 2009-11-17T09:25:55Z <p>How do the full text search systems of PostgreSQL and MySQL compare? Is any clearly better than the oder? In which way are they different?</p> http://stackoverflow.com/questions/1723721/safely-escape-strings-for-sql-fragments-for-joins-limits-selects-and-so-on-no 2 Safely escape strings for SQL fragments for joins, limits, selects, and so on (not conditions) on Rails J. Pablo Fernández 2009-11-12T16:56:38Z 2009-11-14T14:37:53Z <p>In Ruby on Rails, for conditions, it's easy to make SQL-injection-proof queries:</p> <pre><code>:conditions =&gt; ["title = ?", title] </code></pre> <p>where title comes from the outside, from a web form or something like that.</p> <p>But what if you are using SQL fragments in other parts of the query, like:</p> <pre><code>:select =&gt; "\"#{title}\" AS title" # I do have something like this in one instance :joins =&gt; ["LEFT JOIN blah AS blah2 ON blah2.title = \"#{title}\""] </code></pre> <p>Is there a way to properly escape those strings?</p> http://stackoverflow.com/questions/1733599/is-there-a-list-of-known-web-crawlers 0 Is there a list of known web crawlers? J. Pablo Fernández 2009-11-14T07:33:57Z 2009-11-14T07:56:47Z <p>I'm trying to get accurate download numbers for some files on a web server. I look at the user agents and some are clearly bots or web crawlers, but many for many I'm not sure, they may or may not be a web crawler and they are causing many downloads so it's important for me to know.</p> <p>Is there somewhere a list of know web crawlers with some documentation like user agent, IPs, behavior, etc?</p> <p>I'm not interested in the official ones, like Google's, Yahoo's, or Microsoft's. Those are generally well behaved and self-indentified.</p> http://stackoverflow.com/questions/878578/how-can-i-have-lowercase-routes-in-asp-net-mvc 5 How can I have lowercase routes in ASP.NET MVC? J. Pablo Fernández 2009-05-18T16:30:30Z 2009-11-13T20:21:07Z <p>How can I have lowercase, plus underscore if possible, routes in ASP.NET MVC? So that I would have /dinners/details/2 call DinnersController.Details(2) and, if possible, /dinners/more_details/2 call DinnersController.MoreDetails(2)?</p> <p>All this while still using patterns like "{controller}/{action}/{id}".</p> http://stackoverflow.com/questions/221294/how-do-you-get-a-timestamp-in-javascript 9 How do you get a timestamp in JavaScript? J. Pablo Fernández 2008-10-21T09:29:33Z 2009-11-11T11:38:57Z <p>Something similar to Unix's timestamp, that is a single number that represents the current time and date. Either as a number or a string.</p> http://stackoverflow.com/questions/1706870/what-tools-does-linux-programmer-use-to-develop-programs/1706993#1706993 1 Answer by J. Pablo Fernández for What tools does Linux programmer use to develop programs? J. Pablo Fernández 2009-11-10T10:34:25Z 2009-11-10T10:34:25Z <p>There are Linux programmers that use IDEs and some that don't. Many people use editors like Emacs or Vim, and then others use IDEs like Eclipse, NetBeans, Anjuta, KDevelop, etc.</p> http://stackoverflow.com/questions/1698111/how-can-i-improve-a-ruby-on-rails-code-that-has-a-lot-of-sql-as-strings 1 How can I improve a Ruby on Rails code that has a lot of SQL as strings? J. Pablo Fernández 2009-11-08T22:19:08Z 2009-11-09T18:14:34Z <p>I have a piece of Ruby on Rails code that has a complex SQL query (well, not that complex, but as far as I know beyond the ORM capabilities) and for my taste it has too many strings and harcoded values. I'd like to improve it as much as possible, so my question is open ended, what else can I do to improve it?</p> <p>Some particular issues I have</p> <ul> <li>Is there a way to get a table name to use it in a query in the same escaped way as the ORM does? I think this is database independent, being <code> `items` </code> for MySQL but not for other databases.</li> <li>In the same vein, is there a way to get a field name the same way Rail's ORM would put it in a SQL query?</li> <li>Maybe there's a way to get both, the table name and the field name in one operation. I'm imaging something like Item.voteable_id.for_query => <code>"`items`.`voteable`"</code>.</li> <li>How do I escape code to avoid SQL injection when not in conditions? I'm using the user_id variable directly in a query and although it's impossible for a user to put anything in it, I'd rather escape it properly. In a condition I would do ['user_id = ?', user_id], but in a join or a select, how do I do it?</li> <li>Does my use of class constants here make sense?</li> <li>Is there any chance at all of using the ORM and less string?</li> <li>Any other thing to do to it?</li> </ul> <p>It is not my intention to have anybody else do my pet project for me. I remember a long discussion in some mailing list about writing portable SQL in Rails by calling methods to get table names and things like that; but I can't find it anymore. My goal here is obviously to learn.</p> <p>The code is this one</p> <pre><code>class Item &lt; ActiveRecord::Base has_many :votes, :as =&gt; :voteable def self.ranking(user_id) Item.find(:all, # items.* for all the Item attributes, score being the sum of votes, user_vote is the vote of user_id (0 if no vote) and voter_id is just user_id for latter reference. :select =&gt; "items.*, IFNULL(sum(all_votes.value), 0) as score, user_votes.value as user_vote, \"#{user_id}\" as voter_id", # The first join gets all the votes for a single item (to be summed latter). # The second join gets the vote for a single user for a single item. :joins =&gt; ["LEFT JOIN votes as all_votes ON all_votes.voteable_id = items.id and all_votes.voteable_type = \"Item\"", "LEFT JOIN votes as user_votes ON user_votes.voteable_id = items.id and user_votes.user_id = \"#{user_id}\" and user_votes.voteable_type = \"Item\"" ], :group =&gt; :id, :order =&gt; "score DESC") # This is the query it should generate (for user_id = 2) # SELECT items.*, # user_votes.value as user_vote, # IFNULL(sum(all_votes.value),0) as score, # "2" as voter_id # FROM items # LEFT JOIN votes as all_votes ON # all_votes.voteable_id = items.id and # all_votes.voteable_type = "Item" # LEFT JOIN votes as user_votes ON # user_votes.voteable_id = items.id and # user_votes.user_id = "2" and # user_votes.voteable_type = "Item" # GROUP BY items.id # ORDER BY score DESC end def score s = read_attribute("score") if s == nil votes.sum :value else Integer(s) end end def user_vote(user_id) if Integer(read_attribute("voter_id")) == user_id Integer(read_attribute("user_vote")) else vote = votes.find(:first, :conditions =&gt; ["user_id = ?", user_id]) if vote vote.value else 0 end end end end </code></pre> <p><strong>UPDATE:</strong> <em>Simplified the code to get to the point faster and be able to discuss the core issues. Document the code so people don't have to waste time deciphering it.</em></p> http://stackoverflow.com/questions/430012/how-would-you-store-possibly-recurring-times 3 How would you store possibly recurring times? J. Pablo Fernández 2009-01-09T22:38:31Z 2009-11-09T03:08:45Z <p>I need to store whether something happens once, daily, weekdays, weekly, some days of the week, some days of the month, which may be numerical or symbolic, like first Monday of each month, and so on.</p> <p>Any recommendations? Any code, data structure or schema to look at?</p> http://stackoverflow.com/questions/1680974/what-is-your-favorite-rails-admin-tool-and-why 4 What is your favorite Rails admin tool and why? J. Pablo Fernández 2009-11-05T14:40:42Z 2009-11-05T19:25:18Z <p>What is your favorite Rails admin tool and why? By admin tool I'm referring to those that let some users add records for all the tables, like the tool shipped with Django.</p> <p>This question is subjective and I believe the matter is subjective, but I think it would still be nice to be able to read other people opinions and gather data on the strength of each tool. Feel free to also comment on why you are <em>not</em> using a particular tool.</p> <p>Looking around I've seen these ones:</p> <ul> <li><a href="http://streamlinedframework.org/" rel="nofollow">Streamlined</a></li> <li><a href="http://github.com/fesplugas/typus/tree/master" rel="nofollow">Typus</a></li> <li><a href="http://www.ultrasaurus.com/sarahblog/2009/07/rails-admin-interface-roundup/" rel="nofollow">admin_data</a></li> <li><a href="http://www.ultrasaurus.com/sarahblog/2009/07/rails-admin-interface-roundup/" rel="nofollow">active_scaffold</a></li> </ul> <p>I think it would be excellent if there was one answer for and one answer against each tool and we just add information to each of them, in a very encyclopedic way, but I'm not sure if that's doable. Of course this question is a community wiki.</p> http://stackoverflow.com/questions/295458/pretty-print-in-clojure 4 Pretty print in Clojure J. Pablo Fernández 2008-11-17T12:17:21Z 2009-11-05T14:46:37Z <p>Is there a pretty printing function in Clojure that would output data-structures like lists and structs in a human-readable way?</p> http://stackoverflow.com/questions/1654531/jmenubar-at-the-top-in-macosx 1 JMenuBar at the top in MacOSX J. Pablo Fernández 2009-10-31T14:26:41Z 2009-10-31T14:43:42Z <p>In the Java Desktop Application template used by Netbeans, a menu bar is created with JMenuBar and JMenuItems.</p> <p>How can I get that bar displayed at the top, where menu bars are displayed in MacOSX instead of in-window, like in Windows?</p> http://stackoverflow.com/questions/1489629/can-rails-integration-tests-hit-another-server-for-openid-auth 0 Can Rails integration tests hit another server for OpenID auth? J. Pablo Fernández 2009-09-28T22:09:42Z 2009-10-29T10:00:05Z <p>Can Rails integration tests hit another server for OpenId authentication?</p> <p>When my Rails application, running on <a href="http://localhost" rel="nofollow">http://localhost</a>:<em>3000</em>/, redirects to <a href="http://localhost" rel="nofollow">http://localhost</a>:<strong>1123</strong>/server for OpenId authentication, Rails <em>fake browser</em> actually goes to <a href="http://localhost" rel="nofollow">http://localhost</a>:<strong>3000</strong>/server. It seems like the <em>fake browser</em> used in the integration tests is ignoring the hostname and port, and just picking up the directory part of the path.</p> <p>Any ideas how to allow that redirect to arrive at a separate server?</p> http://stackoverflow.com/questions/1635632/is-it-possible-to-change-the-default-action-for-a-restful-resource 0 Is it possible to change the default action for a RESTful resource? J. Pablo Fernández 2009-10-28T07:22:52Z 2009-10-28T20:37:36Z <p>In Ruby on Rails, is it possible to change a default action for a RESTful resource, so than when someone, for example, goes to /books it gets :new instead of the listing (I don't care if that means not being able to show the listing anymore)?</p> http://stackoverflow.com/questions/1635528/securityexception-request-for-the-permission-of-type-aspnethostingpermission-fai 0 SecurityException: Request for the permission of type AspNetHostingPermission failed J. Pablo Fernández 2009-10-28T06:42:54Z 2009-10-28T13:44:01Z <p>Setting up a new developing workstation, when I run the ASP.NET (MVC) application from Visual Studio 2008 I get a SecurityException. Any ideas what might be the problem?</p> <p>I am accessing the data files over SMB (it's a shared mounted as Z:) and I've given full trust to it by running</p> <pre><code>caspol -m -ag 1 -url “\\server\share\” FullTrust -exclusive on </code></pre> <p>The full traceback is:</p> <blockquote> <p>Server Error in '/' Application.</p> <p>Security Exception</p> <p>Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file. </p> <p>Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.</p> <p>Source Error: </p> <p>An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.</p> <p>Stack Trace: </p> <p>[SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]<br /> System.Reflection.Assembly._GetType(String name, Boolean throwOnError, Boolean ignoreCase) +0<br /> System.Reflection.Assembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase) +42<br /> System.Web.UI.Util.GetTypeFromAssemblies(ICollection assemblies, String typeName, Boolean ignoreCase) +145<br /> System.Web.UI.TemplateParser.GetType(String typeName, Boolean ignoreCase, Boolean throwOnError) +73<br /> System.Web.UI.TemplateParser.ProcessInheritsAttribute(String baseTypeName, String codeFileBaseTypeName, String src, Assembly assembly) +111<br /> System.Web.UI.TemplateParser.PostProcessMainDirectiveAttributes(IDictionary parseData) +279</p> <p>Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927</p> </blockquote> http://stackoverflow.com/questions/881300/how-do-i-get-database-validation-among-my-rule-violations-on-asp-net-mvc 1 How do I get database validation among my rule violations on ASP.NET MVC? J. Pablo Fernández 2009-05-19T06:51:55Z 2009-10-23T16:32:23Z <p>On the <a href="http://www.wrox.com/WileyCDA/Section/id-321793.html" rel="nofollow">NerdDinner</a> example a set of <em>business rules</em> are written to validate the data on a model. Things like empty strings are checked for and by calling modelObject.GetRuleViolations() you can get them all. But there's another layer of validation which is the database. For example, the datetime field is left for validation to the database, which only accepts a string that can be converted into a DateTime object.</p> <p>The problem I see is that modelObject.GetRuleViolations() never return the violation for datetime. So even when it is correctly prevented from saving the record and the form is shown back specifying there's an error and highlighting the datetime field, there's no specific error message. Is there a way to get the database validation errors among the business rules validation errors?</p> http://stackoverflow.com/questions/1588310/can-silverlight-communicate-with-a-midi-instrument 5 Can Silverlight communicate with a MIDI instrument? J. Pablo Fernández 2009-10-19T12:06:03Z 2009-10-19T21:36:52Z <p>Can Silverlight communicate with a MIDI instrument connected to the machine running the Silverlight application? In- or out-browser.</p> http://stackoverflow.com/questions/1813738/how-do-i-make-rails-pick-up-gems-from-local-source-directories/1813760#1813760 Comment by J. Pablo Fernández on How do I make Rails pick up gems from local source directories? J. Pablo Fernández 2009-11-28T22:36:38Z 2009-11-28T22:36:38Z That reduces the time by only requiring the rails project to restart (it won't load automatically) but it removes source control, as you don't have it in vendor (for the gem that is); so it's useful for some stuff, but not everything. Nevertheless I've used that way for a little while. Thanks ScottJ. http://stackoverflow.com/questions/1586836/how-do-i-interact-with-the-amazon-product-advertising-api-in-my-rails-app/1586881#1586881 Comment by J. Pablo Fernández on How do I interact with the Amazon Product Advertising API in my Rails app? J. Pablo Fernández 2009-11-27T08:28:36Z 2009-11-27T08:28:36Z I've tried for a couple of hours wit ruby-aaws but amazon-ecs worked out of the box on the first try. http://stackoverflow.com/questions/1777311/where-did-the-div-classfieldwitherror-go Comment by J. Pablo Fernández on Where did the div class=fieldWithError go? J. Pablo Fernández 2009-11-22T00:45:40Z 2009-11-22T00:45:40Z Note: I removed formtastic and it started working properly. http://stackoverflow.com/questions/1777311/where-did-the-div-classfieldwitherror-go/1777332#1777332 Comment by J. Pablo Fernández on Where did the div class=fieldWithError go? J. Pablo Fernández 2009-11-22T00:40:53Z 2009-11-22T00:40:53Z That didn't help. Actually rails put the label inside one div and the text field inside another div. I don't think rails can modify HTML code, like the p, that it's already written in the view; it can only generate more code. http://stackoverflow.com/questions/1738017/getting-superexceptionnotifier-to-work/1738042#1738042 Comment by J. Pablo Fernández on Getting super_exception_notifier to work J. Pablo Fernández 2009-11-15T16:40:13Z 2009-11-15T16:40:13Z Well, I did tried that remotely to my server in production; and I would expect that console errors are always sent as they are always local anyway. http://stackoverflow.com/questions/1733599/is-there-a-list-of-known-web-crawlers/1733624#1733624 Comment by J. Pablo Fernández on Is there a list of known web crawlers? J. Pablo Fernández 2009-11-14T07:57:43Z 2009-11-14T07:57:43Z The problem in our case is that we have many valid downloaders that won't run JavaScript, like iTunes or any other podcatcher. http://stackoverflow.com/questions/1706996/old-unknown-database Comment by J. Pablo Fernández on Old unknown database J. Pablo Fernández 2009-11-10T10:46:40Z 2009-11-10T10:46:40Z Do you have access to a Linux box? Have you tried running &quot;file MISCINFO.BRG&quot;? http://stackoverflow.com/questions/1706996/old-unknown-database/1707036#1707036 Comment by J. Pablo Fernández on Old unknown database J. Pablo Fernández 2009-11-10T10:45:13Z 2009-11-10T10:45:13Z I'm very positive the BRG file is the database and the key file to investigate. The IDX most likely is just index data; which means that the BRG is possible easy to inspect (if the index data is kept separately, then the database has a potential to not be so hard). http://stackoverflow.com/questions/1706996/old-unknown-database Comment by J. Pablo Fernández on Old unknown database J. Pablo Fernández 2009-11-10T10:40:05Z 2009-11-10T10:40:05Z My initial guess would be that the .LOG is a log file and the .IDX is an index, like in the DBase days; so I would concentrate on the BRG. Have you tried opening the BRG? Is it text or binary? (you'd be surprised at old databases storing things as text); either way, what are the first couple of lines of that file (you might need to use an hex editor)? http://stackoverflow.com/questions/1706870/what-tools-does-linux-programmer-use-to-develop-programs Comment by J. Pablo Fernández on What tools does Linux programmer use to develop programs? J. Pablo Fernández 2009-11-10T10:33:23Z 2009-11-10T10:33:23Z What programming language are you talking about when you mention Linux programmers? The world of programming in Linux has more vareity than Windows (Windows today at least). http://stackoverflow.com/questions/1698111/how-can-i-improve-a-ruby-on-rails-code-that-has-a-lot-of-sql-as-strings/1698592#1698592 Comment by J. Pablo Fernández on How can I improve a Ruby on Rails code that has a lot of SQL as strings? J. Pablo Fernández 2009-11-09T02:18:12Z 2009-11-09T02:18:12Z To be able to use proper SQL escaping on the joins, then I should use find_by_sql instead of find? http://stackoverflow.com/questions/1698111/how-can-i-improve-a-ruby-on-rails-code-that-has-a-lot-of-sql-as-strings Comment by J. Pablo Fernández on How can I improve a Ruby on Rails code that has a lot of SQL as strings? J. Pablo Fernández 2009-11-09T02:16:54Z 2009-11-09T02:16:54Z I've simplified and documented the code so it's easier to talk about it and the core issues are the same (this is actually a first iteration of my code). http://stackoverflow.com/questions/1698111/how-can-i-improve-a-ruby-on-rails-code-that-has-a-lot-of-sql-as-strings/1698592#1698592 Comment by J. Pablo Fernández on How can I improve a Ruby on Rails code that has a lot of SQL as strings? J. Pablo Fernández 2009-11-09T02:06:15Z 2009-11-09T02:06:15Z The code is very well tested, 100% code coverage and every possible case I can think of. Agreed about getting rid of as much SQL as possible. Your has_many :all_votes is equivalent to the has_many :votes, :as =&gt; voteable I already have. What's your point there? http://stackoverflow.com/questions/1698111/how-can-i-improve-a-ruby-on-rails-code-that-has-a-lot-of-sql-as-strings/1698187#1698187 Comment by J. Pablo Fernández on How can I improve a Ruby on Rails code that has a lot of SQL as strings? J. Pablo Fernández 2009-11-09T02:05:33Z 2009-11-09T02:05:33Z I'm already using the Ruby equivalent of printf, and that's what I don't like. http://stackoverflow.com/questions/1698111/how-can-i-improve-a-ruby-on-rails-code-that-has-a-lot-of-sql-as-strings/1698537#1698537 Comment by J. Pablo Fernández on How can I improve a Ruby on Rails code that has a lot of SQL as strings? J. Pablo Fernández 2009-11-09T02:01:23Z 2009-11-09T02:01:23Z 4, 5: I've already have, if there's anything in particular you have in mind, feel free to let me know about it.