<?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; Web services</title>
	<atom:link href="http://opencomputer.net/category/web-services/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>Compare files in Linux</title>
		<link>http://opencomputer.net/2009/07/26/compare-files-in-linux/</link>
		<comments>http://opencomputer.net/2009/07/26/compare-files-in-linux/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 20:03:22 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Web services]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=377</guid>
		<description><![CDATA[Not long ago I was working with some .po files and needed a nice and simple diff program to merge 2 files. First I tried the multi-purposed text editor vim. Using vim as a diff and merge tool: with Andrej&#8217;s article I found some nice tips &#38; tricks and the Vim manual for diff tasks. [...]]]></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/07/26/compare-files-in-linux/";
		reddit_title = "Compare files in 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/07/26/compare-files-in-linux/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Compare files in 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>Not long ago I was working with some .po files and needed a nice and simple diff program to merge 2 files. First I tried the multi-purposed text editor <a title="Vim" href="http://www.vim.org/" target="_blank"><strong>vim</strong></a>.</p>
<p><span style="text-decoration: underline;"><strong>Using vim as a diff and merge tool:</strong></span></p>
<p>with <a title="Blog post about vim diff" href="http://andrejk.blogspot.com/2008/04/vimdiff-howto.html" target="_blank">Andrej&#8217;s article</a> I found some nice tips &amp; tricks and the <a title="Vim diff manual" href="http://vimdoc.sourceforge.net/htmldoc/usr_08.html" target="_blank">Vim manual for diff</a> tasks. Some useful commands,</p>
<ul>
<li>&#8220;<strong>vim -o one.txt two.txt three.txt</strong>&#8221; (for horizontal split), &#8220;<strong>vim -O one.txt two.txt three.txt</strong> &#8221; (for vertical split)</li>
<li>go to the next diff point   &#8221; <strong>]c </strong>&#8220;; go to previous diff point &#8220;<strong> [c </strong>&#8220;</li>
<li>merge to original &#8220;<strong>do</strong>&#8220;, merge from original &#8220;<strong>dp</strong>&#8220;.</li>
</ul>
<p>The window you&#8217;ll be looking at will look something like this:</p>
<p style="text-align: center;"><img class="size-medium wp-image-378  aligncenter" title="vimdiff" src="http://opencomputer.net/wp-content/uploads/2009/07/vimdiff-300x209.png" alt="vimdiff" width="300" height="209" /></p>
<p style="text-align: left;">Where text highlighted red will display text which doesn&#8217;t match from the files being compared.</p>
<p>Another tool I found was <a title="Meld" href="http://meld.sourceforge.net/" target="_blank"><strong>Meld</strong></a>. This program was incredibly simple to use and visually simple to work with.</p>
<p><span style="text-decoration: underline;"><strong>Using Meld Diff Viewer:</strong></span></p>
<ul>
<li>open the files (or directories) which you&#8217;d like to compare;</li>
<li>you will visually see where on the original file the text is at on the other file(s) being compared. Specially useful if the text in the files you&#8217;re comparing are in completely separate lines;</li>
<li>clicking on arrows between the files being compared, the text will go to or from the original file.</li>
</ul>
<p style="text-align: center;"><img class="size-medium wp-image-379  aligncenter" title="meld_file1" src="http://opencomputer.net/wp-content/uploads/2009/07/meld_file1-300x222.png" alt="meld_file1" width="300" height="222" /><span style="text-decoration: underline;"><strong></strong></span></p>
<p style="text-align: left;"><span style="text-decoration: underline;"><strong>Conclusion:</strong></span></p>
<p>if you&#8217;re working on the command line, vim will do the job quite nicely but can be troublesome to inform you if text in both files are the same but spaced out in different line numbers. On the other hand, Meld was the tool I used for the task since there was basically no learning curve to get started and it displayed very well differences and matches in the file even if text were separated by dozens of line between both files I was comparing.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/07/26/compare-files-in-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Piwiki &#8211; website analytics</title>
		<link>http://opencomputer.net/2009/04/18/piwiki-website-analytics/</link>
		<comments>http://opencomputer.net/2009/04/18/piwiki-website-analytics/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 09:54:55 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=321</guid>
		<description><![CDATA[I&#8217;ve just read in HowToForge a nice article about Piwik, an open source web analytics tool. You can download Piwik and install it on your own server to gather analytics data that could replace your usage of Google Analytics. In my personal opinion, it is always nice to have two services running to make sure [...]]]></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/18/piwiki-website-analytics/";
		reddit_title = "Piwiki &#8211; website analytics";
		//-->
		</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/18/piwiki-website-analytics/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Piwiki &#8211; website analytics";
		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>I&#8217;ve just read in <a title="HowToForge" href="http://www.howtoforge.com/generating-website-statistics-with-piwik-an-open-source-google-analytics-like-web-analytics-tool" target="_blank">HowToForge</a> a nice article about <strong><a title="Piwik" href="http://piwik.org/" target="_blank">Piwik</a></strong>, an open source web analytics tool.</p>
<p>You can download Piwik and install it on your own server to gather analytics data that could replace your usage of Google Analytics. In my personal opinion, it is always nice to have two services running to make sure you&#8217;re getting the right analytics data or still have data in case something happens and one service breaks.</p>
<p>What seems pretty neat about Piwik is the fact that it works with <a title="Piwik plug-ins" href="http://piwik.org/faq/plugins/#faq_20" target="_blank">plug-ins</a> so you can add and remove functionalities that are suitable for you. The service runs on php and MySQL so it should be an easy install process, the site says less than 5 minutes. <img src='http://opencomputer.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>They&#8217;re on version 0.2 right now but give it a try, their <a title="Piwik online demo" href="http://piwik.org/demo/" target="_blank">online demo</a> sems pretty awesome.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/04/18/piwiki-website-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Task manager [Android]</title>
		<link>http://opencomputer.net/2009/04/13/task-manager-android/</link>
		<comments>http://opencomputer.net/2009/04/13/task-manager-android/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 20:59:28 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=308</guid>
		<description><![CDATA[I&#8217;m an follower of GTD. Probably not the best one, but at least I try to keep myself as organized as I can in the stream of neverending to-dos. Which is why one of the first applications I searched for to install on my Android device was a good task manager to sync with RememberTheMilk. [...]]]></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/13/task-manager-android/";
		reddit_title = "Task manager [Android]";
		//-->
		</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/13/task-manager-android/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Task manager [Android]";
		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>I&#8217;m an follower of <a title="GTD" href="http://en.wikipedia.org/wiki/Getting_Things_Done" target="_blank">GTD</a>. Probably not the best one, but at least I try to keep myself as organized as I can in the stream of neverending to-dos.</p>
<p>Which is why one of the first applications I searched for to install on my Android device was a good task manager to sync with <a title="RememberTheMilk" href="http://www.rememberthemilk.com" target="_blank">RememberTheMilk</a>. I was quite happy to find the open source app <strong><a title="Astrid" href="http://code.google.com/p/android-astrid/" target="_blank">Astrid</a></strong>. The program does exactly what I need:</p>
<ul>
<li>prioritize tasks;</li>
<li>add tags and visualize tasks well based on these tags;</li>
<li><a name="Features">it has a timer function so I can keep track (if needed) of how much time I spend on a task;</a></li>
<li><a name="Features">good reminder notification;</a></li>
<li>and more.</li>
</ul>
<div id="attachment_318" class="wp-caption aligncenter" style="width: 214px"><img class="size-medium wp-image-318" title="edit_basic" src="http://opencomputer.net/wp-content/uploads/2009/04/edit_basic-204x300.png" alt="Asstrid Android task manager" width="204" height="300" /><p class="wp-caption-text">Asstrid Android task manager</p></div>
<p><a name="Features"></a>Syncing with RememberTheMilk is a breeze, the only problem is that all tasks go to my inbox and not the lists I have already defined. But, overall Astrid meets all of my demands <img src='http://opencomputer.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/04/13/task-manager-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Libre.fm, open source last.fm project</title>
		<link>http://opencomputer.net/2009/04/11/librefm-open-source-lastfm-project/</link>
		<comments>http://opencomputer.net/2009/04/11/librefm-open-source-lastfm-project/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 19:30:21 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=305</guid>
		<description><![CDATA[Last.fm&#8217;s decision to start charging for web streaming of their radio service outside the US, UK and Germany made reasonable financial sense for them didn&#8217;t make me too happy. As a consequence of the news (it seems), a new open source project was started called libre.fm. Right now the project is in closed alpha 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/2009/04/11/librefm-open-source-lastfm-project/";
		reddit_title = "Libre.fm, open source last.fm project";
		//-->
		</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/11/librefm-open-source-lastfm-project/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Libre.fm, open source last.fm project";
		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>Last.fm&#8217;s <a title="Last.fm starts charging" href="http://blog.last.fm/2009/03/24/lastfm-radio-announcement" target="_blank">decision</a> to start charging for web streaming of their radio service outside the US, UK and Germany made reasonable financial sense for them didn&#8217;t make me too happy.</p>
<p>As a consequence of the news (it seems), a new open source project was started called <strong><a title="libre.fm" href="http://libre.fm/" target="_blank">libre.fm</a></strong>. Right now the project is in closed alpha and will allow you to collect the information of songs you&#8217;re listening to, similar to audioscrobbler.</p>
<p>If you get an invite, all you have to do is install <a title="libre.fm turtle app" href="http://ideas.libre.fm/index.php/Using_turtle" target="_blank">turtle</a> to start sending the information of your listening habits. Libre.fm will have all of the code released under GNU AGPL and much like <a title="Laconi.ca" href="http://laconi.ca/trac/" target="_blank">laconi.ca</a>, you will be able to launch your own instance or use their own hosting to store your data.</p>
<p>Right now it is an early stage project, but since it is open source who knows what will appear in the future?</p>
<p>Now if only I could get an invite&#8230;</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/04/11/librefm-open-source-lastfm-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Open source&#8221; maps</title>
		<link>http://opencomputer.net/2009/03/02/open-source-maps/</link>
		<comments>http://opencomputer.net/2009/03/02/open-source-maps/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 14:48:10 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=282</guid>
		<description><![CDATA[Google Maps could very well be the most highly used online map service, why would anything else be better? GMaps&#8217; data is proprietary, you can use it but with some restrictions and software developers can not use its full potential for their own benefit. OpenStreetMap is a world map done entirely from user&#8217;s submitted data. [...]]]></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/02/open-source-maps/";
		reddit_title = "&#8220;Open source&#8221; maps";
		//-->
		</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/02/open-source-maps/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "&#8220;Open source&#8221; maps";
		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>Google Maps could very well be the most highly used online map service, why would anything else be better? GMaps&#8217; data is proprietary, you can use it but with some restrictions and software developers can not use its full potential for their own benefit.</p>
<p><strong><a title="OpenStreetMap" href="http://www.openstreetmap.org/" target="_blank">OpenStreetMap</a></strong> is a world map done entirely from user&#8217;s submitted data. Similar to a wiki, you construct the map details by adding street names, information of buildings, commercial and government establishments, everything including terrain information.</p>
<p>The amount of data OpenStreetMap has about some areas in Europe I checked sometimes is even better than Google Maps. There are thousands of active participants throughout the world collaborating in this project. You can <a title="Beginners' guid to Openstreetmap" href="http://wiki.openstreetmap.org/wiki/Beginners%27_Guide" target="_blank">participate</a> in various ways, from uploading data recorded by your GPS unit and even editing directly on the web in OSM&#8217;s own website.</p>
<p>With OSM we can have a project such as <a title="OpenRouteService" href="http://www.openrouteservice.org/" target="_blank">Open Route Service</a> that provides a very nice set of directions to and from your next destination. If there is any information in these services that is incorrect, we can easily fix it.</p>
<p>The only thing I think would make it better is adding more user generated photos so we can have something similar to Google&#8217;s Street View.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/03/02/open-source-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online localization platform</title>
		<link>http://opencomputer.net/2009/01/28/online-localization-platform/</link>
		<comments>http://opencomputer.net/2009/01/28/online-localization-platform/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 21:22:54 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=271</guid>
		<description><![CDATA[If you&#8217;re working on a localization project and would like to have the translation work done online, Pootle is currently the best option I found. Having an online translation platform is a great option for collaborative work since your team of translators can work from different parts of the world simultaneously. Pootle has a nice [...]]]></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/01/28/online-localization-platform/";
		reddit_title = "Online localization platform";
		//-->
		</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/01/28/online-localization-platform/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Online localization platform";
		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 working on a localization project and would like to have the translation work done online, <a title="Pootle" href="http://translate.sourceforge.net/wiki/pootle/index" target="_blank"><strong>Pootle</strong></a> is currently the best option I found. Having an online translation platform is a great option for collaborative work since your team of translators can work from different parts of the world simultaneously.</p>
<p>Pootle has a nice user rights management feature allowing you to set the responsibilities of each team member in your project:</p>
<ul>
<li>those that can submit translation suggestions;</li>
<li>reviewers;</li>
<li>team leaders designating specific tasks and setting deadlines;</li>
<li>technical management of the translation files.</li>
</ul>
<p>All of the translation work done easily online. The translator chooses the project page, sees the source string on the left and on the right just start writing the translation. If needed, he/she can also leave notes for other translators or reviewers.</p>
<p>Pootle works well with PO or XLIFF files and you can export these to offline .csv format or directly to .mo for direct usage.</p>
<p>Knowing well Pootle, you&#8217;ll discover an incredible number of other features such as: setting translation memories; direct integration with version control systems, acquiring translation statistics and more. A large number of famous projects are currently using Pootle, including Firefox, OpenOffice, Compiz Fusion, and laconi.ca.</p>
<p>With a project I&#8217;m working on, it was a bit of a hassle to get it installed but once ready to go, a try life saver it was.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/01/28/online-localization-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create and manage your online surveys</title>
		<link>http://opencomputer.net/2009/01/27/create-and-manage-your-online-surveys/</link>
		<comments>http://opencomputer.net/2009/01/27/create-and-manage-your-online-surveys/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 21:10:17 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=268</guid>
		<description><![CDATA[In the past, to run online surveys I used GoogleDocs and SurveyMonkey. One was a paid service and the other too minimalistic. LimeSurvey though is a very nice open source platform to run complex online surveys however you choose. The list of features is quite incredible, the best ones I found were the export / [...]]]></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/01/27/create-and-manage-your-online-surveys/";
		reddit_title = "Create and manage your online surveys";
		//-->
		</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/01/27/create-and-manage-your-online-surveys/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Create and manage your online surveys";
		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>In the past, to run online surveys I used GoogleDocs and SurveyMonkey. One was a paid service and the other too minimalistic. <a title="Limesurvey" href="http://www.limesurvey.org/" target="_blank"><strong>LimeSurvey</strong></a> though is a very nice open source platform to run complex online surveys however you choose.</p>
<p>The list of <a title="LimeSurvey features" href="http://www.limesurvey.org/content/view/13/80/lang,en/" target="_blank">features </a>is quite incredible, the best ones I found were the export / import format options (including SPSS, CSV, PDF, and .xls); large possibly of question types; integration of pictures and movies in a survey; and plenty of graphics options for you to analyze results inside the platform.</p>
<p>I was very glad to find this platform so I can run surveys the way I want to and be sure that all of the data is kept safe with me.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/01/27/create-and-manage-your-online-surveys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Identi.ca with new features!</title>
		<link>http://opencomputer.net/2009/01/25/identica-with-new-features/</link>
		<comments>http://opencomputer.net/2009/01/25/identica-with-new-features/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 20:50:41 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=262</guid>
		<description><![CDATA[The open source based microblogging platform identi.ca has recently added some cool new features: hip new design giving the platform a fresher look; cloud tags for individual micro-bloggers; and the best of all, groups! You can create groups, join existing ones and write posts inside groups writing &#8220;!&#8221; in front of the group name. Adding groups functionality [...]]]></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/01/25/identica-with-new-features/";
		reddit_title = "Identi.ca with new features!";
		//-->
		</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/01/25/identica-with-new-features/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Identi.ca with new features!";
		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 open source based microblogging platform <a title="identi.ca" href="http://identi.ca" target="_blank">identi.ca</a> has recently added some cool new features:</p>
<ul>
<li>hip <strong>new design</strong> giving the platform a fresher look;</li>
<li><strong>cloud tags</strong> for individual micro-bloggers;</li>
<li>and the best of all, <strong>groups</strong>! You can create groups, join existing ones and write posts inside groups writing &#8220;!&#8221; in front of the group name.</li>
</ul>
<p><img class="aligncenter size-medium wp-image-263" title="identica" src="http://opencomputer.net/wp-content/uploads/2009/01/identica-300x189.png" alt="identica" width="300" height="189" /></p>
<p>Adding groups functionality is a nice feature, inspired (maybe?) in FriendFeed&#8217;s rooms. People with similar interests can discuss topics together and you&#8217;ll always receive posts of the groups you&#8217;re connected to.</p>
<p>Since identi.ca&#8217;s platform is completely open source, you can download the laconi.ca and create your own microblogging instance with all of these features.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/01/25/identica-with-new-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using rsync with no command like [linux]</title>
		<link>http://opencomputer.net/2009/01/04/using-rsync-with-no-command-like/</link>
		<comments>http://opencomputer.net/2009/01/04/using-rsync-with-no-command-like/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 16:27:47 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=252</guid>
		<description><![CDATA[For those (like me) who are interested on using rsync but are command line inexperienced, finding a GUI is a lifesaver. Grsync can make sure you use rsync without the terminal. The developers list several features such as: you can easily run the most common rsync tasks, more complex tasks can still be done but [...]]]></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/01/04/using-rsync-with-no-command-like/";
		reddit_title = "Using rsync with no command like [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/01/04/using-rsync-with-no-command-like/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Using rsync with no command like [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>For those (like me) who are interested on using rsync but are command line inexperienced, finding a GUI is a lifesaver.</p>
<p><strong><a title="Grsync" href="http://www.opbyte.it/grsync/" target="_blank"><img class="alignright size-medium wp-image-253" title="grsync" src="http://opencomputer.net/wp-content/uploads/2009/01/grsync-043-262x300.png" alt="grsync" width="262" height="300" />Grsync</a></strong> can make sure you use rsync without the terminal. The developers list several features such as:</p>
<ul>
<li>you can easily run the most common rsync tasks, more complex tasks can still be done but with command line tweaking;</li>
<li>Saves multiple settings with customized names;</li>
<li>performs simulations or normal executions;</li>
<li>print rsync output to a log or a separate file;</li>
<li>operation pause.</li>
</ul>
<p>For those who have no clue about what is <a title="rsync" href="http://samba.anu.edu.au/rsync/" target="_blank">rsync</a>, it is a tool used very often for backups and incremental file transfers. In other words, if you&#8217;re doing a backup with rsync, you will not have to copy every single file over and over again in different backups, only the files that have changed.</p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2009/01/04/using-rsync-with-no-command-like/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Open source push emails and contacts sync</title>
		<link>http://opencomputer.net/2008/12/14/open-source-push-emails-and-contacts-sync/</link>
		<comments>http://opencomputer.net/2008/12/14/open-source-push-emails-and-contacts-sync/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 13:45:11 +0000</pubDate>
		<dc:creator>Danilo</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://opencomputer.net/?p=237</guid>
		<description><![CDATA[I got a new phone and was terrified about the manual work that would be needed to sync all of my contact details. But then I thought, we&#8217;re in 2008 so there must be an open source way of doing this!! Funambol MobileWe did the trick perfectly! Funambol allows syncing over the air emails, contacts, [...]]]></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/2008/12/14/open-source-push-emails-and-contacts-sync/";
		reddit_title = "Open source push emails and contacts sync";
		//-->
		</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/2008/12/14/open-source-push-emails-and-contacts-sync/";
		digg_bgcolor = "#ffa200";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Open source push emails and contacts sync";
		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>I got a new phone and was terrified about the manual work that would be needed to sync all of my contact details. But then I thought, we&#8217;re in 2008 so there must be an open source way of doing this!!</p>
<p><strong><a title="Funambol" href="http://www.funambol.com/" target="_blank">Funambol</a> MobileWe</strong> did the trick perfectly! Funambol allows syncing over the air emails, contacts, calendar, tasks and notes with mobile devices. The site reports syncing capabilities with 1.5 billion mobile devices and thousands of online services. You can sync your information from GMail, Yahoo!, Hotmail, Thunderbird, AOL, MS Outlook (if you&#8217;re still using it), and emails from POP and IMAP access.</p>
<p style="text-align: center;"><a href="http://opencomputer.net/wp-content/uploads/2008/12/funambol.png"><img class="size-medium wp-image-238 aligncenter" title="funambol" src="http://opencomputer.net/wp-content/uploads/2008/12/funambol-300x152.png" alt="" width="300" height="152" /></a></p>
<p>If your contacts are scattered all over the place, like I had, with Plaxo, GMail and other cell phones, first centralize everything in one spot. I chose GMail&#8217;s Contacts since I can then sync it nicely to my Evolution.</p>
<p>Then, create an account at  <a title="MyFunambol" href="http://my.funambol.com/" target="_blank">MyFunambol</a>, select your mobile device, go to your profile link, and configure your email and where to sync your information from. After all the configuration is set, you will receive a message on your mobile to download the needed sync app.</p>
<p style="text-align: center;"><a href="http://opencomputer.net/wp-content/uploads/2008/12/myfunambol.png"><img class="size-medium wp-image-239 aligncenter" title="myfunambol" src="http://opencomputer.net/wp-content/uploads/2008/12/myfunambol-300x224.png" alt="" width="300" height="224" /></a></p>
<p>After everything is installed, with a click of a button on your phone, all of your contacts will be synced and you&#8217;ll even get push emails! Much better then Blackberry and Apple&#8217;s MobileMe. With <strong>MobileWe</strong> you will have a safe backup of contacts, receive push emails and sync contacts even with multiple devices.</p>
<p>End result for me? Contacts nicely synced and my phone displayed even the pictures of my contacts I had created in GMail.</p>
<p><em>*Note: also supported but not endorsed by this author are iPhones and Windows Mobile OS.</em></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://opencomputer.net/2008/12/14/open-source-push-emails-and-contacts-sync/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

