<?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"
	>

<channel>
	<title>Halfbaked Ideas</title>
	<atom:link href="http://erl.nfshost.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://erl.nfshost.com</link>
	<description></description>
	<pubDate>Fri, 21 Nov 2008 03:59:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>installing gem on ubuntu ibex</title>
		<link>http://erl.nfshost.com/2008/11/20/installing-gem-on-ubuntu-ibex/</link>
		<comments>http://erl.nfshost.com/2008/11/20/installing-gem-on-ubuntu-ibex/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 03:59:35 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/11/20/installing-gem-on-ubuntu-ibex/</guid>
		<description><![CDATA[Installing ruby and gem on Ubuntu (Intrepid Ibex) is somewhat problematic because of differences of opinion between the apt folk and the gem folk.  If you want a working version of gem on Ubuntu Ibex, the RailsOnUbuntu site has the instructions. Worked for me.
]]></description>
			<content:encoded><![CDATA[<p>Installing ruby and gem on Ubuntu (Intrepid Ibex) is somewhat problematic because of differences of opinion between the apt folk and the gem folk.  If you want a working version of gem on Ubuntu Ibex, the <a href="http://wiki.rubyonrails.org/rails/pages/RailsOnUbuntu">RailsOnUbuntu</a> site has the instructions. Worked for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/11/20/installing-gem-on-ubuntu-ibex/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An excellent domain registrar</title>
		<link>http://erl.nfshost.com/2008/11/11/an-excellent-domain-registrar/</link>
		<comments>http://erl.nfshost.com/2008/11/11/an-excellent-domain-registrar/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 01:17:16 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/?p=140</guid>
		<description><![CDATA[I&#8217;ve used a number of domain name registars, including GoDaddy, Network Solutions, Yahoo, and the dreadful and defunct Registerfly.  After kissing too many toads, I&#8217;ve finally found a princess, gandi.net.
Their prices are fair, their site is well designed and easy to use, and they don&#8217;t try to cross sell, up sell, or otherwise try [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve used a number of domain name registars, including GoDaddy, Network Solutions, Yahoo, and the dreadful and defunct Registerfly.  After kissing too many toads, I&#8217;ve finally found a princess, <a href="http://www.gandi.net/">gandi.net</a>.</p>
<p>Their prices are fair, their site is well designed and easy to use, and they don&#8217;t try to cross sell, up sell, or otherwise try to get you to buy services you don&#8217;t want.  My impression is that the folks at gandi believe technical competence combined with ethical business practices will win and keep customers. Truly a breath of fresh air.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/11/11/an-excellent-domain-registrar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mirroring an SVN repository</title>
		<link>http://erl.nfshost.com/2008/10/27/mirroring-an-svn-repository/</link>
		<comments>http://erl.nfshost.com/2008/10/27/mirroring-an-svn-repository/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 19:41:55 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[how-to]]></category>

		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/10/27/mirroring-an-svn-repository/</guid>
		<description><![CDATA[One advantage of a distributed version control system such as Mercurial is that any clone of a project is complete. The clone contains the entire history of the project. That makes backing up a repository trivial. 
Not so for a centralized vcs such as Subversion. If you check out a copy of a project, you [...]]]></description>
			<content:encoded><![CDATA[<p>One advantage of a distributed version control system such as Mercurial is that any clone of a project is complete. The clone contains the entire history of the project. That makes backing up a repository trivial. </p>
<p>Not so for a centralized vcs such as Subversion. If you check out a copy of a project, you have a local copy sans the history of the project. Backing up the entire history of the project takes a bit of doing. This post concerns a method for creating a live mirror of a Subversion repository.</p>
<p>Here is the problem we are going to solve. You have a working Subversion (svn) repository. It contains valuable code, so naturally you want to back it up, both on a local machine, and maybe an offsite machine as insurance against disaster striking your site.  </p>
<p>You could try to back up your repository by backing up the physical media containing the files which constitute your repository, say using rsynch-backup or some such. I don&#8217;t like that approach because if you ever have to use your backup, your first step will be to try to turn a bunch of files into a working svn repository. No thanks, I&#8217;d rather have a running svn instance all set to go.</p>
<p>I&#8217;ll show you how to back up your svn repository using three very simple bash scripts, and later give a link to to where you can download the scripts. Here&#8217;s the first one, <i>make-svnrepo</i>.
<pre><code>#!/bin/bash
## The user should edit this script to insert appropriate repository paths.
## The goal is to mirror ${REMOTESVN}/${REPO} in ${LOCALSVN}/${REPO}, which is created here.
## The population of ${LOCALSVN}/${REPO} is done via another script, sync-svnrepo

REPO=${1}                             # name of repository passed in by user
REMOTESVN='10.0.0.11'                 # omit final "/" since script provides it later
LOCALSVN='/home/drc/repo/saffronsvn'  # ditto
LOCALREPO=${LOCALSVN}/${REPO}         # the file path to local svn repository about to be created
PROTOCOL=svn                          # the transfer protocol to be used : one of {svn,  svn+ssh, file}

## Sanity check: uncomment the svn info command below, and make sure it works.
## If it does not, you are not talking to the remote repo, and may not have correctly specified some component above.
## svn info ${PROTOCOL}://${REMOTESVN}/${REPO}

## do the magic
svnadmin create ${LOCALREPO}
echo "#!/bin/bash" > ${LOCALREPO}/hooks/pre-revprop-change
chmod +x ${LOCALREPO}/hooks/pre-revprop-change
svnsync init file://${LOCALREPO} ${PROTOCOL}://${REMOTESVN}/${REPO}</code></pre>
<p>How would I use this?  Well, I have an existing svn repository running on my LAN, on a host with internal ip address 10.0.0.11. Suppose it hosts a project called MyProject.  I want to mirror that entire project on my local machine, in the existing directory /home/drc/repo/svn.  I have already installed Subversion on my local machine, and make-svnrepo is marked executable and is in my path. What I have to do is run the following in the console:</p>
<pre><code>make-svnrepo My-Project</code></pre>
<p>This will create an empty project. To populate it, use the next script, <i>sync-svnrepo</i>:
<pre><code>#!/bin/bash
## You will want to run this periodically, say via a cron job. I run it 4x daily.
LOCALSVN='/home/drc/repo/saffronsvn'  # should agree with LOCALSVN in make-svnrepo
REPO=${1}
REPOSITORY=${LOCALSVN}/${REPO}
svnsync sync file://${REPOSITORY}
</code></pre>
<p>As you might expect, we would populate the mirror created in the first step by running the following in a console:</p>
<pre><code>sync-svnrepo My-Project</code></pre>
<p>This has to be done on a regular basis to keep up with changes; cron does the trick for me. I imagine it would be possible to use hooks within the original repo to trigger backups whenever code is committed, but I prefer not to touch the original repository.</p>
<p>What I&#8217;ve done at work is to mirror our working repository in three separate mirrors. Two are onsite, one is offsite.  I use the following script, query-svnrepo, to check up on the status of the mirrors.
<pre><code>#!/bin/bash
NAME=${1}
echo "---> " ${NAME}

## The idea here is that we have mirrored the repo named by NAME is in several places
## We want to check that revision numbers on the mirrors more or less agree with the original repo's numbers

ORIGINAL=10.0.0.11                       ## on our lan
MIRROR1="/home/drc/repo/svn"             ## file on localhost
MIRROR2=10.0.0.66/svn                    ## on our LAN
MIRROR3="foo.bar.org/home/drc/repo/svn"  ## offsite, requires ssh access
COMMAND='svn info '

## adjust the protocol as required for each mirror
REPOSITORY=${ORIGINAL}
PROTOCOL='svn://'
RESULT=`${COMMAND} ${PROTOCOL}${REPOSITORY}/${NAME} | grep "Revision:"`
MSG="original:  ${RESULT}"
echo $MSG

REPOSITORY=${MIRROR1}
PROTOCOL='file:///'   ## the third / is needed as an escape because the path begins with /
RESULT=`${COMMAND} ${PROTOCOL}${REPOSITORY}/${NAME} | grep "Revision:"`
MSG=" mirror1:  ${RESULT}"
echo $MSG

REPOSITORY=${MIRROR2}
PROTOCOL='svn://'
RESULT=`${COMMAND} ${PROTOCOL}${REPOSITORY}/${NAME} | grep "Revision:"`
MSG=" mirror2:  ${RESULT}"
echo $MSG

REPOSITORY=${MIRROR3}
PROTOCOL='svn+ssh://'
RESULT=`${COMMAND} ${PROTOCOL}${REPOSITORY}/${NAME} | grep "Revision:"`
MSG=" mirror3:  ${RESULT}"
echo $MSG</code></pre>
<p>This system has worked like a champ for me. I have never had to use the backups, but it&#8217;s nice to know they are there. And it is real nice to know that they work. This can easily be tested by checking out the project from one or all of the  mirrors.</p>
<p>Screen scraping code can be a pain because blogging software sometimes does weird things to certain characters. You can get clean copies of the scripts from <a href="http://www.bitbucket.org/hbideas/mirror-svn/overview/">my repository</a> on <a href="http://www.bitbucket.org/">BitBucket</a>.</p>
<p>If you actually use any of these scripts, let me know how it goes. I&#8217;d be happy to hear any suggested improvements.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/10/27/mirroring-an-svn-repository/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dumb luck and disk drives</title>
		<link>http://erl.nfshost.com/2008/10/23/dumb-luck-and-disk-drives/</link>
		<comments>http://erl.nfshost.com/2008/10/23/dumb-luck-and-disk-drives/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 18:37:17 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/10/23/dumb-luck-and-disk-drives/</guid>
		<description><![CDATA[The CEO of the company I work for mentioned that she was having problem with a USB drive containing a bunch of her data. I offered take a look. Sure enough, her Mac could not see the drive. Worse, while spinning up the drive made a lot of odd, periodic noises that did not inspire [...]]]></description>
			<content:encoded><![CDATA[<p>The CEO of the company I work for mentioned that she was having problem with a USB drive containing a bunch of her data. I offered take a look. Sure enough, her Mac could not see the drive. Worse, while spinning up the drive made a lot of odd, periodic noises that did not inspire confidence. </p>
<p>I brought the device back to my ubuntu box, plugged it in, and nothing. The drive did not auto-mount, there was no sign of it in /media, and I could not see any new device using &#8220;sudo fdisk -l&#8221;. At that point things did not look entirely promising. It&#8217;s hard to use recovery tools on a device if you cannot see it. </p>
<p>And then I got lucky.  </p>
<p>The drive was powered up, spinning away, and I was holding it in my hand, thinking about what to try next. I don&#8217;t know the rotational speed of the drive, but it must be pretty high.  I could feel the gyroscopic precession effect resisting changes to the drive&#8217;s axis of rotation when I moved my hand.  It is an interesting, almost eerie sensation. I played with drive, feeling the effect, for about 10, maybe 15 seconds. As I did so I heard a clicking sound, and suddenly the drive auto-mounted and a Nautilus window came up showing the contents of the drive. I quickly dumped the 14GB of data to another drive. </p>
<p>It&#8217;s good to be lucky.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/10/23/dumb-luck-and-disk-drives/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An email tip</title>
		<link>http://erl.nfshost.com/2008/10/17/an-email-tip/</link>
		<comments>http://erl.nfshost.com/2008/10/17/an-email-tip/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 19:12:03 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/10/17/an-email-tip/</guid>
		<description><![CDATA[Many email clients share a user interface mis-feature. The user starts to compose an email, and the first thing the client does is put the user in the input area for the to: field. The user dutifully fills in the addressee, and most of the time things work out fine. Once in a while, the [...]]]></description>
			<content:encoded><![CDATA[<p>Many email clients share a user interface mis-feature. The user starts to compose an email, and the first thing the client does is put the user in the input area for the to: field. The user dutifully fills in the addressee, and most of the time things work out fine. Once in a while, the user sends a half completed message by mistake. This is especially annoying if you happen to be writing to a mailing list with many subscribers.</p>
<p>I make a habit of leaving the to: field empty until the body of the email is completed. That way if I hit send by mistake, the client has no one to send to. This has proved useful several times.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/10/17/an-email-tip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing antialiased Leo on Ubuntu</title>
		<link>http://erl.nfshost.com/2008/10/11/installing-antialiased-leo-on-ubuntu/</link>
		<comments>http://erl.nfshost.com/2008/10/11/installing-antialiased-leo-on-ubuntu/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 02:45:48 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[how-to]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/?p=86</guid>
		<description><![CDATA[A little over a month ago I wrote about my off and on efforts to get the Leo text editor running under linux with decent looking antialiased fonts. At long last I have succeeded. Not through any heroic efforts on my part, but by waiting for python and tcltk to finally provide the needed font [...]]]></description>
			<content:encoded><![CDATA[<p>A little over a month ago I wrote about my off and on efforts to get the Leo text editor running under linux with decent looking antialiased fonts. At long last I have succeeded. Not through any heroic efforts on my part, but by waiting for python and tcltk to finally provide the needed font support. Here&#8217;s the drill.</p>
<p>First I downloaded the source for the recently released python 2.6, along with the source for the current versions of tcl and tk. I put all three in /home/drc/local/:
<pre><code>cd /home/drc/local
wget http://www.python.org/ftp/python/2.6/Python-2.6.tgz
wget http://prdownloads.sourceforge.net/tcl/tcl8.5.4-src.tar.gz
wget http://prdownloads.sourceforge.net/tcl/tk8.5.4-src.tar.gz
</code></pre>
<p>I then unpacked all three downloads, and built them in this order. First tcl:
<pre><code>cd /home/drc/local/tcl8.5.4/unix
./configure; make; sudo make install
</code></pre>
<p>To get the nice fonts with tk requires a little preparation.
<pre><code>sudo aptitude install libxft-dev
</code></pre>
<p>Now we can build tk.
<pre><code>cd /home/drc/local/tk8.5.4/unix
./configure --enable-xft; make; sudo make install
</code></pre>
<p>Next we build python 2.6. We can take care of getting the dependencies set up by picking up the dependencies for python 2.5.
<pre><code>sudo apt-get build-dep python2.5
</code></pre>
<p>Finally we are ready to compile python 2.6. I kept it local so not to mess up Ubuntu Hardy, which relies on python 2.5.</p>
<pre><code>cd /home/drc/local/Python-2.6
./configure --prefix=/home/drc/local/python2.6
make; make install
</code></pre>
<p>Everything is built. All we need now is a simple bash script to launch Leo. Here&#8217;s what I use:</p>
<pre><code>#!/bin/bash
LOCAL=/home/drc/local
PYTHON=${LOCAL}/python2.6/bin/python
LEO=${LOCAL}/Leo-4-5-1-final/
${PYTHON} ${LEO}/launchLeo.py ${1}
</code></pre>
<p>If you happen to find this useful, or have any corrections, suggestions, or comments, I&#8217;d love to hear from you. Leo is a wonderful and very useful program. I am delighted to finally have a nice looking version running on linux.</p>
<p>Here&#8217;s the obligatory screen shot.<br />
<img src="http://erl.nfshost.com/wordpress/images/leo.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/10/11/installing-antialiased-leo-on-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>apt-get build-dep</title>
		<link>http://erl.nfshost.com/2008/09/17/apt-get-build-dep/</link>
		<comments>http://erl.nfshost.com/2008/09/17/apt-get-build-dep/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 19:05:50 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/09/17/apt-get-build-dep/</guid>
		<description><![CDATA[I ran across a&#160; tip I want to preserve and pass along.&#160; The original post is at The Telarah Times.
apt-get build-dep &#60;package_name&#62;
This will get all the dependencies needed to compile your package - providing that package_name is something that would normally install using a simple apt-get install command.
For example:If you wanted to download and install [...]]]></description>
			<content:encoded><![CDATA[<p>I ran across a&nbsp; tip I want to preserve and pass along.&nbsp; The original post is at <a href="http://jamesmcdonald.id.au/linux/linux-tools/ubuntu-build-depency-installation-command">The Telarah Times</a>.</p>
<blockquote><p><code>apt-get build-dep &lt;package_name&gt;</code></p>
<p>This will get all the dependencies needed to compile your package - providing that package_name is something that would normally install using a simple apt-get install command.</p>
<p>For example:<br />If you wanted to download and install the latest version of gnucash from tar.gz. You would run:</p>
<p><code>apt-get build-dep gnucash</code></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/09/17/apt-get-build-dep/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Intro to gen_fsm and gen_server</title>
		<link>http://erl.nfshost.com/2008/09/08/intro-to-gen_fsm-and-gen_server/</link>
		<comments>http://erl.nfshost.com/2008/09/08/intro-to-gen_fsm-and-gen_server/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 02:22:44 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[erlang]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/09/08/intro-to-gen_fsm-and-gen_server/</guid>
		<description><![CDATA[ Emacs ]]></description>
			<content:encoded><![CDATA[<p>Mitchell Hashimoto, writing at the aptly named <a href="http://spawnlink.com/">spawn_link</a> blog, has put up a couple of very nice tutorials on <a href="http://spawnlink.com/articles/an-introduction-to-gen_fsm-erlybanks-atm/">gen_fsm</a> and <a href="http://spawnlink.com/articles/an-introduction-to-gen_server-erlybank/">gen_server</a>. It is clear that Mitchell put a lot of thought and effort into these posts. He is a skilled expositor with an obvious enthusiasm for the material.  As someone who is trying to master Erlang, I want to express my thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/09/08/intro-to-gen_fsm-and-gen_server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>erl process handling commands</title>
		<link>http://erl.nfshost.com/2008/09/06/erl-process-handling-commands/</link>
		<comments>http://erl.nfshost.com/2008/09/06/erl-process-handling-commands/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 01:35:55 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[erlang]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/09/06/erl-process-handling-commands/</guid>
		<description><![CDATA[Note to self: some handy erlang shell commands for dealing with processes.
process_info(Pid)
i()
erlang:processes(), or better yet, rp(erlang:processes()).  Sometimes long lists show &#8220;&#8230;&#8221; to represent the tail elements. Wrapping in rp() shows the whole list.
Finally, exit(Pid, kill) to kill the process represented by Pid.  For a while I thought that exit(Pid) sufficed, but some experimentation [...]]]></description>
			<content:encoded><![CDATA[<p>Note to self: some handy erlang shell commands for dealing with processes.</p>
<p>process_info(Pid)</p>
<p>i()</p>
<p>erlang:processes(), or better yet, rp(erlang:processes()).  Sometimes long lists show &#8220;&#8230;&#8221; to represent the tail elements. Wrapping in rp() shows the whole list.</p>
<p>Finally, exit(Pid, kill) to kill the process represented by Pid.  For a while I thought that exit(Pid) sufficed, but some experimentation using the commands above will show otherwise.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/09/06/erl-process-handling-commands/feed/</wfw:commentRss>
		</item>
		<item>
		<title>leo font rendering woes</title>
		<link>http://erl.nfshost.com/2008/09/04/leo-font-rendering-woes/</link>
		<comments>http://erl.nfshost.com/2008/09/04/leo-font-rendering-woes/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 03:37:31 +0000</pubDate>
		<dc:creator>drc</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://erl.nfshost.com/2008/09/04/leo-font-rendering-woes/</guid>
		<description><![CDATA[It has been months since I converted my work machine from Windows XP to Ubuntu Hardy. There is only one program I miss, the fabulous Leo text editor. Leo is not just a text editor. If it were only that I would have little use for Leo, since I already use Emacs, the one true [...]]]></description>
			<content:encoded><![CDATA[<p>It has been months since I converted my work machine from Windows XP to Ubuntu Hardy. There is only one program I miss, the fabulous <a href="http://sourceforge.net/projects/leo/">Leo</a> text editor. Leo is not just a text editor. If it were only that I would have little use for Leo, since I already use Emacs, the one true text editor. Leo is an outlining editor for programmers, one designed specifically for working with tree structured text such as xml or html. Even better, with a bit of tinkering, Leo can hand off straight text editing to Emacs (or even Vim). Emacs in effect works as a plugin within Leo, giving the user the best of both worlds.</p>
<p>The sad truth is that Leo does run on linux, but it uses tcl/tk for its gui. With the versions of python and tcl/tk currently available on Ubuntu Hardy, Leo&#8217;s font rendering is so bad I can&#8217;t bear to use it. Leo looks great on Windows, bad on linux, and perhaps even worse on Mac. Strange.</p>
<p>I spent some time trying to track down a way to get antialiased fonts working for Leo on Ubuntu, but had no luck. I did find <a href="http://www.mail-archive.com/leo-editor@googlegroups.com/msg00976.html">a thread</a> that suggested installing tcl8.5 and compiling Python from source, but decided not to bother with it. Intrepid Ibex is supposed to be released end of next month, and Python 2.6 is also due for release in October. I can wait a bit longer. Another few months and I think there is a decent chance that Leo will provide antialiased fonts out of the box.</p>
]]></content:encoded>
			<wfw:commentRss>http://erl.nfshost.com/2008/09/04/leo-font-rendering-woes/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
