<?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 The Carbon Emitter</title>
	<atom:link href="http://blog.carbonfive.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.carbonfive.com</link>
	<description>The blog of Carbon Five</description>
	<lastBuildDate>Tue, 07 Feb 2012 01:55:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Using Open Source Static Libraries in Xcode 4 by Anonymous</title>
		<link>http://blog.carbonfive.com/2011/04/04/using-open-source-static-libraries-in-xcode-4/#comment-4373</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 07 Feb 2012 01:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=3196#comment-4373</guid>
		<description>This article helped heaps. Seriously. Thanks for taking the time to outline the steps to use a static lib inside a workspace.</description>
		<content:encoded><![CDATA[<p>This article helped heaps. Seriously. Thanks for taking the time to outline the steps to use a static lib inside a workspace.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Concurrency with Actors by John Tantalo</title>
		<link>http://blog.carbonfive.com/2011/04/19/concurrency-with-actors/#comment-4372</link>
		<dc:creator>John Tantalo</dc:creator>
		<pubDate>Mon, 06 Feb 2012 23:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=3431#comment-4372</guid>
		<description>Your markup is a little off,

ping &lt;&lt; (count + 1)</description>
		<content:encoded><![CDATA[<p>Your markup is a little off,</p>
<p>ping &lt;&lt; (count + 1)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resizing UILabel to fit text by jord3t</title>
		<link>http://blog.carbonfive.com/2009/07/10/resizing-uilabel-to-fit-text/#comment-4371</link>
		<dc:creator>jord3t</dc:creator>
		<pubDate>Mon, 06 Feb 2012 18:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=623#comment-4371</guid>
		<description>for a scroll pane: 


- (CGFloat) resizeLabel:(UILabel *)theLabel shrinkViewIfLabelShrinks:(BOOL)canShrink {
    CGRect frame = [theLabel frame];
    CGSize size = [theLabel.text sizeWithFont:theLabel.font
                            constrainedToSize:CGSizeMake(frame.size.width, 9999)
                                lineBreakMode:UILineBreakModeWordWrap];
    CGFloat delta = size.height - frame.size.height;
    frame.size.height = size.height;
    [theLabel setFrame:frame];
    
    myScrollView.contentSize = theLabel.frame.size;
    myScrollView.frame = CGRectMake(myScrollView.frame.origin.x, myScrollView.frame.origin.y, myScrollView.frame.size.width, myScrollView.frame.size.height);
    return delta;
}

- (CGFloat) resizeLabel:(UILabel *)theLabel {
    return [self resizeLabel:theLabel shrinkViewIfLabelShrinks:YES];
}
</description>
		<content:encoded><![CDATA[<p>for a scroll pane: </p>
<p>- (CGFloat) resizeLabel:(UILabel *)theLabel shrinkViewIfLabelShrinks:(BOOL)canShrink {<br />
    CGRect frame = [theLabel frame];<br />
    CGSize size = [theLabel.text sizeWithFont:theLabel.font<br />
                            constrainedToSize:CGSizeMake(frame.size.width, 9999)<br />
                                lineBreakMode:UILineBreakModeWordWrap];<br />
    CGFloat delta = size.height &#8211; frame.size.height;<br />
    frame.size.height = size.height;<br />
    [theLabel setFrame:frame];</p>
<p>    myScrollView.contentSize = theLabel.frame.size;<br />
    myScrollView.frame = CGRectMake(myScrollView.frame.origin.x, myScrollView.frame.origin.y, myScrollView.frame.size.width, myScrollView.frame.size.height);<br />
    return delta;<br />
}</p>
<p>- (CGFloat) resizeLabel:(UILabel *)theLabel {<br />
    return [self resizeLabel:theLabel shrinkViewIfLabelShrinks:YES];<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Concurrency with Actors by Rodrigo Alvarez</title>
		<link>http://blog.carbonfive.com/2011/04/19/concurrency-with-actors/#comment-4370</link>
		<dc:creator>Rodrigo Alvarez</dc:creator>
		<pubDate>Mon, 06 Feb 2012 14:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=3431#comment-4370</guid>
		<description>I think I have read somewhere that he ported Rubinius actors so they could run in any Ruby implementation.</description>
		<content:encoded><![CDATA[<p>I think I have read somewhere that he ported Rubinius actors so they could run in any Ruby implementation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating Node.js deployment to EC2 with Chef by Quora</title>
		<link>http://blog.carbonfive.com/2011/09/27/automating-node-js-deployment-to-ec2-with-chef/#comment-4369</link>
		<dc:creator>Quora</dc:creator>
		<pubDate>Mon, 06 Feb 2012 09:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=4942#comment-4369</guid>
		<description>&lt;strong&gt;Any good tutorial for hosted-chef + EC2 environment?...&lt;/strong&gt;

This is a good one. Make sure to pick the relevant information for your use case. http://blog.carbonfive.com/2011/09/27/automating-node-js-deployment-to-ec2-with-chef/...</description>
		<content:encoded><![CDATA[<p><strong>Any good tutorial for hosted-chef + EC2 environment?&#8230;</strong></p>
<p>This is a good one. Make sure to pick the relevant information for your use case. <a href="http://blog.carbonfive.com/2011/09/27/automating-node-js-deployment-to-ec2-with-chef/.." rel="nofollow">http://blog.carbonfive.com/2011/09/27/automating-node-js-deployment-to-ec2-with-chef/..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Improving Resque&#8217;s memory efficiency by Carlos Moutinho</title>
		<link>http://blog.carbonfive.com/2011/09/16/improving-resques-memory-efficiency/#comment-4368</link>
		<dc:creator>Carlos Moutinho</dc:creator>
		<pubDate>Sun, 05 Feb 2012 18:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=4844#comment-4368</guid>
		<description>https://github.com/SponsorPay/em-resque </description>
		<content:encoded><![CDATA[<p><a href="https://github.com/SponsorPay/em-resque" rel="nofollow">https://github.com/SponsorPay/em-resque</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Abusing UIViewControllers by David Roth</title>
		<link>http://blog.carbonfive.com/2011/03/09/abusing-uiviewcontrollers/#comment-4367</link>
		<dc:creator>David Roth</dc:creator>
		<pubDate>Sat, 04 Feb 2012 04:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=1699#comment-4367</guid>
		<description>Thanks for the post - looking forward to seeing how this works out in iOS 5.</description>
		<content:encoded><![CDATA[<p>Thanks for the post &#8211; looking forward to seeing how this works out in iOS 5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vim Text Objects: The Definitive Guide by Anonymous</title>
		<link>http://blog.carbonfive.com/2011/10/17/vim-text-objects-the-definitive-guide/#comment-4366</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 02 Feb 2012 16:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=5203#comment-4366</guid>
		<description>Thanks for such a simple and clear writing.</description>
		<content:encoded><![CDATA[<p>Thanks for such a simple and clear writing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring Client-side MVC with Backbone.js by Jared Carroll</title>
		<link>http://blog.carbonfive.com/2011/12/19/exploring-client-side-mvc-with-backbonejs/#comment-4365</link>
		<dc:creator>Jared Carroll</dc:creator>
		<pubDate>Thu, 02 Feb 2012 05:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=5609#comment-4365</guid>
		<description>Hi Marcel,

I put together a repo of the code at https://github.com/carbonfive/exploring-client-side-mvc-with-backbonejs . Feel free to create issues if you have any trouble getting it working.</description>
		<content:encoded><![CDATA[<p>Hi Marcel,</p>
<p>I put together a repo of the code at <a href="https://github.com/carbonfive/exploring-client-side-mvc-with-backbonejs" rel="nofollow">https://github.com/carbonfive/exploring-client-side-mvc-with-backbonejs</a> . Feel free to create issues if you have any trouble getting it working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monkey-Patching iOS with Objective-C Categories Part I: Simple Extensions and Overrides by A Smattering of Selenium #79 &#171; Official Selenium Blog</title>
		<link>http://blog.carbonfive.com/2012/01/23/monkey-patching-ios-with-objective-c-categories-part-1-simple-extensions-and-overrides/#comment-4364</link>
		<dc:creator>A Smattering of Selenium #79 &#171; Official Selenium Blog</dc:creator>
		<pubDate>Wed, 01 Feb 2012 18:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.carbonfive.com/?p=5851#comment-4364</guid>
		<description>[...] Monkey-Patching iOS with Objective-C Categories Part I: Simple Extensions and Overrides is a technique I haven’t seen before. [...]</description>
		<content:encoded><![CDATA[<p>[...] Monkey-Patching iOS with Objective-C Categories Part I: Simple Extensions and Overrides is a technique I haven’t seen before. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

