<?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; IT</title>
	<atom:link href="http://www.sicoie.ro/robert/category/it/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>Find the name of the table an index is in a MSSQL database</title>
		<link>http://www.sicoie.ro/robert/2011/04/08/find-the-name-of-the-table-an-index-is-in-a-mssql-database/</link>
		<comments>http://www.sicoie.ro/robert/2011/04/08/find-the-name-of-the-table-an-index-is-in-a-mssql-database/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 10:35:09 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[indexes]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/?p=86</guid>
		<description><![CDATA[I was looking for a way to find out in which table an index is in a MSSQL database. Finally, running this query in Microsoft SQL Server Management Studio did the trick: /* Select table that has the index given by name */ SELECT t.name FROM sys.indexes o INNER JOIN sys.TABLES t ON o.object_id=t.object_id WHERE <a href='http://www.sicoie.ro/robert/2011/04/08/find-the-name-of-the-table-an-index-is-in-a-mssql-database/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sicoie.ro/robert/wp-content/uploads/2011/04/mssql.jpg"><img class="alignright size-full wp-image-90" title="mssql logo" src="http://www.sicoie.ro/robert/wp-content/uploads/2011/04/mssql.jpg" alt="" width="162" height="101" /></a>I was looking for a way to find out in which table an index is in a MSSQL database. Finally, running this query in Microsoft SQL Server Management Studio did the trick:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Select table that has the index given by name */</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> t<span style="color: #66cc66;">.</span>name <span style="color: #993333; font-weight: bold;">FROM</span> sys<span style="color: #66cc66;">.</span>indexes o <span style="color: #993333; font-weight: bold;">INNER</span> <span style="color: #993333; font-weight: bold;">JOIN</span> sys<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">TABLES</span> t
<span style="color: #993333; font-weight: bold;">ON</span> o<span style="color: #66cc66;">.</span>object_id<span style="color: #66cc66;">=</span>t<span style="color: #66cc66;">.</span>object_id
<span style="color: #993333; font-weight: bold;">WHERE</span> o<span style="color: #66cc66;">.</span>name<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'my_index'</span></pre></div></div>

<p>&nbsp;</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2011%2F04%2F08%2Ffind-the-name-of-the-table-an-index-is-in-a-mssql-database%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/2011/04/08/find-the-name-of-the-table-an-index-is-in-a-mssql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patched jQuery ContextMenu Plugin to get it working inside iframe</title>
		<link>http://www.sicoie.ro/robert/2011/03/20/jquery-contextmenu-plugin-patch/</link>
		<comments>http://www.sicoie.ro/robert/2011/03/20/jquery-contextmenu-plugin-patch/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 13:10:56 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[contextmenu]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/?p=75</guid>
		<description><![CDATA[These days I needed a context menu jQuery plugin and I used this one. But I had to activate the plugin for elements inside an iframe and the plugin unfortunately does not support this. If you run into the same problem with version 1.01 don&#8217;t worry, here is the patch: jquery.contextMenu-1.01.patch]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-78" title="contextMenu" src="http://www.sicoie.ro/robert/wp-content/uploads/2011/03/contextMenu.png" alt="" width="121" height="137" />These days I needed a context menu jQuery plugin and I used <a href="http://abeautifulsite.net/blog/2008/09/jquery-context-menu-plugin/">this one</a>. But I had to activate the plugin for elements inside an iframe and the plugin unfortunately does not support this. If you run into the same problem with version 1.01 don&#8217;t worry, here is the patch: <a href="http://www.sicoie.ro/robert/wp-content/uploads/2011/03/jquery.contextMenu-1.01.patch.zip">jquery.contextMenu-1.01.patch</a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2011%2F03%2F20%2Fjquery-contextmenu-plugin-patch%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/2011/03/20/jquery-contextmenu-plugin-patch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Rails on Dreamhost</title>
		<link>http://www.sicoie.ro/robert/2008/06/21/rails-on-dreamhost/</link>
		<comments>http://www.sicoie.ro/robert/2008/06/21/rails-on-dreamhost/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 18:03:34 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.sicoie.ro/robert/2008/06/21/rails-on-dreamhost/</guid>
		<description><![CDATA[These days, while testing my personal Ruby on Rails project I&#8217;m currently working on, I realized how slow Dreamhost&#8217;s FCGI Rails support is.  So after intensive search for answers I had to contact Dreamhost support team. I wrote them about the problem and today they replayed to my email:  I apologize for the slowness with <a href='http://www.sicoie.ro/robert/2008/06/21/rails-on-dreamhost/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>These days, while testing my personal Ruby on Rails project I&#8217;m currently working on, I realized how slow Dreamhost&#8217;s FCGI Rails support is.  So after intensive search for answers I had to contact Dreamhost support team. I wrote them about the problem and today they replayed to my email:</p>
<address> I apologize for the slowness with our FCGI and rails. This is actually one of the reasons we worked with the Phusion to get passenge (mod_rails) working on our servers, passenger is faster, better and stronger than FCGI rails implementation.</address>
<address> </address>
<address>I would highly recommend you try your application with passenger (mod_rails) instead of fastCGI, this should substantially increase the speed of your site.<br />
</address>
<p>And they were right.</p>
<p>To enable passanger, just access <a href="https://panel.dreamhost.com/index.cgi?tree=domain.manage&amp;current_step=Index&amp;next_step=ShowEdithttp" title="dreamhost panel">dreamhost panel</a> and check &#8220;Ruby on Rails Passenger (mod_rails)?&#8221;. This way your Ruby on Rails app. should get more speed.</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sicoie.ro%2Frobert%2F2008%2F06%2F21%2Frails-on-dreamhost%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/21/rails-on-dreamhost/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>
	</channel>
</rss>

