User Pete Hodgson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:06:40Z http://stackoverflow.com/feeds/user/53529 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1822444/representing-a-many-to-many-relationship-in-couchdb/1823804#1823804 1 Answer by Pete Hodgson for representing a many-to-many relationship in couchDB Pete Hodgson 2009-12-01T03:25:00Z 2009-12-01T03:25:00Z <p>I cross-posted this question to the <a href="http://couchdb.apache.org/community/lists.html" rel="nofollow">couchdb users mailing list</a> and Nathan Stott <a href="http://markmail.org/message/vsvwyz4rccc33jox" rel="nofollow">pointed me to</a> a <a href="http://www.cmlenz.net/archives/2007/10/couchdb-joins" rel="nofollow">very helpful blog post</a> by Christopher Lenz</p> http://stackoverflow.com/questions/1822444/representing-a-many-to-many-relationship-in-couchdb 2 representing a many-to-many relationship in couchDB Pete Hodgson 2009-11-30T21:15:26Z 2009-12-01T03:25:00Z <p>Let's say I'm writing a log analysis application. The main domain object would be a LogEntry. In addition. users of the application define a LogTopic which describes what log entries they are interested in. As the application receives log entries it adds them to couchDB, and also checks them against all the LogTopics in the system to see if they match the criteria in the topic. If it does then the system should record that the entry matches the topic. Thus, there is a many-to-many relationship between LogEntries and LogTopics. </p> <p>If I were storing this in a RDBMS I would do something like:</p> <pre><code>CREATE TABLE Entry ( id int, ... ) CREATE TABLE Topic ( id int, ... ) CREATE TABLE TopicEntryMap ( entry_id int, topic_id int ) </code></pre> <p>Using CouchDB I first tried having just two document types. I'd have a LogEntry type, looking something like this:</p> <pre><code>{ 'type': 'LogEntry', 'severity': 'DEBUG', ... } </code></pre> <p>and I'd have a LogTopic type, looking something like this:</p> <pre><code>{ 'type': 'LogTopic', 'matching_entries': ['log_entry_1','log_entry_12','log_entry_34',....], ... } </code></pre> <p>You can see that I represent the relationship by using a <code>matching_entries</code> field in each LogTopic documents to store a list of LogEntry document ids. This works fine up to a point, but I have issues when multiple clients are both attempting to add a matching entry to a topic. Both attempt optimistic updates, and one fails. The solution I'm using now is to essentially reproduce the RDBMS approach, and add a third document type, something like:</p> <pre><code>{ 'type':'LogTopicToLogEntryMap', 'topic_id':'topic_12', 'entry_id':'entry_15' } </code></pre> <p>This works, and gets past the concurrent update issues, but I have two reservations:</p> <ol> <li>I worry that I'm just using this approach because it's what I'd do in a relational DB. I wonder if there's a more couchDB-like (relaxful?) solution. </li> <li>My views can no longer retrieve all the entries for a specific topic in one call. My previous solution allowed that (if I used the include_docs parameter).</li> </ol> <p>Anyone have a better solution for me? Would it help if I also posted the views I'm using?</p> http://stackoverflow.com/questions/1823146/soap-calls-using-eventmachine 0 SOAP calls using EventMachine Pete Hodgson 2009-11-30T23:33:28Z 2009-11-30T23:33:28Z <p>Is there any way to make non-blocking SOAP requests within EventMachine? </p> <p>I'm creating a ruby application which interacts with the google adwords api (which is SOAP based), using the adwords4r gem. The application uses EM to receive messages over a stomp connection, and then processes those messages by making SOAP calls to the adwords api. Obviously I need those calls to be non-blocking, since the processing will be within the reactor thread. One option would be to use EM.defer, but I'd rather not have the overhead of a bunch of threads in a threadpool.</p> http://stackoverflow.com/questions/1647209/why-does-datetimeformatw3cdtf-return-0-for-europe-london-dates-outside-of-bri 2 Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time? Pete Hodgson 2009-10-29T23:38:44Z 2009-11-06T05:36:03Z <p>Ever since British Summer Time ended in the UK last week my application has been seeing a very interesting bug. Here's an isolated Perl script which demonstrates the issue:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use DateTime::Format::W3CDTF; use DateTime::Format::ISO8601; my $tz = 'Europe/London'; sub print_formatted_date { my $date = shift; my $tz_date = DateTime::Format::ISO8601-&gt;new-&gt;parse_datetime( $date ); $tz_date-&gt;set_time_zone( $tz ); print "tz_date: $tz_date\n"; $tz_date-&gt;set_formatter( DateTime::Format::W3CDTF-&gt;new ); print "tz_date with W3C formatter: $tz_date\n"; } print_formatted_date( '2009-10-25' ); print "\n"; print_formatted_date( '2009-10-26' ); </code></pre> <p>The output of this is:</p> <pre><code>tz_date: 2009-10-25T00:00:00 tz_date with W3C formatter: 2009-10-25T00:00:00+01:00 tz_date: 2009-10-26T00:00:00 tz_date with W3C formatter: 0 </code></pre> <p>Notice that for dates which fall outside of BST the W3C formatter is rendering them as '0'. </p> <p>This is an issue for me because a third party library which we use is using DateTime::Format::W3CDTF to format paramters during a SOAP call. Because the formatting is failing the calls are failing.</p> <p>Anyone have any clues? I'm no Perl guru so any help would be really appreciated. Could this be a bug in the DateTime::Format::W3CDTF library?</p> http://stackoverflow.com/questions/1647209/why-does-datetimeformatw3cdtf-return-0-for-europe-london-dates-outside-of-bri/1647329#1647329 3 Answer by Pete Hodgson for Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time? Pete Hodgson 2009-10-30T00:18:46Z 2009-11-06T05:36:03Z <p>Looking at the implementation of W3CDTF I think this might actually be a bug in the library:</p> <pre><code>sub format_datetime { my ( $self, $dt ) = @_; my $base = sprintf( '%04d-%02d-%02dT%02d:%02d:%02d', $dt-&gt;year, $dt-&gt;month, $dt-&gt;day, $dt-&gt;hour, $dt-&gt;minute, $dt-&gt;second ); my $tz = $dt-&gt;time_zone; return $base if $tz-&gt;is_floating; return $base . 'Z' if $tz-&gt;is_utc; if (my $offset = $dt-&gt;offset()) { return $base . offset_as_string($offset ); } } </code></pre> <p>Note that if <code>$tz-&gt;is_utc</code> is false, but <code>$dt-&gt;offset()</code> is 0 then there is neither <code>return</code> codepath is being hit, which I guess in Perl means that a nil is implicitly returned. I think that scenario is what my sample script is hitting - 'Europe/London' is not technically UTC, but it does still have an offset of 0.</p> <p><strong>UPDATE</strong></p> <p>After a bit more research I found that this same bug <a href="http://rt.cpan.org/Public/Bug/Display.html?id=22802" rel="nofollow">has already been reported</a> (2 years ago!). The bug report includes a patch which appears to resolve the issue (although I haven't tested that personally).</p> <p><strong>UPDATE 2</strong></p> <p>A fix for this <a href="http://www.nntp.perl.org/group/perl.datetime/2009/11/msg7364.html" rel="nofollow">has been released</a></p> http://stackoverflow.com/questions/1517998/xml-diff-in-ruby/1622005#1622005 0 Answer by Pete Hodgson for xml diff in ruby? Pete Hodgson 2009-10-25T20:39:38Z 2009-10-25T20:39:38Z <p>checking out the answers to <a href="http://stackoverflow.com/questions/430001/xml-diff-and-merge">this question</a> may well help</p> http://stackoverflow.com/questions/1517998/xml-diff-in-ruby/1621990#1621990 0 Answer by Pete Hodgson for xml diff in ruby? Pete Hodgson 2009-10-25T20:30:42Z 2009-10-25T20:30:42Z <p>I've wanted similar functionality myself in the past (mainly for unit testing xml generation) but I've never found a good solution. I'd assume at some point you're going to want to compare two DOMs and look for differences.</p> <p>You could maybe take a look at how <a href="http://github.com/mightyverse/xml%5Fsubset%5Fmatcher" rel="nofollow">this 'xml subset matcher' tool</a> does things for inspiration.</p> http://stackoverflow.com/questions/1110535/unpacking-freezing-gems-into-a-non-rails-ruby-app 3 unpacking/freezing gems into a non-rails ruby app Pete Hodgson 2009-07-10T16:20:16Z 2009-10-22T20:56:29Z <p>I'm writing a non-Rails ruby application (gasp!) and would like to be able to include all the gem dependencies which the application requires in a vendor subdirectory. This would be similar to how <a href="http://gemsonrails.rubyforge.org/" rel="nofollow">http://gemsonrails.rubyforge.org/</a> works for Rails apps. </p> <p>The goal here is to avoid the situation my team currently experiences when a new dependency is added. Every developer on my team has to install the gem manually, and then someone has to manually update each test and staging and production machine. If we can freeze the dependencies into the distributed application itself then a simple svn update (or git pull for those hipsters in the crowd) would be all that is needed.</p> http://stackoverflow.com/questions/1480355/how-to-add-convenience-class-methods-to-a-singleton-class-in-ruby 2 How to add convenience class methods to a Singleton class in ruby Pete Hodgson 2009-09-26T03:27:13Z 2009-09-26T05:16:12Z <p>Let's say I have a singleton class like this:</p> <pre><code>class Settings include Singleton def timeout # lazy-load timeout from config file, or whatever end end </code></pre> <p>Now if I want to know what timeout to use I need to write something like:</p> <pre><code>Settings.instance.timeout </code></pre> <p>but I'd rather shorten that to </p> <pre><code>Settings.timeout </code></pre> <p>One obvious way to make this work would be to modify the implementation of Settings to:</p> <pre><code>class Settings include Singleton def self.timeout instance.timeout end def timeout # lazy-load timeout from config file, or whatever end end </code></pre> <p>That works, but it would be rather tedious to manually write out a class method for each instance method. This is ruby, there must be a clever-clever dynamic way to do this.</p> http://stackoverflow.com/questions/1406692/what-are-the-advantages-of-mocha-over-rspecs-built-in-mocking-framework/1416973#1416973 1 Answer by Pete Hodgson for what are the advantages of mocha over rspec's built in mocking framework? Pete Hodgson 2009-09-13T06:01:15Z 2009-09-13T06:01:15Z <p>One specific feature I really like is being able to stub out all instances of a class. A lot of times I do something like the following with rspec mocks:</p> <pre><code>stub_car = mock(Car) stub_car.stub!(:speed).and_return(100) Car.stub!(:new).and_return(stub_car) </code></pre> <p>with mocha that becomes</p> <pre><code>Car.any_instance.stubs(:speed).returns(100) </code></pre> <p>I find the mocha version clearer and more explicit.</p> http://stackoverflow.com/questions/1283761/why-make-objects-when-you-can-just-use-a-mysql-database/1283798#1283798 1 Answer by Pete Hodgson for Why make Objects when you can just use a MySQL database? Pete Hodgson 2009-08-16T08:40:59Z 2009-08-16T08:40:59Z <p>There are a LOT of reasons why you want to use some abstraction on top of just raw database access in any reasonably large software system. If you're looking at an Object Oriented approach you should consider that one of the core ideas of the Object Oriented paradigm is that an object encapsulates both data and logic that acts on that data. </p> <p>Let's take a concrete example. Say that a part of your application (the UI) needs to display user information, including a nicely formatted user name. In an OO world you could have a User object which would store a local copy of the data in the database, and expose methods like getFormattedName(), or something similar. Now the rest of your application can use that code without needing to know about the database, or even how the name is formatted. On the other hand if you were just pulling data directly from the database then the UI part of the application (which doesn't really care about databases) still has to know itself how to get information about the user from the database, and how to format the users name nicely.</p> http://stackoverflow.com/questions/1282746/when-is-inversion-of-control-useful-and-when-shouldnt-it-be-used/1283237#1283237 3 Answer by Pete Hodgson for When is Inversion of Control useful and when shouldn't it be used? Pete Hodgson 2009-08-16T00:55:04Z 2009-08-16T00:55:04Z <p>One rule of thumb I find useful is to not consider IoC until you start thinking about Singletons. Once you're on that path then IoC might be useful (and most times preferable to a Singleton). Before that point I like to follow the <a href="http://c2.com/xp/YouArentGonnaNeedIt.html" rel="nofollow">YAGNI</a> principle. Using boring old constructor injection or similar works most of the time. It will keep your implementation easier to understand, and your tests easy to write and understand.</p> http://stackoverflow.com/questions/429816/how-to-deploy-to-a-single-specific-server-using-capistrano 2 How to deploy to a single specific server using Capistrano Pete Hodgson 2009-01-09T21:28:28Z 2009-08-06T12:46:56Z <p>I have a system in production that has several servers in serveral roles. I would like to test a new app server by deploying to that specific server, without having to redeploy to every server in production. Is there a way to ask Capistrano to deploy to a specific server? Ideally I'd like to be able to run something like</p> <pre><code>cap SERVER=app2.example.com ROLE=app production deploy </code></pre> <p>if I just wanted to deploy to app2.example.com.</p> <p>Thanks!</p> <p>[update] I tried the solution suggested by wulong by executing:</p> <pre><code>cap HOSTS=app2.server.hostname ROLE=app qa deploy </code></pre> <p>but capistrano seemed be trying to execute tasks for other roles on that server in addition to app tasks. Maybe I need to update my version of cap (I'm running v2.2.0)?</p> http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf 4 Is it possible to create a 'command line' swf? Pete Hodgson 2009-06-28T23:41:08Z 2009-07-03T15:54:28Z <p>I'd like to be able to write a .swf file that is runnable as a command line app. In other words, I would be able to create actionscript classes which can interact with stdin and stdout, and could then execute that .swf directly in the command line.</p> <p>I suspect that this isn't really possible. Can anyone confirm that?</p> <p><strong>EDIT:</strong> A couple of the answers pointed out that using Flash for command line work probably isn't the best choice. I wholeheartedly agree in most situations. The reason I am asking about this is because I want to do some AS3 code generation, and reflecting on AS3 classes within the runtime would be easier than parsing the code or walking the intermediary XML that asdoc produces. I'm doing the XML approach now in Ruby, but would love to have a cleaner solution!</p> http://stackoverflow.com/questions/1064791/is-there-an-orm-like-wrapper-for-memcached 2 Is there an ORM-like wrapper for memcached Pete Hodgson 2009-06-30T16:52:44Z 2009-07-02T05:05:46Z <p>I'm looking for a ruby gem (or rails plugin) which abstracts the details of memcached in the same way that ActiveRecord abstracts the details of SQL. I am <strong>NOT</strong> looking for something to help cache ActiveRecord models in memcached. I'm sure there are approximately 4215 gems that will help with that problem.</p> <p>Ideally what I'd like is to be able to do something like:</p> <pre><code>class Apple &lt; MemcachedModel # whatever else here end </code></pre> <p>and then be able to do stuff like:</p> <pre><code>my_apple = Apple.find('some memcached key') </code></pre> <p>which would look up the JSON representation of this class in memcached and deserialize it. I'd also maybe be able to do things like:</p> <pre><code>my_apple.color = "red" # persist changes back to memcached my_apple.save # load any changes from memcached into local model my_apple.update </code></pre> <p>It seems like someone must have scratched this itch by now and created something along these lines, but whenever I google for such a gem I just keep turning up thing which help cache AR models using memcached.</p> http://stackoverflow.com/questions/1051536/ruby-date-conversion/1054519#1054519 2 Answer by Pete Hodgson for Ruby date conversion Pete Hodgson 2009-06-28T08:24:28Z 2009-06-28T08:24:28Z <pre><code>require 'tzinfo' input_time = Time.parse('Fri Jun 26 23:05:00 -0400 2009') input_time.utc puts "input_time = #{input_time}" est_tz = TZInfo::Timezone.get('EST') time_in_est = est_tz.utc_to_local(input_time) puts "time_in_est = #{time_in_est}" </code></pre> <p>What we're doing here is:</p> <ul> <li>parse the given date string</li> <li>convert it to UTC</li> <li>use the tzinfo gem to lookup timezone info for 'EST' (which I'm assuming is what you meant by 'Eastern (US) time')</li> <li>convert the utc input time into a local time for the EST timezone</li> </ul> http://stackoverflow.com/questions/1049941/what-are-alternatives-to-findbysql-for-computationaly-heavy-queries/1054504#1054504 1 Answer by Pete Hodgson for What are alternatives to find_by_sql for computationaly-heavy queries? Pete Hodgson 2009-06-28T08:05:07Z 2009-06-28T08:05:07Z <p>You might want to look at using <a href="http://datamapper.org" rel="nofollow">DataMapper</a> or <a href="http://sequel.rubyforge.org/" rel="nofollow">Sequel</a> for your ORM if you're finding that ActiveRecord lacks the expressiveness you need for complex queries. Switching away from ActiveRecord wouldn't be a decision to take likely, but it might be worth investigating at least.</p> http://stackoverflow.com/questions/856064/dynamic-table-names-for-active-record-models 0 dynamic table names for Active Record models Pete Hodgson 2009-05-13T04:29:15Z 2009-06-28T05:17:43Z <p>I have an interesting Active Record problem and I'm not quite sure what the cleanest solution is. The legacy database that I am integrating with has a strange wrinkle in its schema where one logical table has been 'partitioned' into several physical tables. Each table has the same structure, but contains data about different items.</p> <p>I'm not great at explaining this clearly (as you can tell!). Let me try and explain with a concrete example. Let's say we have a Car, which has one or more Wheels. Normally we'd represent that with a Car table and a Wheels table like so:</p> <pre><code>CREATE TABLE cars ( `id` int(11) NOT NULL auto_increment, `name` varchar(255), ;etc ) CREATE TABLE wheels ( `id` int(11) NOT NULL auto_increment, `car_id` int(11) NOT NULL, `color` varchar(255), ;etc ) </code></pre> <p>So far, so good. But with the 'partioning' strategy that is in my legacy database it would look more like:</p> <pre><code>CREATE TABLE cars ( `id` int(11) NOT NULL auto_increment, `name` varchar(255), ;etc ) CREATE TABLE car_to_wheel_table_map ( `car_id` int(11) NOT NULL, `wheel_table` varchar(255) ) CREATE TABLE wheels_for_fords ( `id` int(11) NOT NULL auto_increment, `car_id` int(11) NOT NULL, `color` varchar(255) ) CREATE TABLE wheels_for_buicks ( `id` int(11) NOT NULL auto_increment, `car_id` int(11) NOT NULL, `color` varchar(255) ) CREATE TABLE wheels_for_toyotas ( `id` int(11) NOT NULL auto_increment, `car_id` int(11) NOT NULL, `color` varchar(255) ) </code></pre> <p>So here we have a set of wheels_for_x tables, and a car_to_wheel_table_map table which contains a mapping from car_id to the specific wheels_for_x which contains the wheels for a specific car. If I want to find the set of wheels for a car I first have to find out which wheels table to use via the car_to_wheel_table_map table, and then look up records in the wheel table specified in the car_to_wheel_table_map.</p> <p>Firstly, can someone enlighten me as to if there is a standard name for this technique?</p> <p>Secondly, does anyone have any pointers on how I can make this work in Active Record in a nice clean way. The way I see it I can either have a Wheel model where the table name can be defined per instance, or I can dynamically create Model classes at runtime with the correct table name as specified in the mapping table.</p> <p><strong>EDIT</strong>: Note that changing the schema to be closer to what AR wants is not an option. Various legacy codebases rely on this schema and cannot realistically be modified.</p> http://stackoverflow.com/questions/979966/is-there-a-good-podcast-about-concurrency/1023079#1023079 2 Answer by Pete Hodgson for Is there a good podcast about concurrency? Pete Hodgson 2009-06-21T02:44:02Z 2009-06-21T02:44:02Z <p>Others have already mentioned it, but I thought I'd emphasize that SE Radio have <a href="http://www.se-radio.net/tags/concurrency" rel="nofollow">quite a few good concurrency episodes</a>, including a 3-part primer on concurrency. I would recommend SE Radio in general as a great resource.</p> http://stackoverflow.com/questions/1022096/unable-to-rescue-from-lost-connection-to-mysql-server-error/1023057#1023057 1 Answer by Pete Hodgson for Unable to rescue from "Lost connection to MySQL server" error Pete Hodgson 2009-06-21T02:35:07Z 2009-06-21T02:35:07Z <p>From your comment it looks like what's happening is that a Mysql::Error exception is being thrown, but then caught by ActiveRecord which then throws an ActiveRecord::StatementInvalid exception (which isn't very helpful behaviour in this case!).</p> <p>I'd say change your rescue to catch the AR::StatementInvalid exception and see what that does for you.</p> http://stackoverflow.com/questions/977535/whats-a-nice-clean-way-to-use-an-options-hash-with-defaults-values-as-a-paramete 0 What's a nice clean way to use an options hash with defaults values as a parameter in ruby Pete Hodgson 2009-06-10T19:00:24Z 2009-06-11T15:51:32Z <p>Let's say I want a method which will be called like this:</p> <pre><code> tiger = create_tiger( :num_stripes =&gt; 12, :max_speed =&gt; 43.2 ) tiger.num_stripes # will be 12 </code></pre> <p>where some of the options have default values:</p> <pre><code> tiger = create_tiger( :max_speed =&gt; 43.2 ) tiger.num_stripes # will have some default value </code></pre> <p>what's a nice idiomatic ruby way of implementing that defaulting behaviour in the method implementation? </p> http://stackoverflow.com/questions/458522/is-there-a-standard-read-write-lock-implementation-for-ruby 0 Is there a 'standard' read/write lock implementation for ruby? Pete Hodgson 2009-01-19T17:57:50Z 2009-05-19T15:07:48Z <p>Does anyone know of an existing ruby implementation of a read/write lock - <a href="http://en.wikipedia.org/wiki/Readers-writer%5Flock" rel="nofollow">http://en.wikipedia.org/wiki/Readers-writer_lock</a>?</p> <p>Preferably this would be in a popular library or some other implementation that's been used by enough people that it's fairly bulletproof at this point.</p> http://stackoverflow.com/questions/297315/manipulating-the-hash-anchor-part-of-the-url-in-actionscript/517044#517044 -2 Answer by Pete Hodgson for Manipulating the hash/anchor part of the URL in Actionscript Pete Hodgson 2009-02-05T17:56:51Z 2009-02-05T17:56:51Z <p>If you ever make it to actionscript3 you could use the <a href="http://weblogs.macromedia.com/as_libraries/docs/corelib/com/adobe/net/URI.html" rel="nofollow">com.adobe.net.URI class</a>. It exposes a URI::fragment getter/setter which looks to be exactly what you need.</p> http://stackoverflow.com/questions/429816/how-to-deploy-to-a-single-specific-server-using-capistrano/470588#470588 4 Answer by Pete Hodgson for How to deploy to a single specific server using Capistrano Pete Hodgson 2009-01-22T19:59:02Z 2009-01-22T19:59:02Z <p>I ended up posting a question on the capistrano users list <a href="http://groups.google.com/group/capistrano/browse_thread/thread/592ab63dda72d7e" rel="nofollow">here</a>, and got the following response from Jamis (edited a bit by me here for clarity):</p> <p><hr /></p> <p>Try the HOSTS environment variable:</p> <p>cap HOSTS=app2.example.com production deploy</p> <p>Note that doing this will treat app2 as being in every role, not just whichever role(s) it happens to be declared in.</p> <p>If what you want is to do a regular deploy, but only act on app2, and only as app2 is declared in your recipe file, you can use the HOSTFILTER variable instead:</p> <p>cap HOSTFILTER=app2.example.com production deploy </p> <p>[...]</p> <p>Consider this concrete example. Suppose your script defines three servers, A, B, and C. And it defines a task, "foo", that (by default) wants to run on A and B, but not C. Like this:</p> <p>role :app, "A", "B" role :web, "C"</p> <p>task :foo, :roles => :app do run "echo hello" end</p> <p>Now, if you do "cap foo", it will run the echo command on both A and B.</p> <p>If you do "cap HOSTS=C foo", it will run the echo command on C, regardless of the :roles parameter to the task.</p> <p>If you do "cap HOSTFILTER=C foo", it will not run the echo command at all, because the intersection of (A B) and (C) is an empty set. (There are no hosts in foo's host list that match C.)</p> <p>If you do "cap HOSTFILTER=A foo", it will run the echo command on only A, because (A B) intersected with (A) is (A).</p> <p>Lastly, if you do "cap HOSTFILTER=A,B,C foo", it will run the echo command on A and B (but not C), because (A B) intersected with (A B C) is (A B).</p> <p>To summarize: HOSTS completely overrides the hosts or roles declaration of the task, and forces everything to run against the specified host(s). The HOSTFILTER, on the other hand, simply filters the existing hosts against the given list, choosing only those servers that are already in the tasks server list.</p> http://stackoverflow.com/questions/272253/have-you-had-a-bad-experience-with-scrum-or-sprinting/272271#272271 Comment by Pete Hodgson on Have you had a bad experience with Scrum or Sprinting? Pete Hodgson 2009-09-27T03:04:38Z 2009-09-27T03:04:38Z +1 on the need for a disciplined scrum master http://stackoverflow.com/questions/1480355/how-to-add-convenience-class-methods-to-a-singleton-class-in-ruby/1480421#1480421 Comment by Pete Hodgson on How to add convenience class methods to a Singleton class in ruby Pete Hodgson 2009-09-26T16:22:52Z 2009-09-26T16:22:52Z Awesome answer. In my particular case SingleForwardable is exactly what I was looking for. Thanks! http://stackoverflow.com/questions/1416532/overhead-from-using-dependency-injection Comment by Pete Hodgson on Overhead from using Dependency Injection Pete Hodgson 2009-09-13T05:51:17Z 2009-09-13T05:51:17Z 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. http://stackoverflow.com/questions/9545/who-in-the-software-world-do-you-admire-the-most/9587#9587 Comment by Pete Hodgson on Who in the software world do you admire the most? Pete Hodgson 2009-09-10T18:51:17Z 2009-09-10T18:51:17Z Richard yes, but Carl, not so much. http://stackoverflow.com/questions/1282746/when-is-inversion-of-control-useful-and-when-shouldnt-it-be-used/1319341#1319341 Comment by Pete Hodgson on When is Inversion of Control useful and when shouldn't it be used? Pete Hodgson 2009-08-26T05:49:40Z 2009-08-26T05:49:40Z 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 &quot;constructor injection or similar&quot; I mention would be classified as IoC/DI. http://stackoverflow.com/questions/1283325/is-it-bad-practice-to-use-return-inside-a-void-method/1283331#1283331 Comment by Pete Hodgson on Is it bad practice to use return inside a void method? Pete Hodgson 2009-08-16T08:55:11Z 2009-08-16T08:55:11Z 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. http://stackoverflow.com/questions/1246058/senior-programming-guru-who-cant-program-should-i-find-a-different-career/1247613#1247613 Comment by Pete Hodgson on Senior programming 'guru' who can't program - should I find a different career? Pete Hodgson 2009-08-16T00:34:03Z 2009-08-16T00:34:03Z How much of this is an answer to the question? http://stackoverflow.com/questions/923486/what-are-the-best-google-tech-talks/927605#927605 Comment by Pete Hodgson on What are the best Google Tech Talks? Pete Hodgson 2009-08-01T05:47:42Z 2009-08-01T05:47:42Z This guy really is a great speaker http://stackoverflow.com/questions/1110535/unpacking-freezing-gems-into-a-non-rails-ruby-app/1110756#1110756 Comment by Pete Hodgson on unpacking/freezing gems into a non-rails ruby app Pete Hodgson 2009-07-12T07:22:31Z 2009-07-12T07:22:31Z Turns out that the solution as given doesn't quite work for all gems. Specifically, I'm using database_cleaner (<a href="http://github.com/bmabey/database_cleaner" rel="nofollow">github.com/bmabey/database_cleaner</a>), 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. http://stackoverflow.com/questions/1110535/unpacking-freezing-gems-into-a-non-rails-ruby-app/1110756#1110756 Comment by Pete Hodgson on unpacking/freezing gems into a non-rails ruby app Pete Hodgson 2009-07-12T06:54:23Z 2009-07-12T06:54:23Z 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. http://stackoverflow.com/questions/1087968/classname-to-classname/1088032#1088032 Comment by Pete Hodgson on ClassName to class_name Pete Hodgson 2009-07-07T04:49:58Z 2009-07-07T04:49:58Z yeah, that seems a bit harsh. Maybe because you did the unnecessary (if you assume that it's a Rails project) require? http://stackoverflow.com/questions/1064791/is-there-an-orm-like-wrapper-for-memcached/1072596#1072596 Comment by Pete Hodgson on Is there an ORM-like wrapper for memcached Pete Hodgson 2009-07-06T16:24:17Z 2009-07-06T16:24:17Z 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. http://stackoverflow.com/questions/1064791/is-there-an-orm-like-wrapper-for-memcached/1065345#1065345 Comment by Pete Hodgson on Is there an ORM-like wrapper for memcached Pete Hodgson 2009-07-06T16:22:56Z 2009-07-06T16:22:56Z 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. http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf Comment by Pete Hodgson on Is it possible to create a 'command line' swf? Pete Hodgson 2009-07-01T02:06:37Z 2009-07-01T02:06:37Z 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. http://stackoverflow.com/questions/1064791/is-there-an-orm-like-wrapper-for-memcached/1065278#1065278 Comment by Pete Hodgson on Is there an ORM-like wrapper for memcached Pete Hodgson 2009-07-01T02:03:18Z 2009-07-01T02:03:18Z 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 :)