<?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>No Open Blockers &#187; Open Source</title>
	<atom:link href="http://noopenblockers.com/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://noopenblockers.com</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2012 21:11:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Devil&#8217;s Pie</title>
		<link>http://noopenblockers.com/2009/12/09/devils-pie/</link>
		<comments>http://noopenblockers.com/2009/12/09/devils-pie/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 21:52:34 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=810</guid>
		<description><![CDATA[I&#8217;ve been using Gnome for almost a year and a half now, and while I have grown to love a lot of the advantages it has, there are still some things I miss about FVWM. From a keyboard shortcut standpoint, many of them were alleviated when I discovered Gnome Do. However, I still found myself [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Gnome for almost a year and a half now, and while I have grown to love a lot of the advantages it has, there are still some things I miss about FVWM. From a keyboard shortcut standpoint, many of them were alleviated when I discovered <a href="http://do.davebsd.com/" target="new">Gnome Do</a>. However, I still found myself missing sticky, transparent shells that would give me a constant view into certain data, be it htop or tailing some files. It was really quick to set up in FVWM, but I had trouble finding a way to remove window decorations from windows in Gnome.</p>
<p align="center"><a href="http://noopenblockers.com/wp-content/uploads/2009/12/devilspie-full.png"><img src="http://noopenblockers.com/wp-content/uploads/2009/12/devilspie-thumb.png" alt="Devil&#039;s Pie + Gnome Terminal = Win" title="Devil&#039;s Pie + Gnome Terminal = Win" width="700" height="438" class="aligncenter size-full wp-image-828" /></a><em>Click for 1680&#215;1050 version</em></p>
<p>Sure, there are other ways to get the data I&#8217;m looking for, but having text rendered directly on the desktop like that just looks damn cool to me. It also intimidates the crap out of non-geeks when they see my office, which I fully admit is a big plus.</p>
<p>I came across a package called <a href="http://burtonini.com/blog/computers/devilspie/" target="new">Devil&#8217;s Pie</a> that gave me a lot more control over windows. Although I was looking for something that would let me actively select a window to give it certain properties (sticky, no decorations, etc), Devil&#8217;s Pie instead passively detects new windows and applies settings to them. It&#8217;s a mentality shift from my initial thoughts, but I think over time this model will actually be really useful. Plus, it has &#8220;pie&#8221; in the name, which is just awesome.</p>
<p>With a combination of gnome-terminal profiles/flags and Devil&#8217;s Pie configuration, I was able to get my desktop to automatically populate my desktop with all sorts of data. The following description of how is kinda wordy, but it&#8217;s really not complicated at all.</p>
<h2>Install and Configure Devil&#8217;s Pie</h2>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">sudo yum -y install devilspie
mkdir ~/.devilspie
touch ~/.devilspie/console.ds</pre></div></div>

<p>Devil&#8217;s Pie reads all configuration files (I believe they have to end in .ds, but don&#8217;t quote me on that) in the above directory on startup. Those files define the rules that will be applied to new windows that are created (there&#8217;s also a way to ask it to apply rules to all existing windows as well). For this example, I put my rules in a file named console.ds.</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">(if 
(contains (window_name) &quot;console&quot; )
(begin 
(undecorate)
(pin)
(skip_pager)
(skip_tasklist)
)
)</pre></div></div>

<p>There are two main parts to the above configuration. The first is the matching expression to decide if a window should have the rules applied. In this case, I indicate to apply the actions if the window name contains the string &#8220;console&#8221; (there are also options for &#8220;is&#8221; and &#8220;matches&#8221;). I&#8217;ll cover where that rule comes into play in a bit.</p>
<p>The actions do the following:</p>
<ul>
<li>undecorate &#8211; This is primarily what I was going for, I want the window decorations removed. This includes the title bar and border, though you can still use the shortcut key (alt+F8 by default) to resize a window without decorations.</li>
<li>pin &#8211; Make this window available on all workspaces. There are also attributes to control putting a window on a particular workspace, which could be useful in my case since I use 12 workspaces and am, well, pretty anal retentive about having certain applications in certain workspaces.</li>
<li>skip_pager &#8211; Don&#8217;t let the window show up in the pager. It removes the clutter in my pager since I don&#8217;t consider this a &#8220;real&#8221; application, just a status-type window.</li>
<li>skip_tasklist &#8211; A little more useful than skip_pager, this keeps the window off the taskbar, for the same rationale as above.</li>
</ul>
<p>Needless to say, I&#8217;m only scratching the surface of all of the actions supported. I haven&#8217;t found a good way to find this list yet; the man page says the -l flag will list symbols but when I try it, it just doesn&#8217;t do anything.</p>
<h2>Run Devil&#8217;s Pie</h2>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">devilspie</pre></div></div>

<p>Not much to say about that. I&#8217;ll talk more about enabling a debug mode later, but I mention it now to say it&#8217;s not done through flags. You&#8217;ll need to restart it every time you change your confguration files, but once you&#8217;re set add it to System -> Preferences -> Startup Applications and you&#8217;re good to go on reboots.</p>
<h2>Create Gnome Terminal Profile</h2>
<p>To summarize above, Devil&#8217;s Pie will take care of removing window decorations and keeping it on the visible workspace. We still need to configure Gnome terminal to add some slickness to how it looks. Since I don&#8217;t want this slickness on all of my terminals, I created a new profile named &#8220;console&#8221; with the following changes:</p>
<ul>
<li>Background &#8211; Transparent background, with the slider set all the way to none.</li>
<li>Scrolling &#8211; Scrollbar is: Disabled</li>
</ul>
<p>That gives us a completely transparent shell, reflective of its use to simply throw data at me.</p>
<h2>Start the Terminal</h2>
<p>Now we just need to make sure we start the terminal such that it will use the right profile and will trigger the window detection from Devil&#8217;s Pie. Here&#8217;s where the matching expression from above comes into play. I don&#8217;t want all of my terminals to have no decorations, just specific ones I want to treat in this fashion. When starting the terminal, tell it to use a specific window title that will match our Devil&#8217;s Pie rule from above.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">gnome-terminal -t console --profile=console --geometry=140x20+1680-0 -e htop</pre></div></div>

<p>A quick explanation of above:</p>
<ul>
<li>-t &#8211; Sets the title of the terminal window. This value should match up to the window_name value from the Devil&#8217;s Pie configuration.</li>
<li>&#8211;profile &#8211; Tells the terminal to use the slick console profile in all of its transparent goodness.</li>
<li>&#8211;geometry &#8211; Initially size and place the terminal on my screen.</li>
<li>-e &#8211; Run a specific command when it starts, in this case <code>htop</code>.</li>
</ul>
<hr/>
<p>My screenshot above simply uses a similar call to gnome-terminal, passing a tail command to -e and different geometry to get the log tail on the top of the screen.</p>
<p>Two other notes on Devil&#8217;s Pie:</p>
<p>There is a UI for editing the configuration files: <code>gdevilspie</code>. It&#8217;s handy because you can easily see the different types of matching expressions and actions, however the files it generated didn&#8217;t run for me. For some reason, even with one matching expression it still added a blank condition and an &#8220;and&#8221; statement and closed the conditions block too early. I haven&#8217;t looked to closely yet to see what is wrong.</p>
<p>Enabling debugging is as simple as adding another configuration file. I added one named &#8220;debug.ds&#8221; to my <code>~/.devilspie</code> directory that contained simply:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">(debug)</pre></div></div>

<p>Once that is in place, running the <code>devilspie</code> executable from the command line output some really useful window information whenever a new window was created.</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/12/09/devils-pie/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gobby &#8211; Free Collaborative Editor</title>
		<link>http://noopenblockers.com/2009/11/22/gobby-free-collaborative-editor/</link>
		<comments>http://noopenblockers.com/2009/11/22/gobby-free-collaborative-editor/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 03:25:34 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=794</guid>
		<description><![CDATA[Despite the fact that the team I&#8217;m currently on only has around 8 people, we still manage to span three different time zones. Needless to say, it&#8217;s not exactly simple for us to gather around a whiteboard and hash things out. With our move to using agile process techniques (more on that in other blog, [...]]]></description>
			<content:encoded><![CDATA[<p>Despite the fact that the team I&#8217;m currently on only has around 8 people, we still manage to span three different time zones. Needless to say, it&#8217;s not exactly simple for us to gather around a whiteboard and hash things out. With our move to using agile process techniques (more on that in other blog, it&#8217;s a beefy topic), we had a monthly need to be able to work on user stories and tasks together. For a while, we tried frequent saving to a single wiki page, but that had a few obvious limitations.</p>
<p>After experimenting with a few different approaches, we found ourselves regularly using <a href="http://gobby.0x539.de/trac/" target="new">gobby.</a> I took the post title directly from their site, but it doesn&#8217;t do justice to just how fluidly it all comes together.</p>
<p>Gobby lets everyone logged into a gobby server type at the same time on the same document. Ugh, even that doesn&#8217;t showcase how cool it works in practice. The changes are sent in real time to every user, which both provides a very seamless collaboration environment as well as lets my teammates know just how bad I really am at typing (I&#8217;m even worse when I realize other people are watching me mistype every third letter).</p>
<p>The screenshots on their site are a little small. And frankly after trying to take one myself, I realize why: text doesn&#8217;t shrink well. Anyway, I tried to take one from our last sprint planning meeting to give an example of what I&#8217;m talking about (click on it for the full sized version which looks a bit better):</p>
<p align="center"><a href="http://noopenblockers.com/wp-content/uploads/2009/11/gobby3.png" target="new"><img src="http://noopenblockers.com/wp-content/uploads/2009/11/gobby-screenshot.png" alt="Gobby" title="Gobby" width="700" height="516" class="aligncenter size-full wp-image-798" /></a></p>
<p>Each person who logs into the gobby server chooses their own background color. Whenever a user types something, those changes are highlighted in that user&#8217;s color, which (in our case at least) is less about ownership and more about differentiating changes. Again, realize each user can simultaneously type in the same document, which leads to an incredibly collaborative environment. And yes, seeing a document come together in different colors like that just plain looks cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/11/22/gobby-free-collaborative-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future Red Hat Developer</title>
		<link>http://noopenblockers.com/2009/11/18/future-fedora-ambassador/</link>
		<comments>http://noopenblockers.com/2009/11/18/future-fedora-ambassador/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 18:06:28 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=788</guid>
		<description><![CDATA[(Renamed from &#8220;Future Fedora Ambassador&#8221; because of the hat&#8230; not that she can&#8217;t be involved in both, but this picture happens to be Red Hat specific ) It&#8217;s been a while since I got a good picture of my 2 year old geeking out. My wife actually took this one after my daughter found my [...]]]></description>
			<content:encoded><![CDATA[<p>(Renamed from &#8220;Future Fedora Ambassador&#8221; because of the hat&#8230; not that she can&#8217;t be involved in both, but this picture happens to be Red Hat specific  <img src='http://noopenblockers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p>It&#8217;s been a while since I got a good picture of my 2 year old geeking out. My wife actually took this one after my daughter found my red fedora which was still packed from moving.</p>
<p align="center"><img src="http://noopenblockers.com/wp-content/uploads/2009/11/leanne-fedora.jpg" alt="Future Fedora Ambassador" title="Future Fedora Ambassador" width="294" height="482" class="aligncenter size-full wp-image-789" /></p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/11/18/future-fedora-ambassador/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Conky</title>
		<link>http://noopenblockers.com/2009/09/28/conky/</link>
		<comments>http://noopenblockers.com/2009/09/28/conky/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 15:13:12 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=767</guid>
		<description><![CDATA[When I first started out using Linux, I was introduced to FVWM as a display manager. I quickly became, well, addicted to dorking with my .fvwm2rc config file. I was hooked on how many possibilities and customizations could be made. I&#8217;ve since stopped using FVWM for various reasons (not the least of which is their [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started out using Linux, I was introduced to FVWM as a display manager. I quickly became, well, addicted to dorking with my .fvwm2rc config file. I was hooked on how many possibilities and customizations could be made. I&#8217;ve since stopped using FVWM for various reasons (not the least of which is their abrasive community) and thought my config file tweaking addiction was cured.</p>
<p>Then I found <a href="http://conky.sourceforge.net/" target="new">Conky</a>. The easiest description is found directly on their site: <em>&#8220;Conky is a free, light-weight system monitor for X, that displays any information on your desktop.&#8221;</em> The addictive part is that there are hundreds of variables that can be displayed as part of its monitoring. Do I need, at all times, to see the amount of space left on my /home partition? No. Does the fact that I can do it make it awesome anyway? Hell yeah.</p>
<p>In the past week, I&#8217;ve had a number of coworkers see it running on my laptop and ask me what it was and how to configure it. The &#8220;what&#8221; part can be seen in the top right corner of my desktop below (click the image for the full size 1680&#215;1050 version):</p>
<p><a href="http://noopenblockers.com/wp-content/uploads/2009/09/desktop.png" alt="Conky Desktop" title="Conky Desktop"><img src="http://noopenblockers.com/wp-content/uploads/2009/09/desktop-small.png" alt="Conky Desktop Thumbnail" title="Conky Desktop Thumbnail" width="700" height="438" class="aligncenter size-full wp-image-769" /></a></p>
<p>The &#8220;how&#8221;, or at least my settings, can <a href="http://github.com/jdob/sandbox/blob/master/.conkyrc" target="new">be found here</a>. I&#8217;m playing around with a personal github account for backing up and sharing this sort of stuff. I&#8217;m still not sure how much I&#8217;ll use it, but for now my conky config file can be found there. It&#8217;s a bit of a mess, but should be at least enough to give users an idea of what can be done. If anyone knows of any particularly cool use of it that I&#8217;m missing, definitely let me know.  <img src='http://noopenblockers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/09/28/conky/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Amazon MP3 Downloader on Fedora 11</title>
		<link>http://noopenblockers.com/2009/07/03/amazon-mp3-downloader-on-fedora-11/</link>
		<comments>http://noopenblockers.com/2009/07/03/amazon-mp3-downloader-on-fedora-11/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 02:23:59 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=686</guid>
		<description><![CDATA[I&#8217;ll cut to the chase: it doesn&#8217;t work. But have no fear, there&#8217;s an OSS solution. I recently got into using Amazon for buying MP3s. It&#8217;s DRM-free and has a great integration with pandora.com, which lets me hear a new song and click directly in pandora&#8217;s interface to buy it. It&#8217;s technology at its finest, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll cut to the chase: it doesn&#8217;t work. But have no fear, there&#8217;s an OSS solution.</p>
<p>I recently got into using Amazon for buying MP3s. It&#8217;s DRM-free and has a great integration with <a href="http://pandora.com" target="new">pandora.com</a>, which lets me hear a new song and click directly in pandora&#8217;s interface to buy it. It&#8217;s technology at its finest, if not its most dangerous (to my credit card).</p>
<p>Amazon is annoying in the sense that you can download single MP3s as an MP3 file, but to buy a full album you have to use their proprietary downloader. This was bearable until a recent change where all MP3s now have to be downloaded using their downloader.</p>
<p>The problem? The most recent build of their client is for Fedora 9 (or Ubuntu 8.10 if you go that route). So their software is, um, I&#8217;ll just say &#8220;not up to date&#8221;. I was able to hack around to get it to run under Fedora 10, but it&#8217;s flat out busted in Fedora 11.</p>
<p>As I said at the outset, there is hope. <a href="http://code.google.com/p/clamz/" target="new">Clamz</a> is a command line app to download MP3s using Amazon&#8217;s .amz formatted files. It&#8217;s exactly what you think it is. You download the .amz file from Amazon (at the point in Amazon&#8217;s workflow where you <em>should</em> be just downloading the MP3 itself) and run the clamz executable passing in the .amz file. Poof, it just works.</p>
<p>I&#8217;m disappointed it has to come to this. I know Fedora 11 is still new, but that doesn&#8217;t change the fact that there was never a Fedora 10 build (and still is no Ubuntu 9.4 build) of the Amazon downloader. Serious good karma to the Clamz project for stepping up and filling this need (at least until I find a new outlet for buying MP3s; if Amazon doesn&#8217;t want to let me buy from them then I&#8217;m not gonna go nuts trying to).</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/07/03/amazon-mp3-downloader-on-fedora-11/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>TWiki</title>
		<link>http://noopenblockers.com/2008/11/06/twiki/</link>
		<comments>http://noopenblockers.com/2008/11/06/twiki/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 14:55:02 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://notebook.novasurv.com/?p=173</guid>
		<description><![CDATA[&#8230; or &#8220;How Not to Run an Open Source Project&#8221; There are many successful, thriving open source projects. TWiki is no longer one of them.The following two blog entries do a great job of describing the demise of the TWiki wiki platform (they do a great job, so I won&#8217;t even bother summarizing what went [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; or &#8220;How Not to Run an Open Source Project&#8221;</p>
<p>There are many successful, thriving open source projects. TWiki is no longer one of them.The following two blog entries do a great job of describing the demise of the TWiki wiki platform (they do a great job, so I won&#8217;t even bother summarizing what went wrong).</p>
<p><a href="http://wordpress.metro.cx/2008/10/28/twiki-is-dead-long-live-twiki/" target="new">TWiki is dead, long live TWiki!</a></p>
<p><a href="http://blog.wikiring.com/Blog/BlogEntry28" target="new">Hostile Takeover of Open Source Project TWiki</a></p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2008/11/06/twiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will FOSS get me a job?</title>
		<link>http://noopenblockers.com/2008/11/03/will-foss-get-me-a-job/</link>
		<comments>http://noopenblockers.com/2008/11/03/will-foss-get-me-a-job/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 16:04:13 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://notebook.novasurv.com/?p=153</guid>
		<description><![CDATA[I came across the following e-mail linked from the Planet Fedora feed. Here is an excerpt: &#8220;Trivial example here. The curricula mandates that you learn about data structures and prescribes certain books and the like. However, the actual implications of using various &#8216;like&#8217; data structures or, an appreciation of the trade-off between algorithms would come [...]]]></description>
			<content:encoded><![CDATA[<p>I came across the following e-mail linked from the Planet Fedora feed.</p>
<p>Here is an excerpt:</p>
<p><em>&#8220;Trivial example here. The curricula mandates that you learn about data<br />
structures and prescribes certain books and the like. However, the<br />
actual implications of using various &#8216;like&#8217; data structures or, an<br />
appreciation of the trade-off between algorithms would come if you start<br />
looking at code beyond what is provided by the syllabus.</p>
<p>And, such an effort would stand you in good stead irrespective of which<br />
company you aspire to join or, what programming language you intend to<br />
become a master at.</p>
<p>Having a scientific temper &#8211; the ability to grasp the core of the<br />
problem, figure out a pattern to search and adhere to some logical (and<br />
sometimes illogical) reasoning is what will get you a job.&#8221;</em></p>
<p>As both a teacher and an open source developer, this e-mail really resonates with me. I began this semester of Algorithms &#038; Data Structures II by attempting to describe the difference between a theoretical exploration of computer science and actual &#8220;real world&#8221; software development. I say &#8220;attempting&#8221; because I acknowledge that until you&#8217;ve been in both areas, it&#8217;s difficult to fully understand the distinction.</p>
<p>One of my biggest goals in my classes has been an attempt to expose students to both of these aspects. I make sure to cover the required material for the class. But I also supplement it with my experiences from working on real software projects. Being able to pull up one of the open source projects I work on and show students real applications of the concepts behind a domain model or where recursion would actually be used in a non-trivial example is an extremely valuable aspect of the class.</p>
<p>I recommend reading the entire contents of the original e-mail. It&#8217;s not too long and does a great job of explaining the benefits of real project work while pursuing an academic degree.</p>
<p><a href="http://lists.dgplug.org/pipermail/users-dgplug.org/2008-October/000194.html" target="new">Read the full e-mail here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2008/11/03/will-foss-get-me-a-job/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

