User Douglas F Shearer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T13:22:24Zhttp://stackoverflow.com/feeds/user/13831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790644/willpaginate-works-on-local-box-gives-undefined-method-toi-on-server-but-bot/1790721#17907210Answer by Douglas F Shearer for will_paginate works on local box, gives "undefined method to_i" on server but both point to the same databaseDouglas F Shearer2009-11-24T15:15:35Z2009-11-24T15:15:35Z<p>If the page param is nil, it's often a good idea to default to a value of 1. This covers cases where no url parameter for page is passed. Where a parameter is passed, it will be used in place of the default:</p>
<pre><code>{:page => params[:page] || 1, :per_page => 20})
</code></pre>
<p>Full example:</p>
<pre><code># contacts_controller.rb
def index
# ...
@search = @current_user.contacts.search(params[:search])
@contacts = @search.all.paginate({:page => params[:page] || 1, :per_page => 20})
end
</code></pre>
http://stackoverflow.com/questions/1469917/build-a-web-console-for-xen-domu-instances/1785447#17854470Answer by Douglas F Shearer for Build a web console for Xen domU instances.Douglas F Shearer2009-11-23T19:38:13Z2009-11-23T19:38:13Z<p>Slicehost built their web console using <a href="http://antony.lesuisse.org/software/ajaxterm/" rel="nofollow">AjaxTerm</a>.</p>
http://stackoverflow.com/questions/1327674/adding-an-autoincrementing-sno-column-in-rails-scaffolding/1328555#13285551Answer by Douglas F Shearer for Adding an autoincrementing SNO column in Rails Scaffolding?Douglas F Shearer2009-08-25T14:13:42Z2009-08-25T14:13:42Z<p>It's not clear whether there is any relationship involved, but it sounds like counter_cache may be a good fit.</p>
<p>A <a href="http://railscasts.com/episodes/23-counter-cache-column" rel="nofollow">Railscast episode</a> provides the code examples and a video tutorial.</p>
http://stackoverflow.com/questions/1125102/rails-runtime-configuration-of-actionmailer/1125162#11251620Answer by Douglas F Shearer for Rails: Runtime configuration of ActionMailer?Douglas F Shearer2009-07-14T12:49:58Z2009-07-14T12:49:58Z<p>Since the configuration files are all Ruby, then the settings can easily be fetched from a configuration file or the like at runtime.</p>
<p>Here's a post I wrote a while back on <a href="http://douglasfshearer.com/blog/gmail-smtp-with-ruby-on-rails-and-actionmailer" rel="nofollow">getting ActionMailer working with GMail SMTP</a>.</p>
<p>NOTE: If you're using rails 2.3 and Ruby 1.87, you don't need the plugin and can simply use the settings in <a href="http://douglasfshearer.com/blog/gmail-smtp-with-ruby-on-rails-and-actionmailer#comment%5F23614" rel="nofollow">this comment</a></p>
http://stackoverflow.com/questions/834105/generating-graphs-in-a-rubyonrails-application/834164#8341643Answer by Douglas F Shearer for Generating graphs in a RubyOnRails applicationDouglas F Shearer2009-05-07T11:35:50Z2009-05-07T11:35:50Z<p>For simple locally generated graphs, check out <a href="http://nubyonrails.com/pages/gruff" rel="nofollow">Gruff</a>.</p>
<p>Also worth a look are some of the various Google Charts ruby libs, <a href="http://github.com/mattetti/googlecharts/" rel="nofollow">googlecharts</a> being one.</p>
http://stackoverflow.com/questions/806184/jquery-ajax-post-blocking-form-submit/806241#8062410Answer by Douglas F Shearer for jquery ajax post blocking form submitDouglas F Shearer2009-04-30T10:06:28Z2009-04-30T10:06:28Z<p>You don't mention which Jquery version you are running. Older versions had a known bug which is exactly as you describe: <a href="http://dev.jquery.com/ticket/2935" rel="nofollow">http://dev.jquery.com/ticket/2935</a>.</p>
http://stackoverflow.com/questions/196049/when-generating-html-do-you-including-formatting-such-as-newlines-and-tabs/196055#1960555Answer by Douglas F Shearer for When generating html, do you including formatting such as newlines and tabs?Douglas F Shearer2008-10-12T20:52:47Z2008-10-12T20:52:47Z<p>It depends whether you want the HTML to be human readable or not. In most cases however, I would suggest that generated markup should always be human-readable, as it makes debugging a whole lot easier.</p>
http://stackoverflow.com/questions/196032/code-formatting-across-windows-and-unix/196051#1960512Answer by Douglas F Shearer for Code formatting across Windows and Unix.Douglas F Shearer2008-10-12T20:51:27Z2008-10-12T20:51:27Z<p>Tab sizes is a purely personal preference, but each piece of code or project should specify which tab size it wants to use as a standard. That way, even if someone doesn't like your tabs sizes, they'll know you meant it to be that way and do the same in any fixes, and hopefully they shouldn't have a problem with that.</p>
http://stackoverflow.com/questions/157938/hiding-a-password-in-a-python-script/158221#1582211Answer by Douglas F Shearer for Hiding a password in a (python) scriptDouglas F Shearer2008-10-01T15:28:38Z2008-10-01T15:28:38Z<p>How about importing the username and password from a file external to the script? That way even if someone got hold of the script, they wouldn't automatically get the password.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/158108#1581080Answer by Douglas F Shearer for What non-programming books should programmers read?Douglas F Shearer2008-10-01T15:08:11Z2008-10-01T15:08:11Z<p><a href="http://rads.stackoverflow.com/amzn/click/0753513382" rel="nofollow">The Economic Naturalist: Why Economics Explains Almost Everything</a> - by Robert H. Frank</p>
<p>A great insight into why economics affect a lot of our everyday lives, including why the black Apple Macbook is more expensive than the white one.</p>
http://stackoverflow.com/questions/157759/how-can-i-determine-the-running-mac-os-x-version-programmatically/157784#1577844Answer by Douglas F Shearer for How can I determine the running Mac OS X version programmatically?Douglas F Shearer2008-10-01T14:10:56Z2008-10-01T14:10:56Z<p>In terminal:</p>
<pre><code>system_profiler SPSoftwareDataType
</code></pre>
<p>Gives:</p>
<pre><code>Software:
System Software Overview:
System Version: Mac OS X 10.5.5 (9F33)
Kernel Version: Darwin 9.5.0
Boot Volume: Main
Boot Mode: Normal
Computer Name: phoenix
User Name: Douglas F Shearer (dougal)
Time since boot: 2 days 16:55
</code></pre>
<p>Or:</p>
<pre><code>sw_vers
</code></pre>
<p>Gives: </p>
<pre><code>ProductName: Mac OS X
ProductVersion: 10.5.5
BuildVersion: 9F33
</code></pre>
http://stackoverflow.com/questions/157685/in-matlab-how-do-i-change-the-background-color-of-a-subplot/157719#1577190Answer by Douglas F Shearer for In Matlab, how do I change the background color of a subplot?Douglas F Shearer2008-10-01T13:57:48Z2008-10-01T13:57:48Z<p>I've not used Matlab in several years, but I think it might well be the whitebg method called after the subplot declaration, similar to the way in which you would set a title.</p>
<pre><code>subplot(3, 2, 4), hist(rand(50)), whitebg('y');
</code></pre>
http://stackoverflow.com/questions/156940/is-the-web-hosting-location-important-these-days/157691#1576911Answer by Douglas F Shearer for Is the web hosting location important these days?Douglas F Shearer2008-10-01T13:51:42Z2008-10-01T13:51:42Z<p>For a small site it is more than acceptable. I host my own sites and projects in the states while myself and a lot of the site users are in the UK.</p>
<p>Another factor to be aware of is the laws within the jurisdiction you are choosing as your host. A prime example of this is The Pirate Bay hosting in Sweden on account of their favourable attitude to copyrighted content.</p>
http://stackoverflow.com/questions/157608/good-ruby-or-python-opensource-projects-that-need-help/157638#1576381Answer by Douglas F Shearer for Good Ruby or Python OpenSource projects that need help?Douglas F Shearer2008-10-01T13:37:31Z2008-10-01T13:37:31Z<p>The Ruby Redcloth Gem is currently looking for help in becoming JRuby compatible.</p>
<p>See <a href="http://rubyforge.org/pipermail/redcloth-upwards/2008-September/000316.html" rel="nofollow">this post</a> in the mailing list for details.</p>
http://stackoverflow.com/questions/157429/what-are-the-benefits-of-using-perforce-instead-of-subversion/157625#1576252Answer by Douglas F Shearer for What are the benefits of using Perforce instead of Subversion?Douglas F Shearer2008-10-01T13:33:44Z2008-10-01T13:33:44Z<p>Has your team evaluated Git? It has features analogous to those available in Perforce, but is free (FOSS).</p>
<p>Either is a great alternative to SVN when working with a large team.</p>
http://stackoverflow.com/questions/157480/dynamically-instantiate-a-ruby-class-similar-to-java/157596#1575962Answer by Douglas F Shearer for Dynamically instantiate a Ruby class similar to JavaDouglas F Shearer2008-10-01T13:27:51Z2008-10-01T13:27:51Z<pre><code>class_name = 'String'
eval(class_name).new
</code></pre>
<p>Simple eval of the class name.</p>
http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157344#1573443Answer by Douglas F Shearer for Do you have a hobby development project?Douglas F Shearer2008-10-01T12:32:42Z2008-10-01T12:32:42Z<p><b>What kind of project is it?</b></p>
<p><a href="http://douglasfshearer.com/blog/rails-plugin-acts_as_indexed" rel="nofollow">Acts As Indexed</a> is a plugin which provides a pain-free (no compiling or external dependencies) way in which to add fulltext search to a Ruby on Rails app.</p>
<p><b>Did it help you professionally? How?</b></p>
<p>Yes. Helped me gain recognition for my CS skills as well as my engineering skills, something my current employers flagged when they first got in touch with me.</p>
<p><strong>Is it open-source? Do other people use it?</strong></p>
<p>Yes. Before I hosted the project on GitHub, I had some stats from my SVN server that showed that it was downloaded many times a day. Several blog articles have since been written about it.</p>
http://stackoverflow.com/questions/153889/when-would-you-not-want-to-use-memcached-in-a-ruby-on-rails-app/153923#1539239Answer by Douglas F Shearer for When would you NOT want to use memcached in a Ruby on Rails app?Douglas F Shearer2008-09-30T16:42:46Z2008-09-30T16:42:46Z<p>Don't use memcached if your application is able to handle all requests quickly. Adding memcached is extra mental overhead when it comes to coding your app, so don't do it unless you need it.</p>
<p>Scaling's "<a href="http://gettingreal.37signals.com/ch04_Scale_Later.php" rel="nofollow">one swell problem to have</a>".</p>
http://stackoverflow.com/questions/1810590/using-ruby-how-can-i-get-the-sum-of-a-specific-item-out-of-an-array-of-hashes/1810611#1810611Comment by Douglas F Shearer on Using Ruby, how can I get the sum of a specific item out of an array of hashes?Douglas F Shearer2009-11-27T23:54:20Z2009-11-27T23:54:20ZYou have a missing ampersand on the argument of the first reduce. Should be:
sum = array.reduce(&:list_price)http://stackoverflow.com/questions/1790575/win32-how-to-scrape-html-without-regular-expressions/1790610#1790610Comment by Douglas F Shearer on Win32.: How to scrape HTML without regular expressions?Douglas F Shearer2009-11-24T15:11:15Z2009-11-24T15:11:15ZOn the Ruby side there is also ScrAPI: <a href="http://blog.labnotes.org/2006/07/11/scraping-with-style-scrapi-toolkit-for-ruby/" rel="nofollow">blog.labnotes.org/2006/07/…</a>http://stackoverflow.com/questions/157759/how-can-i-determine-the-running-mac-os-x-version-programmatically/157774#157774Comment by Douglas F Shearer on How can I determine the running Mac OS X version programmatically?Douglas F Shearer2008-10-01T14:11:47Z2008-10-01T14:11:47ZUname doesn't give the OS version in OS X, only the kernel version.