<?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>OpenComputer.net &#187; Tips</title>
	<atom:link href="http://opencomputer.net/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://opencomputer.net</link>
	<description>Open Source world for a free computer</description>
	<lastBuildDate>Thu, 20 Jan 2011 16:42:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Diff with vimdiff</title>
		<link>http://opencomputer.net/2011/01/20/diff-with-vimdiff/</link>
		<comments>http://opencomputer.net/2011/01/20/diff-with-vimdiff/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 16:42:28 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=417</guid>
		<description><![CDATA[For those who are vim fans, a quick tip on how to run a diff/merge  task: Open the files with: vimdiff file1 file2 file3   &#8211;&#62; Vertical split is default vimdiff -o file1 file2 file3  &#8211;&#62; If you&#8217;d like horizontal split of files To jump between files: Ctrl-W w To jump places where differences are [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2011/01/20/diff-with-vimdiff/";
		reddit_title = "Diff with vimdiff";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2011/01/20/diff-with-vimdiff/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Diff with vimdiff";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>For those who are vim fans, a quick tip on how to run a diff/merge  task:</p>
<p>Open the files with:</p>
<p style="padding-left: 30px;">vimdiff file1 file2 file3   &#8211;&gt; Vertical split is default</p>
<p style="padding-left: 30px;">vimdiff -o file1 file2 file3  &#8211;&gt; If you&#8217;d like horizontal split of files</p>
<p>To jump between files:</p>
<p style="padding-left: 30px;">Ctrl-W w</p>
<p>To jump places where differences are found:</p>
<p style="padding-left: 30px;">]c    &#8211;&gt; to see next part of a change</p>
<p style="padding-left: 30px;">[c   --&gt; to go back to the start of a previous part of a change</p>
<p>These are just the quick basics, there are a ton of other commands listed on <a title="Vimdiff doc" href="http://vimdoc.sourceforge.net/htmldoc/diff.html" target="_blank">Vim&#8217;s documentation page</a>.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2011/01/20/diff-with-vimdiff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Encrypt files with GnuPG</title>
		<link>http://opencomputer.net/2010/08/01/encrypt-files-with-gnupg/</link>
		<comments>http://opencomputer.net/2010/08/01/encrypt-files-with-gnupg/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 13:21:35 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=405</guid>
		<description><![CDATA[Here is a simple and quick way for you to encrypt files in Linux: gpg &#8211;output doc.gpg &#8211;encrypt &#8211;recipient EmailofRecipient@blah.com original_file.doc Further explained: &#8211;output (or -o) is the name of the encrypted file &#8211;recipient (or -r) is the person who will be decrypting the file. If the file is for yourself only, use the email [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2010/08/01/encrypt-files-with-gnupg/";
		reddit_title = "Encrypt files with GnuPG";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2010/08/01/encrypt-files-with-gnupg/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Encrypt files with GnuPG";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>Here is a simple and quick way for you to encrypt files in Linux:</p>
<blockquote><p><strong>gpg &#8211;output doc.gpg &#8211;encrypt &#8211;recipient EmailofRecipient@blah.com original_file.doc</strong></p></blockquote>
<p>Further explained:</p>
<ul>
<li><strong>&#8211;output (or -o)</strong> is the name of the encrypted file</li>
<li><strong>&#8211;recipient</strong> <strong>(or -r)</strong> is the person who will be decrypting the file. If the file is for yourself only, use the email address of your GPG key.</li>
</ul>
<p>To decrypt:</p>
<pre style="padding-left: 30px;"><tt><strong>gpg --output output_file.doc --decrypt doc.gpg</strong></tt></pre>
<p>I recently used this to encrypt a sensitive file before placing it on my Dropbox account. Nice safe way to place a private document in the cloud.</p>
<p>Reference, <a title="GnuPG" href="http://www.gnupg.org/gph/en/manual/x110.html" target="_blank">GnuPG manual</a>.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2010/08/01/encrypt-files-with-gnupg/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tip: discover and terminate high CPU processes (Linux)</title>
		<link>http://opencomputer.net/2010/04/25/tip-discover-and-terminate-high-cpu-processes-linux/</link>
		<comments>http://opencomputer.net/2010/04/25/tip-discover-and-terminate-high-cpu-processes-linux/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 12:41:23 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://opencomputer.net/2010/04/25/tip-discover-and-terminate-high-cpu-processes-linux/</guid>
		<description><![CDATA[A quick tip to get the dust out of our blog If you hear the fan of your computer going way up, most likely that was because some application or process is using too much CPU. Find out which one and terminate it by: 1. Open the terminal 2. Run &#8220;top&#8221; 3. Press &#8220;k&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2010/04/25/tip-discover-and-terminate-high-cpu-processes-linux/";
		reddit_title = "Tip: discover and terminate high CPU processes (Linux)";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2010/04/25/tip-discover-and-terminate-high-cpu-processes-linux/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Tip: discover and terminate high CPU processes (Linux)";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>A quick tip to get the dust out of our blog <img src='http://opencomputer.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you hear the fan of your computer going way up, most likely that was because some application or process is using too much CPU. Find out which one and terminate it by:<br />
  1. Open the terminal<br />
  2. Run &#8220;top&#8221;<br />
  3. Press &#8220;k&#8221; and the number on &#8220;pid&#8221; column of the process which appears on the top of the list.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2010/04/25/tip-discover-and-terminate-high-cpu-processes-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using Twitter with Pidgin</title>
		<link>http://opencomputer.net/2009/04/30/using-twitter-with-pidgin/</link>
		<comments>http://opencomputer.net/2009/04/30/using-twitter-with-pidgin/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 18:06:28 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Messaging]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=336</guid>
		<description><![CDATA[The eco-system around Pidgin is fantastic, below is yet another cool plug-in tip for it. Pidgin-Twitter plug-in works with Linux and Windows for you to get back into posting to and receiving notes from Twitter (also works well with Identi.ca too!). Steps to get it working: download and install the plug-in the plug-in; go to [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2009/04/30/using-twitter-with-pidgin/";
		reddit_title = "Using Twitter with Pidgin";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2009/04/30/using-twitter-with-pidgin/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Using Twitter with Pidgin";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>The eco-system around <a title="Pidgin" href="http://opencomputer.net/2008/01/27/instant-messengers-unite-with-pidgin/" target="_blank">Pidgin</a> is fantastic, below is yet another cool plug-in tip for it.</p>
<p><strong><a title="Pidgin-Twitter" href="http://honeyplanet.jp/pidgin-twitter/" target="_blank">Pidgin-Twitter</a></strong> plug-in works with Linux and Windows for you to get back into posting to and receiving notes from Twitter (also works well with <a title="Identi.ca" href="http://identi.ca" target="_blank">Identi.ca</a> too!). Steps to get it working:</p>
<ol>
<li>download and install the plug-in the plug-in;</li>
<li>go to Pidgin menu under Tools &gt; Plug-ins you&#8217;ll find Pidgin-Twitter to activate and configure;</li>
<li>place your username / password and define a couple of other options (such as show users&#8217; avatars)</li>
<li>Add a buddy to your GTalk account called twitter@twitter.com and choose to display it even when it is offline.</li>
</ol>
<p>You&#8217;re good to go! Open the chat window for the buddy you just created and instantly it&#8217;ll display your messages.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/04/30/using-twitter-with-pidgin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Open source at work</title>
		<link>http://opencomputer.net/2009/04/22/open-source-at-work/</link>
		<comments>http://opencomputer.net/2009/04/22/open-source-at-work/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 20:24:56 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=324</guid>
		<description><![CDATA[Migrating from a proprietary licensed mindset into open source can be perceived as a pretty challenging task. It is incredibly common for me to see that branding power often blinds people in a way that the functionalities of a software are disregarded in favor of the comforting sound of a brand name. What does all [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2009/04/22/open-source-at-work/";
		reddit_title = "Open source at work";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2009/04/22/open-source-at-work/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Open source at work";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>Migrating from a proprietary licensed mindset into open source can be perceived as a pretty challenging task. It is incredibly common for me to see that branding power often blinds people in a way that the functionalities of a software are disregarded in favor of the comforting sound of a brand name.</p>
<p><strong>What does all that marketing blah blah means?</strong></p>
<p>At my work, all new computers have open source software on it. The email client, office suite, browser, image editor, project management software and programming tools are all installed in the new employee&#8217;s computer from his/her day one.</p>
<p>But, the adaptation isn&#8217;t immediate. The icon, the menu bar, the layout are all excuses for a fuss: &#8220;I can&#8217;t do this, I can&#8217;t do that, where is the icon for this!?&#8221; After some guidance and explanation of functions, everything is settled and peace restored.</p>
<p>In your company, if you&#8217;d like to start introducing open source programs to support the cause, to reduce costs, or even to have the possibility to tailor some programs to your specific needs, don&#8217;t worry it can be much easier than you&#8217;d think.</p>
<p><strong>Open source is fit for whom?</strong></p>
<p>For the generalist worker, open source programs will go above and beyond the level of functionality compared to proprietary solutions. It is realistic to say though that some employees will need complex tools to work at full speed. For these team members, proprietary software can be rightfully requested.</p>
<p><strong>How would your company make the transition?</strong></p>
<p>If you&#8217;re a part of a large company, make changes with one or two programs at a time. All new employees though make sure they start with the most number of open source tools as you&#8217;d like. During the migration process, hold workshops to guide the team and be available to assist at other times when needed.</p>
<p>Overall, be supportive of your team and don&#8217;t hesitate to make the move. In the end, open source at work is an easier work than you might have thought!</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/04/22/open-source-at-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free movie tip &#8211; D.O.A.</title>
		<link>http://opencomputer.net/2009/04/12/free-movie-tip-doa/</link>
		<comments>http://opencomputer.net/2009/04/12/free-movie-tip-doa/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 12:37:44 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[public domain]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=310</guid>
		<description><![CDATA[D.O.A. (1950) movie Found in the Internet Archive, D.O.A. of 1950 is a classic film noir movie. Although I&#8217;m not a fan of old movies, this drama mystery was pretty worth it. The basic story is of a person who tries to investigate who murdered him. The story is pretty rich with very good moments [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2009/04/12/free-movie-tip-doa/";
		reddit_title = "Free movie tip &#8211; D.O.A.";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2009/04/12/free-movie-tip-doa/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Free movie tip &#8211; D.O.A.";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><div id="attachment_311" class="wp-caption alignleft" style="width: 208px"><img class="size-medium wp-image-311" title="215px-doa1950" src="http://opencomputer.net/wp-content/uploads/2009/04/215px-doa1950-198x300.jpg" alt="D.O.A. (1950) movie" width="198" height="300" /><p class="wp-caption-text">D.O.A. (1950) movie</p></div>
<p>Found in the <a title="Internet Archive" href="http://www.archive.org" target="_blank">Internet Archive</a>, D.O.A. of 1950 is a classic <em>film noir</em> movie.</p>
<p>Although I&#8217;m not a fan of old movies, this drama mystery was pretty worth it. The basic story is of a person who tries to investigate who murdered him. The story is pretty rich with very good moments of suspense and a nice character build-up. The victim who has received a deadly poison goes out to search for his own killer. During this process there are shootings, lots of detective-style work, romantic scenes and brave escapes.</p>
<p>This movie is now <a title="D.O.A. film" href="http://www.archive.org/details/doa_1949" target="_blank">released under public domain for download</a> (you can get it in the open source friendly .ogv format).</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/04/12/free-movie-tip-doa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top podcasts &amp; vidcasts</title>
		<link>http://opencomputer.net/2009/03/23/top-podcasts-vidcasts/</link>
		<comments>http://opencomputer.net/2009/03/23/top-podcasts-vidcasts/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 09:12:55 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[floss]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=297</guid>
		<description><![CDATA[Sharing with you my list of Linux and Open Source podcasts and vidcasts I subscribe to: FLOSS Weekly (podcast) &#8211; part of the Twit.tv world, excellent interviews with leaders of different FLOSS projects; Linux Outlaws (podcast) &#8211; this show is quite informal but has very nice comments on what&#8217;s new on the Linux and FLOSS [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2009/03/23/top-podcasts-vidcasts/";
		reddit_title = "Top podcasts &#038; vidcasts";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2009/03/23/top-podcasts-vidcasts/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Top podcasts &#038; vidcasts";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>Sharing with you my list of Linux and Open Source podcasts and vidcasts I subscribe to:</p>
<ul>
<li><a title="FLOSS Weekly" href="http://twit.tv/FLOSS" target="_blank">FLOSS Weekly</a> (podcast) &#8211; part of the Twit.tv world, excellent interviews with leaders of different FLOSS projects;</li>
<li><a title="Linux Outlaws" href="http://www.linuxoutlaws.com/" target="_blank">Linux Outlaws</a> (podcast) &#8211; this show is quite informal but has very nice comments on what&#8217;s new on the Linux and FLOSS world;</li>
<li><a title="Stack Overflow" href="http://itc.conversationsnetwork.org/series/stackoverflow.html" target="_blank">Stack Overflow</a> (podcast) &#8211; more geared towards programming and software development;</li>
<li><a title="Linux Journal Videos" href="http://www.linuxjournal.com/video" target="_blank">The Linux Journal</a> (vidcast) &#8211; short but very nice Linux tips;</li>
<li><a title="Category5" href="http://www.category5.tv/" target="_blank">Category 5</a> (vidcast) &#8211; a lot of good information for those starting in the world of Linux with live Q&amp;A session;</li>
<li><a title="The Source Show" href="http://www.thesourceshow.org/" target="_blank">The Source</a> (vidcast) &#8211; just started following it and so far I&#8217;ve seen some very nice interviews with important community members of the open source world.</li>
</ul>
<p>Any suggestions from our readers?</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/03/23/top-podcasts-vidcasts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Immediate song preview in Gnome [Linux]</title>
		<link>http://opencomputer.net/2009/03/22/immediate-song-preview-in-gnome-linux/</link>
		<comments>http://opencomputer.net/2009/03/22/immediate-song-preview-in-gnome-linux/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 09:51:49 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Audio and Video]]></category>
		<category><![CDATA[CD and DVD]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[media]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=300</guid>
		<description><![CDATA[If you&#8217;re using Linux with Gnome, do a mouseover the music file and you&#8217;ll start hearing the song immediately. You don&#8217;t even need to double-click to open the file in a media player, not even a mouse click is needed. Nice little hidden secrets of an awesome desktop file manager. &#160;]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2009/03/22/immediate-song-preview-in-gnome-linux/";
		reddit_title = "Immediate song preview in Gnome [Linux]";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2009/03/22/immediate-song-preview-in-gnome-linux/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Immediate song preview in Gnome [Linux]";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>If you&#8217;re using Linux with Gnome, do a mouseover the music file and you&#8217;ll start hearing the song immediately.</p>
<p style="text-align: center;"><img class="size-full wp-image-301 aligncenter" title="song-preview" src="http://opencomputer.net/wp-content/uploads/2009/03/song-preview.png" alt="song-preview" width="250" height="108" /></p>
<p>You don&#8217;t even need to double-click to open the file in a media player, not even a mouse click is needed. Nice little hidden secrets of an awesome desktop file manager.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/03/22/immediate-song-preview-in-gnome-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FLOSS Manuals</title>
		<link>http://opencomputer.net/2009/03/21/floss-manuals/</link>
		<comments>http://opencomputer.net/2009/03/21/floss-manuals/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 20:12:44 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[floss]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=295</guid>
		<description><![CDATA[If you&#8217;re interested in Free Libre Open Source Software and would like some valuable reading material to become an expert, FLOSS Manuals is a great site. You can find books about Blender, Inkscape, Firefox, OpenOffice, Audacity, WordPress, Linux Command Line, to name a few. Find the manual you want, read it on their site, download, [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2009/03/21/floss-manuals/";
		reddit_title = "FLOSS Manuals";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2009/03/21/floss-manuals/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "FLOSS Manuals";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>If you&#8217;re interested in <strong>F</strong>ree <strong>L</strong>ibre <strong>O</strong>pen <strong>S</strong>ource <strong>S</strong>oftware and would like some valuable reading material to become an expert, <strong><a title="FLOSS Manuals" href="http://en.flossmanuals.net/" target="_blank">FLOSS Manuals</a></strong> is a great site.</p>
<p>You can find books about Blender, Inkscape, Firefox, OpenOffice, Audacity, WordPress, Linux Command Line, to name a few. Find the manual you want, read it on their site, download, or order a printed copy. Only the printed copy is not free.</p>
<p>Also cool is the ability to <strong>remix</strong> your book to get only certain chapters that you find interesting.</p>
<p>Go there, get some nice reading material and even help out by being a writer or a proofreader.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/03/21/floss-manuals/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Automated Bugzilla email reports</title>
		<link>http://opencomputer.net/2009/03/03/automated-bugzilla-email-reports/</link>
		<comments>http://opencomputer.net/2009/03/03/automated-bugzilla-email-reports/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 09:49:53 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=285</guid>
		<description><![CDATA[Bugzilla has a very interesting feature called Whining. With it you can schedule reports to be automatically sent by email to you or anyone else in your team. As an example, I have sent to me on the weekend a report of all items that were created or worked by our dev team in the [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		reddit_url = "http://opencomputer.net/2009/03/03/automated-bugzilla-email-reports/";
		reddit_title = "Automated Bugzilla email reports";
		//-->
		</script>
		<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div><div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://opencomputer.net/2009/03/03/automated-bugzilla-email-reports/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Automated Bugzilla email reports";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><!--S-ButtonZ 1.1.5 End--><p>Bugzilla has a very interesting feature called <a title="Bugzilla Whining" href="http://www.bugzilla.org/docs/tip/en/html/whining.html" target="_blank">Whining</a>. With it you can schedule reports to be automatically sent by email to you or anyone else in your team.</p>
<p>As an example, I have sent to me on the weekend a report of all items that were created or worked by our dev team in the past week.</p>
<p>Creating a whining report is pretty easy:</p>
<ul>
<li>save a search criteria that interests you (eg. all open items, items closed in X days, etc);</li>
<li>fing at the bottom of the Bugzilla page a &#8220;whining&#8221; link;</li>
<li>create the subject and description of the email;</li>
<li>select the mailing interval;</li>
<li>recipients;</li>
<li>and saved report.</li>
</ul>
<p>This way you&#8217;ll have a nice list on your mailbox with the bugzilla tasks that are most important to you.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/03/03/automated-bugzilla-email-reports/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

