<?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>ALL OF IT NOW!</title>
	<atom:link href="http://allofitnow.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://allofitnow.com</link>
	<description>ALL OF IT NOW is Howard Wong, a live media artist based in San Francisco, California.</description>
	<lastBuildDate>Sun, 28 Aug 2011 22:58:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>brew install bzr missing paramiko and pycrypto</title>
		<link>http://allofitnow.com/2011/04/25/brew-install-bzr-missing-paramiko-and-pycrypto/</link>
		<comments>http://allofitnow.com/2011/04/25/brew-install-bzr-missing-paramiko-and-pycrypto/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 23:29:03 +0000</pubDate>
		<dc:creator>allofitnow</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://allofitnow.com/?p=199</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using <a href="http://mxcl.github.com/homebrew/">Homebrew</a> to manage installation of your UNIX tools on Mac OS, and you use <a href="http://bazaar.canonical.com/en/">Bazaar</a> for version control system needs, you&#8217;ll probably run into some trouble when you perform your first check out from a repository that depends on ssh:<br />
<code><br />
$ bzr co sftp://somehost.com/home/someuser/projects/my_project<br />
bzr: ERROR: Unsupported protocol for url "sftp://asdfmeida.com": Unable to import paramiko (required for sftp support): No module named paramiko<br />
$ brew install paramiko<br />
Error: No available formula for paramiko<br />
</code><br />
No problem. Just wget the latest version and install it yourself.<br />
<code><br />
$ wget http://www.lag.net/paramiko/download/paramiko-1.7.4.zip<br />
$ cd paramiko-1.7.4<br />
$ easy_install ./<br />
</code><br />
According to the README file in the paramiko package, this will install all the necessary dependencies including pycrypto. This process could probably be a new brew formula contribution but this writeup is better than nothing for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://allofitnow.com/2011/04/25/brew-install-bzr-missing-paramiko-and-pycrypto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffplay missing on brew install ffmpeg</title>
		<link>http://allofitnow.com/2011/04/16/ffplay-missing-on-brew-install-ffmpeg/</link>
		<comments>http://allofitnow.com/2011/04/16/ffplay-missing-on-brew-install-ffmpeg/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 22:36:15 +0000</pubDate>
		<dc:creator>allofitnow</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[brew]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[VJ]]></category>

		<guid isPermaLink="false">http://allofitnow.com/?p=175</guid>
		<description><![CDATA[ffmpeg usually includes ffplay when you build it. However if you don&#8217;t have sdl installed, the build script will skip it. On Ubuntu 10.10, you won&#8217;t have a problem. But if you&#8217;re a Mac OS user using a minimalist package manager like Brew, you have to fetch sdl yourself. brew install sdl brew install ffmpeg [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ffmpeg.org/">ffmpeg</a> usually includes ffplay when you build it. However if you don&#8217;t have <a href="http://www.libsdl.org/">sdl</a> installed, the build script will skip it.</p>
<p>On Ubuntu 10.10, you won&#8217;t have a problem. But if you&#8217;re a Mac OS user using a minimalist package manager like <a href="https://github.com/mxcl/homebrew#readme">Brew</a>, you have to fetch sdl yourself.<br />
<code><br />
brew install sdl<br />
brew install ffmpeg</code></p>
<p>&nbsp;</p>
<p>That should give you ffplay.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://allofitnow.com/2011/04/16/ffplay-missing-on-brew-install-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My first Processing JS post</title>
		<link>http://allofitnow.com/2011/04/10/173/</link>
		<comments>http://allofitnow.com/2011/04/10/173/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 07:29:00 +0000</pubDate>
		<dc:creator>allofitnow</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://allofitnow.com/?p=173</guid>
		<description><![CDATA[//Info: http://processingjs.org/reference void setup() { size(200, 200); frameRate(10); } void draw() { background(#ffffff); ellipse(100, 100, random(50), random(50)); }]]></description>
			<content:encoded><![CDATA[<p><script type="application/processing">
//Info: http://processingjs.org/reference
void setup() {
	size(200, 200);
	frameRate(10);
}
void draw() {
	background(#ffffff);
	ellipse(100, 100, random(50), random(50));
}
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://allofitnow.com/2011/04/10/173/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

