<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sinistral.sourcery &#187; Incidentally</title>
	<atom:link href="http://tierseven.net/denizens/marc/blog/category/misc/incidentally/feed/" rel="self" type="application/rss+xml" />
	<link>http://tierseven.net/denizens/marc/blog</link>
	<description>bug bait</description>
	<lastBuildDate>Mon, 28 Dec 2009 08:41:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>emacs &amp; slime for people like me</title>
		<link>http://tierseven.net/denizens/marc/blog/2008/11/04/emacs-slime-for-people-like-me/</link>
		<comments>http://tierseven.net/denizens/marc/blog/2008/11/04/emacs-slime-for-people-like-me/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 15:37:40 +0000</pubDate>
		<dc:creator>marc</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Incidentally]]></category>

		<guid isPermaLink="false">http://tierseven.net/denizens/marc/blog/2008/11/04/emacs-slime-for-people-like-me/</guid>
		<description><![CDATA[Peter Christensen has published his &#34;Ultimate n00b SLIME/Emacs cheat sheet&#34; as a Work In Progress.  It&#8217;s a very handy quick reference.
]]></description>
			<content:encoded><![CDATA[<p>Peter Christensen has published his &quot;<a href="http://www.pchristensen.com/blog/articles/public-beta-open-for-ultimate-n00b-slimeemacs-cheat-sheet/">Ultimate n00b SLIME/Emacs cheat sheet</a>&quot; as a Work In Progress.  It&#8217;s a very handy quick reference.</p>
]]></content:encoded>
			<wfw:commentRss>http://tierseven.net/denizens/marc/blog/2008/11/04/emacs-slime-for-people-like-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NSLog an NSString</title>
		<link>http://tierseven.net/denizens/marc/blog/2008/03/27/nslog-an-nsstring/</link>
		<comments>http://tierseven.net/denizens/marc/blog/2008/03/27/nslog-an-nsstring/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 03:33:02 +0000</pubDate>
		<dc:creator>marc</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Incidentally]]></category>

		<guid isPermaLink="false">http://tierseven.net/denizens/marc/blog/2008/03/27/nslog-an-nsstring/</guid>
		<description><![CDATA[NSLog(@"hello, %@", @"world");
]]></description>
			<content:encoded><![CDATA[<p><code>NSLog(@"hello, %@", @"world");</code></p>
]]></content:encoded>
			<wfw:commentRss>http://tierseven.net/denizens/marc/blog/2008/03/27/nslog-an-nsstring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mercurial error &#8216;ValueError: unknown locale: UTF-8&#8242; on MacOS 10.5</title>
		<link>http://tierseven.net/denizens/marc/blog/2008/03/12/mercurial-error-valueerror-unknown-locale-utf-8-on-macos-105/</link>
		<comments>http://tierseven.net/denizens/marc/blog/2008/03/12/mercurial-error-valueerror-unknown-locale-utf-8-on-macos-105/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 23:12:15 +0000</pubDate>
		<dc:creator>marc</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Incidentally]]></category>
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://tierseven.net/denizens/marc/blog/2008/03/12/mercurial-error-valueerror-unknown-locale-utf-8-on-macos-105/</guid>
		<description><![CDATA[Having installed mercurial via macports, any hg command fails with:
&#160;&#160;&#160;&#60;nasty Traceback snipped&#62;
&#160;&#160;&#160;ValueError: unknown locale: UTF-8

This is mercurial 0.9.5 and Python 2.5.1, but its seem that its caused by Leopard’s Term.app not setting the local encoding correctly. To resolve this, add the following to .profile:
&#160;&#160;&#160;export LC_ALL=en_US.UTF-8
&#160;&#160;&#160;export LANG=en_US.UTF-8

as noted in the mercurial mailing list.
]]></description>
			<content:encoded><![CDATA[<p>Having installed mercurial via <a href="http://www.macports.org/">macports</a>, any <code>hg</code> command fails with:</p>
<pre>&nbsp;&nbsp;&nbsp;&lt;nasty Traceback snipped&gt;
&nbsp;&nbsp;&nbsp;ValueError: unknown locale: UTF-8
</pre>
<p>This is mercurial 0.9.5 and Python 2.5.1, but its seem that its caused by Leopard’s Term.app not setting the local encoding correctly. To resolve this, add the following to .profile:</p>
<pre>&nbsp;&nbsp;&nbsp;export LC_ALL=en_US.UTF-8
&nbsp;&nbsp;&nbsp;export LANG=en_US.UTF-8
</pre>
<p>as <a href="http://www.selenic.com/pipermail/mercurial/2007-October/015296.html">noted</a> in the mercurial mailing list.</p>
]]></content:encoded>
			<wfw:commentRss>http://tierseven.net/denizens/marc/blog/2008/03/12/mercurial-error-valueerror-unknown-locale-utf-8-on-macos-105/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>installing SVK via macports</title>
		<link>http://tierseven.net/denizens/marc/blog/2008/03/07/installing-svk-via-macports/</link>
		<comments>http://tierseven.net/denizens/marc/blog/2008/03/07/installing-svk-via-macports/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 10:31:59 +0000</pubDate>
		<dc:creator>marc</dc:creator>
				<category><![CDATA[Incidentally]]></category>
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://tierseven.net/denizens/marc/blog/2008/03/07/installing-svk-via-macports/</guid>
		<description><![CDATA[When installing SVK (2.0.2) via MacPorts (port install svk) make sure that CPAN is installed and has been configured, otherwise the SVK install will go into an infinite loop wating for user input. 
This is evident with a port install -v svk.  Without the -v it will simply appear to hang at the Configuring [...]]]></description>
			<content:encoded><![CDATA[<p>When installing SVK (2.0.2) via MacPorts (<code>port install svk</code>) make sure that CPAN is installed and has been configured, otherwise the SVK install will go into an infinite loop wating for user input. </p>
<p>This is evident with a <code>port install -v svk</code>.  Without the <code>-v</code> it will simply appear to hang at the <code>Configuring svk</code> step); see also <a href="http://trac.macports.org/projects/macports/ticket/12050">MacPorts bug #12050</a>.  The problem is that because CPAN has not yet been configured, it is prompting for the configuration that it needs in order to install SVK.</p>
<p>The first time <code>cpan</code> is run from the command line, it will prompt for configuration data; the process can be re-run using <code>o conf init</code> from within the <code>cpan</code> shell, and individual variables can be set with <code>o conf &lt;variable&gt; &lt;value&gt;</code>, e.g.: </p>
<pre>&nbsp;&nbsp;&nbsp;cpan&gt; o conf wget&nbsp;/opt/local/bin/wget</code></pre>
<p> to set, and to unset:
<pre>&nbsp;&nbsp;&nbsp;cpan&gt; o conf wget&nbsp;""</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://tierseven.net/denizens/marc/blog/2008/03/07/installing-svk-via-macports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>syntax error before &#8216;AT_NAME&#8217; token</title>
		<link>http://tierseven.net/denizens/marc/blog/2008/03/04/syntax-error-before-at_name-token/</link>
		<comments>http://tierseven.net/denizens/marc/blog/2008/03/04/syntax-error-before-at_name-token/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 10:14:14 +0000</pubDate>
		<dc:creator>marc</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Incidentally]]></category>

		<guid isPermaLink="false">http://tierseven.net/denizens/marc/blog/2008/03/04/syntax-error-before-at_name-token/</guid>
		<description><![CDATA[I also ran into this rather less-than-obvious error message compiling Objective-C code on MacOS X 10.5:

&#160;&#160;&#160;syntax error before ‘AT_NAME’ token

I eventually resolved it thanks to this blog entry.  The compiler was moaning about a missing @end in a header file.
]]></description>
			<content:encoded><![CDATA[<p>I also ran into this rather less-than-obvious error message compiling <em>Objective-C</em> code on MacOS X 10.5:</p>
<pre>
&nbsp;&nbsp;&nbsp;syntax error before ‘AT_NAME’ token
</pre>
<p>I eventually resolved it thanks to <a href="http://blog.infurious.com/2007/10/22/syntax-error-before-‘at_name’-token/">this blog entry</a>.  The compiler was moaning about a missing <code>@end</code> in a header file.</p>
]]></content:encoded>
			<wfw:commentRss>http://tierseven.net/denizens/marc/blog/2008/03/04/syntax-error-before-at_name-token/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
