<?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>Michael Monreal &#187; Personal</title>
	<atom:link href="http://blogs.gnome.org/mmonreal/category/personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gnome.org/mmonreal</link>
	<description>Just another GNOME Blogs weblog</description>
	<lastBuildDate>Wed, 18 Nov 2009 23:10:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pd midi on Fedora</title>
		<link>http://blogs.gnome.org/mmonreal/2009/11/19/pd-midi-on-fedora/</link>
		<comments>http://blogs.gnome.org/mmonreal/2009/11/19/pd-midi-on-fedora/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 23:09:29 +0000</pubDate>
		<dc:creator>mmonreal</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/mmonreal/?p=18</guid>
		<description><![CDATA[A few days ago, my girlfriend asked me to set up PureData on her Fedora 11 box. Installing Pd was easy thanks to CCRMA. Making it work &#8211; not so much&#8230;
After countless failed attempts I came up with a simple yet working setup which can be implemented in about two minutes:

install pd-extended, jack-audio-connection-kit and fluidsynth
start [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago, my girlfriend asked me to set up <a href="http://puredata.info/">PureData</a> on her Fedora 11 box. Installing Pd was easy thanks to <a href="http://ccrma.stanford.edu/planetccrma/software/">CCRMA</a>. Making it work &#8211; not so much&#8230;</p>
<p>After countless failed attempts I came up with a simple yet working setup which can be implemented in about two minutes:</p>
<ol>
<li>install <em>pd-extended</em>, <em>jack-audio-connection-kit</em> and <em>fluidsynth</em></li>
<li>start JACK:<em> </em>jackd &#8211;realtime &#8211;silent -d alsa &#8211;midi-driver seq &amp;</li>
<li>start FluidSynth:<br />
fluidsynth -l -i -s -a jack -o synth.sample-rate=48000 /usr/share/soundfonts/default.sf2 &amp;</li>
<li>connect FluidSynth to ALSA:<br />
jack_connect fluidsynth:left alsa_pcm:playback_1<br />
jack_connect fluidsynth:right alsa_pcm:playback_2</li>
<li>pd -rt -jack -alsamidi -midioutdev 1</li>
</ol>
<p>I first tried to not use JACK because I thought it would clash with PulseAudio. Problem with this approach: Pd does not support PulseAudio natively and neither does FluidSynth in F11 (upstream supports it, but that is <a href="https://fedorahosted.org/fesco/ticket/265">another sad story</a>). So it&#8217;s either PCM sound or midi, but not both at the same time <img src='http://blogs.gnome.org/mmonreal/wp-content/mu-plugins/tango-smilies/tango/face-sad.png' alt=':-(' class='wp-smiley' /> </p>
<p>Fortunately, JACK turned out to work great &#8211; but for normal desktop usage, I am still very happy to have PulseAudio <img src='http://blogs.gnome.org/mmonreal/wp-content/mu-plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/mmonreal/2009/11/19/pd-midi-on-fedora/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bash history</title>
		<link>http://blogs.gnome.org/mmonreal/2008/04/17/bash-history/</link>
		<comments>http://blogs.gnome.org/mmonreal/2008/04/17/bash-history/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 11:42:37 +0000</pubDate>
		<dc:creator>mmonreal</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/mmonreal/2008/04/17/bash-history/</guid>
		<description><![CDATA[A bit late, but here&#8217;s mine:
$ history&#124;awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'&#124;sort -rn&#124;head
127 cd
77 vi
40 svn
31 ls
28 rm
27 sudo
27 make
22 ssh
14 cp
9 mv
Looks like I still don&#8217;t really trust Nautilus to do some of the basic file management  
]]></description>
			<content:encoded><![CDATA[<p>A bit late, but here&#8217;s mine:</p>
<p><code>$ history|awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'|sort -rn|head<br />
127 cd<br />
77 vi<br />
40 svn<br />
31 ls<br />
28 rm<br />
27 sudo<br />
27 make<br />
22 ssh<br />
14 cp<br />
9 mv</code></p>
<p>Looks like I still don&#8217;t really trust <a href="http://www.gnome.org/projects/nautilus/">Nautilus</a> to do some of the basic file management <img src='http://blogs.gnome.org/mmonreal/wp-content/mu-plugins/tango-smilies/tango/face-wink.png' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/mmonreal/2008/04/17/bash-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
