User hernan43 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T05:46:14Zhttp://stackoverflow.com/feeds/user/27521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900037/determine-if-script-server-is-being-started/1900872#19008720Answer by hernan43 for Determine if script/server is being startedhernan432009-12-14T13:16:56Z2009-12-14T13:16:56Z<p>There is probably a better way to do this, but since I am not aware of one, I would probably alter script/server to set an environment variable of some kind.</p>
<p>Then I would have my initializer check for that environment variable.</p>
http://stackoverflow.com/questions/1893003/rss-feed-from-mysql-table-using-either-ruby-or-rails-or-gems/1893240#18932403Answer by hernan43 for RSS feed from MySQL table using either Ruby or Rails or Gemshernan432009-12-12T12:14:51Z2009-12-12T12:14:51Z<p>Depending on what I was trying to do, I would probably just go for a simple Ruby script. I would use <a href="http://api.rubyonrails.org/classes/ActiveRecord/Base.html" rel="nofollow">ActiveRecord</a> so I didn't have to write any SQL. Then I would use either <a href="http://builder.rubyforge.org/" rel="nofollow">Builder</a> or <a href="http://rubyrss.com/" rel="nofollow">RubyRSS</a> to generate the feed.</p>
<p>Connecting ActiveRecord to a MySQL server directly is as simple as:</p>
<pre><code>require 'active_record'
ActiveRecord::Base.establish_connection(
:adapter => "mysql",
:host => "localhost",
:username => "myusername",
:password => "mypassword",
:database => "mydb"
)
</code></pre>
<p>Then you are free to define ActiveRecord models like you would in a regular Rails app.</p>
<p>There are RSS generator examples on the <a href="http://rubyrss.com/" rel="nofollow">RubyRSS website</a> and a Builder one on the <a href="http://railscasts.com/episodes/87-generating-rss-feeds" rel="nofollow">Railscasts website</a>.</p>
http://stackoverflow.com/questions/1820234/rails-routing-is-being-wonky-with-ie1Rails routing is being wonky with IEhernan432009-11-30T14:46:06Z2009-11-30T15:05:08Z
<p>Wanting to play with jQuery, Orbited, and FasterCSV, I made a Rails chat application. </p>
<p>You can browse to a URL and there is a chat window that is similar to IRC. You can also export the contents of the chat window by visiting the same URL but adding a ".csv" extension to the URL.</p>
<p>HTML version: <code>http://host.name/channel/sweetchatroom</code></p>
<p>CSV version: <code>http://host.name/channel/sweetchatroom.csv</code></p>
<p>In Firefox, Safari, and Chrome it works normal. In IE, If I visit the "HTML" URL, I get the CSV version of the page. I have to manually add ".html" to the URL like so:</p>
<pre><code>http://host.name/channel/sweetchatroom.html
</code></pre>
<p>My route currently looks like this:</p>
<pre><code>map.chat '/channel/:name.:format', :controller => 'channels', :action => 'show'
</code></pre>
<p>I Googled a bit and tried the following suggestions:</p>
<pre><code>map.slug '/channel/:slug.:format', :controller => 'channels', :action => 'show', :defaults => {:format => 'html'}
</code></pre>
<p>-- and --</p>
<pre><code>map.slug '/channel/:slug.:format', :controller => 'channels', :action => 'show', :format => 'html'
</code></pre>
<p>Neither of them worked. Apparently, if you visit a URL without specifying the format, Rails does not set <code>params[:format]</code> to anything. Which in principle I prefer, but the docs are pretty clear that you can set a default format and I'm not sure why it doesn't honor this. The ":defaults => ..." suggestion is what is in the Rails docs.</p>
<p>In order to get it to work I had to change this part of my channels controller:</p>
<pre><code>respond_to do |format|
format.csv {
send_data channel_to_csv(@channel),
:type => "text/plain",
:filename => "#{@channel.slug}.csv",
:disposition => 'inline'
}
format.html # show.html.erb
format.xml { render :xml => @channel }
end
</code></pre>
<p>To this:</p>
<pre><code>respond_to do |format|
format.csv {
send_data channel_to_csv(@channel),
:type => "text/plain",
:filename => "#{@channel.slug}.csv",
:disposition => 'inline'
} if params[:format] == 'csv' # <-- Here is the change
format.html # show.html.erb
format.xml { render :xml => @channel }
end
</code></pre>
<p>It works perfectly but seems really hackish. There has to be a better, more "Ruby" way. Do I have the syntax wrong on my routes entry? It seems like routes is where this should be.</p>
<p>I know I have to be missing something. I couldn't find good information on this problem on Google or on StackOverflow. That generally means I'm way out in the weeds.</p>
http://stackoverflow.com/questions/763477/size-limit-of-a-mysql-query-ruby-mysql/819830#8198300Answer by hernan43 for size limit of a mysql query ruby/mysqlhernan432009-05-04T12:12:29Z2009-05-04T12:12:29Z<p>I'm definitely not a MySQL expert, but in my experience I have found that using sub-SELECTs can be the source of some performance troubles. </p>
<p>I try to avoid using them, but it isn't always possible to do so.</p>
<p>This SO has some more info you might find useful:</p>
<p><a href="http://stackoverflow.com/questions/341086/mysql-subselect-performance-question">http://stackoverflow.com/questions/341086/mysql-subselect-performance-question</a></p>
<p>It also talks about the EXPLAIN command which I use in these situations to try and diagnose troubles. </p>
http://stackoverflow.com/questions/195285/what-stupid-policies-affecting-developers-has-your-company-introduced/541422#5414220Answer by hernan43 for What stupid policies affecting developers has your company introduced?hernan432009-02-12T14:18:49Z2009-02-12T14:18:49Z<p>I worked for a place that wouldn't let me have a Python or Ruby interpreter on a server system because "they are compilers".</p>
<p>They did however have a PERL interpreter on them. PERL is fine and I can use it, but I much would have rather of had the option of working in my language of choice.</p>
http://stackoverflow.com/questions/541367/why-does-ls-stall/541403#541403-1Answer by hernan43 for Why does 'ls' stall?hernan432009-02-12T14:14:21Z2009-02-12T14:14:21Z<p>I have two suggestions that <em>might</em> help you to find where the problem could be occurring.</p>
<p>My first suggestion would be to try BusyBox out. You can find the source here:</p>
<p><a href="http://www.busybox.net/" rel="nofollow">http://www.busybox.net/</a></p>
<p>Though RHEL most likely has an RPM for it. You can softlink the ls command to it(i.e. ln -s) and see if the ls command that it provides does the same thing. If not it may be a minor issue with your version of ls.</p>
<p>The other thing you could try is get the source for coreutils(ls is part of the coreutils package):</p>
<p><a href="http://www.gnu.org/software/coreutils/" rel="nofollow">http://www.gnu.org/software/coreutils/</a></p>
<p>Compile them with debugging symbols, and if the newly compiled version of ls has the same strange stall, you could attach with a debugger to see what it is doing.</p>
<p><strong>These suggestions are probably overkill and more work than its worth but who knows, maybe they'll help.</strong></p>
http://stackoverflow.com/questions/537855/what-books-to-take-programming-beyond-the-basics/537946#5379462Answer by hernan43 for What books to take programming beyond the basics?hernan432009-02-11T17:49:24Z2009-02-11T17:49:24Z<p><a href="http://rads.stackoverflow.com/amzn/click/0201485419" rel="nofollow" title="Art of Computer Programming">Art of Computer Programming</a> by Donald Knuth is considered a classic, though I'm not sure if it has enough Software Design information in it.</p>
<p>The Mythical Man Month is also a classic and has some excellent information(and still very relevant) on the software design process.</p>
http://stackoverflow.com/questions/533310/viewing-rails-model-page-works-on-first-view-but-not-subsequent-views2Viewing Rails model page works on first view but not subsequent viewshernan432009-02-10T17:21:47Z2009-02-11T17:29:09Z
<p>This is using Rails 2.2.2</p>
<p>I have a model that uses the acts_as_flaggable plugin, and on the page I use to display an instance of the model, I list any flags that the model has.</p>
<p>When I start my Rails dev server(mongrel) using the standard script/server command, load the page holding the following code, it loads fine:</p>
<pre><code><% @object.flags.each do |flag| %>
<tr>
<td><%= time_ago_in_words(flag.created_at) %> ago</td>
<td><%= flag.flag %></td>
<td><%= link_to flag.user.login, user_path(flag.user) %></td>
</tr>
<% end %>
</code></pre>
<p>If I reload the page(and on any subsequent views), I get the following NoMethodError error:</p>
<pre><code>You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.include?
</code></pre>
<p>If I restart the dev server, the page loads fine again one time then subsequent views yield the same strangeness.</p>
<p>If I remove the line:</p>
<pre><code><td><%= link_to flag.user.login, user_path(flag.user) %></td>
</code></pre>
<p>The page loads fine and will reload fine from then on.</p>
<p>It seems as if the flaggable plugin is having trouble with the user model for some reason, but then why does it work on the first page load? I also can't seem to repeat the problem using script/console.</p>
<p>--EDIT--</p>
<p>Adding in the stack trace per request. Under normal circumstances I usually can handle this particular error, but the part that is confusing me is why it works the first time.</p>
<p>Here is the error page/trace as it appears to me, I hope this proves to be helpful:</p>
<pre><code>NoMethodError in Admin#list_flagged
Showing app/views/admin/list_flagged.html.erb where line #65 raised:
You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.include?
Extracted source (around line #65):
62: <tr>
63: <td><%= time_ago_in_words(flag.created_at) %> ago</td>
64: <td><%= flag.flag %></td>
65: <td><%= link_to flag.user.login, user_path(flag.user) %></td>
66: </tr>
67: <% end %>
RAILS_ROOT: /dev/trunk
Application Trace | Framework Trace | Full Trace
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:142:in `create_time_zone_conversion_attribute?'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:75:in `define_attribute_methods'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:71:in `each'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:71:in `define_attribute_methods'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:350:in `respond_to?'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:209:in `method_missing'
app/views/admin/list_flagged.html.erb:65
app/views/admin/list_flagged.html.erb:61
app/views/admin/list_flagged.html.erb:24:in `each'
app/views/admin/list_flagged.html.erb:24
app/views/admin/list_flagged.html.erb:14
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:142:in `create_time_zone_conversion_attribute?'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:75:in `define_attribute_methods'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:71:in `each'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:71:in `define_attribute_methods'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:350:in `respond_to?'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:209:in `method_missing'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_collection.rb:359:in `method_missing_without_paginate'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `method_missing'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `each'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `send'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `method_missing'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_collection.rb:359:in `method_missing_without_paginate'
/usr/lib/ruby/gems/1.8/gems/mislav-will_paginate-2.3.6/lib/will_paginate/finder.rb:167:in `method_missing'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/helpers/form_helper.rb:313:in `fields_for'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/helpers/form_helper.rb:253:in `form_for'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/renderable.rb:39:in `send'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/renderable.rb:39:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/template.rb:73:in `render_template'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/base.rb:256:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/base.rb:367:in `_render_with_layout'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/base.rb:254:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:1174:in `render_for_file'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:896:in `render_without_benchmark'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:868:in `render_without_benchmark'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:1248:in `default_render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:1254:in `perform_action_without_filters'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:617:in `call_filters'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/query_cache.rb:8:in `cache'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:524:in `send'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:524:in `process_without_filters'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/session_management.rb:134:in `process'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:392:in `process'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:183:in `handle_request'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:110:in `dispatch_unlocked'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:123:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:132:in `dispatch_cgi'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:39:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load_without_new_constant_marking'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
/usr/lib/ruby/gems/1.8/gems/rails-2.2.2/lib/commands/servers/mongrel.rb:64
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
/usr/lib/ruby/gems/1.8/gems/rails-2.2.2/lib/commands/server.rb:49
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
script/server:3
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:142:in `create_time_zone_conversion_attribute?'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:75:in `define_attribute_methods'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:71:in `each'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:71:in `define_attribute_methods'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb:350:in `respond_to?'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:209:in `method_missing'
app/views/admin/list_flagged.html.erb:65
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_collection.rb:359:in `method_missing_without_paginate'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `method_missing'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `each'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `send'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb:212:in `method_missing'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/associations/association_collection.rb:359:in `method_missing_without_paginate'
/usr/lib/ruby/gems/1.8/gems/mislav-will_paginate-2.3.6/lib/will_paginate/finder.rb:167:in `method_missing'
app/views/admin/list_flagged.html.erb:61
app/views/admin/list_flagged.html.erb:24:in `each'
app/views/admin/list_flagged.html.erb:24
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/helpers/form_helper.rb:313:in `fields_for'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/helpers/form_helper.rb:253:in `form_for'
app/views/admin/list_flagged.html.erb:14
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/renderable.rb:39:in `send'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/renderable.rb:39:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/template.rb:73:in `render_template'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/base.rb:256:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/base.rb:367:in `_render_with_layout'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/base.rb:254:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:1174:in `render_for_file'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:896:in `render_without_benchmark'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:868:in `render_without_benchmark'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:51:in `render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:1248:in `default_render'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:1254:in `perform_action_without_filters'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:617:in `call_filters'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'
/usr/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/query_cache.rb:8:in `cache'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:524:in `send'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:524:in `process_without_filters'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/session_management.rb:134:in `process'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:392:in `process'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:183:in `handle_request'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:110:in `dispatch_unlocked'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:123:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:132:in `dispatch_cgi'
/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:39:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load_without_new_constant_marking'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
/usr/lib/ruby/gems/1.8/gems/rails-2.2.2/lib/commands/servers/mongrel.rb:64
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
/usr/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
/usr/lib/ruby/gems/1.8/gems/rails-2.2.2/lib/commands/server.rb:49
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
script/server:3
Request
Parameters:
None
Show session dump
---
:user_id: 1
:last_page: http://localhost:3000/
flash: !map:ActionController::Flash::FlashHash {}
Response
Headers:
{"cookie"=>[],
"Content-Type"=>"text/html",
"Cache-Control"=>"no-cache"}
</code></pre>
<p>--EDIT #2--</p>
<p>Well, I've "fixed" it. Despite the fact that there is a belongs_to relation in the Flag model, I added the following code to the Flag model from acts_as_flaggable:</p>
<pre><code>def user
User.find(self.user_id)
end
</code></pre>
<p>This code does allow the page to load without error whether it is the first time on the page or the Nth.</p>
<p>I would have added this as an answer, but I don't know that I am satisfied with this.</p>
http://stackoverflow.com/questions/535341/what-would-be-a-good-pair-programming-set-up-using-macs/535424#5354244Answer by hernan43 for What would be a good pair programming set up using Macs?hernan432009-02-11T04:22:11Z2009-02-11T04:22:11Z<p>Not sure if it is relevant anymore but SubEthaEdit(<a href="http://www.codingmonkeys.de/subethaedit/" rel="nofollow">http://www.codingmonkeys.de/subethaedit/</a>) used to be <em>the</em> collaborative editor for the Mac.</p>
http://stackoverflow.com/questions/528806/mysql-next-previous-ids-arbitrary-sort-order/529067#5290670Answer by hernan43 for MySQL next/previous ids (arbitrary sort order)hernan432009-02-09T17:24:24Z2009-02-09T17:24:24Z<p>I've done this in the past with queries(to use your example) like:</p>
<pre><code>SELECT id FROM ps WHERE id>'4' ORDER BY c LIMIT 1
</code></pre>
<p>For the next id and for the previous id:</p>
<pre><code>SELECT id FROM ps WHERE id < '4' ORDER BY c LIMIT 1
</code></pre>
<p>This method obviously requires extra queries but I've really never found a good way to do it.</p>
http://stackoverflow.com/questions/529034/python-pass-or-sleep-for-long-running-processes/529048#5290483Answer by hernan43 for Python: Pass or Sleep for long running processes?hernan432009-02-09T17:18:45Z2009-02-09T17:18:45Z<p>I've always seen/heard that using sleep is the better way to do it. Using sleep will keep your Python interpreter's CPU usage from going wild.</p>
http://stackoverflow.com/questions/528969/ruby-on-rails-capistrano-and-svn-on-windows-setup-help/529026#5290260Answer by hernan43 for Ruby on Rails - Capistrano and SVN on Windows. Setup helphernan432009-02-09T17:12:45Z2009-02-09T17:12:45Z<p>I'm not a Windows person, but my understanding is that in Capistrano's normal state, it executes all of its commands on the server. That is why it needs to be able to pull the code via SVN from your machine. </p>
<p>Looking at that tutorial, it appears as though it is using Apache as the mechanism to allow a client(in this case Capistrano) to pull source code from your Windows machine. This will work for what you want to do.</p>
<p>You don't have to setup Apache in order to accomplish this, you could probably setup an SSH server on your Windows machine, though that is out of my realm of knowledge. :-)</p>
http://stackoverflow.com/questions/520613/well-respected-developer-blogs-written-by-non-famous-people/527022#5270220Answer by hernan43 for Well-respected developer blogs written by non-famous peoplehernan432009-02-09T02:53:38Z2009-02-09T02:53:38Z<p>Jeremy Zawodny
MySQL Guru
<a href="http://jeremy.zawodny.com/blog/" rel="nofollow">http://jeremy.zawodny.com/blog/</a></p>
<p>Jamie Zawinski
Coder for Netscape Navigator
<a href="http://jwz.livejournal.com/" rel="nofollow">http://jwz.livejournal.com/</a></p>
<p>Both of them always have very interesting insights.</p>
http://stackoverflow.com/questions/526212/best-personal-desktop-wiki/526988#5269881Answer by hernan43 for Best personal desktop wiki?hernan432009-02-09T02:29:12Z2009-02-09T02:29:12Z<p>+1 For TiddlyWiki</p>
<p>I will also throw in a shout out to <a href="http://nathanbowers.com/gtdtw/" rel="nofollow" title="GTDTiddlyWiki">GTDTiddlyWiki</a>, which I believe is an offshoot of TiddlyWiki. GTDTiddlyWiki is a great personal organizer and personal information manager.</p>
http://stackoverflow.com/questions/180586/does-anyone-have-experience-with-zfs/526960#5269600Answer by hernan43 for Does anyone have experience with ZFS?hernan432009-02-09T02:11:08Z2009-02-09T02:11:08Z<p>I used it as a low-rent near line storage system on a machine with OpenSolaris installed on it. I had it on a basic mirrored RAID system with 30 days worth of snapshots. On more than one occasion it saved my bacon and that was on a very basic setup. I can only imagine how much you could do with it on more serious/capable hardware.</p>
http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/526926#5269260Answer by hernan43 for Programming a simple IRC (Internet-Relay-Chat) Client.hernan432009-02-09T01:56:37Z2009-02-09T01:56:37Z<p>Not exactly an answer to your question, but it may be helpful. If you are using Ruby, I have found the Autumn Leaves project to be a great way to build an IRC bot using Ruby:</p>
<p><a href="http://github.com/RISCfuture/autumn/tree/master" rel="nofollow">http://github.com/RISCfuture/autumn/tree/master</a></p>
<p>It is pretty much the Jibble of the Ruby world.</p>
http://stackoverflow.com/questions/336774/detecting-and-accessing-a-usb-device-from-within-a-webbrowser-i-e-using-a-plugin/525095#5250950Answer by hernan43 for Detecting and accessing a usb device from within a webbrowser -i.e using a plugin.hernan432009-02-08T03:22:03Z2009-02-08T03:22:03Z<p>I believe it can at least be done with Flash. I use an EasyBloom, a USB gardening diagnostic device. The flash app on their website access the device on my local laptop.</p>
<p>Sadly, I have no idea how they do it since I don't do Flash. :-(</p>
http://stackoverflow.com/questions/446148/pure-php-rrdtool/525073#5250730Answer by hernan43 for Pure PHP rrdtoolhernan432009-02-08T03:06:20Z2009-02-08T03:06:20Z<p>I haven't seen anything like what you describe. Pretty much everything I've found is a wrapper or interface. The main RRDTool website has a small directory of these types of projects and they only have info on the various wrappers/interfaces.</p>
http://stackoverflow.com/questions/471936/recurring-billing-with-rails-and-activemerchant-best-practices-pitfalls-gotcha/519050#5190502Answer by hernan43 for Recurring billing with Rails and ActiveMerchant: Best practices, pitfalls, gotchas?hernan432009-02-06T04:04:30Z2009-02-06T04:04:30Z<p>Peepcode has a PDF for sale(70 pages) that details various aspects of payment processing and industry practices for this. It may be worth checking out:</p>
<p><a href="http://peepcode.com/products/activemerchant-pdf" rel="nofollow">http://peepcode.com/products/activemerchant-pdf</a></p>
http://stackoverflow.com/questions/477980/friendly-form-validations-rails/519027#5190271Answer by hernan43 for Friendly Form Validations (Rails)hernan432009-02-06T03:56:54Z2009-02-06T03:56:54Z<p>Just to add to the above, I use the Ruby URI module to parse URLs for validity.</p>
<p><a href="http://www.ruby-doc.org/stdlib/libdoc/uri/rdoc/classes/URI.html" rel="nofollow">http://www.ruby-doc.org/stdlib/libdoc/uri/rdoc/classes/URI.html</a></p>
<p>It works really well and it helps me to avoid regexes.</p>
http://stackoverflow.com/questions/514068/extension-methods-in-python/517056#5170561Answer by hernan43 for Extension methods in Pythonhernan432009-02-05T17:59:17Z2009-02-05T17:59:17Z<p>I've had great luck with the method described here:</p>
<p><a href="http://mail.python.org/pipermail/python-dev/2008-January/076194.html" rel="nofollow">http://mail.python.org/pipermail/python-dev/2008-January/076194.html</a></p>
<p>I have no idea if it works on builtins though.</p>
http://stackoverflow.com/questions/181090/how-can-i-cache-a-calculated-column-in-rails/198260#1982600Answer by hernan43 for How can I cache a calculated column in rails?hernan432008-10-13T16:57:22Z2008-10-13T16:57:22Z<p>I've found that sometimes there is good reason to de-normalize information in your database. I have something similar in an app that I am working on and I just re-calculate that field anytime the collection changes. </p>
<p>It doesn't use a cache and it stores the most up to date figure in the database. </p>
http://stackoverflow.com/questions/1892302/cant-install-rails-in-ubuntu-9-10-in-my-eee-pc/1892343#1892343Comment by hernan43 on cant install rails in ubuntu 9.10 in my eee pchernan432009-12-12T12:18:11Z2009-12-12T12:18:11ZI've always had a much better experience installing RubyGems from source. The apt one is almost always behind version-wise and it is common that a gem will need the latest version of RG.http://stackoverflow.com/questions/1820234/rails-routing-is-being-wonky-with-ie/1820354#1820354Comment by hernan43 on Rails routing is being wonky with IEhernan432009-11-30T15:10:13Z2009-11-30T15:10:13ZThat was one of the things I had considered and for whatever reason I had not tried it.http://stackoverflow.com/questions/556262/how-to-use-rest-with-nested-resources-which-are-represented-in-xmlComment by hernan43 on How to use REST with nested resources which are represented in XML?hernan432009-02-17T12:45:35Z2009-02-17T12:45:35ZIt looks like you may need to edit the TreesController create action to handle creating BirdsNest objects. Can you post a copy of the TreesController create action?http://stackoverflow.com/questions/545294/kerberos-authentication-with-python/545499#545499Comment by hernan43 on Kerberos authentication with pythonhernan432009-02-13T11:27:01Z2009-02-13T11:27:01ZThis is the method I've used in the past. I thought it was ugly but it does work.http://stackoverflow.com/questions/533310/viewing-rails-model-page-works-on-first-view-but-not-subsequent-views/533355#533355Comment by hernan43 on Viewing Rails model page works on first view but not subsequent viewshernan432009-02-11T17:33:46Z2009-02-11T17:33:46ZVery good. Thanks for this insight! I think the acts_as_flaggable plugin may be a little long in the tooth for Rails 2.2.2. I put in a little bit of a hack to fix it. I'm not terribly happy with it, but the flagging is not too important.http://stackoverflow.com/questions/533310/viewing-rails-model-page-works-on-first-view-but-not-subsequent-views/536834#536834Comment by hernan43 on Viewing Rails model page works on first view but not subsequent viewshernan432009-02-11T17:29:45Z2009-02-11T17:29:45ZThe initializers looked pretty sane to me. Good idea checking them though. This is definitely a tough nut to crack.http://stackoverflow.com/questions/533310/viewing-rails-model-page-works-on-first-view-but-not-subsequent-viewsComment by hernan43 on Viewing Rails model page works on first view but not subsequent viewshernan432009-02-10T20:41:06Z2009-02-10T20:41:06ZI added the trace. http://stackoverflow.com/questions/533310/viewing-rails-model-page-works-on-first-view-but-not-subsequent-views/533355#533355Comment by hernan43 on Viewing Rails model page works on first view but not subsequent viewshernan432009-02-10T18:02:36Z2009-02-10T18:02:36ZThat doesn't explain why it doesn't fail the first time it loads. It works fine once, but if you reload it fails. It is easy to see what is the nil object, but it isn't nil on the first viewing of the page.http://stackoverflow.com/questions/520613/well-respected-developer-blogs-written-by-non-famous-people/527022#527022Comment by hernan43 on Well-respected developer blogs written by non-famous peoplehernan432009-02-09T21:35:34Z2009-02-09T21:35:34ZHeh! No, I really like both and I have a habit of getting them confused with each other...