User cpm - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:34:57Zhttp://stackoverflow.com/feeds/user/3674http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1375051/is-it-possible-to-do-this-without-resorting-to-javascript/1375198#13751982Answer by cpm for Is it possible to do this without resorting to Javascript?cpm2009-09-03T18:40:58Z2009-09-03T18:40:58Z<p>This is something which you'd think would be simple but is actually really tricky.</p>
<p>The "sliding under" aspect isn't really related to maintaining the same size. That's just how floating works. They probably have a rule like:</p>
<pre><code>.box { float: left }
</code></pre>
<p>with markup like:</p>
<pre><code><div class="container">
<div class="box"></div>
<div class="box"></div>
</div>
</code></pre>
<p>If they gave .container a fixed width, that would prevent the .box's from sliding under each other.</p>
<p>If all you're looking for is to have background colors under various boxes of fixed width, there is an easy way to accomplish this without JS.</p>
<p>You can give .container a background image that has the backgrounds for all the boxes and tiles vertically. With your first example, it would be only a few pixels high with a 200 px section of orange, 200px of blue, 200px of red, and 200px of green. </p>
<p>Since if you "clear" the .container it grows to contain all the boxes, the background boxes would appear to all be the same height.</p>
<p>Anything more complicated such as vertically centering the text in the second example, and you're probably better off going with one of the JS scripts to even out the boxes.</p>
http://stackoverflow.com/questions/1374922/javascript-force-no-frames-and-post/1375045#13750452Answer by cpm for javascript: force no frames and POST?cpm2009-09-03T18:14:54Z2009-09-03T18:14:54Z<p>I think redirects via META tags, JavaScript, or HTTP have to be GET requests. You could have pagename.html resubmit as POST via AJAX if it's loaded as a GET request, though.</p>
http://stackoverflow.com/questions/916855/returning-from-ruby-blocks-outside-of-their-original-scope2Returning from ruby blocks outside of their original scopecpm2009-05-27T16:53:09Z2009-05-28T03:03:27Z
<p>I wanted to make something that looks like this:</p>
<pre><code>def make_wrapped_block(&block)
puts "take_block:before"
func = lambda do
puts "Before calling make_wrapped_block's passed block"
block.call
puts "After calling make_wrapped_block's passed block"
end
puts "take block:after"
func
end
def make_block
make_wrapped_block do
puts "Before return"
return :pi
puts "After return"
end
end
make_block.call
</code></pre>
<p>..where there would be many <code>make_block</code> methods which generate closures with similar initialization and cleanup provided by <code>make_wrapped_block</code>.</p>
<p>Because the block passed to <code>make_wrapped_block</code> in <code>make_block</code> returns, this causes a LocalJumpError:</p>
<pre><code>[ cpm juno ~/tmp/local-jump ] ruby bad.rb
take_block:before
take block:after
Before calling make_wrapped_block's passed block
Before return
bad.rb:15:in `make_block': unexpected return (LocalJumpError)
from bad.rb:5:in `call'
from bad.rb:5:in `make_wrapped_block'
from bad.rb:20:in `call'
from bad.rb:20
</code></pre>
<p>Now, I can get this idea to work with a slightly different syntax:</p>
<pre><code>def make_wrapped_block(block)
puts "take_block:before"
func = lambda do
puts "Before calling make_wrapped_block's passed block"
block.call
puts "After calling make_wrapped_block's passed block"
end
puts "take block:after"
func
end
def make_block
make_wrapped_block(lambda {
puts "Before return"
return :pi
puts "After return"
})
end
make_block.call
</code></pre>
<p>This works because when you return from an anonymous function created with <code>lambda</code>, it exits the anonymous function, while with <code>Proc.new</code> and anonymous blocks it tries to return from the scope it was defined in. You can't pass them around and return safely. </p>
<p><strong>Is there a safe way to return from passed blocks outside of the scope they were created?</strong> <br />
The second way works well enough, but the syntax is a bit uglier than the first version.</p>
http://stackoverflow.com/questions/836735/finding-the-days-of-the-week-within-a-date-range-using-oracle-sql2Finding the days of the week within a date range using oracle SQLcpm2009-05-07T20:03:21Z2009-05-08T22:59:59Z
<p>Suppose the following table structure:</p>
<pre><code>Event:
id: integer
start_date: datetime
end_date: datetime
</code></pre>
<p>Is there a way to query all of the events that fall on a particular day of the week? For example, I would like to find a query that would find every event that falls on a Monday. Figuring out if the <code>start_date</code> or <code>end_date</code> falls on a Monday, but I'm not sure how to find out for the dates between.</p>
<p>Pure SQL is preferred since there is a bias against stored procedures here, and we're calling this from a Rails context which from what I understand does not handle stored procedures as well.</p>
http://stackoverflow.com/questions/808553/debugging-a-rails-controller-making-too-many-queries/809189#8091891Answer by cpm for debugging a rails controller making too many queriescpm2009-04-30T21:28:47Z2009-04-30T21:28:47Z<p>Are you running in development or production mode? </p>
<p><code>SHOW FIELDS FROM foo</code> is done by your model, as you noted, so it knows which accessor methods to generate. </p>
<p>In development mode, this is done every request so you don't need to reload your webserver so often, but in production mode this information should be cached, even if you're running a three year old version of Rails.</p>
http://stackoverflow.com/questions/636008/how-do-i-add-custom-options-to-actioncontrollerroutingroutes-map-resources/640035#6400351Answer by cpm for How do I add custom options to ActionController::Routing::Routes map.resources ?cpm2009-03-12T19:03:26Z2009-03-12T19:03:26Z<p>Not quite what you're looking for, but you could save some typing with <a href="http://api.rubyonrails.org/classes/Object.html#M000277" rel="nofollow">Object#with_options</a>:</p>
<pre><code>map.with_options(:only => [:show, :index]) do |readonly|
readonly.resources :foo
readonly.resources :bar
...
end
</code></pre>
<p>Otherwise, you're probably looking at monkey patching or subclassing <code>ActionController::Routing::RouteSet::Mapper</code>.</p>
http://stackoverflow.com/questions/620091/redirecting-to-a-500-page-when-an-ajax-call-fails-in-ruby-on-rails/621210#6212103Answer by cpm for Redirecting to a 500 page when an AJAX call fails in Ruby on Railscpm2009-03-07T02:57:05Z2009-03-07T02:57:05Z<p>You can use respond_to inside a controller's rescue_action or rescue_action_in_public method. Consider the following controller:</p>
<pre><code>class DefaultController < ApplicationController
def index
raise "FAIL"
end
def rescue_action(exception)
respond_to do |format|
format.html { render :text => "Rescued HTML" }
format.js { render :action => "errors" }
end
end
end
</code></pre>
http://stackoverflow.com/questions/620962/back-browser-action-in-ruby-on-rails/620985#6209850Answer by cpm for 'Back' browser action in Ruby on Railscpm2009-03-07T00:27:33Z2009-03-07T00:27:33Z<p>You can use link_to("Hello", :back) to generate <code><a href="javascript:history.back()">Hello</a></code>.</p>
http://stackoverflow.com/questions/620829/how-do-you-test-code-that-is-not-a-model-or-controller/620882#6208824Answer by cpm for How do you test code that is not a model or controllercpm2009-03-06T23:31:05Z2009-03-06T23:31:05Z<p>You can put them in your units directory without any complications.</p>
<p>My Library:</p>
<pre><code>[ cpm juno ~/apps/feedback ] cat lib/my_library.rb
class MyLib
def look_at_me
puts "I DO WEIRD STUFF"
end
end
</code></pre>
<p>My Test:</p>
<pre><code>[ cpm juno ~/apps/feedback ] cat test/unit/fake_test.rb
require 'test_helper'
class FakeTest < ActiveSupport::TestCase
# Replace this with your real tests.
def test_truth
require 'my_library'
puts "RUNNING THIS NOW"
MyLib.new.look_at_me
assert true
end
end
</code></pre>
<p>And running it:</p>
<pre><code>[ cpm juno ~/apps/feedback ] rake test:units
(in /home/cpm/apps/feedback)
/usr/bin/ruby1.8 -Ilib:test "/usr/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb" "test/unit/fake_test.rb"
Loaded suite /usr/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader
Started
RUNNING THIS NOW
I DO WEIRD STUFF
.
Finished in 0.254404 seconds.
1 tests, 1 assertions, 0 failures, 0 errors
Loaded suite /var/lib/gems/1.8/bin/rake
Started
Finished in 0.00094 seconds.
0 tests, 0 assertions, 0 failures, 0 errors
</code></pre>
<p>As long as it ends in _test.rb it should pick it up.</p>
http://stackoverflow.com/questions/402307/activerecord-hasn-association/404279#4042791Answer by cpm for ActiveRecord has_n associationcpm2008-12-31T23:36:27Z2008-12-31T23:36:27Z<p>My first instinct would be to use a join table, but if that's not desirable <code>User.movie[1-5]_id</code> columns would fit the bill. (I think <code>movie1_id</code> fits better with Rails convention than <code>movie_id_1</code>.)</p>
<p>Since you tagged this Rails and ActiveRecord, I'll add some completely untested and probably somewhat wrong model code to my answer. :)</p>
<pre><code>class User < ActiveRecord::Base
TOP_N_MOVIES = 5
(1..TOP_N_MOVIES).each { |n| belongs_to "movie#{n}".to_sym, :class_name => Movie }
end
</code></pre>
<p>You could wrap that line in a macro-style method, but unless if that's a common pattern for your application, doing that will probably just make your code that harder to read with little DRY benefit. </p>
<p>You might also want to add validations to ensure that there are no duplicate movies on a user's list.</p>
<p>Associating your movie class back to your users is similar.</p>
<pre><code>class Movie < ActiveRecord::Base
(1..User::TOP_N_MOVIES).each do |n|
has_many "users_list_as_top_#{n}".to_sym, :class_name => User, :foreign_key => "movie#{n}_id"
end
def users_list_as_top_anything
ary = []
(1..User::TOP_N_MOVIES).each {|n| ary += self.send("users_list_as_top_#{n}") }
return ary
end
end
</code></pre>
<p>(Of course that <code>users_list_as_top_anything</code> would probably be better written out as explicit SQL. I'm lazy today.)</p>
http://stackoverflow.com/questions/341737/mysql-changing-the-query-to-be-distinct-on-just-1-column/341874#3418740Answer by cpm for MySQL - Changing the query to be distinct on just 1 columncpm2008-12-04T20:07:00Z2008-12-04T20:07:00Z<p>You could limit it by using a subquery like this:</p>
<pre><code>SELECT t1.url, GROUP_CONCAT( t1.screen_name ) , COUNT( * )
FROM (
SELECT DISTINCT url, screen_name
FROM mytable
) AS t1
GROUP BY t1.url
</code></pre>
<p>It doesn't give you the title, but since the title isn't in the GROUP BY, it wasn't really clear to me what that field would return anyway. If you want all the titles of those URLs, you could JOIN the above query with your table.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/105040#1050403Answer by cpm for What was your first home computer?cpm2008-09-19T20:01:46Z2008-09-19T20:01:46Z<p><img src="http://www.hp.com/hpinfo/abouthp/histnfacts/museum/personalsystems/0034/images/0034threeqtr.jpg" alt="alt text" title="HP 5030" /></p>
<p>The first computer my family owned was the HP 5030, preloaded with Windows 95. </p>
<p>I feel insufficiently old school. </p>
<p>Although, the first computer I used regularly was the Apple IIe's at school. The sales clerk was a bit confused when I said I wanted to buy one of those suckers when my parents said we could get a computer in 1996.</p>
http://stackoverflow.com/questions/55711/options-for-distribution-of-an-offline-ruby-on-rails-application/57757#577570Answer by cpm for Options for distribution of an offline Ruby on Rails applicationcpm2008-09-11T21:57:12Z2008-09-11T21:57:12Z<p>The way most people ship ruby programs, including Rails webapps, as a standalone exe is via rubyscript2exe. They describe how to package a Rails application at <a href="http://www.erikveen.dds.nl/distributingrubyapplications/rails.html" rel="nofollow">http://www.erikveen.dds.nl/distributingrubyapplications/rails.html</a>. Ruby, Rails, and all the associated libraries will be included in the EXE file.</p>
<p>As others mentioned, Ruby is not necessarily Rails and if you really want an easy way to write a distributable GUI application in Ruby, <a href="http://code.whytheluckystiff.net/shoes/" rel="nofollow">Shoes</a> is an excellent place to start looking.</p>
http://stackoverflow.com/questions/514/frequent-systemexit-in-ruby-when-making-http-calls/35689#356892Answer by cpm for Frequent SystemExit in Ruby when making HTTP callscpm2008-08-30T04:55:25Z2008-08-30T04:55:25Z<p>I used to get these all the time on Apache1/fastcgi. I think it's caused by fastcgi hanging up before Ruby is done. </p>
<p>Switching to mongrel is a good first step, but there's more to do. It's a bad idea to cull from web services on live pages, particularly from Rails. Rails is not thread-safe. The number of concurrent connections you can support equals the number of mongrels (or Passenger processes) in your cluster. </p>
<p>If you have one mongrel and someone accesses a page that calls a web service that takes 10 seconds to time out, every request to your website will timeout during that time. Most of the load balancers just cycle through your mongrels blindly, so if you have two mongrels, every other request will timeout.</p>
<p>Anything that can be unpredictably slow needs to happen in a job queue. The first hit to /slow/action adds the job to the queue, and /slow/action keeps on refreshing via page refreshes or queries via ajax until the job is finished, and then you get your results from the job queue. There are a few job queues for Rails nowadays, but the oldest and probably most widely used one is <a href="http://backgroundrb.rubyforge.org/" rel="nofollow">BackgroundRB</a>.</p>
<p>Another alternative, depending on the nature of your app, is to cull the service every N minutes via cron, cache the data locally, and have your live page read from the cache. </p>
http://stackoverflow.com/questions/35646/do-you-continue-development-in-a-branch-or-in-the-trunk/35657#356570Answer by cpm for Do you continue development in a branch or in the trunk?cpm2008-08-30T03:38:05Z2008-08-30T03:38:05Z<p>For me, it depends on the software I'm using. </p>
<p>Under CVS, I would just work in "trunk" and never tag/branch, because it was really painful to do otherwise.</p>
<p>In SVN, I would do my "bleeding edge" stuff in trunk, but when it was time to do a server push get tagged appropriately.</p>
<p>I recently switching to git. Now I find that I never work in trunk. Instead I use a named "new-featurename" sandbox branch and then merge into a fixed "current-production" branch. Now that I think about it, I really should be making "release-VERSIONNUMBER" branches before merging back into "current-production" so I can go back to older stable versions...</p>
http://stackoverflow.com/questions/35528/canonical-problems-list/35638#356383Answer by cpm for canonical problems listcpm2008-08-30T03:14:09Z2008-08-30T03:14:09Z<p>Have you looked at Wikipedia's <a href="http://en.wikipedia.org/wiki/Category:Computational_problems" rel="nofollow">Category:Computational problems</a> and <a href="http://en.wikipedia.org/wiki/Category:NP-complete_problems" rel="nofollow">Category:NP Complete Problems</a> pages? It's probably not complete, but they look like good starting points. Wikipedia seems to do pretty well in CS topics.</p>
http://stackoverflow.com/questions/35615/what-is-a-good-online-resource-for-css-design-patterns/35632#356322Answer by cpm for What is a good online resource for css 'design patterns'?cpm2008-08-30T03:01:03Z2008-08-30T03:01:03Z<p>I refer to <a href="http://www.alistapart.com/" rel="nofollow">A List Apart</a> articles all the time for those sorts of things. They do a lot of trial-and-error research to come up with really creative ways to handle those common CSS problems in the cleanest most portable way possible.</p>
http://stackoverflow.com/questions/35599/what-makes-the-unix-file-system-more-superior-to-the-windows-file-system/35627#356271Answer by cpm for What makes the Unix file system more superior to the Windows file system?cpm2008-08-30T02:53:11Z2008-08-30T02:53:11Z<p>I'm not at all familiar with the inner workings of the UNIX file systems, as in how the bits and bytes are stored, but really that part is interchangeable (<a href="http://en.wikipedia.org/wiki/Ext3" rel="nofollow">ext3</a>, <a href="http://en.wikipedia.org/wiki/ReiserFS" rel="nofollow">reiserfs</a>, etc).</p>
<p>When people say that UNIX file systems are better, they might mean to be saying, "Oh ext3 stores bits in such as way that corruption happens way less than NTFS", but they might also be talking about design choices made at the common layer above. They might be referring to how the path of the file does not necessarily correspond to any particular device. For example, if you move your program files to a second disk, you probably have to refer to them as "D:\Program Files", while in UNIX /usr/bin could be a hard drive, a network drive, a CD ROM, or RAM.</p>
<p>Another possibility is that people are using "file system" to mean the organization of paths. Like, for instance, how Windows generally likes programs in "C:\Program Files\CompanyName\AppName" while a particular UNIX distribution might put most of them in /usr/local/bin. In the later case, you can access much more of your system readily from the command line with a much smaller PATH variable. </p>
<p>Also, since you mentioned grep, if all the source code for system libraries such as the kernel and libc is stored in /usr/local/src, doing a recursive grep for a particular error message coming from the guts of some system library is much simpler than if things were laid out as /usr/local/library-name/[bin|src|doc|etc]. If you already have an inkling of where you're searching, though, cygwin grep performs quite well under Windows. In fact, I find for full-text searching I get better results from grep than the search facilities built into Windows!</p>
http://stackoverflow.com/questions/35494/is-there-anyway-to-run-ruby-on-rails-applications-on-a-windows-box/35596#355965Answer by cpm for Is there anyway to run ruby on rails applications on a windows box?cpm2008-08-30T02:18:30Z2008-08-30T02:18:30Z<p>Windows is not the usual place to deploy production Rails apps, but there are people who do it. Mongrel was originally written to give better deployment options for Windows. As it turned out the UNIX deployment options weren't that good either. :)</p>
<p>Start with the Ruby One Click installer so you have a sane installation of ruby and rubygems.</p>
<p>From there, you install the rails gem and the gem for your database like you normally would. Most if not all of the databases have Windows gems. </p>
<p>Make sure to install mongrel_service to be able to control each mongrel like a normal windows service. See <code>mongrel_rails service::install -h</code> for details.</p>
<p>Once you have your mongrels set up, it's similar to a UNIX deployment. You set up a reverse proxy, such as Apache2 and you're set.</p>
<p>You might run into some gems (such as <a href="http://backgroundrb.rubyforge.org/" rel="nofollow">BackgroundRB</a>) that will not work under Windows because they have C code that either rely on UNIX libraries or expect a UNIX-like build system at installation time. However, all of the really important Rails gems, such as Mongrel and the database adapters, have gems with pre-built binaries available, so you'll be fine.</p>
http://stackoverflow.com/questions/27292/what-is-the-best-solution-for-maintaining-backup-and-revision-control-on-live-web/35428#354281Answer by cpm for What is the best solution for maintaining backup and revision control on live websites?cpm2008-08-29T22:40:49Z2008-08-29T22:40:49Z<p>rsync will only upload the differences. I haven't personally used it, but <a href="http://diveintomark.org" rel="nofollow">Mark Pilgrim</a> wrote a long time ago about how it even <a href="http://diveintomark.org/archives/2004/05/01/essentials" rel="nofollow">handles binary diffs brilliantly</a>.</p>
<p>svn+rsync sounds like a fantastic solution. I'll have to try that in the future.</p>
http://stackoverflow.com/questions/30319/is-there-a-html-opposite-to-noscript/35318#353180Answer by cpm for Is there a html opposite to noscriptcpm2008-08-29T21:18:59Z2008-08-29T21:18:59Z<p>There isn't a tag for that. You would need to use javascript to show the text. </p>
<p>Some people already suggested using JS to dynamically set CSS visible. You could also dynamically generate the text with <code>document.getElementById(id).innerHTML = "My Content"</code> or dynamically creating the nodes, but the CSS hack is probably the most straightforward to read.</p>
http://stackoverflow.com/questions/35152/where-do-you-go-when-you-need-an-open-source-library-or-module/35254#352541Answer by cpm for Where do you go when you need an open-source library or module?cpm2008-08-29T20:36:46Z2008-08-29T20:36:46Z<p>Most ruby libraries are hosted at <a href="http://www.rubyforge.org/" rel="nofollow">RubyForge</a>. It's free and <a href="http://rubygems.org/" rel="nofollow">rubygems</a> culls from there by default.</p>
<p>Ruby developers (particularly Rails plugin writers) have also been using <a href="http://www.github.com/" rel="nofollow">GitHub</a> a lot ever since Rails development moved over there.</p>
http://stackoverflow.com/questions/34896/when-is-it-best-to-sanitize-user-input/35138#351381Answer by cpm for When is it Best to Sanitize User Input?cpm2008-08-29T19:42:08Z2008-08-29T19:42:08Z<p>The most important thing is to always be consistent in when you escape. Accidental double sanitizing is lame and not sanitizing is dangerous.</p>
<p>For SQL, just make sure your database access library supports bind variables which automatically escapes values. Anyone who manually concatenates user input onto SQL strings should know better.</p>
<p>For HTML, I prefer to escape at the last possible moment. If you destroy user input, you can never get it back, and if they make a mistake they can edit and fix later. If you destroy their original input, it's gone forever.</p>
http://stackoverflow.com/questions/1461481/how-to-display-error-type-in-ruby/1461504#1461504Comment by cpm on How to display error type in ruby?cpm2009-09-22T17:44:26Z2009-09-22T17:44:26ZAnd then if you still need specific handling for different types of errors, you can do that with a case..when.http://stackoverflow.com/questions/1375051/is-it-possible-to-do-this-without-resorting-to-javascriptComment by cpm on Is it possible to do this without resorting to Javascript?cpm2009-09-03T18:29:03Z2009-09-03T18:29:03ZThe boxes are going to have a variable amount of content which isn't known beforehand. He wants them all to automatically be as large as the largest one, regardless of content.http://stackoverflow.com/questions/440692/build-a-plugin-or-gem/441291#441291Comment by cpm on Build a Plugin or Gem?cpm2009-05-11T18:35:00Z2009-05-11T18:35:00Z"Easy to do" link changed to <a href="http://mbleigh.com/2008/06/11/gemplugins-a-brief-introduction-to-the-future-of-rails-plugins.html" rel="nofollow">mbleigh.com/2008/06/…</a>http://stackoverflow.com/questions/836735/finding-the-days-of-the-week-within-a-date-range-using-oracle-sql/836796#836796Comment by cpm on Finding the days of the week within a date range using oracle SQLcpm2009-05-07T20:39:14Z2009-05-07T20:39:14Z<i>never</i> used, that is.http://stackoverflow.com/questions/836735/finding-the-days-of-the-week-within-a-date-range-using-oracle-sql/836796#836796Comment by cpm on Finding the days of the week within a date range using oracle SQLcpm2009-05-07T20:39:03Z2009-05-07T20:39:03ZAbsolutely correct. I used CONNECT BY before.http://stackoverflow.com/questions/804622/where-should-i-put-sql-queries-in-rails/806757#806757Comment by cpm on Where should I put SQL queries in Rails?cpm2009-04-30T21:13:58Z2009-04-30T21:13:58ZNamed scopes are particularly nice because you can chain them together.http://stackoverflow.com/questions/622879/ruby-on-rails-how-to-store-form-data/623346#623346Comment by cpm on Ruby on Rails: How to store form datacpm2009-03-08T19:06:41Z2009-03-08T19:06:41ZThere's nothing un-idiomatic about having a hash lookup table in the model in this case! :) Unless if I wanted users to be able to update the states, I would prefer Alex's approach since the states change so infrequently. Removes one more thing that can go wrong when setting up a new installation.http://stackoverflow.com/questions/622879/ruby-on-rails-how-to-store-form-data/622881#622881Comment by cpm on Ruby on Rails: How to store form datacpm2009-03-08T18:51:15Z2009-03-08T18:51:15Zselect("your_object", "state", SomeModel::STATE_CODES.collect { |code, name| [name, code] })http://stackoverflow.com/questions/246859/http-1-0-vs-1-1/247026#247026Comment by cpm on HTTP 1.0 vs 1.1cpm2009-03-06T22:55:54Z2009-03-06T22:55:54ZHTTP 1.0 does have support for compression via the Content-Encoding header.
As Paul mentioned, I would definitely recommend any HTTP/1.0 clients to send the Host header, since it isn't strictly prohibited to do so and things will more often work as you expect them to.
Otherwise, this is dead on.http://stackoverflow.com/questions/487067/how-to-avoid-short-circuit-evaluation-on/487257#487257Comment by cpm on How to avoid short-circuit evaluation on cpm2009-01-29T23:02:24Z2009-01-29T23:02:24ZInteresting! I never took a close look at & and | in logical contexts, since I automatically read those as bitwise operations.http://stackoverflow.com/questions/487067/how-to-avoid-short-circuit-evaluation-on/487219#487219Comment by cpm on How to avoid short-circuit evaluation on cpm2009-01-29T22:56:42Z2009-01-29T22:56:42Z@Paul Performance and obscurity.
Symbol#to_proc was a lot slower than passing a block on older versions of ruby. (Not really an issue with 2 elements, though.)
It's a relatively new addition to the core library leveraging old but not commonly used type coercion syntax.http://stackoverflow.com/questions/53472/best-way-to-convert-a-ruby-string-range-to-a-range-object/54647#54647Comment by cpm on Best way to convert a Ruby string range to a Range objectcpm2008-09-11T22:09:25Z2008-09-11T22:09:25ZShouldn't that be inject{|s,e| (s.to_i .. e.to_i) } ?
As written, it returns an Array with a range as a single element instead of a Range.