<?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>Dissociated Press &#187; Linux</title>
	<atom:link href="http://www.dissociatedpress.net/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dissociatedpress.net</link>
	<description>Linux, Open Source, and Tech Journalism</description>
	<lastBuildDate>Wed, 10 Mar 2010 13:14:12 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A Look at HTML Tidy</title>
		<link>http://www.dissociatedpress.net/2010/02/20/a-look-at-html-tidy/</link>
		<comments>http://www.dissociatedpress.net/2010/02/20/a-look-at-html-tidy/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 14:39:34 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Front Page]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1474</guid>
		<description><![CDATA[One thing I love about the UNIX philosophy is the idea that each program should do one job and do it really well. There are zillions of small tools for UNIX-type OSes that make life much easier and are hugely useful, but they don't necessarily get written about. They certainly don't receive the same kind [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I love about the UNIX philosophy is the idea that each program should do one job and do it really well. There are zillions of small tools for UNIX-type OSes that make life much easier and are hugely useful, but they don't necessarily get written about. They certainly don't receive the same kind of coverage that Apache and Sendmail receive. One of my favorites, HTML Tidy, is a tool for HTML/Web development that I think will interest a lot of folks. HTML Tidy cleans up HTML produced by WYSIWYG editors and such.</p>
<p><strong>Keep It Tidy</strong></p>
<p>Webmasters are often asked to look after HTML documents that were produced by other folks using WYSIWYG editors or word processors like Microsoft Word. Although the use of such editors and word processors simplifies production for many people, the HTML produced by these programs is usually pretty ugly. It might be acceptable in a browser, but it's downright unpleasant to maintain.</p>
<p>In my case, I use DocBook for a lot of documents and SGML&amp;Tools to render HTML from DocBook markup and then tweak it slightly. Although the HTML looks just fine in a browser, it's kind of ugly when you open it up in Vim. Running the output through HTML Tidy makes it easier to read and leaves you with "valid" 4.01 HTML.</p>
<p><span id="more-1474"></span></p>
<p>Here's a short before and after example of HTML Tidy's handiwork:</p>
<table>
<tbody>
<tr align="left" valign="top">
<td><strong>Before</strong></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<pre><html><head><meta NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.49">
<link REL="NEXT"
TITLE="Projects"
HREF="x6.html"></link></meta></head><body CLASS="ARTICLE"
>
<div CLASS="ARTICLE"
>
<div CLASS="TITLEPAGE"
>
<h1 CLASS="TITLE"
><a NAME="AEN1"
>DissociatedPress.net</a></h1>
<hr /></div>

<b>DissociatedPress.net</b>
<div CLASS="SECT1"
>
<h1 CLASS="SECT1"
><a NAME="AEN3"
>Site Guide</a></h1>

...</div>
</div>

</body></html>
</pre>
</td>
</tr>
<tr align="left" valign="top">
<td><strong><br />
 After</strong></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<pre>< !DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org">

</meta><meta name="GENERATOR" content=
"Modular DocBook HTML Stylesheet Version 1.49">
<link rel="NEXT" title="Projects" href="x6.html">
<style type="text/css">
 hr.c2 {text-align: left}
 p.c1 {font-weight: bold}
</style>
</link></meta></head>
<body class="ARTICLE">
<div class="ARTICLE">
<div class="TITLEPAGE">
<h1 class="TITLE"><a name="AEN1">DissociatedPress.net</a></h1>

...
</div>
</div>

</body>
</html></pre>
</td>
</tr>
</tbody>
</table>
<p>Cleaning up after WYSIWYG programs and conversion tools isn't the only thing HTML Tidy is good for, of course. Tidy will also validate your files and correct them, if necessary. You can also tell Tidy to simply check for errors without making any corrections.</p>
<p><strong>Using Tidy</strong></p>
<p>Obviously, the first thing to do is obtain HTML Tidy. It's <a href="http://tidy.sourceforge.net/" onclick="pageTracker._trackPageview('/outgoing/tidy.sourceforge.net/?referer=');">available from SourceForge</a> and also should be packaged for most Linux distros. SourceForge.net hosts binaries for several flavors of Windows, and for Mac OS X.    The site includes links to Tidy binaries for platforms as diverse as Amiga and Atari. (Is anyone still using Atari?) You can also find Windows executables and Linux RPMs.</p>
<p>You can also compile Tidy from source, which is what I usually do when installing Tidy on a new box. It's available under an Open Source license, so if you want to pass it on to your friends, tweak it, or include parts of it in a larger program, you're free to do so, as long as you follow the license.</p>
<p>Running Tidy on a UNIX-type OS is as easy as:</p>
<p><code>tidy file.html output_file.html</code></p>
<p>If you want to modify the file "in place" -- that is, write the modified HTML to the same file -- then you'll use the modify (<code>-m</code>) option:</p>
<p><code>tidy -m file</code></p>
<p>However, Tidy has many options that you may want to take advantage of. You can pass arguments to <code>tidy</code> on the command line, or you can set up a config file. If you're going to set up a config file -- which I recommend if you're going to use Tidy frequently -- you can either specify the filename on the command line:</p>
<p><code>tidy -config myconfig.txt file.html output_file.html</code></p>
<p>Another way to do it is to set the <code>HTML_TIDY</code> environment variable with the name of your configuration file, like this:</p>
<p><code>export HTML_TIDY=htmltidyconfig.txt</code></p>
<p>Alternately, you can put it in your <code>.bashrc</code> (if you use bash) to set the variable every time you log in. Here's my config file.  It's fairly short, and I'm happy with HTML Tidy's defaults for the most part.</p>
<p><br class="spacer_" /></p>
<pre>//Zonker's HTML Tidy Configuration File
// I set wrap to 0 because I don't like to wrap HTML.
// The default is 66, you can set this to whatever value you want.
wrap: 0
indent: auto
indent-spaces: 2
wrap-php: no
clean: yes
drop-empty-paras: yes
enclose-text: yes
// This puts any "orphaned" text inside the paragraph element.
// Prevents massive ugliness when using stylesheets.
</pre>
<p><br class="spacer_" /></p>
<p>If you're using these options on the command line, it would look like this:</p>
<pre>tidy -c --wrap 0 --indent auto --indent-spaces 2 --wrap-php no --drop-empty-paras yes --enclose-text yes</pre>
<p><strong>From Windows to the Web</strong></p>
<p>Tidy has several options that are designed to take files created in Word, or other Windows programs, and clean them up for the Web. One of those options is the "char-encoding" option. By setting the option to "ascii" or "latin1," Tidy will convert characters to entities that will display correctly in all browsers. For instance, when set to "char-encoding: ascii" (the default), Tidy converts any characters above 127 to entities. When set to "char-encoding: latin1" Tidy converts characters above 255 to entities.  This is a good way to get rid of characters -- like the alleged "smart quotes" -- that won't display properly on *nix systems and replace them with entities that the browser will understand.</p>
<p>Tidy also has a "<a href="http://tidy.sourceforge.net/docs/quickref.html#word-2000" onclick="pageTracker._trackPageview('/outgoing/tidy.sourceforge.net/docs/quickref.html_word-2000?referer=');">word-2000</a>" option that can strip out the fluff from HTML documents generated in Word 2000. This is particularly handy when you're getting documents from marketing that need to be cleaned up and put on the Web. The folks in marketing can write in a tool they're familiar and comfortable with, and you can translate that document to valid HTML quickly and easily. Everybody's happy.</p>
<p><em> </em></p>
<p><em> </em></p>
<p><em></em></p>
<p>Much of this content was originally part of a Tool of the Month column for UnixReview.com. Since the content is only available from Archive.org at this point, I've cleaned it up a bit and reposted to keep it available.</p>
</p>
<p><br class="spacer_" /></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F&amp;title=A+Look+at+HTML+Tidy" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F_amp_title=A+Look+at+HTML+Tidy&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F&amp;title=A+Look+at+HTML+Tidy" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F_amp_title=A+Look+at+HTML+Tidy&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F&amp;title=A+Look+at+HTML+Tidy" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F_amp_title=A+Look+at+HTML+Tidy&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F&amp;headline=A+Look+at+HTML+Tidy" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F_amp_headline=A+Look+at+HTML+Tidy&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=A+Look+at+HTML+Tidy&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=A+Look+at+HTML+Tidy_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=A+Look+at+HTML+Tidy&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=A+Look+at+HTML+Tidy_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=A+Look+at+HTML+Tidy&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=A+Look+at+HTML+Tidy_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=A+Look+at+HTML+Tidy&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=A+Look+at+HTML+Tidy_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=A+Look+at+HTML+Tidy&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=A+Look+at+HTML+Tidy_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F&amp;title=A+Look+at+HTML+Tidy&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F_amp_title=A+Look+at+HTML+Tidy_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F20%2Fa-look-at-html-tidy%2F&amp;title=A+Look+at+HTML+Tidy" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F20_2Fa-look-at-html-tidy_2F_amp_title=A+Look+at+HTML+Tidy&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/20/a-look-at-html-tidy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making Thunderbird Financially Sustainable: How it Could Work</title>
		<link>http://www.dissociatedpress.net/2010/02/11/making-thunderbird-financially-sustainable-how-it-could-work/</link>
		<comments>http://www.dissociatedpress.net/2010/02/11/making-thunderbird-financially-sustainable-how-it-could-work/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 23:15:14 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mail Clients]]></category>
		<category><![CDATA[Microblogging]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1444</guid>
		<description><![CDATA[
Mozilla Messaging is looking forward to a big year in 2010 including Thunderbird 3.1 and figuring out how to make the project financially sustainable. Making Thunderbird better is the easier part. Figuring out how to make money as a project is another story entirely.
No doubt the next release of Thunderbird, currently code-named Lanikai, will do [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ostatic.com/files/thunderbird-logo-thumb.png" alt="Thunderbird Logo" hspace="5" vspace="5" width="150" height="150" align="left" /></p>
<p>Mozilla Messaging is looking forward to <a href="http://ascher.ca/blog/2010/02/10/thunderbird-in-2010/" onclick="pageTracker._trackPageview('/outgoing/ascher.ca/blog/2010/02/10/thunderbird-in-2010/?referer=');">a big year in 2010</a> including Thunderbird 3.1 and figuring out how to make the project financially sustainable. Making Thunderbird better is the easier part. Figuring out how to make money as a project is another story entirely.</p>
<p>No doubt the next release of Thunderbird, currently code-named <a href="http://www.mozillamessaging.com/en-US/thunderbird/3.1a1/releasenotes/" onclick="pageTracker._trackPageview('/outgoing/www.mozillamessaging.com/en-US/thunderbird/3.1a1/releasenotes/?referer=');">Lanikai</a>, will do a lot to win users. Lanikai will focus on making the upgrade from Thunderbird 2 more gradual, and improving on the Thunderbird 3 platform. This means <a href="http://www.mozillamessaging.com/en-US/thunderbird/3.1a1/releasenotes/" onclick="pageTracker._trackPageview('/outgoing/www.mozillamessaging.com/en-US/thunderbird/3.1a1/releasenotes/?referer=');">fixes for IMAP, stability and memory improvements, interface enhancements, and improvements to message filters and Smart Folders</a>. The 3.1 release is avoiding disruptive changes and the team is shooting for a <a href="https://wiki.mozilla.org/Thunderbird:Thunderbird3.1" onclick="pageTracker._trackPageview('/outgoing/wiki.mozilla.org/Thunderbird_Thunderbird3.1?referer=');">May release</a>. The bigger challenge ahead for Moz Messaging is how to pay for itself.</p>
<p><strong><a href="http://ostatic.com/blog/making-thunderbird-financially-sustainable-how-it-could-work" onclick="pageTracker._trackPageview('/outgoing/ostatic.com/blog/making-thunderbird-financially-sustainable-how-it-could-work?referer=');">Read the rest on OStatic...</a></strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F&amp;title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F_amp_title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F&amp;title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F_amp_title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F&amp;title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F_amp_title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F&amp;headline=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F_amp_headline=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F&amp;title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F_amp_title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Fmaking-thunderbird-financially-sustainable-how-it-could-work%2F&amp;title=Making+Thunderbird+Financially+Sustainable%3A+How+it+Could+Work" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Fmaking-thunderbird-financially-sustainable-how-it-could-work_2F_amp_title=Making+Thunderbird+Financially+Sustainable_3A+How+it+Could+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/11/making-thunderbird-financially-sustainable-how-it-could-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Taking Command of the Terminal with GNU Screen</title>
		<link>http://www.dissociatedpress.net/2010/02/11/taking-command-of-the-terminal-with-gnu-screen/</link>
		<comments>http://www.dissociatedpress.net/2010/02/11/taking-command-of-the-terminal-with-gnu-screen/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 20:36:13 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[GNU Screen]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1446</guid>
		<description><![CDATA[GNU Screen is one of the most useful utilities you can have at your disposal if you spend any time at all working at the command line. Screen allows you to manage multiple shell sessions from one terminal window or console, view multiple shell sessions at the same time, and even log into the same [...]]]></description>
			<content:encoded><![CDATA[<p>GNU Screen is one of the most useful utilities you can have at your disposal if you spend any time at all working at the command line. Screen allows you to manage multiple shell sessions from one terminal window or console, view multiple shell sessions at the same time, and even log into the same session from more than one location at a time.</p>
<p>The screen utility is a "window manager" that allows you to organize and work with multiple shell sessions in a very powerful way. Utilizing screen, you can manage shell sessions in all kinds of useful ways. This tutorial will show you how to display two or more sessions simultaneously in the same window, "detach" from a session and log in later, and even log into the same session from more than one system.</p>
<p><strong><a href="http://www.linux.com/learn/tutorials/285795-taking-command-of-the-terminal-with-gnu-screen-" onclick="pageTracker._trackPageview('/outgoing/www.linux.com/learn/tutorials/285795-taking-command-of-the-terminal-with-gnu-screen-?referer=');">Read the rest of this tutorial on Linux.com</a></strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F&amp;title=Taking+Command+of+the+Terminal+with+GNU+Screen" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F_amp_title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F&amp;title=Taking+Command+of+the+Terminal+with+GNU+Screen" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F_amp_title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F&amp;title=Taking+Command+of+the+Terminal+with+GNU+Screen" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F_amp_title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F&amp;headline=Taking+Command+of+the+Terminal+with+GNU+Screen" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F_amp_headline=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Taking+Command+of+the+Terminal+with+GNU+Screen_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Taking+Command+of+the+Terminal+with+GNU+Screen_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Taking+Command+of+the+Terminal+with+GNU+Screen_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Taking+Command+of+the+Terminal+with+GNU+Screen_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Taking+Command+of+the+Terminal+with+GNU+Screen_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F&amp;title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F_amp_title=Taking+Command+of+the+Terminal+with+GNU+Screen_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F11%2Ftaking-command-of-the-terminal-with-gnu-screen%2F&amp;title=Taking+Command+of+the+Terminal+with+GNU+Screen" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F11_2Ftaking-command-of-the-terminal-with-gnu-screen_2F_amp_title=Taking+Command+of+the+Terminal+with+GNU+Screen&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/11/taking-command-of-the-terminal-with-gnu-screen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oracle Cuts Affect GNOME Accessibility Work</title>
		<link>http://www.dissociatedpress.net/2010/02/09/oracle-cuts-affect-gnome-accessibility-work/</link>
		<comments>http://www.dissociatedpress.net/2010/02/09/oracle-cuts-affect-gnome-accessibility-work/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 16:13:57 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[a11y]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1437</guid>
		<description><![CDATA[
Sun used to boast that it was one of the largest contributors to open source. That's being demonstrated now that Oracle has acquired the company. Oracle's acquisition of Sun, and subsequent layoffs, are having ripple effects on the open source community. The cuts are also hitting the GNOME accessibility (a11y) team and leading the project [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ostatic.com/blog/oracle-cuts-affect-gnome-accessibility-work" onclick="pageTracker._trackPageview('/outgoing/ostatic.com/blog/oracle-cuts-affect-gnome-accessibility-work?referer=');"><img class="alignleft" style="margin: 5px;" src="http://ostatic.com/files/orca2-sm.jpg" alt="Orca Assistive Technology Logo" hspace="5" vspace="5" width="150" height="150" align="left" /></a></p>
<p>Sun used to boast that it was one of the largest contributors to open source. That's being demonstrated now that Oracle has acquired the company. Oracle's acquisition of Sun, and subsequent layoffs, are having <a href="http://ostatic.com/blog/layoffs-wont-stop-project-wonderland" onclick="pageTracker._trackPageview('/outgoing/ostatic.com/blog/layoffs-wont-stop-project-wonderland?referer=');">ripple effects</a> on the open source community. The cuts are also <a href="http://blog.grain-of-salt.com/index.php?itemid=394" onclick="pageTracker._trackPageview('/outgoing/blog.grain-of-salt.com/index.php?itemid=394&amp;referer=');">hitting the GNOME accessibility (a11y) team</a> and leading the project to think about the future of a11y efforts in GNOME.</p>
<p>Last week Oracle laid off two members of Sun's Accessibility Program Office (APO), including GNOME a11y team lead, Willie Walker. Joanmarie Diggs, who works with the team contributing to GNOME's <a href="http://live.gnome.org/Orca" onclick="pageTracker._trackPageview('/outgoing/live.gnome.org/Orca?referer=');">Orca</a> screen reader, <a href="http://blog.grain-of-salt.com/index.php?itemid=394" onclick="pageTracker._trackPageview('/outgoing/blog.grain-of-salt.com/index.php?itemid=394&amp;referer=');">says that as a result of the layoffs</a> that "the accessibility of the GNOME desktop will become the open source equivalent of an unfunded mandate, doomed ultimately to fail," if Oracle doesn't reverse its position or if another company doesn't step up to help.</p>
<p><strong><a href="http://ostatic.com/blog/oracle-cuts-affect-gnome-accessibility-work" onclick="pageTracker._trackPageview('/outgoing/ostatic.com/blog/oracle-cuts-affect-gnome-accessibility-work?referer=');">Read the full story on OStatic</a></strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F&amp;title=Oracle+Cuts+Affect+GNOME+Accessibility+Work" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F_amp_title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F&amp;title=Oracle+Cuts+Affect+GNOME+Accessibility+Work" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F_amp_title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F&amp;title=Oracle+Cuts+Affect+GNOME+Accessibility+Work" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F_amp_title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F&amp;headline=Oracle+Cuts+Affect+GNOME+Accessibility+Work" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F_amp_headline=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Oracle+Cuts+Affect+GNOME+Accessibility+Work_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Oracle+Cuts+Affect+GNOME+Accessibility+Work_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F&amp;title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F_amp_title=Oracle+Cuts+Affect+GNOME+Accessibility+Work_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F09%2Foracle-cuts-affect-gnome-accessibility-work%2F&amp;title=Oracle+Cuts+Affect+GNOME+Accessibility+Work" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F09_2Foracle-cuts-affect-gnome-accessibility-work_2F_amp_title=Oracle+Cuts+Affect+GNOME+Accessibility+Work&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/09/oracle-cuts-affect-gnome-accessibility-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing a Simple Bash Script</title>
		<link>http://www.dissociatedpress.net/2010/02/08/writing-a-simple-bash-script/</link>
		<comments>http://www.dissociatedpress.net/2010/02/08/writing-a-simple-bash-script/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:43:07 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1425</guid>
		<description><![CDATA[ The first step is often the hardest, but don&#39;t let that stop you. If you&#39;ve ever wanted to learn how to write a shell script but didn&#39;t know where to start, this is your lucky day.
If this is your first time writing a script, don&#39;t worry &#8212; shell scripting is not that complicated. That [...]]]></description>
			<content:encoded><![CDATA[<p> The first step is often the hardest, but don&#39;t let that stop you. If you&#39;ve ever wanted to learn how to write a shell script but didn&#39;t know where to start, this is your lucky day.</p>
<p>If this is your first time writing a script, don&#39;t worry &mdash; shell scripting is not that complicated. That is, you can do some complicated things with shell scripts, but you can get there over time. If you know how to run commands at the command line, you can learn to write simple scripts in just 10 minutes. All you need is a text editor and an idea of what you want to do. Start small and use scripts to automate small tasks. Over time you can build on what you know and wind up doing more and more with scripts.</p>
<p><strong><a href="http://www.linux.com/learn/tutorials/284789-writing-a-simple-bash-script-" onclick="pageTracker._trackPageview('/outgoing/www.linux.com/learn/tutorials/284789-writing-a-simple-bash-script-?referer=');">Read the rest on Linux.com</a></strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F&amp;title=Writing+a+Simple+Bash+Script" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F_amp_title=Writing+a+Simple+Bash+Script&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F&amp;title=Writing+a+Simple+Bash+Script" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F_amp_title=Writing+a+Simple+Bash+Script&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F&amp;title=Writing+a+Simple+Bash+Script" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F_amp_title=Writing+a+Simple+Bash+Script&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F&amp;headline=Writing+a+Simple+Bash+Script" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F_amp_headline=Writing+a+Simple+Bash+Script&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Writing+a+Simple+Bash+Script&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Writing+a+Simple+Bash+Script_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Writing+a+Simple+Bash+Script&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Writing+a+Simple+Bash+Script_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Writing+a+Simple+Bash+Script&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Writing+a+Simple+Bash+Script_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Writing+a+Simple+Bash+Script&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Writing+a+Simple+Bash+Script_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Writing+a+Simple+Bash+Script&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Writing+a+Simple+Bash+Script_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F&amp;title=Writing+a+Simple+Bash+Script&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F_amp_title=Writing+a+Simple+Bash+Script_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fwriting-a-simple-bash-script%2F&amp;title=Writing+a+Simple+Bash+Script" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fwriting-a-simple-bash-script_2F_amp_title=Writing+a+Simple+Bash+Script&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/08/writing-a-simple-bash-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful projects deserve beautiful sites</title>
		<link>http://www.dissociatedpress.net/2010/02/08/beautiful-projects-deserve-beautiful-sites/</link>
		<comments>http://www.dissociatedpress.net/2010/02/08/beautiful-projects-deserve-beautiful-sites/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 17:23:36 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Front Page]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1407</guid>
		<description><![CDATA[You never get a second chance to make a first impression. The old cliche is true, and it applies to the Web sites of FLOSS projects as surely as it does a first date or a job interview. Unfortunately, all too many FLOSS Web sites make a very, very poor first impression. Not surprising, since [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1408" class="wp-caption alignleft" style="width: 160px"><a href="http://www.dissociatedpress.net/wp-content/uploads/2010/02/LESS-Leaner-CSS.png"><img class="size-thumbnail wp-image-1408" title="LESS - Leaner CSS" src="http://www.dissociatedpress.net/wp-content/uploads/2010/02/LESS-Leaner-CSS-150x150.png" alt="Front page of the LESS Web site" width="150" height="150" /></a><p class="wp-caption-text">Front page of the LESS Web site</p></div>
<p>You never get a second chance to make a first impression. The old cliche is true, and it applies to the Web sites of FLOSS projects as surely as it does a first date or a job interview. Unfortunately, all too many FLOSS Web sites make a very, very poor first impression. Not surprising, since many FLOSS developers are much more talented at coding than they are at Web site design. How to fix the problem?</p>
<p><a href="http://blogs.perl.org/users/sawyer_x/2010/02/marketing-the-entire-box-including-the-wrapper.html" onclick="pageTracker._trackPageview('/outgoing/blogs.perl.org/users/sawyer_x/2010/02/marketing-the-entire-box-including-the-wrapper.html?referer=');">Sawyer X</a> writes about "marketing the entire box," and how it relates to Perl, Ruby, Python, and PHP. Specifically, he notes that many Ruby sites have beautiful sites not because they understand how to design sites better, but because they view sites as part of the product:</p>
<blockquote><p>Ruby programmers see the marketing as relating to not just the product, but its wrapper. That is, that many Ruby programmers understand at a very core level (more than most programmers - at least me) that the website which shows the project is the actual wrapper of the project and is just as important, if not more so.</p></blockquote>
<p>The same is true of any project. Users and contributors look at a site and form a first impression based on the look of the site before they ever take the time to download code and install it. It's hard not to look at sites like <a href="http://lesscss.org/" onclick="pageTracker._trackPageview('/outgoing/lesscss.org/?referer=');">the LESS</a> site or the <a href="http://banshee-project.org/" onclick="pageTracker._trackPageview('/outgoing/banshee-project.org/?referer=');">Banshee Project</a> and think that the projects are going to be solid and more professional because the sites are solid and professional looking. On top of the visual impact, the sites are well-designed and easy to navigate. So when a potential user decides to take the next steps, they can find what they're looking for in a hurry.</p>
<p>But so many sites look amateurish and just plain ugly. Unless you're already motivated to use the project, there's a good chance you're going to turn around and go to the next project. I'm not saying CPAN sites are <em>ugly</em>, by the way -- but the LESS site is far more appealing, wouldn't you agree? Sure, Perl developers may be fine with the existing CPAN design. It's functional. They understand the layout. It's part of the Perl culture, etc. But marketing a project isn't just about making the existing community happy, it's about attracting new members and growing and changing to fit their needs.</p>
<div id="attachment_1410" class="wp-caption alignright" style="width: 160px"><a href="http://www.dissociatedpress.net/wp-content/uploads/2010/02/Mojolicious__Lite-search.cpan_.org_.png"><img class="size-thumbnail wp-image-1410" title="Mojolicious__Lite - search.cpan.org" src="http://www.dissociatedpress.net/wp-content/uploads/2010/02/Mojolicious__Lite-search.cpan_.org_-150x150.png" alt="Standard CPAN Project Page" width="150" height="150" /></a><p class="wp-caption-text">Standard CPAN Project Page</p></div>
<p>I'm glad to see Sawyer X (presumably not his real name) putting out a call for help to beautify Perl projects. On a larger scale, how could the FLOSS community harness the talents of Web designers who might want to contribute to FLOSS projects or simply find projects to showcase their skills? Or perhaps provide some site templates that allow developers to simply plug in details and wind up with a prettified site?</p>
<p>This is a topic that has grabbed my interest not just because of the marketing FLOSS angle, which is important, but also because I've been tweaking my own site design. While it's fun, site design is <em>not </em>one of my core skills. I can mangle HTML just fine, but actually making things look pretty from a Web design angle... not so much one of my strengths. Better resources for site design would be greatly helpful!</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F&amp;title=Beautiful+projects+deserve+beautiful+sites" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F_amp_title=Beautiful+projects+deserve+beautiful+sites&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F&amp;title=Beautiful+projects+deserve+beautiful+sites" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F_amp_title=Beautiful+projects+deserve+beautiful+sites&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F&amp;title=Beautiful+projects+deserve+beautiful+sites" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F_amp_title=Beautiful+projects+deserve+beautiful+sites&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F&amp;headline=Beautiful+projects+deserve+beautiful+sites" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F_amp_headline=Beautiful+projects+deserve+beautiful+sites&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Beautiful+projects+deserve+beautiful+sites&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Beautiful+projects+deserve+beautiful+sites_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Beautiful+projects+deserve+beautiful+sites&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Beautiful+projects+deserve+beautiful+sites_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Beautiful+projects+deserve+beautiful+sites&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Beautiful+projects+deserve+beautiful+sites_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Beautiful+projects+deserve+beautiful+sites&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Beautiful+projects+deserve+beautiful+sites_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Beautiful+projects+deserve+beautiful+sites&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Beautiful+projects+deserve+beautiful+sites_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F&amp;title=Beautiful+projects+deserve+beautiful+sites&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F_amp_title=Beautiful+projects+deserve+beautiful+sites_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Fbeautiful-projects-deserve-beautiful-sites%2F&amp;title=Beautiful+projects+deserve+beautiful+sites" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Fbeautiful-projects-deserve-beautiful-sites_2F_amp_title=Beautiful+projects+deserve+beautiful+sites&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/08/beautiful-projects-deserve-beautiful-sites/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Today is Clean Out Your Computer Day: Use Linux...</title>
		<link>http://www.dissociatedpress.net/2010/02/08/today-is-clean-out-your-computer-day-use-linux/</link>
		<comments>http://www.dissociatedpress.net/2010/02/08/today-is-clean-out-your-computer-day-use-linux/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 07:18:38 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[webworkerdaily]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1405</guid>
		<description><![CDATA[According to WebWorkerDaily, today is "Clean Out Your Computer Day," which means anything from scanning your system for viruses or getting the rat's nest of files under control on your desktop. Of course, if you want to go squeaky clean, think about putting Linux on your computer or help someone else with their spring clean [...]]]></description>
			<content:encoded><![CDATA[<p>According to WebWorkerDaily, today is "<a title="Feb. 8 is Clean Out Your Computer Day" href="http://webworkerdaily.com/2010/02/07/feb-8-is-clean-out-your-computer-day/" onclick="pageTracker._trackPageview('/outgoing/webworkerdaily.com/2010/02/07/feb-8-is-clean-out-your-computer-day/?referer=');">Clean Out Your Computer Day</a>," which means anything from scanning your system for viruses or getting the rat's nest of files under control on your desktop. Of course, if you want to go squeaky clean, think about putting Linux on your computer or help someone else with their spring clean by putting Linux on their system.</p>
<p>It's interesting how many add-on applications one can find to help fix inherent problems with Windows. Anti-viruses, de-fragging utilities, registry tools, and so on. Linux may have its problems, but I haven't had to defrag a hard drive in about 10 years, or worry about running an anti-virus of any kind.</p>
<p>Spring cleaning for the files system is another story entirely. I tend to wind up with a ton of file clutter after using a machine for a few weeks, much less a full year. Lately I've been trying to keep it under control a bit more by arranging work files in a more strict directory structure (and making sure that it's backed up) and weeding out the Downloads directory at least once a week, getting rid of files I won't need again (like ISOs that have been burned to CD) and filing away PDFs and other documents I might need again.</p>
<p>One piece of advice in the WebWorkerDaily is good for all of us: Shut down that machine and do a good cleaning. Get some canned air and blow the dust out of the sucker, especially the vents around fans and so forth. If you have a desktop machine, at <em>least</em> once a year you should pop it open and get the dust out.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F&amp;title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux..." onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F_amp_title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux...&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F&amp;title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux..." onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F_amp_title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux...&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F&amp;title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux..." onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F_amp_title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux...&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F&amp;headline=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux..." onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F_amp_headline=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux...&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux...&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux..._amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux...&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux..._amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux...&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux..._amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux...&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux..._amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux...&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux..._amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F&amp;title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux...&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F_amp_title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux..._amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F08%2Ftoday-is-clean-out-your-computer-day-use-linux%2F&amp;title=Today+is+Clean+Out+Your+Computer+Day%3A+Use+Linux..." onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F08_2Ftoday-is-clean-out-your-computer-day-use-linux_2F_amp_title=Today+is+Clean+Out+Your+Computer+Day_3A+Use+Linux...&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/08/today-is-clean-out-your-computer-day-use-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Sponsors GNOME Accessibility Efforts</title>
		<link>http://www.dissociatedpress.net/2010/02/04/mozilla-sponsors-gnome-accessibility-efforts/</link>
		<comments>http://www.dissociatedpress.net/2010/02/04/mozilla-sponsors-gnome-accessibility-efforts/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:30:00 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[a11y]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1393</guid>
		<description><![CDATA[Good news on the accessibility (a11y) front. Mozilla has donated $10,000 to help with GNOME's a11y efforts. This isn't the first time that Mozilla has contributed to GNOME (and hopefully, not the last). The projects have a long history of working together on a11y efforts dating back at least to 2008 when the Mozilla folks [...]]]></description>
			<content:encoded><![CDATA[<p>Good news on the accessibility (a11y) front. Mozilla has donated $10,000 to help with GNOME's a11y efforts. This isn't the first time that Mozilla has contributed to GNOME (and hopefully, not the last). The projects have a long history of working together on a11y efforts dating back at least to 2008 when the Mozilla folks gave the first donation to GNOME for a11y, which helped benefit Orca and other a11y technology in GNOME.</p>
<p><a href="http://www.gnome.org/press/releases/2010-02-mozilla-accessibility.htm" onclick="pageTracker._trackPageview('/outgoing/www.gnome.org/press/releases/2010-02-mozilla-accessibility.htm?referer=');">Read the full details on the GNOME site</a>.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F&amp;title=Mozilla+Sponsors+GNOME+Accessibility+Efforts" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F_amp_title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F&amp;title=Mozilla+Sponsors+GNOME+Accessibility+Efforts" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F_amp_title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F&amp;title=Mozilla+Sponsors+GNOME+Accessibility+Efforts" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F_amp_title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F&amp;headline=Mozilla+Sponsors+GNOME+Accessibility+Efforts" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F_amp_headline=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Mozilla+Sponsors+GNOME+Accessibility+Efforts_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Mozilla+Sponsors+GNOME+Accessibility+Efforts_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F&amp;title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F_amp_title=Mozilla+Sponsors+GNOME+Accessibility+Efforts_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fmozilla-sponsors-gnome-accessibility-efforts%2F&amp;title=Mozilla+Sponsors+GNOME+Accessibility+Efforts" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fmozilla-sponsors-gnome-accessibility-efforts_2F_amp_title=Mozilla+Sponsors+GNOME+Accessibility+Efforts&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/04/mozilla-sponsors-gnome-accessibility-efforts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raising Money for Open Source Projects: How Can We Improve?</title>
		<link>http://www.dissociatedpress.net/2010/02/04/raising-money-for-open-source-projects-how-can-we-improve/</link>
		<comments>http://www.dissociatedpress.net/2010/02/04/raising-money-for-open-source-projects-how-can-we-improve/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 16:55:23 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux.com]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PR and marketing]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[fundraising]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[sfc]]></category>
		<category><![CDATA[sflc]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1391</guid>
		<description><![CDATA[One of the things I admire about the FLOSS community is the willingness to dig in and tackle problems facing a project, whether they're technical, structural (hosting, etc.), governance, licensing, and so on. But it would occasionally be a better idea to try to recruit expertise from the outside than to try to re-invent the [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I admire about the FLOSS community is the willingness to dig in and tackle problems facing a project, whether they're technical, structural (hosting, etc.), governance, licensing, and so on. But it would occasionally be a better idea to try to recruit expertise from the outside than to try to re-invent the wheel inside each project.</p>
<p>Dave Neary writes about <a href="http://blogs.gnome.org/bolsh/2010/02/03/learning-how-to-fund-raise-from-other-non-profits/" onclick="pageTracker._trackPageview('/outgoing/blogs.gnome.org/bolsh/2010/02/03/learning-how-to-fund-raise-from-other-non-profits/?referer=');">efforts in the GNOME project to raise money</a>. Neary focuses on fund-raising in particular, something that community projects often struggle with.</p>
<p><strong><a href="http://ostatic.com/blog/raising-money-for-open-source-projects-how-can-we-improve" onclick="pageTracker._trackPageview('/outgoing/ostatic.com/blog/raising-money-for-open-source-projects-how-can-we-improve?referer=');">Read the rest on OStatic</a></strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F&amp;title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F_amp_title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F&amp;title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F_amp_title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F&amp;title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F_amp_title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F&amp;headline=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F_amp_headline=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F&amp;title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F_amp_title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F04%2Fraising-money-for-open-source-projects-how-can-we-improve%2F&amp;title=Raising+Money+for+Open+Source+Projects%3A+How+Can+We+Improve%3F" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F04_2Fraising-money-for-open-source-projects-how-can-we-improve_2F_amp_title=Raising+Money+for+Open+Source+Projects_3A+How+Can+We+Improve_3F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/04/raising-money-for-open-source-projects-how-can-we-improve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Friends PHP: Introducing HipHop</title>
		<link>http://www.dissociatedpress.net/2010/02/03/facebook-friends-php-introducing-hiphop/</link>
		<comments>http://www.dissociatedpress.net/2010/02/03/facebook-friends-php-introducing-hiphop/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 15:07:57 +0000</pubDate>
		<dc:creator>Joe Brockmeier</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.dissociatedpress.net/?p=1387</guid>
		<description><![CDATA[
Are you a fan of PHP? Facebook is. The company has been working behind the scenes to create HipHop, a runtime compiler for PHP to improve the language's performance on Facebook's servers. The company is also friending the rest of the PHP community with its work by releasing its project as open source.
Rumors have been [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 5px;" src=" http://ostatic.com/files/HipHop_logo_white.png" alt="HIpHop Logo" hspace="5" vspace="5" width="128" height="167" align="left" /></p>
<p>Are you a fan of PHP? Facebook is. The company has been working behind the scenes to create HipHop, a runtime compiler for PHP to improve the language's performance on Facebook's servers. The company is also friending the rest of the PHP community with its work by releasing its project as open source.</p>
<p>Rumors <a href="http://www.sdtimes.com/blog/post/2010/01/30/Facebook-rewrites-PHP-runtime.aspx" onclick="pageTracker._trackPageview('/outgoing/www.sdtimes.com/blog/post/2010/01/30/Facebook-rewrites-PHP-runtime.aspx?referer=');">have been flying</a> for a while, and the news was confirmed on Monday by <a href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php" onclick="pageTracker._trackPageview('/outgoing/www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php?referer=');">ReadWriteWeb</a>. Facebook <a href="http://www.ustream.tv/channel/facebook-platform" onclick="pageTracker._trackPageview('/outgoing/www.ustream.tv/channel/facebook-platform?referer=');">gave a talk on Tuesday night</a> about HipHop to introduce the technology at the company's headquarters in Palo Alto, CA.</p>
<p><strong><a href="http://ostatic.com/blog/facebook-friends-php-introducing-hiphop" onclick="pageTracker._trackPageview('/outgoing/ostatic.com/blog/facebook-friends-php-introducing-hiphop?referer=');">Read the rest on OStatic</a></strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F&amp;title=Facebook+Friends+PHP%3A+Introducing+HipHop" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F_amp_title=Facebook+Friends+PHP_3A+Introducing+HipHop&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F&amp;title=Facebook+Friends+PHP%3A+Introducing+HipHop" onclick="pageTracker._trackPageview('/outgoing/www.reddit.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F_amp_title=Facebook+Friends+PHP_3A+Introducing+HipHop&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F&amp;title=Facebook+Friends+PHP%3A+Introducing+HipHop" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F_amp_title=Facebook+Friends+PHP_3A+Introducing+HipHop&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F&amp;headline=Facebook+Friends+PHP%3A+Introducing+HipHop" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/buzz?targetUrl=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F_amp_headline=Facebook+Friends+PHP_3A+Introducing+HipHop&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Facebook+Friends+PHP%3A+Introducing+HipHop&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F" onclick="pageTracker._trackPageview('/outgoing/www.dzone.com/links/add.html?title=Facebook+Friends+PHP_3A+Introducing+HipHop_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Facebook+Friends+PHP%3A+Introducing+HipHop&amp;u=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sharer.php?t=Facebook+Friends+PHP_3A+Introducing+HipHop_amp_u=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Facebook+Friends+PHP%3A+Introducing+HipHop&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F" onclick="pageTracker._trackPageview('/outgoing/delicious.com/save?title=Facebook+Friends+PHP_3A+Introducing+HipHop_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Facebook+Friends+PHP%3A+Introducing+HipHop&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F" onclick="pageTracker._trackPageview('/outgoing/www.dotnetkicks.com/kick/?title=Facebook+Friends+PHP_3A+Introducing+HipHop_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Facebook+Friends+PHP%3A+Introducing+HipHop&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F" onclick="pageTracker._trackPageview('/outgoing/dotnetshoutout.com/Submit?title=Facebook+Friends+PHP_3A+Introducing+HipHop_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F&amp;title=Facebook+Friends+PHP%3A+Introducing+HipHop&amp;summary=&amp;source=" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F_amp_title=Facebook+Friends+PHP_3A+Introducing+HipHop_amp_summary=_amp_source=&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F" onclick="pageTracker._trackPageview('/outgoing/www.technorati.com/faves?add=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Reading+http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.dissociatedpress.net%2F2010%2F02%2F03%2Ffacebook-friends-php-introducing-hiphop%2F&amp;title=Facebook+Friends+PHP%3A+Introducing+HipHop" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_3A_2F_2Fwww.dissociatedpress.net_2F2010_2F02_2F03_2Ffacebook-friends-php-introducing-hiphop_2F_amp_title=Facebook+Friends+PHP_3A+Introducing+HipHop&amp;referer=');"><img class="lightsocial_img" src="http://www.dissociatedpress.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.dissociatedpress.net/2010/02/03/facebook-friends-php-introducing-hiphop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
