<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>open-souce &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/open-souce/</link>
	<description>Feed of posts on WordPress.com tagged "open-souce"</description>
	<pubDate>Thu, 24 Dec 2009 15:58:46 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[About Krita and Gimp, in default installation]]></title>
<link>http://blog.cberger.net/2009/11/26/about-krita-and-gimp-in-default-installation/</link>
<pubDate>Thu, 26 Nov 2009 20:26:12 +0000</pubDate>
<dc:creator>Cyrille Berger</dc:creator>
<guid>http://blog.cberger.net/2009/11/26/about-krita-and-gimp-in-default-installation/</guid>
<description><![CDATA[The removal of GIMP from the default installation of Ubuntu has raised quiet a stir. And as drawn qu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The removal of <a href="http://gimp.org">GIMP</a> from the default installation of <a>Ubuntu</a> has raised quiet a stir. And as drawn quiet a bit of advertisement for <a href="http://krita.org">Krita</a>, as <a href="http://www.osnews.com/thread?396428">some people</a> suggested the use of Krita instead, but for no good reasons, since Krita is not a good replacement for GIMP as a default installation. </p>
<p>You have to consider the use case of the default installation, since the Ubuntu people are trying to make is a distribution that is usefull for the average users, the default installation need to cover the need of the many. And what most people want to do with their picture is to classify them, do light weight retouching (for instance, adjust the brightness, remove red eyes) and then print the image or send it on the Internet. Surely, both Krita and GIMP can do it, but they have way more features than what is needed for most users. As Sven Neumann, one of the core GIMP developer, said <a href="http://lists.xcf.berkeley.edu/lists/gimp-developer/2009-November/023779.html"><i>GIMP is a high-end application for professionals</i></a>, and so is Krita. Some might think that Krita has a GUI that is more friendly to the beginner, but that is not the problem, it is still packed with features that are of no interest to most users. And there are tools that are better suited to accomplish the task of those users, this is why a pictures collection management tool, such as <a>F-Spot</a> or <a href="http://www.digikam.org">Digikam</a> is a much better choice, it covers the main usage of the majority of users. Even if Digikam is designed for professional photographer, I still think it scale nicely to average users. And when the user want to do more with images, he can just go to his favorite package manager, and install GIMP or Krita.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenGTL 0.9.12 and Shiva noise]]></title>
<link>http://blog.cberger.net/2009/11/20/opengtl-0-9-12-and-shiva-noise/</link>
<pubDate>Fri, 20 Nov 2009 19:14:05 +0000</pubDate>
<dc:creator>Cyrille Berger</dc:creator>
<guid>http://blog.cberger.net/2009/11/20/opengtl-0-9-12-and-shiva-noise/</guid>
<description><![CDATA[OpenGTL 0.9.12 Earlier today I made a new release of OpenGTL (download page), version 0.9.12, for th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2>OpenGTL 0.9.12</h2>
<p>Earlier today I made a new release of <a href="http://www.opengtl.org">OpenGTL</a> (<a href="http://www.opengtl.org//Download.html">download page</a>), version 0.9.12, for that release <a href="http://tasks.opengtl.org/index.php?do=index&#38;tasks=&#38;project=1&#38;due=23&#38;status[]=">23 tasks</a> were completed, the main changes are:</p>
<ul>
<li>Fixing thread safety issues at run time.</li>
<li>Progress report.</li>
<li>Many new mathematical functions for the Shiva standard library.</li>
<li>Replacement of the Shiva kernels random functions.</li>
<li>OpenGTL is now compiling and running on Mac OS X.</li>
</ul>
<p>The first two points are important changes for <a href="http://www.krita.org">krita</a>, since the first one meant that with the previous releases we had to use mutex while executing Kernels, preventing to benefit from multi-core. The second one means the user can see something is happening in Krita when a filter is processed.</p>
<h2>Random functions in Shiva</h2>
<p>This new release also break the Shiva language compared to previous release, I try to prevent that, but since the language is still very young it was bound to happen. In previous releases I quickly introduced a <em>rand()</em> function, because I wanted to write a <a href="http://en.wikipedia.org/wiki/Perlin_noise">perlin noise</a> generator. The problem with <em>rand()</em> is that it does not take a seed parameter, meaning that the function use the global seed, meaning that two consecutive call to ther <em>perlin noise</em> generator kernel gives two different results, without any kind of control. For graphics, we need to make sure that the result are reproductible, so now in 0.9.12, the function <em>rand()</em> has been replace by one that takes a seed parameter <em>rand(output int seed)</em>.</p>
<p>Such a function is usefull at init time, to construct random structures, like those needed by the <em>perlin noise</em>. But this is not sufficient, we also need a random function that can be used while processing a pixel, and one that would always return the same value for a given pixel and a given seed, for instance to write a <a href="http://en.wikipedia.org/wiki/Salt_and_pepper_noise">salt and pepper noise</a> generator.</p>
<p>The problem of the <em>rand(output int seed)</em> function is that it works by incrementing the seed parameter, so that next time you call it, it gives a different result, so as long as the call are made sequentially it would work fine. But in case of Shiva (or Krita, for that matter), we cannot guarantee that those call will be made sequentially,  and it is not possible to keep a value between the computation of two different pixels. Because we might just be interested in generating part of the image, or we might be executing the kernel in a multi-threaded environment. To solve this problem, about six monthes ago, in Krita, we developed an algorithm that takes the pixel coordinate and the seed, and return a pseudo-random number. For 0.9.12, I copied that algorithm in Shiva, giving birth to the second new function for random number generation, which is <em>rand(int x, int y, int seed)</em>.</p>
<p>The code for the <em>salt and pepper noise</em> generator is:</p>
<p><code>kernel Noise<br />
{<br />
&#160;&#160;void evaluatePixel(out pixel4 result)<br />
&#160;&#160;{<br />
&#160;&#160;&#160;&#160;int x = result.coord.x;<br />
&#160;&#160;&#160;&#160;int y = result.coord.y;<br />
&#160;&#160;&#160;&#160;for(int i = 0; i &#60; 3; ++i)<br />
&#160;&#160;&#160;&#160;{<br />
&#160;&#160;&#160;&#160;&#160;&#160;result[i] = frand(x, y, 32);<br />
&#160;&#160;&#160;&#160;}<br />
&#160;&#160;&#160;&#160;result.setAlpha( 1.0);<br />
&#160;&#160;}<br />
}<br />
</code></p>
<p>The code for the <em>perlin noise</em> generator is slightly more complicated and can be watch in the <a href="http://bitbucket.org/opengtl/opengtl/src/tip/OpenShiva/tests/imagegenerators/PerlinNoise.shiva">opengtl mercurial repository</a>.</p>
<p>And the resulting images, <em>salt and pepper noise</em> on the left, and <em>perlin noise</em> on the right:</p>
<div style="text-align:center;"><img src="http://cyrille.diwi.org/images/kritablog/Noise.png" alt="" />&#160;<img src="http://cyrille.diwi.org/images/kritablog/PerlinNoise.png" alt="" /></p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA["Truthiness"…Do We Really Want to Know?]]></title>
<link>http://girliegirl1965.wordpress.com/2009/11/16/truthiness%e2%80%a6do-we-really-want-to-know/</link>
<pubDate>Mon, 16 Nov 2009 18:13:11 +0000</pubDate>
<dc:creator>girliegirl1965</dc:creator>
<guid>http://girliegirl1965.wordpress.com/2009/11/16/truthiness%e2%80%a6do-we-really-want-to-know/</guid>
<description><![CDATA[“Loose Change” was not easy for me to dismiss.  I watched it twice.  9/11 is an occurrence that is k]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-medium wp-image-271" title="9-11" src="http://girliegirl1965.wordpress.com/files/2009/11/9-111.jpg?w=200" alt="9-11" width="200" height="300" />“<a title="Loose Change" href="http://www.loosechange911.com/" target="_self">Loose Change</a>” was not easy for me to dismiss.  I watched it twice.  <a title="9/11" href="http://en.wikipedia.org/wiki/September_11_attacks" target="_self">9/11</a> is an occurrence that is kind of hard to dismiss—especially if you were caught in the midst of it like me.  Three days after we received this assignment, I connected with a very dear, old friend via <a title="Facebook" href="http://www.facebook.com/" target="_self">Facebook</a>.  My friend lives in <a title="Nigeria" href="http://www.nema.gov.ng/images/nigeria.gif" target="_self">Nigeria</a>.  On <a title="9/11" href="http://en.wikipedia.org/wiki/September_11_attacks" target="_self">September 11, 2001</a>, he lived in <a title="New York" href="http://www.what-you-make-it.com/images/city_New_York.jpg" target="_self">New York</a>. </p>
<p>After all of the pleasantries, he went on to tell me via our <a title="facebook" href="http://www.facebook.com/" target="_self">Facebook </a>exchange, “isn’t it wild, but my fondest memory of you occurred on <a title="9/11" href="http://en.wikipedia.org/wiki/September_11_attacks" target="_self">9/11</a>”.  Now, that’s a hell of thing to remember about a person.  What my friend Michael is referring to has to do with him connecting with me via <a title="AOL Instant Messenger" href="http://www.aim.com" target="_self">AOL instant messenger</a>.  Through <a title="AIM" href="http://www.aim.com" target="_self">AOL</a>, I found out my friend was alive, and as a result I was able to let his family in <a title="Washington, DC" href="http://mansfield.edu/student-affairs/media/images/Washington-DC.jpg" target="_self">Washington, DC </a>and in <a title="Nigeria" href="http://www.nema.gov.ng/images/nigeria.gif">Nigeria</a> know the same. </p>
<p>There was no “<a title="truthiness" href="http://en.wikipedia.org/wiki/Truthiness" target="_self">truthiness</a>” in that, only truth.</p>
<p>For me, “<a title="Loose Change" href="http://www.loosechange911.com/" target="_self">Loose Change</a>” only widens the gap of not knowing what happened that day.  If “<a title="truthiness" href="http://en.wikipedia.org/wiki/Truthiness" target="_self">truthiness</a>” is the term used to define the “<a title="Loose Change" href="http://www.loosechange911.com/" target="_self">Loose Change</a>” documentary, okay I guess I like the other hundreds of thousands of people I will have to go with it.  Do we really want to know what happened that day?  Adding insult to injury, if the journey into <a title="Wikipedia" href="http://www.wikipedia.org" target="_self">Wikipedia</a> is much more complicated then <a title="9/11" href="http://en.wikipedia.org/wiki/September_11_attacks" target="_self">9/11</a>, we’re really in trouble, aren’t we? </p>
<p>As I have said in previous posts, <a title="Wikipedia" href="http://www.wikipedia.org" target="_self">Wikipedia </a>is a <a title="collaborative" href="http://dictionary.reference.com/browse/collaborative" target="_self">collaborative </a>effort.  Don’t get me wrong, like the idea of <a title="crowdsourcing" href="http://crowdsourcing.typepad.com/" target="_self">crowd-souring</a> knowledge into one large encyclopedia, but we have to draw the line somewhere.  We should all trust <a title="Wikipedia" href="http://www.wikipedia.org" target="_self">Wikipedia</a> enough to quench our curiosities, but know we can’t stop there.   Besides from what I’ve learned, <a title="Wikipedia" href="http://www.wikipedia.org" target="_self">Wikipedia’s</a> “truthiness” might be to our detriment—just ask newsman <a title="John Seigenthaler" href="http://www.usatoday.com/news/opinion/editorials/2005-11-29-wikipedia-edit_x.htm" target="_self">John Seigenthaler</a>.</p>
<p>Here’s my truth, I am more inclined to trust <a title="Enclyclopedia Britannica" href="http://en.wikipedia.org/wiki/Encyclopedia_britannica" target="_self">Encyclopedia Britannica</a> over <a title="Wikipedia" href="http://www.wikipedia.org" target="_self">Wikipedia</a>.  Perhaps, it’s generational, or maybe it’s because I know <a title="enclyclopedia" href="http://www.britannica.com/" target="_self">encyclopedias</a> have been around longer, for the most part are proven, and have expert oversight.  Attempting to make <a title="Wikipedia" href="http://www.wikipedia.org" target="_self">Wikipedia </a>an expert-led encyclopedia at this point in time defeats its original purpose.  If we invite the experts in, what happens to the <a title="crowd" href="http://www.en.wikipedia.org/wiki/Crowd" target="_self">crowd</a>? </p>
<p>Damn, just one more thing to haggle over.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Even Churches Form a Crowd:Crowd-sourcing - Response #8]]></title>
<link>http://girliegirl1965.wordpress.com/2009/11/09/even-churches-form-a-crowdcrowd-sourcing-response-8/</link>
<pubDate>Mon, 09 Nov 2009 22:39:26 +0000</pubDate>
<dc:creator>girliegirl1965</dc:creator>
<guid>http://girliegirl1965.wordpress.com/2009/11/09/even-churches-form-a-crowdcrowd-sourcing-response-8/</guid>
<description><![CDATA[Crowd-sourcing isn’t isolated to techies, retailers, and academicians; it’s also used by the faith c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a title="crowdsourcing" href="http://en.wikipedia.org/wiki/Crowdsourcing" target="_self">Crowd-sourcing </a>isn’t isolated to <a title="techie" href="http://en.wikipedia.org/wiki/Techie" target="_self">techies</a>, <a title="Retailer" href="http://en.wikipedia.org/wiki/Retailers" target="_self">retailers</a>, and <a title="academicians" href="http://en.wikipedia.org/wiki/Academicians" target="_self">academicians</a>; it’s also used by the <a title="faith community" href="http://en.wikipedia.org/wiki/Faith-based_community" target="_self">faith community</a>.  Faith leaders and churches around the country have moved towards crowd-sourcing as a means to develop and promote their print and online media, engage readership, and deliver messages of faith to the masses. </p>
<p><a title="Rick Warren" href="http://www.christianpost.com/article/20090504/rick-warren-featured-in-time-s-list-of-most-influential-people/index.html" target="_blank">Rick Warren</a>, one of America&#8217;s most influential religious leaders and <a title="Rick Warren" href="http://www.youtube.com/watch?v=uthH3ywP5Ek" target="_blank">guest speaker </a>at President Obama&#8217;s inauguration employed the services of <a title="99 designs" href="http://99designs.com/?tp11=c" target="_self">99 designs </a>to run an <a title="open source" href="http://en.wikipedia.org/wiki/Open_source" target="_self">open source </a>contest to solicit graphic designs for the cover of his new book entitled &#8220;<a title="The hope you need" href="http://search.barnesandnoble.com/The-Hope-you-Need/Rick-Warren/e/9780310327110" target="_blank">The Hope You Need:  From the Lord&#8217;s Prayer</a>&#8220;.  Ministers like Warren see crowd-sourcing not just as a means to solicit ideas from gifted and talented people, but also believe it has the potential to facilitate meaningful collaborations between the religious community and the secular community.  In short, religious leaders now realize that if they want religion to remain in the forefront of mainstream society, they have to engage mainstream tools and concepts.</p>
<p>In addition, crowd-sourcing has become a practice of many local churches around the country.   Instead of a pastor solely developing the content for a Sunday service, many of them now solicit input from their congregants and the community-at-large.  By engaging the “crowd”, some pastors believe they have been able to reach populations of people like <a title="baby boomers" href="http://en.wikipedia.org/wiki/Baby_boomer" target="_self">Baby Boomers </a>and younger people who might not otherwise participate in traditional organized religious activities.  As a result of engaging crowd-sourcing to develop content for sermons, congregations around the country have reported exponential growth in their memberships because the congregants seem to enjoy having input into their church doctrine.</p>
<p>I think it was pretty ingenuous of <a title="Rick Warren" href="http://en.wikipedia.org/wiki/Rick_Warren" target="_blank">Rick Warren</a> to use crowd-sourcing as a means to not only get a new cover design for his book, but to also reach people who might need spiritual guidance.  Likewise, I applaud the churches that have veered towards crowd-sourcing as a way to expand their congregations.  Maybe, the faith community is on to something.     </p>
<p>After all, if we can come together to design <a title="t-shirts" href="http://www.t-shirttalk.com/2008/04/13/tips-for-building-a-successful-crowdsourcing-t-shirt-community/" target="_self">t-shirts</a>, decide the name of a  new <a title="mascara" href="http://habr.biz/crowdsourcing-generates-excitement-and-instant-buy-in-for-product-launch.html" target="_self">mascara</a>, and even help <a title="Saturday Night Live" href="http://en.wikipedia.org/wiki/Saturday_Night_Live" target="_self">Saturday Night Live </a>writers drum up scripts, what’s the harm in forming a crowd to help spread the gospel?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A nova era computacional]]></title>
<link>http://virtuabox.wordpress.com/2009/10/09/a-nova-era-computacional/</link>
<pubDate>Sat, 10 Oct 2009 00:05:18 +0000</pubDate>
<dc:creator>Master Marcos</dc:creator>
<guid>http://virtuabox.wordpress.com/2009/10/09/a-nova-era-computacional/</guid>
<description><![CDATA[Nosso endereço agora é www.virtuabox.com.br Clique aqui para continuar lendo essa matéria no novo en]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.virtuabox.com.br/?p=726"><img class="aligncenter size-full wp-image-1456" style="border:0 none;" src="http://virtuabox.wordpress.com/files/2009/10/ss_a_nova_era_computacional.png" alt="" width="400" height="231" /></a>Nosso endereço agora é www.virtuabox.com.br</p>
<p><a href="http://www.virtuabox.com.br/?p=726" target="_self">Clique aqui</a> para continuar lendo essa matéria no novo endereço.</p>
<p><a href="http://virtuabox.wordpress.com/2009/10/17/virtua-box-agora-e-com-br/">Saiba mais sobre nossa mudança de endereço</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Notepad ++]]></title>
<link>http://vidgyan.wordpress.com/2009/09/11/notepad/</link>
<pubDate>Fri, 11 Sep 2009 15:41:00 +0000</pubDate>
<dc:creator>sjmach</dc:creator>
<guid>http://vidgyan.wordpress.com/2009/09/11/notepad/</guid>
<description><![CDATA[Notepad++ is an open source software which lets you edit many programming language files like perl,p]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Notepad++ is an open source software which lets you edit many programming language files like perl,php and many many more&#8230;<br />Its free so get it <a href="http://notepad-plus.sourceforge.net/uk/site.htm">HERE..</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Open-source crescer&aacute; 22% at&eacute; 2013]]></title>
<link>http://tecnordeste.wordpress.com/2009/08/01/open-source-crescer-22-at-2013/</link>
<pubDate>Sat, 01 Aug 2009 13:03:37 +0000</pubDate>
<dc:creator>Brenno Emanuel</dc:creator>
<guid>http://tecnordeste.wordpress.com/2009/08/01/open-source-crescer-22-at-2013/</guid>
<description><![CDATA[Segundo uma pesquisa feita pela consultoria norte-americana IDC o mercado de softwares de código abe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://tecnordeste.files.wordpress.com/2009/08/softwarelivre.jpg"><img title="software livre" style="display:inline;border-width:0;margin:0 10px 5px 0;" height="186" alt="software livre" src="http://tecnordeste.files.wordpress.com/2009/08/softwarelivre_thumb.jpg?w=204&#038;h=186" width="204" align="left" border="0" /></a> </p>
<p align="justify">Segundo uma pesquisa feita pela consultoria norte-americana IDC o mercado de softwares de código aberto crescerá 22% até 2013. E é esperado que o segmento conquiste receita de US$8,1 bilhão.</p>
<p align="justify">As previsões positivas do mercado têm origem devido a maior aceitação dos programas de código aberto pelas grandes corporações no último ano. Outro fator apontado pelo IDC para o crescimento é o cenário econômico. (Outro fator é a mancada da Microsoft com a porcaria do Windows Vista) </p>
<p align="justify">Para o vice-presidente do grupo de soluções corporativas da IDC, Michael Fauscette, o mercado de código aberto se beneficiou durante <strike>o lançamento do Vista</strike> a crise econômica mundial. De acordo com Fauscette, as companhias encaram o segmento como estratégia empresarial.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Stallman, en desacuerdo con la propuesta del Partido Pirata ]]></title>
<link>http://elsoftwarelibre.wordpress.com/2009/07/26/stallman-en-desacuerdo-con-la-propuesta-del-partido-pirata/</link>
<pubDate>Sun, 26 Jul 2009 15:09:47 +0000</pubDate>
<dc:creator>Soft-Libre</dc:creator>
<guid>http://elsoftwarelibre.wordpress.com/2009/07/26/stallman-en-desacuerdo-con-la-propuesta-del-partido-pirata/</guid>
<description><![CDATA[Richard Stallman Richard Stallman comenta acerca de cómo la regla de los cinco años perjudica al sof]]></description>
<content:encoded><![CDATA[Richard Stallman Richard Stallman comenta acerca de cómo la regla de los cinco años perjudica al sof]]></content:encoded>
</item>
<item>
<title><![CDATA[An Open Source Software &amp; Operating systems workshop.]]></title>
<link>http://isurubmv.wordpress.com/2009/07/13/an-open-source-software-operating-systems-workshop/</link>
<pubDate>Mon, 13 Jul 2009 09:11:09 +0000</pubDate>
<dc:creator>isurubmv</dc:creator>
<guid>http://isurubmv.wordpress.com/2009/07/13/an-open-source-software-operating-systems-workshop/</guid>
<description><![CDATA[An open source Software &amp; Operating systems workshop. An open source Software &amp; Operating sy]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- ======================================================= --> <!-- Created by AbiWord, a free, Open Source wordprocessor.  --> <!-- For more information visit http://www.abisource.com.    --> <!-- ======================================================= --> <!-- #toc, .toc, .mw-warning { 	border: 1px solid #aaa; 	background-color: #f9f9f9; 	padding: 5px; 	font-size: 95%; } #toc h2, .toc h2 { 	display: inline; 	border: none; 	padding: 0; 	font-size: 100%; 	font-weight: bold; } #toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle { 	text-align: center; } #toc ul, .toc ul { 	list-style-type: none; 	list-style-image: none; 	margin-left: 0; 	padding-left: 0; 	text-align: left; } #toc ul ul, .toc ul ul { 	margin: 0 0 0 2em; } #toc .toctoggle, .toc .toctoggle { 	font-size: 94%; }@media print, projection, embossed { 	body { 		padding-top:1in; 		padding-bottom:1in; 		padding-left:1in; 		padding-right:1in; 	} } body { 	font-family:'Times New Roman'; 	color:#000000; 	widows:2; 	font-style:normal; 	text-indent:0in; 	font-variant:normal; 	font-weight:normal; 	font-size:12pt; 	text-decoration:none; 	text-align:left; } table { } td { 	border-collapse:collapse; 	text-align:left; 	vertical-align:top; } p, h1, h2, h3, li { 	color:#000000; 	font-family:'Times New Roman'; 	font-size:12pt; 	text-align:left; 	vertical-align:normal; } --></p>
<div>
<h2>An open source Software &#38; Operating systems workshop.</h2>
<p><img class="alignleft size-thumbnail wp-image-193" title="linux-online-inc" src="http://isurubmv.wordpress.com/files/2009/07/linux-online-inc1.jpg?w=125" alt="linux-online-inc" width="125" height="150" />An open source Software &#38; Operating systems workshop will be conducted by Two Experts of this clan here in Batuwangala Maha Vidyalaya From 12th July 2009 to 13th July 2009.We are currently using both &#8216;OS&#8217;es and we are planing to remove totally to opensource.We Batuwangala Maha Vidyalaya and the Batuwangala evillage project will be befitted by this work shop.The Principal Mrs.Thilaka Wijenayake was the body behind this workshop and she toiled very much for the arrangements.We would like to invite all the people from out side to join with us for this work shop.please contact through the web sites fro making reservations.</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[L'open-source applicatif métier]]></title>
<link>http://ginkgomanagement.wordpress.com/2009/05/14/lopen-source-applicatif-metier/</link>
<pubDate>Thu, 14 May 2009 16:35:37 +0000</pubDate>
<dc:creator>ginkgo</dc:creator>
<guid>http://ginkgomanagement.wordpress.com/2009/05/14/lopen-source-applicatif-metier/</guid>
<description><![CDATA[Plus économique, plus moderne, plus réactif, un logiciel Open-Source est à l&#8217;informatique ce q]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Plus économique, plus moderne, plus réactif, un logiciel Open-Source est à l&#8217;informatique ce qu&#8217;un médicament générique est à l&#8217;industrie pharmaceutique.<br />
Aujourd&#8217;hui, les logiciels Open-Source ne sont plus réservés aux seuls informaticiens, alors pourquoi ne pas vous y mettre maintenant?</p>
<p style="text-align:justify;">Direction Commerciale et Marketing</p>
<p style="text-align:justify;">Avec <a title="SugarCRM" href="http://www.sugarcrm.com/crm/fr" target="_blank">SugarCRM</a>, vous optimisez votre activité commerciale : depuis les campagnes marketing de détection d&#8217;intérêt jusqu&#8217;aux affaires signées en passant par les relances de prospects, la gestion de vos rendez-vous&#8230; Et il vous est possible de personnaliser afin qu&#8217;il soit au plus près de votre problématique métier.</p>
<p style="text-align:justify;">Direction générale, financière</p>
<p style="text-align:justify;">Avec <a title="JasperReports" href="http://www.jaspersoft.com/fr/node/204" target="_blank">JasperReports</a>, vous disposez de tableaux de bord synthétiques de votre activité : la suite décisionnelle de JasperReports inclut des états traditionnels (tableaux, graphiques&#8230;) mais aussi un puissant moteur d&#8217;analyses multidimensionnelles.</p>
<p style="text-align:justify;">Direction Informatique</p>
<p style="text-align:justify;">Avec <a title="Talend" href="http://fr.talend.com/index.php" target="_blank">Talend</a>, vous pouvez réellement utiliser un outil entièrement graphique pour décrire et construire les échanges de données entre les différentes applications de votre Système d&#8217;Information&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ewolucja, mocium panie !  ]]></title>
<link>http://psycholep.wordpress.com/2009/03/29/ewolucja-mocium-panie/</link>
<pubDate>Sun, 29 Mar 2009 09:56:20 +0000</pubDate>
<dc:creator>psycholep</dc:creator>
<guid>http://psycholep.wordpress.com/2009/03/29/ewolucja-mocium-panie/</guid>
<description><![CDATA[Czy ewolucja zmierza, w kierunku tworzenia się społeczności wolnego oprogramowania ? Będąc dzieckiem]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><blockquote><p>Czy ewolucja zmierza, w kierunku tworzenia się społeczności wolnego oprogramowania ? </p></blockquote>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/x35AIGJaM5M&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/x35AIGJaM5M&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<blockquote><p>Będąc dzieckiem ma się wrażenie, że świat dorosłych próbuje ustalić swojego prawa. Ale czy to ma sens ?</p></blockquote>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/7BOCfzkXJOc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/7BOCfzkXJOc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<blockquote><p>Trochę historii o dwóch sympatycznych OSah, bzzzzzzzzzz</p></blockquote>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ObcC441YIvs&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ObcC441YIvs&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Criando um projeto Maven no linux]]></title>
<link>http://fabriciojf.wordpress.com/2009/03/22/criando-um-projeto-maven-no-linux/</link>
<pubDate>Sun, 22 Mar 2009 22:18:11 +0000</pubDate>
<dc:creator>fabriciojf</dc:creator>
<guid>http://fabriciojf.wordpress.com/2009/03/22/criando-um-projeto-maven-no-linux/</guid>
<description><![CDATA[O que é Maven? Maven é uma ferramenta da Apache Software Foundation usada para gerenciamento e autom]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>O que é Maven? </strong></p>
<p><a title="Maven" href="http://pt.wikipedia.org/wiki/Apache_Maven">Maven</a> é uma ferramenta da <a title="Apache" href="http://pt.wikipedia.org/wiki/Apache_Software_Foundation">Apache Software Foundation</a> usada para gerenciamento e automação de projetos em Java. Com ele você consegue gerenciar com mais facilidade as dependências do seu projeto. Ele é similar ao <a title="Apache Ant" href="http://pt.wikipedia.org/wiki/Apache_Ant">Ant</a>, também da apache porém é mais fácil de configurar.</p>
<p>O <a href="http://pt.wikipedia.org/wiki/Apache_Maven">Maven</a> centraliza as informações do projeto em um arquivo chamado <a href="http://pt.wikipedia.org/wiki/Project_Object_Model">pom.xml (Project Object Model)</a>. Neste arquivo são descritos dados como: nome do projeto, informações dos desenvolvedores, dados do repositório e sistema de controle de versão, dependências de bibliotecas externas entre outros…</p>
<p><strong>Instalando o Maven </strong></p>
<p>Para instalar o <a href="http://pt.wikipedia.org/wiki/Apache_Maven">maven</a> em seu ambiente de trabalho digite o seguinte comando no console:</p>
<p><em><strong>sudo apt-get install maven2</strong></em></p>
<p>Ao instalar o <a href="http://repo1.maven.org/maven2/">maven2</a>, ele cria um repositório em sua máquina que pode ser acessado através do comando:</p>
<p><strong><em>cd ~/.m2/repository</em></strong></p>
<p>Neste repositório ele colocará todas as bibliotecas que você declarar nos <a href="http://pt.wikipedia.org/wiki/Project_Object_Model">pom.xml </a>das suas aplicações. O interessante é que estas aplicações ficam minúsculas no controle de versão, já que as bibliotecas estão centralizadas no <a href="http://pt.wikipedia.org/wiki/Apache_Maven">maven</a> e não precisam mais acompanhar os fontes dos projetos.</p>
<p>No <a href="http://pt.wikipedia.org/wiki/Apache_Maven">maven</a>, toda vez que você compila a aplicação ele executa o download daquelas libs declaradas que não constam no repositório local e, por isso, se você baixar os fontes do projeto em outra máquina, basta instalar o <a href="http://pt.wikipedia.org/wiki/Apache_Maven">maven</a> e ele resolverá todas as dependências para você.</p>
<p><strong>Agora que o ambiente está preparado, vamos criar a pasta do projeto? </strong></p>
<p>Crie e acesse a pasta que receberá nosso projeto <a href="http://pt.wikipedia.org/wiki/Apache_Maven">maven</a>. ex:</p>
<p><strong><em>mkdir helloworld<br />
cd helloworld</em></strong></p>
<p><strong>O que são archetypes?</strong></p>
<p><strong> </strong>O <a href="http://pt.wikipedia.org/wiki/Apache_Maven">Maven</a> trabalha com archetypes ou arquétipos que tem por significado, segundo o site <a title="Unilae" href="http://www.eon.com.br/unilae/unil351.htm">http://www.eon.com.br/unilae/unil351.htm</a>, padrão original ou modelo, a partir do qual outras coisas da mesma natureza são feitas. Protótipo Ideal das coisas, idéia que serve de modelo em relação a outras. Ou seja, você cria projetos utilizando modelos pré-definidos segundo a necessidade e  o archetype se encarrega de organizar toda a estrutura inicial. Para um projeto web, por exemplo, o archetype montaria a seguinte estrutura de pastas:</p>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span lang="EN-US">/pom.xml</span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span lang="EN-US">src</span>
<ul style="margin-top:0;" type="square">
<li class="MsoNormal"><span lang="EN-US">main</span>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span lang="EN-US">java</span></li>
<li class="MsoNormal"><span lang="EN-US">resources</span></li>
<li class="MsoNormal"><span lang="EN-US">webapp</span></li>
</ul>
</li>
<li class="MsoNormal"><span lang="EN-US">test</span>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span lang="EN-US">java</span></li>
<li class="MsoNormal"><span lang="EN-US">resources</span></li>
<li class="MsoNormal"><span lang="EN-US">webapp</span></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="MsoNormal"><span lang="EN-US">readme.txt</span></li>
<li class="MsoNormal"><span lang="EN-US">license.txt</span></li>
</ul>
<p>Esta estrutura é um padrão para projetos java web. Dentro da pasta raiz &#8216;/&#8217; não deve existir nada além do pom.xml, o src, o readme.txt e o license.txt. Todas as classes java devem ficar dentro de /src/main/java. Todos os arquivos relativos a web (jsp, html, xhtml) devem ficar dentro de /webapp e os demais arquivos, como os .properties, devem ficar dentro de /resources.</p>
<p>Se o seu projeto for utilizar mais de uma linguagem de programação, como por exemplo, Java e Ruby, você deve criar uma pasta para os códigos ruby no mesmo nível da pasta Java. ex:</p>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span lang="EN-US">/pom.xml</span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span lang="EN-US">src</span>
<ul style="margin-top:0;" type="square">
<li class="MsoNormal"><span lang="EN-US">main</span>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span lang="EN-US">java</span></li>
<li class="MsoNormal"><span lang="EN-US">ruby</span></li>
<li class="MsoNormal"><span lang="EN-US">resources</span></li>
<li class="MsoNormal"><span lang="EN-US">webapp</span></li>
</ul>
</li>
<li class="MsoNormal"><span lang="EN-US">test</span>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span lang="EN-US">java</span></li>
<li class="MsoNormal"><span lang="EN-US">ruby</span></li>
<li class="MsoNormal"><span lang="EN-US">resources</span></li>
<li class="MsoNormal"><span lang="EN-US">webapp</span></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="MsoNormal"><span lang="EN-US">readme.txt</span></li>
<li class="MsoNormal"><span lang="EN-US">license.txt</span></li>
</ul>
<p>A pasta test contém a mesma estrutura da pasta main, mas, como o próprio nome sugere, é utilizada apenas para testes.</p>
<p>Quando você compila um projeto no <a href="http://pt.wikipedia.org/wiki/Apache_Maven">maven</a> com o <em><strong>mvn compile</strong></em>, ele cria uma pasta target no nível do /src para publicar a aplicação, por isso, quando for remeter seu projeto para o repositório do controle de versão, não envie esta pasta, execute o comando <em><strong>mvn clean</strong></em> e ele limpará o projeto deletando os arquivos desnecessários.</p>
<p>Agora que você conhece o archetype crie o projeto Maven através do comando:</p>
<p><em><strong>mvn archetype:generate</strong></em></p>
<p>Este comando, <em><strong>archetype:generate</strong></em>, irá iniciar um wizard para a criação do projeto. O processo é muito intuitivo basta apenas entender o que significam os termos que serão solicitados durante a criação. São eles:</p>
<p><em><strong>groupId </strong></em>:  domínio do fabricante ex: br.com.fabriciojf;<br />
<em><strong>artifactId</strong></em> :  nome do projeto ex: helloworld;<br />
<em><strong>versao</strong></em> :  versão do projeto. O maven utiliza o padrão <strong>&#8216;1.0 SNAPSHOT</strong>&#8216; para a versão corrente em desenvolvimento, por isso, é bom utilizarmos o mesmo para o nosso projeto;<br />
<em><strong>package</strong></em> :  nome do pacote java que deverá ser gerado inicialmente ex: br.com.fabriciojf.helloworld;</p>
<p>Após esses passos, serão listados os archetypes disponíveis no repositório oficial do maven. Você deve escolher a opção desejada e pressionar Y. Pronto, o projeto já está criado. Agora podemos acrescentar suas dependências no pom.xml e criar os arquivos da aplicação em sua ide de preferência, respeitando a hierarquia de pastas descrita acima. O interessante é que o projeto criado pelo maven já é reconhecido pelo Netbeans e pelo Eclipse, por isso, não é necessário criar um novo projeto com fontes existentes basta abri-los normalmente.</p>
<p>Se você não encontrou um archetype que sirva às suas necessidades, baixe-o de outro repositório, basta descobrir sua url e informá-la para o <em><strong>archetypeCatalog</strong></em>. Ex:  Para baixar um archetype JSF/JSP de outro repositório, digite na linha de comando:</p>
<p><em><strong>mvn archetype:generate -DarchetypeCatalog=http://myfaces.apache.org</strong></em></p>
<p>Onde -D é o atributo que define o novo valor para a variável <strong><em>archetypeCatalog</em></strong>. Este comando altera o catálogo do maven apenas neste momento, após sua execução ele retornará ao repositório default.</p>
<p>Bem pessoal, esta é minha primeira matéria sobre Java aqui no portal. Espero ter ajudado aqueles que ainda não utilizam sistemas de gerenciamento e automação de projetos.</p>
<p>Por: Fabrício S Costa<br />
Informações Técnicas e Revisão: Fernando Souza</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Apache Geronimo]]></title>
<link>http://ntnlps.wordpress.com/2009/03/05/apache-geronimo/</link>
<pubDate>Thu, 05 Mar 2009 12:34:40 +0000</pubDate>
<dc:creator>ntnlps</dc:creator>
<guid>http://ntnlps.wordpress.com/2009/03/05/apache-geronimo/</guid>
<description><![CDATA[Apache Geronimo is a fully certified Java EE 5 Open Source applicationserver. http://geronimo.apache]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Apache Geronimo is a fully certified Java EE 5 Open Source applicationserver.<br />
<a href="http://geronimo.apache.org/">http://geronimo.apache.org/</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Economy and Open Source]]></title>
<link>http://arqbrulo.wordpress.com/2008/10/20/the-economy-and-open-source/</link>
<pubDate>Mon, 20 Oct 2008 23:38:13 +0000</pubDate>
<dc:creator>beanerschnitzel</dc:creator>
<guid>http://arqbrulo.wordpress.com/2008/10/20/the-economy-and-open-source/</guid>
<description><![CDATA[It&#8217;s out there, you&#8217;ve read it, you&#8217;ve seen it, you&#8217;re living it and I bet y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://arqbrulo.files.wordpress.com/2008/10/crunchbarcredit-780544.jpg"><img class="alignleft size-full wp-image-14" title="crunchbarcredit-780544" src="http://arqbrulo.wordpress.com/files/2008/10/crunchbarcredit-780544.jpg" alt="" width="192" height="192" /></a>It&#8217;s out there, you&#8217;ve read it, you&#8217;ve seen it, you&#8217;re living it and I bet you are just tired of it. It&#8217;s the &#8220;world-wide bankruptcy&#8221; that seems to be falling upon us. Well, here is another blog about this so-called &#8220;credit crunch&#8221;, but this time, it&#8217;s focused on technology, more specifically, open source. </p>
<p>It&#8217;s my opinion that open source is the way to help, not only individuals, but also big, multi-national companies, and even developing countries, get back on their feet.</p>
<p>From the individual point-of-view, it&#8217;s a no brainer. Open-source means not spending money to have the latest version of a program. Lets take word processing as an example. Office 2007 can cost you $150+, while the latest version of <a href="http://www.openoffice.org">OpenOffice.org</a>, which has the same functionality as Office 2007, will cost you exactly $0.  Sure, you can keep running Office XP that you bought a few years back, but not only are you missing the newest features, you are also missing the security fixes. That means that you are vulnerable to having your computer screwed up or giving others access to your personal files.</p>
<p>It&#8217;s not only word processing where you can save money. Almost any piece of software that you use will have an equivalent free alternative, right down to the operating system. <a href="http://www.linux.org">Linux</a> has been progressing a lot since it was first introduced more than 25 years ago. It is no longer for the geeks only. Anybody can download, test, install and start using <a href="http://distrowatch.com/">any distribution</a> of Linux out there (<a href="http://www.ubuntu.com/">Ubuntu</a> being my personal favorite) and before you know it, be using it just as you would be using your favorite operating system.</p>
<p>The same would apply to small businesses, as well as huge corporations, except their savings would be multiplied even more. Now for companies that make software, they can benefit from open source even more. By releasing their software to the public, they can save money on having to pay employees. Instead of having to pay hundreds of employees to build their programs, they can give the code to the world so that thousands of volunteers can modify it and make it even better, without costing the company as much. There are <a href="http://www.junauza.com/2008/03/from-evil-to-good-list-of-formerly.html">many examples</a> of companies going the open-source way, IBM, Sun</p>
<p>Businesses everywhere are loosing anywhere from thousands to billions of dollars, depending on their size. By taking the open source approach, they can lower their budget or put that money where it is needed the most. </p>
<p>But how about developing countries? Well, there&#8217;s plenty of ways that they can benefit. With the help of technology they can grow bigger, better, stronger and faster, and open source is the best way to do it. <a href="http://laptop.org/">OLPC</a> (One Laptop Per Child) is an organization that wants to take technology to the most remote and poorest of countries, offering a $200 laptop. But we can all do our share. Donating your used computer, installing Ubuntu on it, and handing it out to the most needed will have the same impact. Giving citizens access to technology can make their own economy grow, giving that country a fighting chance in the globalized economy. </p>
<p>By using open-source software, and living in the open-source mentality, we can give the vast majority the same opportunities to a better future.  There are many ways to help without even knowing anything about writing computer programs. Find an open-source project that interests you and become an active volunteer. Help new comers fix issues that maybe you&#8217;ve experienced before. Report bugs that you&#8217;ve encountered to make a better product. Help translating that software to a different language that you might know. Just imagine how many Africans could benefit if you where to translate a program to Fula.</p>
<p><em>UPDATE: </em>As ubuntucat has pointed out in the comments. OpenOffice.org does not have the same functionality as Office 2007. However, what OpenOffice.org does is more than enough for the above-average user. The same applies to any other open-source program. I personally use Ubuntu 95+% of the time, but there are still a couple of programs that I cannot run in Ubuntu, not even under Wine, but for the vast majority, Linux will meet all their needs.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[NEWS: GNU OS 25th Aniversary]]></title>
<link>http://openbytes.wordpress.com/2008/09/11/news-gnu-os-25th-aniversary/</link>
<pubDate>Thu, 11 Sep 2008 17:28:16 +0000</pubDate>
<dc:creator>openbytes</dc:creator>
<guid>http://openbytes.wordpress.com/2008/09/11/news-gnu-os-25th-aniversary/</guid>
<description><![CDATA[Article by GoblinRFD On the 27th September this year the GNU OS has its 25th aniversary.  Popular ce]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Article by GoblinRFD<br />
</strong></p>
<p><a href="http://www.gnu.org/fry/happy-birthday-to-gnu.html"><img class="alignleft size-full wp-image-187" title="fryfry" src="http://openbytes.wordpress.com/files/2008/09/fryfry.png" alt="" width="298" height="298" /></a>On the 27th September this year the GNU OS has its 25th aniversary.  Popular celebrity Stephen Fry has produced a short video encouraging the use of free software.  As usual he presents in a dignified and classy way, and great kudos need to go to Mr Fry for giving up his time for a great project.</p>
<p>I am sure that people wont need reminding that the Software Freedom Day is on the 20th of this month.</p>
<p>Now the all important links:</p>
<p><a href="http://www.fsf.org/news/freedom-fry/">Click here for the FSF press release</a></p>
<p><a href="http://www.gnu.org/fry/happy-birthday-to-gnu.html">Click here for the Stephen Fry Video (you can download it or stream)</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Applications that only need your pen drive to work......]]></title>
<link>http://vidgyan.wordpress.com/2008/06/23/applications-that-only-need-your-pen-drive-to-work/</link>
<pubDate>Mon, 23 Jun 2008 16:45:00 +0000</pubDate>
<dc:creator>sjmach</dc:creator>
<guid>http://vidgyan.wordpress.com/2008/06/23/applications-that-only-need-your-pen-drive-to-work/</guid>
<description><![CDATA[There are a large number of applications that you can carry in your pen drive (USB DRIVE).Suppose yo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>There are a large number of applications that you can carry in your pen drive (USB DRIVE).Suppose you need a browser to access Internet in  your office and Internet explorer is either block or unavailable.</p>
<p><a href="http://bp3.blogger.com/_C2oVL2vnwtg/SF_POJIqctI/AAAAAAAAAe4/UUZpWJekrO4/s1600-h/pen.jpg"><img src="http://bp3.blogger.com/_C2oVL2vnwtg/SF_POJIqctI/AAAAAAAAAe4/UUZpWJekrO4/s320/pen.jpg" border="0" /></a>
<p>To solve this problem ,you can simply copy Mozilla FireFox files from your hard disk and store it to your pen drive.Then you can start FireFox by simply clicking on firefox.exe(i.e. its executable file)and access the web in your office.</p>
<p> 
<p>This is true for most open source applications .You can also have a portable media player on your pen drive ,most noteworthy among them are <a href="http://vidgyan.blogspot.com/2007/07/cannot-play-media-file.html">VLC PLAYER</a>and <a href="http://vidgyan.blogspot.com/2008/02/mplayer-ultimate-movie-player.html">MPLAYER.</a> </p>
<p>Thus you can use open source applications(software) via your pen drive.In some cases you can use them for different versions of windows.This is due to the fact that open source software are not dependent on windows entirely &#8230;..</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Back to Linux]]></title>
<link>http://dilipmannil.wordpress.com/2008/06/14/back-to-linux/</link>
<pubDate>Sat, 14 Jun 2008 19:15:08 +0000</pubDate>
<dc:creator>dilipmannil</dc:creator>
<guid>http://dilipmannil.wordpress.com/2008/06/14/back-to-linux/</guid>
<description><![CDATA[Installed Ubuntu 8.04 on my Dell laptop. Other than wifi most of the things are up and working. Feel]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Installed Ubuntu 8.04 on my Dell laptop. Other than wifi most of the things are up and working. Feel really nice, seeing how mature the Linux has become in terms of installation and support from the open source community. There was a time where the linux installation was nightmare and needed a couple of tries to get it working. fine!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Facebook To Go Open Source]]></title>
<link>http://thunkdifferent.wordpress.com/2008/05/27/facebook-to-go-open-source/</link>
<pubDate>Tue, 27 May 2008 14:35:49 +0000</pubDate>
<dc:creator>Web Media</dc:creator>
<guid>http://thunkdifferent.wordpress.com/2008/05/27/facebook-to-go-open-source/</guid>
<description><![CDATA[Sources report that Facebook will open source its Platform this week. read more | digg story]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sources report that Facebook will open source its Platform this week.</p>
<p><img src="http://digitaldaily.allthingsd.com/files/2007/08/zuckerberg-onion.jpg" alt="zuckerberg" width="225" height="287" /></p>
<p><a href="http://www.techcrunch.com/2008/05/26/facebook-to-open-source-facebook-platform/">read more</a> &#124; <a href="http://digg.com/tech_news/Facebook_To_Go_Open_Source">digg story</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hebraico bíblico [clássico/antigo] no Ubuntu]]></title>
<link>http://contrasenso.wordpress.com/2008/04/29/hebraico-biblico-classicoantigo-no-ubuntu/</link>
<pubDate>Tue, 29 Apr 2008 16:56:24 +0000</pubDate>
<dc:creator>André Tavares</dc:creator>
<guid>http://contrasenso.wordpress.com/2008/04/29/hebraico-biblico-classicoantigo-no-ubuntu/</guid>
<description><![CDATA[Quem estuda ou trabalha com línguas clássicas sabe como é um verdadeiro martírio conseguir inserir c]]></description>
<content:encoded><![CDATA[Quem estuda ou trabalha com línguas clássicas sabe como é um verdadeiro martírio conseguir inserir c]]></content:encoded>
</item>

</channel>
</rss>
