Pete Hodgson

466
reputation
107 views

Registered User

name Pete Hodgson
member for 11 months
seen 1 hour ago
website
location San Francisco, CA
age 29
Right now my toys/tools are ActiveMQ, Ruby, Rails, REST APIs, and Flex. My passions include TDD and 'Agile stuff'.
2d
awarded  Tumbleweed
Dec
1
answered representing a many-to-many relationship in couchDB
Nov
30
asked SOAP calls using EventMachine
Nov
30
asked representing a many-to-many relationship in couchDB
Nov
6
revised Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time?
added 131 characters in body
Nov
1
revised Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time?
Made question title more explicit
Nov
1
revised Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time?
Update to add info about bug already having been reported (with patch)
Oct
30
answered Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time?
Oct
29
asked Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time?
Oct
25
answered xml diff in ruby?
Oct
25
answered xml diff in ruby?
Oct
22
accepted what are the advantages of mocha over rspec’s built in mocking framework?
Sep
27
comment Have you had a bad experience with Scrum or Sprinting?
+1 on the need for a disciplined scrum master
Sep
26
comment How to add convenience class methods to a Singleton class in ruby
Awesome answer. In my particular case SingleForwardable is exactly what I was looking for. Thanks!
Sep
26
asked How to add convenience class methods to a Singleton class in ruby
Sep
13
answered what are the advantages of mocha over rspec’s built in mocking framework?
Sep
13
comment Overhead from using Dependency Injection
You may want to re-state the question as 'Does using an IoC container potentially cause large overhead'. A lot of people make a distinction between DI as a general concept (i.e. specifying dependencies at runtime rather than compile-time) and IoC containers as one particular DI strategy.
Sep
10
comment Who in the software world do you admire the most?
Richard yes, but Carl, not so much.
Aug
26
comment When is Inversion of Control useful and when shouldn’t it be used?
I've always been a bit fuzzy on what the differences are between IoC, DI, and containers thereof. After reading your post I realize that the "constructor injection or similar" I mention would be classified as IoC/DI.
Aug
16
comment Is it bad practice to use return inside a void method?
I disagree as well. Guard clauses which bail out of a function early are generally considered a Good Thing nowadays in helping a reader to understand the implementation.
Aug
16
answered Why make Objects when you can just use a MySQL database?
Aug
16
answered When is Inversion of Control useful and when shouldn’t it be used?
Aug
16
comment Senior programming ‘guru’ who can’t program - should I find a different career?
How much of this is an answer to the question?
Aug
4
awarded  Self-Learner
Aug
2
revised What good technology podcasts are out there?
Removed duplicate entry for TWiT (This Week in Tech)
Aug
1
comment What are the best Google Tech Talks?
This guy really is a great speaker
Jul
12
comment unpacking/freezing gems into a non-rails ruby app
Turns out that the solution as given doesn't quite work for all gems. Specifically, I'm using database_cleaner (github.com/bmabey/database_cleaner), which when unpacked has a file vendor/gems/bmabey-database_cleaner-0.2.2/examples/lib/activerecord.rb. the Dir.glob given in Ryan's answer leads to that activerecord.rb being preferred over the Active Record gem's activerecord.rb. I tweaked the Dir.glob given to use '*' rather than '**' and everything was fine, at least for my set of gems. YMMV.
Jul
12
awarded  Critic
Jul
12
comment unpacking/freezing gems into a non-rails ruby app
Thanks guys. I tried the LOAD_PATH approach originally suggested and it works fine for now. If I start seeing the issues you discuss with gem which pull in other gems then I'll experiment with the GEM_PATH addition. Thanks again for the help, much appreciated.
Jul
10
revised unpacking/freezing gems into a non-rails ruby app
minor edit: fixed grammar
Jul
10
asked unpacking/freezing gems into a non-rails ruby app
Jul
7
comment ClassName to class_name
yeah, that seems a bit harsh. Maybe because you did the unnecessary (if you assume that it's a Rails project) require?
Jul
6
comment Is there an ORM-like wrapper for memcached
Cool. thanks Yehuda, I'll check this out. I've been looking for an excuse to play with all these new persistent hash stores which are popping up.
Jul
6
comment Is there an ORM-like wrapper for memcached
Yeah, I have transient data which I get from another API. I want to cache the data locally so that I don't have to round-trip to this other API each time I service a request. The stuff I'm caching is account information stuff - objects like a User, an Organization, etc etc.
Jul
1
awarded  Commentator
Jul
1
comment Is it possible to create a ‘command line’ swf?
Ohhh, now that's an interesting approach!. I was just reading last night about an amqp client in as3. I could maybe us rabbitMQ or similar to broker message passing between a ruby driver and an as3 swf that was pulling the code.
Jul
1
comment Is there an ORM-like wrapper for memcached
Nice. I particularly like how you implemented get_unique_id. Ideally I'm looking to use an existing library rather than re-inventing the wheel, but if I did need to do this from scratch I would love to steal what you have here :)
Jul
1
comment Is there an ORM-like wrapper for memcached
Thanks Sarah, but that's specifically what I'm NOT looking for - a caching library for ActiveRecord.
Jun
30
asked Is there an ORM-like wrapper for memcached
Jun
30
comment Is it possible to create a ‘command line’ swf?
thanks for the response. I added an explanation to me question as to why I wanted to use as3 on the command line.
Jun
30
revised Is it possible to create a ‘command line’ swf?
added 471 characters in body
Jun
29
accepted What are alternatives to find_by_sql for computationaly-heavy queries?
Jun
28
asked Is it possible to create a ‘command line’ swf?
Jun
28
answered Ruby date conversion
Jun
28
answered What are alternatives to find_by_sql for computationaly-heavy queries?
Jun
21
answered Is there a good podcast about concurrency?
Jun
21
answered Unable to rescue from “Lost connection to MySQL server” error