Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

See how our experiences differ? Just the other day I was fixing a bug caused by someone writing:

  def squidget(options = {})
    squid = { :foo => :bar, ... }.merge(options)
    ...
    squid[:bash] = :blitz
  end
The method was returning :blitz instead of the hash that the method was constructing. I changed it to a returning statement and to my eye it looks much more clear what is going on.

Of course, you could add a "return squid" at the end, or just plain "squid," but somehow that seems less clear, since when you start manufacturing the squid, it isn't obvious what you are doing until you reach the end of the method. Witha returning statement, you know right away.

All in all, I feel good about all constructions in Ruby that use blocks to wrap around the stuff they are doing, like

  Foo.transaction do
    ... 
  end
But you're younger than I am, so your brain is probably sharper. Maybe you find it easier to just work directly with imperitive-style code. Many people I know prefer it that way. I know I like to simulate Scheme as much as possible, and use expressions instead of assigning local variables as much as possible. It could be laziness on my part.


assignment evaluation to RHS catches everyone once in a while. I'd have gone with the plain `squid` at the end. Maybe even with a `return` if I was feeling chatty. (It took me a long while to get over my anti-return-for-speed-reasons bias... I'm still working on it sometimes.)

Besides, I'm not that much younger than you. :P

I think it is mostly that you went the lispy route while I took the smalltalk route.

ETA:

actually... I'll go one step further...

`returning` violates "Do the Simplest Thing That Could Possibly Work" flat out without giving you anything in return.


"`returning` violates "Do the Simplest Thing That Could Possibly Work" flat out without giving you anything in return."

We agree on the maxim while disagreeing with how to apply it. For me, "returning" is simpler because it seems to involve fewer moving parts: you don't have to remember to write 'squid' at the end and you get a local variable that is scoped only to the block where it is needed.

To you, it is a gross and needlessly complicated way to write begin; squid = ...; squid; end. I can see how you would feel that way without feeling that way myself.

I'm curious about the aversion to Symbol#to_proc. If you see [...].map(&:name) and think of it as an abbreviation for { |element| element.name }, there isn't much to like.

But coming from Smalltalk, does your brain ever click over and make you think of [...].map(&:name) as meaning "map the message :name over this array"?

I ask because when I think of languages like Smalltalk and Ruby, I go along with Alan kay and thenk of them as being message-oriented rather than object-oriented. Symbol#to_proc seems to fit that somehow in my brain. I dunno how to explain it any other way, it really feels less like an abbreviation to save some characters and more like getting closer to what I am trying to say...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: