5,971 reputation
1127
bio website zerp.ly/jdeville
location United States
age 29
visits member for 4 years, 9 months
seen 14 hours ago
stats profile views 283

I'm a Ruby on Rails (among other things) developer at Rooster Park just working to share the love


May
12
awarded  ruby-on-rails
Apr
23
comment How can I write a switch statement in Ruby?
See gist.github.com/jredville/5446618, the spec of a case statement is that they use === for comparison (case o; when c;...;end uses c === o not o === c)
Apr
20
comment How can I write a switch statement in Ruby?
Ruby technically uses === not =~, which is usually the same, but since Ruby is open, it isn't always
Apr
1
awarded  Enlightened
Apr
1
awarded  Nice Answer
Mar
18
comment Detect Google Static StreetView API Imagery availability
yeah, they do steer towards static, but if you are already loading JS, then it might be worth loading it via JS, and disabling all interactive controls. One consideration is that you may be incurring 2 api calls by doing JS + image (one for the JS load, one for the image load) (developers.google.com/maps/faq#usage_mapload). Depending on the scale, that might become a cost issue.
Mar
18
comment Detect Google Static StreetView API Imagery availability
Since you are already loading up the JS api, why not use JS to show the map? Also, the documentation says 50 meters or less gives "the nearest to the location", so 50 is probably safe.
Feb
27
awarded  Caucus
Feb
8
comment How to automatically increment gem version and push gem to server?
gem-release should do it, it seems like only parts of it are tied to git. If not, you could just pull that part of the code out
Feb
8
comment Is order preserved in arrays when intersection is done?
RubySpec has no official affiliation, but it was part of the MRI test suite in 2010, and when I was working on it (as part of the IronRuby team), they were actively contributing to it as well.
Feb
8
answered ActionView::Template::Error (undefined method `+' for nil:NilClass):
Feb
8
reviewed Approve suggested edit on Hide the caret -Insertion point - input bar- Blinking vertical little bar
Feb
8
comment Hide the caret -Insertion point - input bar- Blinking vertical little bar
do you have caret mode turned on in your browser?
Feb
8
comment How to override attr_accessor getter and << in rails?
Fixed.... not the first time i've done that
Feb
8
revised How to override attr_accessor getter and << in rails?
SImpleDelegator, not Delegate
Feb
7
comment Regexp issue, Multiple matches but why?
offtopic, but you might be able to replace [a-zA-Z0-9_] with \w depending on the regex engine, the other ranges ([...]) also should have replacements
Feb
7
comment WINDOWS 7 : SAN aware file system
or ServerFault - serverfault.com/questions/295190/…
Feb
7
comment WINDOWS 7 : SAN aware file system
belongs on superuser
Feb
7
comment How to override attr_accessor getter and << in rails?
Just to clarify for future readers def followers<<(val) isn't even valid ruby
Feb
7
answered How to override attr_accessor getter and << in rails?