<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>Muffin Research Labs » Snippets</title>
	
	<link>http://muffinresearch.co.uk</link>
	<description>the personal blog of Stuart Colville covering modern web development techniques and best practices</description>
	<lastBuildDate>Tue, 12 Mar 2013 20:56:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/muffin/snippets" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="muffin/snippets" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.0/</creativeCommons:license><item>
		<title>Insert a tab character in vim when expand tabs is on</title>
		<link>http://muffinresearch.co.uk/archives/2012/09/18/insert-a-tab-character-in-vim-when-expand-tabs-is-on/</link>
		<comments>http://muffinresearch.co.uk/archives/2012/09/18/insert-a-tab-character-in-vim-when-expand-tabs-is-on/#comments</comments>
		<pubDate>Tue, 18 Sep 2012 10:00:10 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=1264</guid>
		<description><![CDATA[I have vim set-up to use spaces in place of tabs. Sometimes you need to use an actual tab e.g. editing a Makefile. Now whilst it&#8217;s possible to change settings so that tabs are used for specific files, a quick tip to remember is to simply type in insert mode: Ctrl+v tab That is Ctrl [...]]]></description>
				<content:encoded><![CDATA[<p>I have vim set-up to use spaces in place of tabs. Sometimes you need to use an actual tab e.g. editing a Makefile. Now whilst it&#8217;s possible to change settings so that tabs are used for specific files, a quick tip to remember is to simply type in insert mode:</p>
<p><code>Ctrl+v tab</code></p>
<p>That is Ctrl and &#8220;V&#8221; and hit the tab key, et voila you&#8217;ve entered an actual tab.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=I47mKv48bng:lkKq_ahgV3w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=I47mKv48bng:lkKq_ahgV3w:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=I47mKv48bng:lkKq_ahgV3w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=I47mKv48bng:lkKq_ahgV3w:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2mJPEYqXBVI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2012/09/18/insert-a-tab-character-in-vim-when-expand-tabs-is-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU screen: open tab in current working directory</title>
		<link>http://muffinresearch.co.uk/archives/2011/11/08/gnu-screen-open-tab-in-current-working-directory/</link>
		<comments>http://muffinresearch.co.uk/archives/2011/11/08/gnu-screen-open-tab-in-current-working-directory/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 10:54:18 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=1228</guid>
		<description><![CDATA[A nice trick for having screen open a new tab in the same directory as the one you&#8217;re currently in. To use it add it to your .screenrc # Open new window in current dir. bind c stuff "screen -X chdir \$PWD;screen^M" bind ^c stuff "screen -X chdir \$PWD;screen^M" Hat tip: mteckert on SuperUser.com]]></description>
				<content:encoded><![CDATA[<p>A nice trick for having screen open a new tab in the same directory as the one you&#8217;re currently in. To use it add it to your .screenrc</p>
<p><code># Open new window in current dir.<br />
bind c stuff "screen -X chdir \$PWD;screen^M"<br />
bind ^c stuff "screen -X chdir \$PWD;screen^M"</code></p>
<p>Hat tip: <a href="http://superuser.com/users/83362/mteckert" target="_blank">mteckert</a> on <a href="http://superuser.com/questions/291907/using-screenrc-how-can-i-make-c-a-c-open-a-new-window-at-the-current-windows" target="_blank">SuperUser.com</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=IJCPI0puzc8:EQI6dr1VgIM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=IJCPI0puzc8:EQI6dr1VgIM:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=IJCPI0puzc8:EQI6dr1VgIM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=IJCPI0puzc8:EQI6dr1VgIM:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2mJPEYqXBVI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2011/11/08/gnu-screen-open-tab-in-current-working-directory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu: add-apt-repository: command not found</title>
		<link>http://muffinresearch.co.uk/archives/2011/08/31/ubuntu-add-apt-repository-command-not-found/</link>
		<comments>http://muffinresearch.co.uk/archives/2011/08/31/ubuntu-add-apt-repository-command-not-found/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 01:10:37 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=1174</guid>
		<description><![CDATA[When you&#8217;re using a minimal Ubuntu install if you find the &#8216;add-apt-repository&#8217; command is missing (it&#8217;s useful for adding PPAs and other repositories), then simply run: sudo apt-get install python-software-properties]]></description>
				<content:encoded><![CDATA[<p>When you&#8217;re using a minimal Ubuntu install if you find the &#8216;add-apt-repository&#8217; command is missing (it&#8217;s useful for adding PPAs and other repositories), then simply run: </p>
<p><code>sudo apt-get install python-software-properties</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=7gnq65MWePw:pCu_WeVVgDo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=7gnq65MWePw:pCu_WeVVgDo:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=7gnq65MWePw:pCu_WeVVgDo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=7gnq65MWePw:pCu_WeVVgDo:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2mJPEYqXBVI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2011/08/31/ubuntu-add-apt-repository-command-not-found/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Brewing with a French Press</title>
		<link>http://muffinresearch.co.uk/archives/2010/09/06/brewing-with-a-french-press/</link>
		<comments>http://muffinresearch.co.uk/archives/2010/09/06/brewing-with-a-french-press/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 21:26:33 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=978</guid>
		<description><![CDATA[My Coffee Brewing alter ego has been hard at work on a post about brewing the perfect French Press. Warning contains extreme coffee nerdery, though don&#8217;t let that put you off!]]></description>
				<content:encoded><![CDATA[<p>My Coffee Brewing alter ego has been hard at work on a post about <a href="http://caferesearch.co.uk/post/1077277952/how-to-use-a-french-press">brewing the perfect French Press</a>. Warning contains extreme coffee nerdery, though don&#8217;t let that put you off!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=cGU40plM41M:Px16tut4SGQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=cGU40plM41M:Px16tut4SGQ:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=cGU40plM41M:Px16tut4SGQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=cGU40plM41M:Px16tut4SGQ:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2mJPEYqXBVI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2010/09/06/brewing-with-a-french-press/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Loggerhead with mod_wsgi</title>
		<link>http://muffinresearch.co.uk/archives/2009/12/05/using-loggerhead-with-mod_wsgi/</link>
		<comments>http://muffinresearch.co.uk/archives/2009/12/05/using-loggerhead-with-mod_wsgi/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:09:37 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=788</guid>
		<description><![CDATA[Here&#8217;s a post I wrote over on the Project Fondue Blog about our use of Loggerhead with mod_wsgi under Apache. Loggerhead is the rather nice branch viewer for bazaar branches as used on Launchpad.net. If you&#8217;re not already subscribed to the Project Fondue blog feed then I can recommend it, as there should be some [...]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a post I wrote over on the <a href="http://blog.projectfondue.com/">Project Fondue Blog</a> about our use of <a href="http://blog.projectfondue.com/2009/11/26/loggerhead-and-mod-wsgi">Loggerhead with mod_wsgi under Apache</a>. Loggerhead is the rather nice branch viewer for bazaar branches as used on Launchpad.net.</p>
<p>If you&#8217;re not already subscribed to the <a href="http://feeds.feedburner.com/projectfondue/posts">Project Fondue blog feed</a> then I can recommend it, as there should be some interesting posts coming out of there in the coming months  (yes I&#8217;m unashamedly biased!).</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=vWzREo9LsTg:FitlHvdgOoY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=vWzREo9LsTg:FitlHvdgOoY:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=vWzREo9LsTg:FitlHvdgOoY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=vWzREo9LsTg:FitlHvdgOoY:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2mJPEYqXBVI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2009/12/05/using-loggerhead-with-mod_wsgi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu: Turn off changing workspace with mouse wheel</title>
		<link>http://muffinresearch.co.uk/archives/2009/06/02/ubuntu-turn-off-changing-workspace-with-mouse-wheel/</link>
		<comments>http://muffinresearch.co.uk/archives/2009/06/02/ubuntu-turn-off-changing-workspace-with-mouse-wheel/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 09:21:30 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=616</guid>
		<description><![CDATA[I found the changing with the workspace with the mouse wheel really annoying. To disable it go to System => Preferences => CompizConfig (available if the compizconfig-settings-manager package is installed) and uncheck &#8220;Viewport Switcher&#8221; which is under the &#8220;Desktop&#8221; heading.]]></description>
				<content:encoded><![CDATA[<p>I found the changing with the workspace with the mouse wheel really annoying. To disable it go to  System => Preferences => CompizConfig (available if the compizconfig-settings-manager package is installed) and uncheck &#8220;Viewport Switcher&#8221; which is under the &#8220;Desktop&#8221; heading.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=oiwAmp_Pm20:LjmmKO9MSMc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=oiwAmp_Pm20:LjmmKO9MSMc:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=oiwAmp_Pm20:LjmmKO9MSMc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=oiwAmp_Pm20:LjmmKO9MSMc:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2mJPEYqXBVI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2009/06/02/ubuntu-turn-off-changing-workspace-with-mouse-wheel/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu: Mounting a TrueCrypt volume at startup or from the CLI</title>
		<link>http://muffinresearch.co.uk/archives/2009/04/05/ubuntu-mounting-a-truecrypt-volume-at-startup-or-from-the-cli/</link>
		<comments>http://muffinresearch.co.uk/archives/2009/04/05/ubuntu-mounting-a-truecrypt-volume-at-startup-or-from-the-cli/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 16:07:48 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=545</guid>
		<description><![CDATA[All you need is a mount point e.g: mkdir /media/ and then use the following: truecrypt /path/to/truecrypt/diskimage /media/. This is handy when you want to mount a truecrypt image at start-up or just do it quickly from a shell. It&#8217;s far more direct than using the GUI.]]></description>
				<content:encoded><![CDATA[<p>All you need is a mount point e.g: <code>mkdir /media/<mountpoint></code> and then use the following: <code>truecrypt /path/to/truecrypt/diskimage /media/<mountpoint></code>. This is handy when you want to mount a truecrypt image at start-up or just do it quickly from a shell. It&#8217;s far more direct than using the GUI.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=Pl1hHex3drU:4WBFUmmEppQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=Pl1hHex3drU:4WBFUmmEppQ:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=Pl1hHex3drU:4WBFUmmEppQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=Pl1hHex3drU:4WBFUmmEppQ:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2mJPEYqXBVI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2009/04/05/ubuntu-mounting-a-truecrypt-volume-at-startup-or-from-the-cli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OSX: Visor Development on Github</title>
		<link>http://muffinresearch.co.uk/archives/2009/03/11/mac-osx-visor-development-on-github/</link>
		<comments>http://muffinresearch.co.uk/archives/2009/03/11/mac-osx-visor-development-on-github/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 17:24:35 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=540</guid>
		<description><![CDATA[I&#8217;ve been using Visor (the drop-down Quake style terminal) for a little while and recently discovered the development of the project has moved to github from it&#8217;s original home at blacktree. The latest versions of the app fix a lot of the annoying niggles with the last blacktree versions. Well worth updating to the latest [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been using Visor (the drop-down Quake style terminal) for a little while and recently discovered the development of the project has moved  to github from it&#8217;s original home at <a href="http://www.blacktree.com/projects/visor.html">blacktree</a>. The latest versions of the app fix a lot of the annoying niggles with the last blacktree versions. Well worth updating to the latest and greatest if you haven&#8217;t already <a href="http://github.com/darwin/visor/tree/master">http://github.com/darwin/visor/tree/master</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=VecSuGRZvQE:SnlEV3wurL4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=VecSuGRZvQE:SnlEV3wurL4:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=VecSuGRZvQE:SnlEV3wurL4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2009/03/11/mac-osx-visor-development-on-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install lxml on OSX</title>
		<link>http://muffinresearch.co.uk/archives/2009/03/05/install-lxml-on-osx/</link>
		<comments>http://muffinresearch.co.uk/archives/2009/03/05/install-lxml-on-osx/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 23:10:30 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Muffin Research Labs]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=522</guid>
		<description><![CDATA[Thanks to this post on lxml from Ian Bicking I&#8217;ve found the following command is all that&#8217;s required to install lxml on Mac OSX: STATIC_DEPS=true easy_install 'lxml>=2.2beta4' STATIC_DEPS=true sudo easy_install 'lxml>=2.2beta4' The first run without &#8220;sudo&#8221; pulls down the necessary libxml and libxslt and then the second run provides the permissions to install the egg.]]></description>
				<content:encoded><![CDATA[<p>Thanks to <a href="http://blog.ianbicking.org/2008/12/10/lxml-an-underappreciated-web-scraping-library/">this post on lxml from Ian Bicking</a> I&#8217;ve found the following command is all that&#8217;s required to install lxml on Mac OSX:</p>
<p><code>STATIC_DEPS=true easy_install 'lxml>=2.2beta4'<br />
STATIC_DEPS=true sudo easy_install 'lxml>=2.2beta4'</code></p>
<p>The first run without &#8220;sudo&#8221; pulls down the necessary libxml and libxslt and then the second run provides the permissions to install the egg.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=uf3W_0wQoak:Zsm5NDC7SjU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=uf3W_0wQoak:Zsm5NDC7SjU:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=uf3W_0wQoak:Zsm5NDC7SjU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2009/03/05/install-lxml-on-osx/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>EuroDjangoCon Prague</title>
		<link>http://muffinresearch.co.uk/archives/2009/03/03/eurodjangocon-prague/</link>
		<comments>http://muffinresearch.co.uk/archives/2009/03/03/eurodjangocon-prague/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 14:55:09 +0000</pubDate>
		<dc:creator>Stuart Colville</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=520</guid>
		<description><![CDATA[Rob Lofthouse is putting on a European DjangoCon event in the beautiful city of Prague: EuroDjangoCon is a Django conference that aims to bring together the community and provide a wide range of sessions, panels, lightning talks and showcases of Django usage within various businesses. We aim to educate, provoke thought and bring people together [...]]]></description>
				<content:encoded><![CDATA[<p>Rob Lofthouse is putting on a European DjangoCon event in the beautiful city of Prague:</p>
<blockquote><p>EuroDjangoCon is a Django conference that aims to bring together the community and provide a wide range of sessions, panels, lightning talks and showcases of Django usage within various businesses. We aim to educate, provoke thought and bring people together to turn ideas into working code.</p></blockquote>
<p>For more info and to register see <a href="http://euro.djangocon.org/">http://euro.djangocon.org/</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=6_nBt4rh11M:LAqWN3xaR1s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=6_nBt4rh11M:LAqWN3xaR1s:2nqncYFp4_M"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=2nqncYFp4_M" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/muffin/snippets?a=6_nBt4rh11M:LAqWN3xaR1s:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/muffin/snippets?d=7Q72WNTAKBA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://muffinresearch.co.uk/archives/2009/03/03/eurodjangocon-prague/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.295 seconds -->
