<?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 on: The glorious life of a bug killer</title>
	<atom:link href="http://blog.clickablebliss.com/2010/01/15/the-glorious-life-of-a-bug-killer/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.clickablebliss.com/2010/01/15/the-glorious-life-of-a-bug-killer/</link>
	<description>Cocoa, Rails and User Interface commentary.</description>
	<lastBuildDate>Thu, 26 Jan 2012 16:10:21 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mike Zornek</title>
		<link>http://blog.clickablebliss.com/2010/01/15/the-glorious-life-of-a-bug-killer/comment-page-1/#comment-110322</link>
		<dc:creator>Mike Zornek</dc:creator>
		<pubDate>Tue, 19 Jan 2010 02:02:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.clickablebliss.com/?p=305#comment-110322</guid>
		<description>&lt;p&gt;Thanks for the tips Mike. I used em a bit tonight and eventually tripped over the issue (colliding category methods only on 10.6). Hope to post more about the issue on the blog soon.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the tips Mike. I used em a bit tonight and eventually tripped over the issue (colliding category methods only on 10.6). Hope to post more about the issue on the blog soon.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: mikeash</title>
		<link>http://blog.clickablebliss.com/2010/01/15/the-glorious-life-of-a-bug-killer/comment-page-1/#comment-110196</link>
		<dc:creator>mikeash</dc:creator>
		<pubDate>Sat, 16 Jan 2010 16:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.clickablebliss.com/?p=305#comment-110196</guid>
		<description>&lt;p&gt;Well, that NUL didn&#039;t quite come out right. The thing in the single quotes in the parentheses is supposed to be a backslash-zero.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Well, that NUL didn&#8217;t quite come out right. The thing in the single quotes in the parentheses is supposed to be a backslash-zero.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: mikeash</title>
		<link>http://blog.clickablebliss.com/2010/01/15/the-glorious-life-of-a-bug-killer/comment-page-1/#comment-110195</link>
		<dc:creator>mikeash</dc:creator>
		<pubDate>Sat, 16 Jan 2010 16:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.clickablebliss.com/?p=305#comment-110195</guid>
		<description>&lt;p&gt;Sounds like your string contains a NUL (&#039;&#039;) character around the 70 character point. NSString is perfectly happy to contain NUL characters, and it does no harm there. However, the moment that you convert it to a C string, for example when printing it in the debugger, that NUL character will be interpreted as a string terminator, and your output will be truncated. It will not only truncate debug printing, but anything else that goes through a C string, like filesystem paths, and possibly whatever you&#039;re using to post your HTTP request.&lt;/p&gt;

&lt;p&gt;To help with debugging, I recommend printing [string dataUsingEncoding: NSUTF8StringEncoding] for this case. The output is not as readable, but it will show the entire string, including any NUL characters.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Sounds like your string contains a NUL (&#8221;) character around the 70 character point. NSString is perfectly happy to contain NUL characters, and it does no harm there. However, the moment that you convert it to a C string, for example when printing it in the debugger, that NUL character will be interpreted as a string terminator, and your output will be truncated. It will not only truncate debug printing, but anything else that goes through a C string, like filesystem paths, and possibly whatever you&#8217;re using to post your HTTP request.</p>

<p>To help with debugging, I recommend printing [string dataUsingEncoding: NSUTF8StringEncoding] for this case. The output is not as readable, but it will show the entire string, including any NUL characters.</p>]]></content:encoded>
	</item>
</channel>
</rss>

