<?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>Robert Sicoie &#187; Free software</title>
	<atom:link href="http://www.sicoie.ro/robert/category/it/free-software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sicoie.ro/robert</link>
	<description></description>
	<lastBuildDate>Sun, 15 May 2011 08:47:30 +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>RIPEMD with Bouncy Castle Cryptography Library</title>
		<link>http://www.sicoie.ro/robert/2009/06/24/ripemd-with-bouncy-castle-cryptography-library/</link>
		<comments>http://www.sicoie.ro/robert/2009/06/24/ripemd-with-bouncy-castle-cryptography-library/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 22:48:06 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[Free software]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/2009/06/24/ripemd-with-bouncy-castle-cryptography-library/</guid>
		<description><![CDATA[If someone asks you to make simple tool that creates a RIPEMD-160 message digest and output it in Base64 encoding what will you do? This is how I started: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 <a href='http://www.sicoie.ro/robert/2009/06/24/ripemd-with-bouncy-castle-cryptography-library/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>If someone asks you to make simple tool that creates a RIPEMD-160 message digest and output it in Base64 encoding what will you do?</p>
<p>This is how I started:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">org.bouncycastle.jce.provider.*</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">org.bouncycastle.util.encoders.Base64</span><span style="color: #339933;">;</span>
<span style="color: #008000; font-style: italic; font-weight: bold;">/**
 * Calculates RIPEMD-160 for an input message and output it in Base64 encoding
 * @author robert sicoie
 *
 */</span>
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> RipeMD <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> usage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #003399;">System</span>.<span style="color: #006633;">err</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>
<span style="color: #0000ff;">&quot;RipeMD &amp;lt;message&amp;gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #339933;">+</span>
<span style="color: #0000ff;">&quot;Calculates RIPEMD-160 for a given message and outputs it in Base64 encoding&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * @param args message The message we want to calculate RIMEMD-160 for.
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> args<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>args.<span style="color: #006633;">length</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			usage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #003399;">System</span>.<span style="color: #006633;">exit</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #003399;">String</span> inputMessage <span style="color: #339933;">=</span> args<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #666666; font-style: italic;">// Get the message digest generator</span>
		JDKMessageDigest ripeDigest <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> JDKMessageDigest.<span style="color: #006633;">RIPEMD160</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000066; font-weight: bold;">byte</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> input <span style="color: #339933;">=</span> inputMessage.<span style="color: #006633;">getBytes</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000066; font-weight: bold;">byte</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> output <span style="color: #339933;">=</span> ripeDigest.<span style="color: #006633;">digest</span><span style="color: #009900;">&#40;</span>input<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #003399;">String</span> outputMessage <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">String</span><span style="color: #009900;">&#40;</span>Base64.<span style="color: #006633;">encode</span><span style="color: #009900;">&#40;</span>output<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">print</span><span style="color: #009900;">&#40;</span>outputMessage<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><a href="http://www.bouncycastle.org/" target="_blank">Bouncy Castle</a> library makes it really easy!</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2009%2F06%2F24%2Fripemd-with-bouncy-castle-cryptography-library%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2009/06/24/ripemd-with-bouncy-castle-cryptography-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>watch the lan</title>
		<link>http://www.sicoie.ro/robert/2008/11/26/watch-the-lan/</link>
		<comments>http://www.sicoie.ro/robert/2008/11/26/watch-the-lan/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 08:29:07 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/2008/11/26/watch-the-lan/</guid>
		<description><![CDATA[Long time no post. This days I started to work on a new home project. I had an idea and I got very enthusiast. Soon, some results will be publicly available on Google code. But for more details go to project&#8216;s page. Update 26.01.2009: First working version commited]]></description>
			<content:encoded><![CDATA[<p>Long time no post.</p>
<p>This days I started to work on a new home <a href="http://code.google.com/p/watchthelan/">project</a>. I had an idea and I got very enthusiast. Soon, some results will be publicly available on Google code. But for more details go to <a href="http://code.google.com/p/watchthelan/">project</a>&#8216;s page.</p>
<p><strong>Update 26.01.2009:</strong></p>
<p>First working version commited <img src='http://www.sicoie.ro/robert/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F11%2F26%2Fwatch-the-lan%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2008/11/26/watch-the-lan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FLOSS Camp 2008</title>
		<link>http://www.sicoie.ro/robert/2008/09/03/floss-camp-2008/</link>
		<comments>http://www.sicoie.ro/robert/2008/09/03/floss-camp-2008/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 13:31:52 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Free software]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/2008/09/03/floss-camp-2008/</guid>
		<description><![CDATA[Weekend-ul trecut a avut loc FLOSS Camp 2008 la Păltiniş. Aflată la prima ediţie, tabăra a avut o participare de 14 persoane. Mai multe informaţii despre eveniment găsiţi pe pagina dedicată întâlnirii Update 6 Septembrie 2008: Pentru poze vizitaţi: galeria FLOSS Camp 2008 Fedora Romania http://picasaweb.google.com/szteven/FLOSSCamp2008 http://picasaweb.google.com/alexxed/FlossCamp2008]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sicoie.ro/robert/wp-content/uploads/2008/09/thumb_flosscamp1.thumbnail.jpeg" alt="thumb_flosscamp" align="left" vspace="5" width="87" height="75" hspace="5" />Weekend-ul trecut a avut loc <a href="http://camp.softwareliber.ro/2008/" target="_blank">FLOSS Camp 2008</a> la Păltiniş. Aflată la prima ediţie, tabăra a avut o participare de 14 persoane. Mai multe informaţii despre eveniment găsiţi pe <a href="http://camp.softwareliber.ro/2008/" target="_blank">pagina dedicată întâlnirii</a></p>
<p><strong>Update 6 Septembrie 2008</strong>:</p>
<p>Pentru poze vizitaţi:</p>
<ul>
<li>galeria <a href="http://camp.softwareliber.ro/2008/poze/" target="_blank">FLOSS Camp 2008</a></li>
<li><a href="http://forum.fedoraproject.ro/gallery/thumbnails.php?album=14" target="_blank">Fedora Romania</a></li>
<li><a href="http://picasaweb.google.com/szteven/FLOSSCamp2008" title="Galeria lui Istvan Szollosi" target="_blank">http://picasaweb.google.com/szteven/FLOSSCamp2008</a></li>
<li><a href="http://picasaweb.google.com/alexxed/FlossCamp2008" target="_blank">http://picasaweb.google.com/<wbr></wbr>alexxed/FlossCamp2008</a></li>
</ul>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F09%2F03%2Ffloss-camp-2008%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2008/09/03/floss-camp-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Încearcă software liber</title>
		<link>http://www.sicoie.ro/robert/2008/07/21/incearca-software-liber/</link>
		<comments>http://www.sicoie.ro/robert/2008/07/21/incearca-software-liber/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 08:01:10 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[ro]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/2008/07/21/incearca-software-liber/</guid>
		<description><![CDATA[Grupul pentru software liber a pornit o iniţiativă de promovare a software-ului liber prin scurte articole scrise în limba română despre diverse aplicaţii libere. Acestea se adresează tuturor utilizatorilor, indiferent de sistemul de operare folosit. Oricine simte nevoia, este invitat să scrie articole despre aplicaţii libere.]]></description>
			<content:encoded><![CDATA[<p><a href="http://incearca.softwareliber.ro" target="_blank"><img src="http://www.sicoie.ro/robert/wp-content/uploads/2008/07/2008-07-08-1215503814_1440x900_scrot_normal.png" alt="incearca" vspace="5" align="left" hspace="5" /></a><a href="http://www.softwareliber.ro" target="_blank">Grupul pentru software liber</a> a pornit o iniţiativă de promovare a software-ului liber prin scurte articole scrise în limba română despre diverse aplicaţii libere. <a href="http://incearca.softwareliber.ro" target="_blank">Acestea</a> se adresează tuturor utilizatorilor, indiferent de sistemul de operare folosit. Oricine simte nevoia, este invitat să <a href="http://incearca.softwareliber.ro/contribuie/" target="_blank">scrie</a> articole despre aplicaţii libere.</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F07%2F21%2Fincearca-software-liber%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2008/07/21/incearca-software-liber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Web Frameworks comparison</title>
		<link>http://www.sicoie.ro/robert/2008/07/07/java-web-frameworks-comparison/</link>
		<comments>http://www.sicoie.ro/robert/2008/07/07/java-web-frameworks-comparison/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 08:12:19 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/2008/07/07/java-web-frameworks-comparison/</guid>
		<description><![CDATA[On 8th of July, the Eastern Europe JUG will have its second meeting. There will be 5, 10 minute presentations followed by conclusions/discussions about the following frameworks: Wicket, GWT, Tapestry, Spring MVC and Struts 2. The meeting place is in front of Colegiul Tehnic de Constructii &#8220;Anghel Saligny&#8221;  at 18:45. To register you must follow <a href='http://www.sicoie.ro/robert/2008/07/07/java-web-frameworks-comparison/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sicoie.ro/robert/wp-content/uploads/2008/07/mic.png" alt="duke" vspace="5" align="left" />On 8th of July, the <a href="http://eejug.org" target="_blank">Eastern Europe JUG</a> will have its second meeting. There will be 5, 10 minute presentations followed by conclusions/discussions about the following frameworks: Wicket, GWT, Tapestry, Spring MVC and Struts 2.</p>
<p>The meeting place is in front of <a href="http://wikimapia.org/#lat=46.7758543&amp;lon=23.6061752&amp;z=17&amp;l=0&amp;m=a&amp;v=2" target="_blank">Colegiul Tehnic de Constructii &#8220;Anghel Saligny&#8221;</a>  at 18:45. To register you must follow <a href="http://jugevents.org/jugevents/event/show.html?id=5750" target="_blank">this</a> link.<a href="http://jugevents.org/jugevents/event/show.html?id=5750" rel="nofollow"></a></p>
<p>Everybody is invited. The entrance is free, of course. For more details visit <a href="http://eejug.org/display/events/JUG+Meeting+nr.+0002" rel="nofollow">http://eejug.org/display/events/JUG+Meeting+nr.+0002</a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F07%2F07%2Fjava-web-frameworks-comparison%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2008/07/07/java-web-frameworks-comparison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox, Narro, OpenOffice şi Fedora la Cluj-Napoca</title>
		<link>http://www.sicoie.ro/robert/2008/06/19/firefox-narro-openoffice-si-fedora-la-cluj-napoca/</link>
		<comments>http://www.sicoie.ro/robert/2008/06/19/firefox-narro-openoffice-si-fedora-la-cluj-napoca/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 08:06:38 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Free software]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/2008/06/19/firefox-narro-openoffice-si-fedora-la-cluj-napoca/</guid>
		<description><![CDATA[În data de 21 iunie 2008, Grupul pentru software liber va organiza un eveniment ce va cuprinde prezentări despre Firefox România, Narro, OpenOffice România și Fedora România. Evenimentul se va desfășura în data de 21 Iunie 2008 între orele 11 și 14, în cadrul Facultății de Științe Economice (Campus ISE), str. Teodor Mihali, nr 58-60, <a href='http://www.sicoie.ro/robert/2008/06/19/firefox-narro-openoffice-si-fedora-la-cluj-napoca/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>În data de 21 iunie 2008, Grupul pentru software liber va organiza un eveniment ce va cuprinde prezentări despre Firefox România, Narro, OpenOffice România și Fedora România.</p>
<table>
<tr>
<td><a href="http://www.sicoie.ro/robert/wp-content/uploads/2008/06/poster-cluj210608-sigle.png" title="fedora"><img src="http://www.sicoie.ro/robert/wp-content/uploads/2008/06/poster-cluj210608-sigle.thumbnail.png" alt="fedora" /></a></td>
<td>Evenimentul se va desfășura în data de 21 Iunie 2008 între orele 11 și 14, în cadrul Facultății de Științe Economice (Campus ISE), str. Teodor Mihali, nr 58-60, sala 310 (etaj 3)Prezentările vor fi susținute de <a href="http://fedoraproject.org/wiki/AdrianJoian">Adrian Joian</a>, <a href="http://nicubunu.ro/">Nicu Buculei</a> și <a href="http://www.alexxed.com/">Alexandru Szasz</a>.</td>
</tr>
</table>
<p>Adrian Joian și Nicu Buculei vor veni din București pentru a prezenta proiectul Fedora România. Adrian este ambasador Fedora iar Nicu este serios implicat în echipa Fedora Artwork.</p>
<p>Alexandru Szasz va veni din Timișoara pentru a prezenta în special proiectul Narro , o unealtă de localizare web folosită pentru localizarea Firefox, Thunderbird, OpenOffice. În același timp Alexandru este coordonatorul localizărilor pentru România a proiectelor din cadrul Mozilla (Firefox, Thunderbird, etc), Fedora și OpenOffice.</p>
<p>Mai jos găsiți programul evenimentului:<br />
11.00 &#8211; 11.30 &#8211; Discuții de început, așteptat pe cei care întârzie<br />
11.30 &#8211; 12.00 &#8211; Prezentare Fedora &#8211; Adrian Joian<br />
12.00 &#8211; 12.20 &#8211; Prezentare Fedora Art &#8211; Nicu Buculei<br />
12.20 &#8211; 12.30 &#8211; Pauză<br />
12.30 &#8211; 13.00 &#8211; Prezentare Narro și OpenOffice &#8211; Alexandru Szasz<br />
13.00 &#8211; 13.30   &#8211; Prezentare Firefox &#8211; Alexandru Szasz<br />
13.30 &#8211; 14.00 &#8211; Sfârșit … ne îndreptăm către locul unde se ține Firefox Release Party</p>
<p>Ca de obicei, intrarea este liberă și toată lumea este invitată!</p>
<p>Discuțiile se vor continua la <a href="http://mozillaparty.com/en-US/events/view/355">Firefox 3 Release Party din Cluj-Napoca</a>, un alt eveniment organizat de grup în aceeasi zi, începând cu orele 15.00 . Încă nu s-a stabilit locul desfășurării acestui release party. Dacă e vreme frumoasă ieșim pe o terasă (ex Kapetti), dacă nu stăm într-un bar (ex 420).</p>
<p>Îi mulțumim lui  <a href="http://cs.ubbcluj.ro/%7Eforest/">Sterca Adrian</a> pentru suportul oferit din partea UBB.</p>
<p>Mai multe informaţii despre evenimentele din 21 Iunie aflaţi pe <a href="http://www.softwareliber.ro" title="http://www.softwareliber.ro" target="_blank">pagina grupului</a>.</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F06%2F19%2Ffirefox-narro-openoffice-si-fedora-la-cluj-napoca%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2008/06/19/firefox-narro-openoffice-si-fedora-la-cluj-napoca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Document Freedom Day 2008 &#8211; Cluj Napoca</title>
		<link>http://www.sicoie.ro/robert/2008/03/18/document-freedom-day-2008-cluj-napoca/</link>
		<comments>http://www.sicoie.ro/robert/2008/03/18/document-freedom-day-2008-cluj-napoca/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 08:35:57 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://robert.softwareliber.ro/2008/03/18/document-freedom-day-2008-cluj-napoca/</guid>
		<description><![CDATA[În data de sambătă, 22 Martie 2008, Grupul pentru Software Liber din Cluj-Napoca va organiza o serie de prezentări cu ocazia Document Freedom Day.Evenimentul se va desfășura în cadrul Universității Tehnice din Cluj-Napoca, str. Barițiu nr. 26-28, sala 40, începând cu orele 11.00 În cadrul acestui eveniment vor fi prezentate cele 2 soluții importante de <a href='http://www.sicoie.ro/robert/2008/03/18/document-freedom-day-2008-cluj-napoca/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sicoie.ro/robert/wp-content/uploads/2008/03/dfd_banner_468x60_cluj.png" alt="dfd08" /></p>
<blockquote></blockquote>
<p>În data de sambătă, 22 Martie 2008, Grupul pentru Software Liber din Cluj-Napoca va organiza o serie de prezentări cu ocazia Document Freedom Day.Evenimentul se va desfășura în cadrul Universității Tehnice din Cluj-Napoca, str. Barițiu nr. 26-28, sala 40, începând cu orele 11.00</p>
<p>În cadrul acestui eveniment vor fi prezentate cele 2 soluții importante de documente deschise: ODF (OpenOffice.org, Google Docs, IBM Lotus Symphony) și OOXML (viitoarele versiuni ale Micrososft Office). Pe lângă aceste discuții, în introducere, va avea loc și o scurtă prezentarea a problemelor pe care formatele deschise de documente încearca să le rezolve, stadiu actual al implemantărilor și principalele avantaje ale acestor formate.</p>
<p>Ne așteptăm ca la acest eveniment să participe oricine este interesat de formatele de documente prezente în viitoarele aplicații desktop cât și viitoarele aplicații web.</p>
<p>Intrarea este liberă!</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F03%2F18%2Fdocument-freedom-day-2008-cluj-napoca%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2008/03/18/document-freedom-day-2008-cluj-napoca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m going to FOSDEM</title>
		<link>http://www.sicoie.ro/robert/2008/02/10/im-going-to-fosdem/</link>
		<comments>http://www.sicoie.ro/robert/2008/02/10/im-going-to-fosdem/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 22:36:48 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Free software]]></category>

		<guid isPermaLink="false">http://robert.softwareliber.ro/?p=17</guid>
		<description><![CDATA[Yeah, there are just a few days until this event.]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td><a href="http://www.fosdem.org"><img src="http://www.fosdem.org/promo/going-to" alt="I'm going to FOSDEM, the Free and Open Source Software Developers' European Meeting" /></a></td>
<td>Yeah, there are just a few days until this event.</td>
</tr>
</table>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F02%2F10%2Fim-going-to-fosdem%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2008/02/10/im-going-to-fosdem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android [ part 1 ]</title>
		<link>http://www.sicoie.ro/robert/2007/11/24/android-1/</link>
		<comments>http://www.sicoie.ro/robert/2007/11/24/android-1/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 17:02:27 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[Free software]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://robert.softwareliber.ro/?p=11</guid>
		<description><![CDATA[Google has recently released Android &#8211; the new open source operating system and software platform. This has been developed by Google and others as part of the Open Handset Alliance, which has over 30 partners supporting it. The goal of this ambitious initiative is to spur innovation in the mobile space and accelerate improvements in <a href='http://www.sicoie.ro/robert/2007/11/24/android-1/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Google has recently released Android &#8211; the new open source operating system and software platform. This has been developed by Google and  <a href="http://www.openhandsetalliance.com/oha_members.html">others</a> as part of the <a href="http://www.openhandsetalliance.com">Open Handset Alliance</a>, which has over 30 partners supporting it. The goal of this ambitious initiative is to spur innovation in the mobile space and accelerate improvements in how people use the Web via cell phones.</p>
<p>But there is no mobile device on the market able to support this technology. The first Android-based phones should hit the market in the second half of 2008. The platform will be made available under Apache 2 license giving a lot of flexibility to those who adopt it to modify its components and design services and products.</p>
<p>To motivate developers to adopt Android platform, Google has launched the <a href="http://code.google.com/android/adc.html">Android Developer Challenge</a>, which will provide $10 million in awards for great mobile applications built on this platform. As submissions start on January 2, 2008 and last until on March 3, 2008 (for the first challenge) I thing I&#8217;ll start learning something more about this platform and maybe participate. There seams to be nothing to loose&#8230;</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2007%2F11%2F24%2Fandroid-1%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sicoie.ro/robert/2007/11/24/android-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

