<?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>Jason Walsh</title>
	<atom:link href="http://jasonwalsh.us/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasonwalsh.us</link>
	<description>Me. On the Internet.</description>
	<lastBuildDate>Fri, 18 Jun 2010 01:09:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Running openFrameworks on 64-bit Fedora 13</title>
		<link>http://jasonwalsh.us/index.php/2010/06/17/running-openframeworks-on-64-bit-fedora-13/</link>
		<comments>http://jasonwalsh.us/index.php/2010/06/17/running-openframeworks-on-64-bit-fedora-13/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 23:57:28 +0000</pubDate>
		<dc:creator>Jason Walsh</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[openFrameworks]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://jasonwalsh.us/?p=2376</guid>
		<description><![CDATA[There&#8217;s not much to say that&#8217;s not said in the title, other than that I&#8217;m blogging this ex post facto, so in the (likely) event that I left anything out, let me know in the comments. While this is written for Fedora 13, it should be easily adaptable to other 64-bit distros.
Step 1: Install CodeBlocks [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s not much to say that&#8217;s not said in the title, other than that I&#8217;m blogging this <em>ex post facto</em>, so in the (likely) event that I left anything out, let me know in the comments. While this is written for Fedora 13, it should be easily adaptable to other 64-bit distros.</p>
<p><strong>Step 1: Install CodeBlocks and xterm</strong><br />
Even though openFrameworks includes a script that installs CodeBlocks 8.02, and another that installs CodeBlocks from Subversion, after trying both of those I found that just installing CodeBlocks via yum is the easiest way to go. xterm is required to run CodeBlocks, otherwise you will get the astonishingly unhelpful error message Process terminated with status 255.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> yum <span style="color: #c20cb9; font-weight: bold;">install</span> codeblocks xterm</pre></td></tr></table></div>

<p><strong>Step 2: Get openFrameworks from Git</strong><br />
In the current pre-release version of openFrameworks there are several bugs due to changing APIs that affect 64-bit platforms. The easiest work around is to get it from the source at GitHub.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">git clone http:<span style="color: #000000; font-weight: bold;">//</span>github.com<span style="color: #000000; font-weight: bold;">/</span>openframeworks<span style="color: #000000; font-weight: bold;">/</span>openFrameworks.git</pre></td></tr></table></div>

<p>This took quite a while on my machine, you may have to be patient.</p>
<p><strong>Step 3: Get rid of ofUCUtils</strong><br />
This is something I found referenced on the openFrameworks forums. Files related to ofUCUtils would not compile properly on my machine (due to changing FFMPEG APIs, I think), and someone on the forums said these files weren&#8217;t actually necessary for the development versions of openFrameworks. So I took their word for it, and got rid of them.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>openFrameworks<span style="color: #000000; font-weight: bold;">/</span>libs<span style="color: #000000; font-weight: bold;">/</span>openFrameworks<span style="color: #000000; font-weight: bold;">/</span>video<span style="color: #000000; font-weight: bold;">/</span>ofUCUtils.<span style="color: #000000; font-weight: bold;">*</span></pre></td></tr></table></div>

<p><strong>Step 4: Run ./install_dependencies.sh</strong><br />
This is a script provided with openFrameworks that installs some dependencies and does some compiling.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> .<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>openFrameworks<span style="color: #000000; font-weight: bold;">/</span>scripts<span style="color: #000000; font-weight: bold;">/</span>linux<span style="color: #000000; font-weight: bold;">/</span>fedora<span style="color: #000000; font-weight: bold;">/</span>install_dependencies.sh</pre></td></tr></table></div>

<p><strong>Step 5: Test</strong><br />
Open CodeBlocks, choose to open an existing project, choose any of the example projects (I went with openFrameworks/apps/examples/fontsExample/fontsExample_linux64.cbp), and try to run it (Build -> Build and Run or F9). </p>
<p>Hopefully that worked for you; if not, let me know in the comments.</p>
<p><strong>UPDATE:</strong> The OpenCV example doesn&#8217;t work out of the box. The fix is adding these linker flags in CodeBlocks: -ldl -lX11 -lXext</p>
]]></content:encoded>
			<wfw:commentRss>http://jasonwalsh.us/index.php/2010/06/17/running-openframeworks-on-64-bit-fedora-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green Man!</title>
		<link>http://jasonwalsh.us/index.php/2010/03/28/green-man/</link>
		<comments>http://jasonwalsh.us/index.php/2010/03/28/green-man/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 22:51:10 +0000</pubDate>
		<dc:creator>Jason Walsh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jasonwalsh.us/?p=284</guid>
		<description><![CDATA[&#8220;It&#8217;s Always Sunny in Philadelphia&#8221; is one my favorite shows. I think it has to be the funniest show currently on TV (beating &#8220;30 Rock&#8221; by just a bit), and Charlie is definitely the best character that&#8217;s ever been on television. So, when I found BeGreenMan.com I decided I needed a Green Man suit. Just [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;It&#8217;s Always Sunny in Philadelphia&#8221; is one my favorite shows. I think it has to be the funniest show currently on TV (beating &#8220;30 Rock&#8221; by just a bit), and Charlie is definitely the best character that&#8217;s ever been on television. So, when I found BeGreenMan.com I decided I needed a Green Man suit. Just to prove how much I love &#8220;Sunny&#8221;.</p>
<p><a href="http://begreenman.com">Get your own Green Man suit here</a></p>
<p>I&#8217;ll replicate BGM&#8217;s disclaimer here, which is that their &#8220;green man&#8217;s suit is not affiliated with or authorized by either Twentieth Century Fox Film Corporation or the Fox television series &#8220;It&#8217;s Always Sunny in Philadelphia.&#8221; </p>
]]></content:encoded>
			<wfw:commentRss>http://jasonwalsh.us/index.php/2010/03/28/green-man/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://jasonwalsh.us/index.php/2010/03/01/hello-world-2/</link>
		<comments>http://jasonwalsh.us/index.php/2010/03/01/hello-world-2/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 01:39:25 +0000</pubDate>
		<dc:creator>Jason Walsh</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jasonwalsh.us/?p=46</guid>
		<description><![CDATA[I&#8217;ve run WordPress.com blogs, self-hosted WordPress blogs, custom Python blogs, hand-written static blogs, and every other type of blog you can think of. But now, I&#8217;m committing to this self-hosted WordPress blog. Really.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve run WordPress.com blogs, self-hosted WordPress blogs, custom Python blogs, hand-written static blogs, and every other type of blog you can think of. But now, I&#8217;m committing to this self-hosted WordPress blog. Really.</p>
]]></content:encoded>
			<wfw:commentRss>http://jasonwalsh.us/index.php/2010/03/01/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
