<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Big Dave's Blog</title>
	<atom:link href="http://davedupre.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://davedupre.com</link>
	<description>Some random thoughts - Go big or stay home!</description>
	<lastBuildDate>Wed, 10 Mar 2010 20:53:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Ruby Background Tasks with Starling by Background Jobs in Ruby on Rails &#171; 4 Lines of Code</title>
		<link>http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/comment-page-3/#comment-743</link>
		<dc:creator>Background Jobs in Ruby on Rails &#171; 4 Lines of Code</dc:creator>
		<pubDate>Wed, 10 Mar 2010 20:53:55 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/#comment-743</guid>
		<description>[...] - written by Blaine Cook at Twitter - Starling is a Message Queue Server based on MemCached - written in Ruby - stores jobs in memory (message queue) - Ruby client: for instance Workling - documentation: some good tutorials, for example the railscast about starling and workling or this blog post about starling [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; written by Blaine Cook at Twitter &#8211; Starling is a Message Queue Server based on MemCached &#8211; written in Ruby &#8211; stores jobs in memory (message queue) &#8211; Ruby client: for instance Workling &#8211; documentation: some good tutorials, for example the railscast about starling and workling or this blog post about starling [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Lifespan by albel86</title>
		<link>http://davedupre.com/2010/01/29/software-lifespan/comment-page-1/#comment-742</link>
		<dc:creator>albel86</dc:creator>
		<pubDate>Wed, 10 Mar 2010 17:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/?p=451#comment-742</guid>
		<description>Надо будет в скором времени на адалт перейти: прибыльный бизнес… Везде эротика уже… Печально, но ничего не поделаешь((</description>
		<content:encoded><![CDATA[<p>Надо будет в скором времени на адалт перейти: прибыльный бизнес… Везде эротика уже… Печально, но ничего не поделаешь((</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Background Tasks with Starling by Dave</title>
		<link>http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/comment-page-2/#comment-736</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 07 Feb 2010 00:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/#comment-736</guid>
		<description>Doh! I did the same thing. I always forget about script/server being different from script/console.</description>
		<content:encoded><![CDATA[<p>Doh! I did the same thing. I always forget about script/server being different from script/console.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Background Tasks with Starling by Luke</title>
		<link>http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/comment-page-2/#comment-735</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Sat, 06 Feb 2010 23:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/#comment-735</guid>
		<description>Oh, I&#039;m an idiot.  Apparently starting a rails environment is now: 

script/server -e environment_name

and NOT: 

script/server RAILS_ENV=environment_name</description>
		<content:encoded><![CDATA[<p>Oh, I&#8217;m an idiot.  Apparently starting a rails environment is now: </p>
<p>script/server -e environment_name</p>
<p>and NOT: </p>
<p>script/server RAILS_ENV=environment_name</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Background Tasks with Starling by Dave</title>
		<link>http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/comment-page-2/#comment-734</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sat, 06 Feb 2010 21:39:23 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/#comment-734</guid>
		<description>Try:
RAILS_ENV=development_remote script/server

If it&#039;s dropping back to development, it could be that it&#039;s not properly picking up the RAILS_ENV.</description>
		<content:encoded><![CDATA[<p>Try:<br />
RAILS_ENV=development_remote script/server</p>
<p>If it&#8217;s dropping back to development, it could be that it&#8217;s not properly picking up the RAILS_ENV.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Background Tasks with Starling by Luke</title>
		<link>http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/comment-page-2/#comment-733</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Sat, 06 Feb 2010 20:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/2008/03/25/ruby-background-tasks-with-starling/#comment-733</guid>
		<description>Howdy,

So I have this in 

## config/workling.yml:
production:
  listens_on: localhost:15151

development:
  listens_on: localhost:22322
  
test:
  listens_on: localhost:12345
  
development_remote:
    listens_on: #my_remote_ip_here#:22522
    
cucumber:
    listens_on: localhost:12345

## end of config/workling.yml

I get the starling and workling set up on my staging server at #remote_ip#, and I get this outcome:

# this succeeds:
script/console development_remote
&gt;&gt; r = MyWorkerClass.asynch_count_to_a_hundred_million
=&gt; &quot;&quot;my_worker_classes:count_to_a_hundred_million:7edb0e25b721ea725441b79d8ebb4d58&quot;

# and it goes to the queue, and I see the processor spike as ruby counts to 100,000,000 on my staging server

... all good so far, but then

## this fails:
script/server RAILS_ENV=development_remote
# when I browse to a controller function which somewhere has 
# MyWorkerClass.asynch_count_to_a_hundred_million
# I get the following error: 
&quot;config/workling.yml configured to connect to queue server on localhost:22322 for this environment. could not connect to queue server on this host:port. for starling users: pass starling the port with -p flag when starting it. If you don&#039;t want to use Starling, then explicitly set Workling::Remote.dispatcher (see README for an example)&quot;

So it looks like it&#039;s not loading the proper set of details from workling.yml.  How can I fix this?

Thanks
 - Luke</description>
		<content:encoded><![CDATA[<p>Howdy,</p>
<p>So I have this in </p>
<p>## config/workling.yml:<br />
production:<br />
  listens_on: localhost:15151</p>
<p>development:<br />
  listens_on: localhost:22322</p>
<p>test:<br />
  listens_on: localhost:12345</p>
<p>development_remote:<br />
    listens_on: #my_remote_ip_here#:22522</p>
<p>cucumber:<br />
    listens_on: localhost:12345</p>
<p>## end of config/workling.yml</p>
<p>I get the starling and workling set up on my staging server at #remote_ip#, and I get this outcome:</p>
<p># this succeeds:<br />
script/console development_remote<br />
&gt;&gt; r = MyWorkerClass.asynch_count_to_a_hundred_million<br />
=&gt; &#8220;&#8221;my_worker_classes:count_to_a_hundred_million:7edb0e25b721ea725441b79d8ebb4d58&#8243;</p>
<p># and it goes to the queue, and I see the processor spike as ruby counts to 100,000,000 on my staging server</p>
<p>&#8230; all good so far, but then</p>
<p>## this fails:<br />
script/server RAILS_ENV=development_remote<br />
# when I browse to a controller function which somewhere has<br />
# MyWorkerClass.asynch_count_to_a_hundred_million<br />
# I get the following error:<br />
&#8220;config/workling.yml configured to connect to queue server on localhost:22322 for this environment. could not connect to queue server on this host:port. for starling users: pass starling the port with -p flag when starting it. If you don&#8217;t want to use Starling, then explicitly set Workling::Remote.dispatcher (see README for an example)&#8221;</p>
<p>So it looks like it&#8217;s not loading the proper set of details from workling.yml.  How can I fix this?</p>
<p>Thanks<br />
 &#8211; Luke</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Lifespan by Tweets that mention Software Lifespan » Big Dave’s Blog -- Topsy.com</title>
		<link>http://davedupre.com/2010/01/29/software-lifespan/comment-page-1/#comment-730</link>
		<dc:creator>Tweets that mention Software Lifespan » Big Dave’s Blog -- Topsy.com</dc:creator>
		<pubDate>Sun, 31 Jan 2010 23:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/?p=451#comment-730</guid>
		<description>[...] This post was mentioned on Twitter by Betsy , Dave. Dave said: New blog post: Software Lifespan http://davedupre.com/2010/01/29/software-lifespan/ [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Betsy , Dave. Dave said: New blog post: Software Lifespan <a href="http://davedupre.com/2010/01/29/software-lifespan/" rel="nofollow">http://davedupre.com/2010/01/29/software-lifespan/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Lifespan by Dave</title>
		<link>http://davedupre.com/2010/01/29/software-lifespan/comment-page-1/#comment-729</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 31 Jan 2010 13:31:05 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/?p=451#comment-729</guid>
		<description>Great article. Thanks. My only comment about comparing software engineering to civil engineering is that an office building is not soon asked to be a hockey stadium. It is rare that a software product knows precisely what it will be when it grows up. That said, I&#039;m all for making software that lasts forever. I&#039;m a little jaded by recent startup products that evolved so much that the foundation became wobbly.</description>
		<content:encoded><![CDATA[<p>Great article. Thanks. My only comment about comparing software engineering to civil engineering is that an office building is not soon asked to be a hockey stadium. It is rare that a software product knows precisely what it will be when it grows up. That said, I&#8217;m all for making software that lasts forever. I&#8217;m a little jaded by recent startup products that evolved so much that the foundation became wobbly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Lifespan by Mike H</title>
		<link>http://davedupre.com/2010/01/29/software-lifespan/comment-page-1/#comment-728</link>
		<dc:creator>Mike H</dc:creator>
		<pubDate>Sun, 31 Jan 2010 05:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/?p=451#comment-728</guid>
		<description>Hi Dave:
This reminded me of &lt;a href=&quot;http://www.bricklin.com/200yearsoftware.htm&quot; rel=&quot;nofollow&quot;&gt;this article from a while back by Dan Bricklin&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi Dave:<br />
This reminded me of <a href="http://www.bricklin.com/200yearsoftware.htm" rel="nofollow">this article from a while back by Dan Bricklin</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Wishlist by molecule</title>
		<link>http://davedupre.com/2009/02/17/iphone-wishlist/comment-page-1/#comment-725</link>
		<dc:creator>molecule</dc:creator>
		<pubDate>Sat, 16 Jan 2010 02:10:45 +0000</pubDate>
		<guid isPermaLink="false">http://davedupre.com/?p=179#comment-725</guid>
		<description>&quot;The price drop made it a great time to upgrade my wife as well.&quot;

Where do you upgrade a wife round here, and how much does it cost?</description>
		<content:encoded><![CDATA[<p>&#8220;The price drop made it a great time to upgrade my wife as well.&#8221;</p>
<p>Where do you upgrade a wife round here, and how much does it cost?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
