Barry Hess

198
Reputation
137 views

Registered User

Name Barry Hess
Member for 1 year
Seen 2 hours ago
Website
Location US
Age
I'm a Ruby hacker based in rural southern Minnesota. Mostly I work for Iridesco on cool projects like Harvest. You also may have heard of Follow Cost, a fun side project I worked on with Luke Francl.
Nov
23
answered autoreload partial every few seconds ala twitter search style
Nov
18
answered former php user trying to learn ruby…very tough
Nov
18
answered Including and excluding helpers in Rails
Nov
15
accepted Prevent image caching in rails on a per tag basis
Nov
13
answered Prevent image caching in rails on a per tag basis
Nov
11
comment Preload Mouseover Images in Rails
Rails does the same timestamp appending to the mouseover images, I believe. The only negative here is that it hasn't abstracted preloading images, which I don't think can really be considered a "bias against mouseovers." Using the CSS Sprite technique should be equally achievable in Rails as in any web framework.
Nov
11
comment URL Helpers in Ruby on Rails
More to the point, I talked with some colleagues here and we're pretty sure there has been heavy optimization of those calls (routing optimization, really) since the article was written.
Nov
11
awarded  Commentator
Nov
11
comment URL Helpers in Ruby on Rails
Luke beat me to it. I'll weigh in with a stronger opinion of "don't worry about it." Based on the tone of the question, I do not believe you're in a full-on optimization project phase. So, no, I don't think there are any performance concerns for you at this time. Reap the benefit of development speed while you can. The beauty of OSS is that by the time you need to start optimizing, the project may have already vastly improved the performance of a given method. In short, this will certainly not be your first performance concern, nor your heaviest hitting performance adjustment.
Nov
11
comment Preload Mouseover Images in Rails
Something to be aware of here is that Rails' image_tag helper by default will append timestamps to asset paths to allow for instant cache invalidation upon a file change. It's really hard to live without this once you are used to it, and I'd recommend avoiding hacking something new together for this. I suggest Andy Atkinson's answer for that reason.
Nov
10
accepted Rails Validation for users email - only want it to validate when a user signs up or updates email address.
Nov
5
comment Test if a function is called in a Ruby on Rails unit test
Good point - I can see that angle.
Nov
5
comment Question regarding RJS and usage of link_to_remote
Actually, would page.replace work better is it would replace the entire element, rather than just the inner HTML. Also it might be nice to create a helper method for this particular link_to_remote so all the URL and HTML parameters aren't repeated.
Nov
5
comment Test if a function is called in a Ruby on Rails unit test
I agree with this answer, although I think you want p.expects(:geocode_if_location_info_changed).times(1). I'm OK with using mocha here. A before filter seems pretty close to a collaborator in my opinion.
Nov
5
answered Rails Validation for users email - only want it to validate when a user signs up or updates email address.
Oct
3
awarded  Yearling
Oct
3
accepted Using link_to_remote inside of a controller
Oct
2
answered Using link_to_remote inside of a controller
Sep
29
answered rails include with options
Sep
28
comment Rails - Tracking Referrals to Conversions
I don't think there should be any problem with that idea. I say go for it!
Sep
23
answered Rails - Tracking Referrals to Conversions
Sep
20
comment Rails: How to modify tests for a nested resource?
Martijn, that's what you're gonna have to do. Your routing must know the customer to work. I suppose you could write a test helper to replace the "get" call that autofills the customer_id part of the hash, but that seems like a bad idea unless you're writing many, many tests against the DomainsController.
Sep
20
comment Name of class from its object
What's wrong with that? If you have a List, it returns true. If you have a subclass of a List, it also returns true. Seems proper in either case.
Sep
18
awarded  Teacher
Sep
18
answered Name of class from its object
Sep
16
comment Restful Authentication Issue
I agree - and the mailer configuration also sounds like a really likely candidate for problems.