<?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>helloworld &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/helloworld/</link>
	<description>Feed of posts on WordPress.com tagged "helloworld"</description>
	<pubDate>Thu, 31 Dec 2009 11:53:19 +0000</pubDate>

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

<item>
<title><![CDATA[HelloWorld in all programming languages.]]></title>
<link>http://codewritersparadise.wordpress.com/2009/12/30/helloworld-in-different-programming-languages/</link>
<pubDate>Wed, 30 Dec 2009 11:01:21 +0000</pubDate>
<dc:creator>riteshudupak</dc:creator>
<guid>http://codewritersparadise.wordpress.com/2009/12/30/helloworld-in-different-programming-languages/</guid>
<description><![CDATA[Guys, write the most favourite programs of all times&#8230;&#8230;HelloWorld !!!! in which ever prog]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Guys, write the most favourite programs of all times&#8230;&#8230;HelloWorld !!!! in which ever programming language on earth you know.</p>
<p>This post is in intention to make people out there comfortable to start coding in a language.  So, please write the tools required to be installed to get started and also do comment on the programs you write.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My First Post]]></title>
<link>http://seiftopia.wordpress.com/2009/12/25/my-first-post/</link>
<pubDate>Fri, 25 Dec 2009 19:12:52 +0000</pubDate>
<dc:creator>seif sallam</dc:creator>
<guid>http://seiftopia.wordpress.com/2009/12/25/my-first-post/</guid>
<description><![CDATA[after a long day of building this weblog to make it as simple and clean as possible. i just hope aft]]></description>
<content:encoded><![CDATA[after a long day of building this weblog to make it as simple and clean as possible. i just hope aft]]></content:encoded>
</item>
<item>
<title><![CDATA[HEEELLLLOOOOO WORLD!!!!!]]></title>
<link>http://badjaykarma.wordpress.com/2009/12/23/heeellllooooo-world/</link>
<pubDate>Wed, 23 Dec 2009 05:34:12 +0000</pubDate>
<dc:creator>badjaykarma</dc:creator>
<guid>http://badjaykarma.wordpress.com/2009/12/23/heeellllooooo-world/</guid>
<description><![CDATA[this is my first of hopefully many posts that will keep all viewers entertained and informed looking]]></description>
<content:encoded><![CDATA[this is my first of hopefully many posts that will keep all viewers entertained and informed looking]]></content:encoded>
</item>
<item>
<title><![CDATA[Hello, World! program on HLSL ]]></title>
<link>http://komap.wordpress.com/2009/12/17/hello-world-program-on-hlsl/</link>
<pubDate>Thu, 17 Dec 2009 21:52:18 +0000</pubDate>
<dc:creator>komap</dc:creator>
<guid>http://komap.wordpress.com/2009/12/17/hello-world-program-on-hlsl/</guid>
<description><![CDATA[If someone is missing real &#8220;Hello, World&#8221; program written in a shader language, here it ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If someone is missing <strong>real</strong> <a href="http://en.wikipedia.org/wiki/Hello_world_program">&#8220;Hello, World&#8221; program </a>written in a shader language, here it is.</p>
<p>Pixel shader <a href="http://en.wikipedia.org/wiki/HLSL">HLSL</a>, shader model 3.0  (in effects file); <a href="http://en.wikipedia.org/wiki/Pixel_shader">pixel shader</a> only, that takes as input only u,v.</p>
<p>More serious challenge could be to write <a href="http://en.wikipedia.org/wiki/Quine_(computing)">Quine program</a>, but I have other things to do.</p>
<pre class="brush: cpp;">
const int L[18]={
	0xad27,	0xa925,	0xED25,	0xa925,	0xaDB7,	0x0000,
	0x85eE,	0x852b,	0xad2b,	0xf92e,	0x712b,	0x51e9,	0x0000,
	0xC3CF,	0xc36f,	0xc326,	0xc360,	0xf3cf
};
float4 PS(float2 tex : TEXCOORD0):COLOR0
{
	float4 output = float4(0,tex.x,tex.y,1);
	int x= (1-tex.x)*16;
	int y= (1-tex.y)*18;
	//no bitwise ioerations on shadermodel 3 yet <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />
	int mask=L[y]*2;
	for (int i = 0; i&#60;16&#38;&#38; i &#60;x; i++)
		mask*=0.5;output.r = ( frac(0.5*mask) &#60; 0.1);
	return output;
}
</pre>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dig a hole about yay big and plant your seed]]></title>
<link>http://glumesc.wordpress.com/2009/12/14/dig-a-hole-about-yay-big-and-plant-your-seed/</link>
<pubDate>Mon, 14 Dec 2009 22:25:32 +0000</pubDate>
<dc:creator>steve</dc:creator>
<guid>http://glumesc.wordpress.com/2009/12/14/dig-a-hole-about-yay-big-and-plant-your-seed/</guid>
<description><![CDATA[And so I thought I&#8217;d create a little space on the web where I could make notes and pass commen]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>And so I thought I&#8217;d create a little space on the web where I could make notes and pass comment on aspects of software development.</p>
<p>Let&#8217;s see how this develops&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Membuat program C di Linux,,]]></title>
<link>http://mdianto.wordpress.com/2009/12/12/membuat-program-c-di-linux/</link>
<pubDate>Sat, 12 Dec 2009 06:03:35 +0000</pubDate>
<dc:creator>maaz</dc:creator>
<guid>http://mdianto.wordpress.com/2009/12/12/membuat-program-c-di-linux/</guid>
<description><![CDATA[Seperti yang sudah saya katakan di tulisan sebelumnya, saya baru-baru ini beralih ke sistem operassi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Seperti yang sudah saya katakan di tulisan sebelumnya, saya baru-baru ini beralih ke sistem operassi linux,</p>
<blockquote><p><a href="http://mdianto.wordpress.com/2009/12/09/linux-aku-ingin-tahu/">Linux, aku ingin tahu</a></p></blockquote>
<p>karena itu baru-baru ini saya mencoba buat program C di Ubuntu yang saya punya, maklum menurut pengetahuan saya<br />
Linux ini sangat dekat dengan C. Ya sih, sebelumnya-sebelumnya pernah sih belajar C, tapi itu di sistem operasi<br />
bukan Linux, disana untuk bisa buat program C kudu install program yang namanya Borland apaa gitu,,<br />
Terus gimana ya kalo di Linux,,?? Pertama cari info dulu sih, gimana caranya..</p>
<p>Baca baca, nah aku dapat. Ternyata di linux itu buat bikin program C sudah nggak butuh install apapun,<br />
karena secara default Linux udah nyedia-in compiler C, namanya GNU Compiler Colection atau biasa dikenal GCC.<!--more--></p>
<p>Habis itu, langsung aja buka gedit, its time to coding&#8230; (hihii)<br />
Program yang di buat tahu nggak,,, Nampilin Hello World,, (Hihii..) Karena kebiasan di Java, kalau mau<br />
ngetes udah bisa ato belum compile terus jalanin programnya..<br />
Aku yakin semua udah pada hafal sama tuh program yang satu itu.. Tapi ini versi C, neh code-nya :</p>
<blockquote><pre class="brush: cpp;">#include &#60;stdio.h&#62;

main()
{
printf(&#34;Hello World\n&#34;);
}</pre>
</blockquote>
<p>Setelah itu aku simpan dengan nama HelloWorld.c</p>
<p>Selanjutnya proses compile pake GCC tadi, perintah compile-nya</p>
<blockquote><p>gcc -o HelloWorld HelloWorld.c</p></blockquote>
<p>dari perintah compile ini, menghasil file executable bernama HelloWord.out<br />
Kemudian file executable-nya di run pake perintah</p>
<blockquote><p>./HelloWorld</p></blockquote>
<p>Hasilnya, so pasti text &#8220;HelloWorld&#8221; nongol,,<br />
Great..!!!, kesimpulannya berhasil,, berarti saatnya buat program yang lebih keren..!!!</p>
<p>Ok deh, udah dulu ya&#8230;.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[HelloWorldChat In Stanford Peace Dot Directory]]></title>
<link>http://niryariv.wordpress.com/2009/12/11/helloworldchat-in-stanford-peace-dot/</link>
<pubDate>Fri, 11 Dec 2009 22:07:01 +0000</pubDate>
<dc:creator>Nir</dc:creator>
<guid>http://niryariv.wordpress.com/2009/12/11/helloworldchat-in-stanford-peace-dot/</guid>
<description><![CDATA[HelloWorld Chat is a project I&#8217;ve been working on with my friend and designer extraordinaire A]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://peace.helloworldchat.com/">HelloWorld Chat</a> is a project I&#8217;ve been working on with my friend and designer extraordinaire <a href="http://www.inforeignland.com/update09/">Aviva</a>. Basically it&#8217;s a &#8220;chat online with a stranger&#8221; site like <a href="http://omegle.com/">Omegle</a> &#38; co, but we try to match between users from different countries (based on their IP address). Once we reach a certain level of traffic, we could start adding more sophisticated matching rules and connect between users of specific nations, based on current world events and so on.</p>
<p>We haven&#8217;t done much in way of publicizing the site, so it was great to be accepted into <a href="http://peace.stanford.edu/">Stanford&#8217;s Peace Dot</a> directory. Peace Dot only adds one organization per day to the directory, and we&#8217;re excited to finally get in <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  They even do a little welcome video for each site, here&#8217;s Standord&#8217;s <a href="http://www.bjfogg.com/">BJ Fogg</a> welcoming us:</p>
<p><span style='text-align:center; display: block;'><br />
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.vimeo.com/moogaloop.swf?clip_id=8041752&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA"><param name="quality" value="best" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=8041752&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" /></object><br />
</span></p>
<p>Thanks, Peace Dot!</p>
<p>Technically, HelloWorld is a simple Google App Engine based chat, written in Python. The focus was less on the chat code and more on making the application easy to customize and adapt for various sites. The look can be completely changed by editing two HTML files, and being App Engine based makes deployment extremely simple and cheap.</p>
<p>Sites built on top of HelloWorld might be used to foster dialog between sides in a conflict, aid in reconciliation phases, or help people going through their own struggle with a disease or addiction talk with others in the same situation. The anonymity allows users to speak frankly where it may often be difficult or dangerous to do so, and hopefully some may later move on to talk via Skype or Email &#8211; our goal is to be the easily accessed and risk free gateway to a dialog.</p>
<p>While forums and multi-user chats have important roles, a one to one conversation has a unique value of its own. Talking one to one makes slogans and cliches a lot harder to hide behind. It is a lesson I learned myself in the <a href="http://en.wikipedia.org/wiki/2006_Lebanon_War">summer of 2006</a>, when I happened into an IM conversation with a Lebanese person while both our parents&#8217; towns were under fire by the other side. That experience was the inspiration for HelloWorld, I hope this tool would allow many more such conversations to take place.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[It's not much but it's a start]]></title>
<link>http://randrant.wordpress.com/2009/12/08/its-not-much-but-its-a-start/</link>
<pubDate>Tue, 08 Dec 2009 18:01:31 +0000</pubDate>
<dc:creator>randrant</dc:creator>
<guid>http://randrant.wordpress.com/2009/12/08/its-not-much-but-its-a-start/</guid>
<description><![CDATA[Just a first post to check things out.]]></description>
<content:encoded><![CDATA[Just a first post to check things out.]]></content:encoded>
</item>
<item>
<title><![CDATA[From Code Become Culture]]></title>
<link>http://sikurniawan.wordpress.com/2009/11/28/from-code-become-culture/</link>
<pubDate>Sat, 28 Nov 2009 03:28:06 +0000</pubDate>
<dc:creator>kugamaxs</dc:creator>
<guid>http://sikurniawan.wordpress.com/2009/11/28/from-code-become-culture/</guid>
<description><![CDATA[Hai sobat kali ini kita bahas kode java pertama kita, yaitu mencetak sebuah kata dengan program java]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><a href="http://sikurniawan.wordpress.com/files/2009/11/java_hello_world.jpg"><img class="alignleft size-thumbnail wp-image-34" style="padding-right:5px;padding-bottom:5px;" title="java_hello_world" src="http://sikurniawan.wordpress.com/files/2009/11/java_hello_world.jpg?w=150" alt="" width="120" height="120" /></a>Hai sobat kali ini kita bahas kode java pertama kita, yaitu mencetak sebuah kata dengan program javayang sederhana ini. Hubungannya dengan judul diatas ? Yup judul diatas yang saya maksud ialah sebuah kata yang biasa di lakukan oleh orang yang pertama kali mencoba <a href="http://sikurniawan.wordpress.com/2009/11/28/from-code-become-culture" target="_blank">Java</a> kata tersebut yaitu <em><strong>&#8220;Hello World.</strong></em></p>
<p style="text-align:justify;">Untuk mencetak kata tersebut sangat mudah sekali, hanya butuh beberapa baris saja untuk menuliskan kode-kode Java tersebut.<!--more--></p>
<p style="text-align:justify;">Untuk tempat penulisannya kita bisa menggunakan text editor bawaan masing-masing OS, tapi mungkin ada kekurangannya seperti warna untuk texts yang membedakan antara kode satu dengan lainnya, saya merekomendasikan menggunakan <a href="http://www.editplus.com/" target="_blank">EditPlus</a></p>
<p style="text-align:justify;">
<pre class="brush: java;">

public class HelloWorld{
 public static void main(String args[]){
 System.out.println(&#34;Hello World&#34;);
 }
}
</pre>
<p style="text-align:justify;">untuk menjalankannya pertama yang harus di lakukan ialah mengcompilenya karena kode java yang kita tulis harus menjadi byte code yang bisa di baca oleh mesin, bisa anda baca di artikel fase-fase pemograman java kita bisa menggunakan command prompt di windows atau terminal di linux untuk melakukan compile terhadap file tersebut.</p>
<p>gunakan perintah javac HelloWorld.java untuk melakukan compile terhadap file java HelloWorld.java dan gunakan perintah java HelloWorld untuk menjalankan program HelloWorld tersebut. Artinya ketika kita menggunakan perintah javac HelloWorld.java kita mengcompile file tersebut dan membentuk file HelloWorld.class dan perintah java HelloWorld untuk menjalankan program tersebut, mungkin yang jadi pertanyaan kenapa pada saat menjalankan perintah java HelloWorld tidak menggunakan extension .class, karena file tersebut sudah menjadi bytecode yg bisa dibaca oleh mesin jadi kita menjalankannya menggunakan perintah java HelloWorld</p>
<p>* untuk penjelasan kode-kode diatas akan saya bahas di postingan selanjutnya.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Here we go...]]></title>
<link>http://batonvert.wordpress.com/2009/11/22/here-we-go/</link>
<pubDate>Sun, 22 Nov 2009 22:45:19 +0000</pubDate>
<dc:creator>macmu</dc:creator>
<guid>http://batonvert.wordpress.com/2009/11/22/here-we-go/</guid>
<description><![CDATA[This is the beginning of a blog which I hope will help promote awareness of the environmental qualit]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This is the beginning of a blog which I hope will help promote awareness of the environmental quality in Baton Rouge. We really do have a naturally beautiful city, but in the modern age there are many threats which jeopardize its future. By recognizing these threats and making them part of the public debate, we can better address them. To that end, this blog will post relevant news relating to Baton Rouge&#8217;s environment as well as possible solutions to our current challenges.</p>
<p>So with these ambiguous words, we begin.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hello World!]]></title>
<link>http://culturatvdigital.wordpress.com/2009/11/15/hello-world-2/</link>
<pubDate>Sun, 15 Nov 2009 15:09:43 +0000</pubDate>
<dc:creator>culturatvdigital</dc:creator>
<guid>http://culturatvdigital.wordpress.com/2009/11/15/hello-world-2/</guid>
<description><![CDATA[Este é o blog da TV digital Cultura Digital. Comecei com a idéia de publicar um blog falando sobre T]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Este é o blog da <span style="text-decoration:line-through;">TV digital</span> Cultura Digital.</p>
<p>Comecei com a idéia de publicar um blog falando sobre TV DIGITAL. Assunto que muito me interessa, e que está sendo muito discutido, mas as informações ainda são de difícil acesso. Venho pesquisando sobre TV digital já a algum tempo. Para ser mais preciso, desde o início de 2007 assim que começaram as primeiras repercussões da escolha do padrão de transmissão da TV digital aberta brasileira.</p>
<p>Mas navegando um pouco procurando sobre o assunto comecei a me envolver cada vez mais na chamada CULTURA DIGITAL, e então percebi que a discussão é muito mais ampla.</p>
<p>Na idéia original eu já tinha em mente que não queria falar sobre códigos fonte e linguagens de programação, meios de transmissão e coisas deste tipo. O que eu realmente gosto sobre a TV digital é o impacto que ela traz na sociedade e a INOVAÇÃO tecnológica que ela representa e a INTERATIVIDADE que ela possibilita. Percebi que isso se trata mais de Cultura Digital do que só TV digital.</p>
<p>Então, espere encontrar aqui informações não somente sobre TV, mas tudo que envolva TECNOLOGIA, INOVAÇÃO, INTERATIVIDADE E CULTURA.</p>
<p>Espero que goste e fique a vontade para comentar. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Abraços</p>
<p>@rafaelcs</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Innovador Sistema de Internet Marketing ]]></title>
<link>http://sistemademarketing.wordpress.com/2009/11/04/attainrespones/</link>
<pubDate>Wed, 04 Nov 2009 02:04:13 +0000</pubDate>
<dc:creator>rpventas</dc:creator>
<guid>http://sistemademarketing.wordpress.com/2009/11/04/attainrespones/</guid>
<description><![CDATA[AttainResponse El impacto del marketing electrónico sin duda alguna se ha conseguido con la integrac]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1 style="text-align:justify;"><strong><span style="color:#000080;">Attain</span>Response</strong></h1>
<p><strong><br />
</strong></p>
<p style="text-align:justify;"><a href="http://sistemademarketing.wordpress.com/files/2009/11/herramientasattain.jpg"><img class="alignleft size-thumbnail wp-image-26" title="Attainresponse" src="http://sistemademarketing.wordpress.com/files/2009/11/herramientasattain.jpg?w=147" alt="Attainresponse" width="205" height="209" /></a>El impacto del marketing electrónico sin duda alguna se ha conseguido con la integración de videos y otros recursos multimedia que ayudan a crear campañas dinámicas e interactivas.</p>
<p style="text-align:justify;">Lanzamiento con éxito promociones, boletines, videos de formación, y más con el probado Sistema de Marketing por Internet. Crecer su negocio y llegar con la publicidad de alto impacto y las plantillas de campaña de marketing robustas herramientas.</p>
<p style="text-align:justify;">La empresa VM Direct, lanza para España ha mediado de año 2009 <a href="http://attainresponse.com/rpichardo" target="_blank">AttainResponse</a> el sistema de Internet Marketing que en conjunto con la intervención Web 2.0 esta revolucionando la forma de hacer negocios.</p>
<p style="text-align:justify;"><a href="http://attainresponse.com/rpichardo" target="_blank">AttainResponse</a> es un sistema electrónico o plataforma digital que permite almacenar, controlar y crear todos los elementos digitales, de este modo quedando como un hecho innecesario tener que utilizar servidores especializados para una sola función como Youtube, Vimeo, Flickr, Yahoo, Hotmail, Gmail, iContact, Listrak, etc, estando todas las funcionalidades de estos medio incluido en una sola plataforma que te permite gestionarle.</p>
<p style="text-align:justify;">El Sistema de Internet Marketing <a href="http://attainresponse.com/rpichardo" target="_blank">AttainResponse</a> cuenta con unas series de aplicaciones que permiten realizar Emisiones en Directo (TV Online), Video E-mail, Crea y poder Incrustar Código HTLM en sitios web, Crear Boletines Electrónicos, Video Boletines, Campañas de Marketing con un sistema de estadística, segmentación y control que lo hace diferente del resto de los sistemas actualmente existente, entre otras aplicaciones relacionada al marketing y comunicaciones. Mediante las herramientas <a href="http://attainresponse.com/rpichardo" target="_blank">AttainResponse</a> tales como Mail F5, Media F5, Marketing F5, Web F5, Mobi F5.</p>
<p style="text-align:justify;"><a href="http://attainresponse.com/rpichardo" target="_blank">AttainResponse</a> llega a España por medio de distribuidores certificado por la empresa para realizar la formación de dicho producto y la comercialización.</p>
<p style="text-align:justify;">El Sistema de Internet Marketing <a href="http://attainresponse.com/rpichardo" target="_blank">AttainResponse</a> se ha lanzado al mercado con precio competitivo para que todas las empresas sin importar el tamaño puedan utilizarla como la herramienta clave para potencial su Marketing en Internet.</p>
<p style="text-align:right;"><a href="http://www.webf5.com" target="_blank">www.webf5.com</a></p>
<p style="text-align:right;"><a href="http://www.webf5.info" target="_blank">www.webf5.info</a></p>
<p style="text-align:center;"><a href="http://web.epartner.es/click.asp?ref=497930&#38;site=6635&#38;type=b9&#38;bnb=9" target="_blank"><br />
<img class="aligncenter" src="http://program.epartner.es/view.asp?ref=497930&#38;site=6635&#38;b=9" border="0" alt="Jazztel" width="468" height="60" /></a></p>
<p><!-- END PARTNER PROGRAM --></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Trick or Treat?  Become a Fast Track Affiliate for $299 in November]]></title>
<link>http://ourvmblog.wordpress.com/2009/11/01/trick-or-treat-become-a-fast-track-affiliate-for-299-in-november/</link>
<pubDate>Sun, 01 Nov 2009 13:29:21 +0000</pubDate>
<dc:creator>Susan Beesley</dc:creator>
<guid>http://ourvmblog.wordpress.com/2009/11/01/trick-or-treat-become-a-fast-track-affiliate-for-299-in-november/</guid>
<description><![CDATA[This is a great opportunity to start a business and also use all the suite of internet marketing too]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter size-full wp-image-48" title="kallgivesback_halloween_032" src="http://ourvmblog.wordpress.com/files/2009/11/kallgivesback_halloween_032.jpg" alt="kallgivesback_halloween_032" width="450" height="369" /></p>
<p>This is a great opportunity to start a business and also use all the suite of internet marketing tools to promote your existing business.</p>
<p>What better way to show AttainResponse to potential customers and develop a residual income business.</p>
<p>For more information please call us so we can help you to get started.</p>
<p style="text-align:center;"><strong><span style="color:#0000ff;">Chris &#38; Susan</span></strong></p>
<p style="text-align:center;"><strong><span style="color:#0000ff;">0044 7802 857551 / 0044 7850 585400</span></strong></p>
<p style="text-align:center;"><strong> </strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A resposta para a Pergunta Fundamental sobre a Vida, o Universo e tudo mais é...]]></title>
<link>http://pixelsalacarte.wordpress.com/2009/10/29/a-resposta-para-a-pergunta-fundamental-sobre-a-vida-o-universo-e-tudo-mais-e/</link>
<pubDate>Thu, 29 Oct 2009 17:55:16 +0000</pubDate>
<dc:creator>Patrícia</dc:creator>
<guid>http://pixelsalacarte.wordpress.com/2009/10/29/a-resposta-para-a-pergunta-fundamental-sobre-a-vida-o-universo-e-tudo-mais-e/</guid>
<description><![CDATA[HelloWorld! Bom&#8230; na verdade é 42, mas pelo menos foi isso que o meu computador mostrou em minh]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>HelloWorld!</strong></p>
<p>Bom&#8230; na verdade é 42, mas pelo menos foi isso que o meu computador<br />
mostrou em minha área de trabalho hoje pela manhã. Não é uma saudação<br />
de um blog virgem do WordPress, nem aquelas primeiras páginas que os<br />
noobs em HTML criam nas aulinhas da Microcamp. A mensagem apareceu<br />
ali, na minha área de trabalho, num simples documento do bloco de<br />
notas, aka txt!</p>
<p>É engraçado como às vezes tratamos nossos computadores como gente. Já<br />
me peguei várias vezes, quando notava algum problema ou aquecimento no<br />
PC, pensando assim – “melhor deixá-lo descansando um pouco&#8230; vou<br />
desligá-lo e depois, ligo denovo, pra ver se o problema sumiu”. Como<br />
se realmente eles soubessem o que se passa ao redor deles, ou o que<br />
pensamos sobre eles&#8230;</p>
<p>Mas voltando ao bloco de notas, desgraça pouca é bobagem&#8230; na<br />
verdade, nem notei o arquivinho ali, perdido no canto direito superior<br />
da tela com meu belo wallpaper do Marvin (The Paranoid Android!) –<br />
levei um susto mesmo quando vi que todos, TODOS os atalhos do meu<br />
Desktop haviam desaparecido. Pensei que o Windows estava demorando pra<br />
carregar tudo e então, para desafogar o coitado, lá fui eu reiniciar o<br />
sistema.</p>
<p>Iniciar – Desligar o Computador – Reiniciar&#8230;  Windows denovo e&#8230;<br />
nada. Foi só nessa segunda vez que notei o bloco de notas com o<br />
atípico nome HelloWorld!.txt.</p>
<p>Sabendo que eu não havia criado páginas em HTML e nem o tal txt, como<br />
aquela coisinha foi parar ali? Não pensei muito nisso e abri logo o<br />
arquivo. Tudo parecia mais um documento de sistema (com aqueles<br />
quadrados brancos, mostrando que o notepad não podia mostrar algumas<br />
letras ou símbolos). Foi somente depois de deslizar a barra de<br />
rolagem, que notei algo escrito com letras compreensíveis, finalmente.<br />
Apenas três linhas de texto, que diziam:</p>
<p>&#62;&#62; connect to&#8230; machine accounts<br />
&#62;&#62; learn portuguêis<br />
&#62;&#62; dot dot&#8230; next.</p>
<p>Bom, a primeira coisa que reparei é que meu PC é realmente burro (ou a<br />
pessoa que colocou esse arquivo lá, também). Pior do que “portuguêis”<br />
é só o “portugueix” das miguxas de plantão. O mais estranho é essa<br />
história de connect to machine accounts. Alguém tem idéia do que possa<br />
ser? Talvez seja algo relacionado à minha conexão com a internet, que<br />
andou capenga nos últimos dias, como já comentei aqui.</p>
<p>Em todo o caso, deletei o arquivinho, passei uns anti-vírus ultra<br />
potentes aqui e ainda removi todo e qualquer programa suspeito ou<br />
inútil do meu PC&#8230; vamos ver se resolve. *Ah, e graças a Deus só os<br />
atalhos dos programas foram apagados &#8211; os originais continuam<br />
funcionando, em plena glória! Amém!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[JavaEE Hello World]]></title>
<link>http://wwolfblogger.wordpress.com/2009/10/26/javaee-hello-world/</link>
<pubDate>Mon, 26 Oct 2009 15:55:18 +0000</pubDate>
<dc:creator>wwolfblogger</dc:creator>
<guid>http://wwolfblogger.wordpress.com/2009/10/26/javaee-hello-world/</guid>
<description><![CDATA[Since the environment has been set up successful, the next step is to write a simple JavaEE Hello Wo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Since the environment has been set up successful, the next step is to write a simple JavaEE Hello World application. Therefore we&#8217;ll use a simple Java WebStart client which which will call a stateless EJB to log Hello World. First create a new Enterprise Application Project, then an EJB Project and then a Java Web Client Project. It is mostly just clicking through the wizards. Create a class in the EJB Project, add a method printHelloWorld and call it from the Java Web Client Project. A tutorial can be found <a title="RoseIndia EJB HelloWorld tutorial" href="http://www.roseindia.net/ejb/ejb-hello-world.shtml" target="_blank">here</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Not on fire]]></title>
<link>http://lacolumnadebarcelona.wordpress.com/2009/10/18/not-on-fire/</link>
<pubDate>Sun, 18 Oct 2009 16:35:33 +0000</pubDate>
<dc:creator>lacolumnadebarcelona</dc:creator>
<guid>http://lacolumnadebarcelona.wordpress.com/2009/10/18/not-on-fire/</guid>
<description><![CDATA[Intentant passar una tarda de diumenge sense sucumbir a bastantes coses lleugerament callades.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/bsJukf6_B4s&#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/bsJukf6_B4s&#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>
<p>Intentant passar una tarda de diumenge sense sucumbir a bastantes coses lleugerament callades.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DES GENS TANNANTS]]></title>
<link>http://lacolumnadebarcelona.wordpress.com/2009/10/16/des-gens-tannants/</link>
<pubDate>Fri, 16 Oct 2009 19:26:52 +0000</pubDate>
<dc:creator>lacolumnadebarcelona</dc:creator>
<guid>http://lacolumnadebarcelona.wordpress.com/2009/10/16/des-gens-tannants/</guid>
<description><![CDATA[Vuelvo a casa cansado, muy cansado. No por lo que hoy representa en mi vida ya que esto lo podria ha]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-54" title="TibbetsEnolaGayLarge" src="http://lacolumnadebarcelona.wordpress.com/files/2009/10/tibbetsenolagaylarge.jpg" alt="TibbetsEnolaGayLarge" width="270" height="202" /></p>
<p>Vuelvo a casa cansado, muy cansado. No por lo que hoy representa en mi vida ya que esto lo podria haber escrito hace dos dias o dos semanas, pero no hace un més.</p>
<p>Dicen que es natural en muchas personas la necesidad de canvio, tanto es así que incluso en política (este articulo no lo es) la palabra canvio es empleada sin tor ni son con demasiada frecuencia por algunos y poco por otros.</p>
<p>Canviar de casa, canviar de marido, de traje, de falda, de candidato, de plantas o muebles, de amigos, o canviar de alguien (que no a alguien)</p>
<p><em>Et cela est ce qui arrive quand dans le contrat que tu signes quand tu décides d&#8217;être gay, quand tout ami que tu aimes comme tel, comme l&#8217;ami que tu apprécies tu loues, tu défends ou admires, croit que l&#8217;on fait la cour de lui</em></p>
<p>Quando dicho lo anterior cursivo, te sorprendes de este hecho no probable pero si intuible, no puedes hacer nada mas que entrar en una boragine de hartazgo que demuestra lo paranoico que uno és, y lo sorprendente que es la gente que de tanto imaginar termina por desvariar.</p>
<p><em>En fin esto no iba de esto.<br />
</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Presentacion publica de HOMEWARD JOURNEYS]]></title>
<link>http://yoctobit.wordpress.com/2009/10/12/presentacion-publica-de-homeward-journeys/</link>
<pubDate>Mon, 12 Oct 2009 11:15:55 +0000</pubDate>
<dc:creator>yoctobit</dc:creator>
<guid>http://yoctobit.wordpress.com/2009/10/12/presentacion-publica-de-homeward-journeys/</guid>
<description><![CDATA[El proximo jueves 15 de octubre a partir de las 16.30h presentaremos el proyecto en Medialab Prado e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>El proximo jueves <strong>15 de octubre</strong> a partir de las <strong>16.30h</strong> presentaremos el proyecto en <strong><a href="http://medialab-prado.es/" target="_blank">Medialab Prado</a></strong> en busca de nuevas colaboraciones. Despues de las presentaciones habra una conferencia del artista estadounidense Zachary Lieberman (se puede seguir por streaming <a href="http://giss.tv/interface/?mp=medialab-prado.ogg" target="_blank">aqui</a>)</p>
<p>Ha habido cambios tecnicos y en el desarrollo del prototipo no vamos a usar finalmente <a href="http://www.nuplay.org/" target="_blank">NUPLAY</a> como constructor del espacio escenico, sino que desarrollaremos una nueva escenografia digital jugable en <a href="http://es.wikipedia.org/wiki/Pure_data" target="_blank">PURE DATA</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[HelloWorld za početnike]]></title>
<link>http://justbuild.wordpress.com/2009/10/03/helloworld-za-pocetnike/</link>
<pubDate>Sat, 03 Oct 2009 13:59:40 +0000</pubDate>
<dc:creator>Aleksandar Toplek</dc:creator>
<guid>http://justbuild.wordpress.com/2009/10/03/helloworld-za-pocetnike/</guid>
<description><![CDATA[Kao i u svim knjigama i web stranicama koje objašnjavaju početnicima kako početi s programiranjem u ]]></description>
<content:encoded><![CDATA[Kao i u svim knjigama i web stranicama koje objašnjavaju početnicima kako početi s programiranjem u ]]></content:encoded>
</item>
<item>
<title><![CDATA[Convocatoria de colaboradores]]></title>
<link>http://yoctobit.wordpress.com/2009/09/21/convocatoria-de-colaboradores/</link>
<pubDate>Mon, 21 Sep 2009 13:46:44 +0000</pubDate>
<dc:creator>yoctobit</dc:creator>
<guid>http://yoctobit.wordpress.com/2009/09/21/convocatoria-de-colaboradores/</guid>
<description><![CDATA[Desde el pasado jueves 17 septiembre, HelloWorld (convocatoria de artes escénicas y nuevas tecnologí]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Desde el pasado jueves 17 septiembre, <a href="http://medialab-prado.es/article/convocatoria_helloworld" target="_blank">HelloWorld</a> (convocatoria de artes escénicas y nuevas tecnologías de Medialab Prado) ha hecho pública una <a href="http://forommm.medialab-prado.es/viewtopic.php?pid=1124#p1124" target="_blank">llamada a la colaboración</a> en los ochos proyectos seleccionados, con la intención de completar e implementar nuevos perfiles en cada uno de ellos.</p>
<p>En Homeward Journeys  estaríamos encantados de dar la bienvenida, para  integrarse en el grupo de trabajo del proyecto,  a cualquiera de los siguientes perfiles colaboradores:</p>
<p>A nivel gráfico expertos/interesados en:<br />
-    gráficos 3d / entornos virtuales (Quake 4 Level Editor)</p>
<p>A nivel técnico expertos/interesados en:<br />
-    MIDI<br />
-    Audio analysis (FFT)<br />
-    Arduino (RFID)<br />
-    Reactvision (tag detection)<br />
-    Game controllers (wiimote)</p>
<p>A nivel escénico expertos/interesados en:<br />
-    Guion / interpretación<br />
-    Coreografía / danza</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Groovy 101]]></title>
<link>http://jnorthr.wordpress.com/2009/09/16/groovy-101/</link>
<pubDate>Wed, 16 Sep 2009 23:51:48 +0000</pubDate>
<dc:creator>jnorthr</dc:creator>
<guid>http://jnorthr.wordpress.com/2009/09/16/groovy-101/</guid>
<description><![CDATA[Pls Excuse Me While I Waffle Computers are dumb, a bit like Fido. They have to be told what to do. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2><span style="color:#ff6600;">Pls Excuse Me While I Waffle</span></h2>
<p>Computers are dumb, a bit like Fido. They have to be told what to do. &#8216;Ok, fetch&#8217;, &#8216;Chase the cat&#8217;, &#8216;go to sleep&#8217;.  We can train our digital Fido using statements and commands. If we put commands together into a series of steps, our digital friend will be able to do tricks, assuming he recognises each command. That series of steps is a program. When recorded, it forms a repeatable set of things to be done. Working with our digital Fido requires the ability to give him commands, something like a keyboard (or mouse), and a way for Fido to response, often by making a sound, or producing a response on a computer screen/panel/terminal or some such. Keyboard+display= simple, usable means of getting our ideas into the digital realm.</p>
<p>The name &#8216;Groovy&#8217; describes a language syntax or set of commands we can put together to make something happen in a computer. There are a few things you&#8217;ll need to do in order to make your computer understand this set of commands. We&#8217;ll cover that later. I just want to give you a taste of Groovy, not bore you with technical details at this point.</p>
<h4>Walking The Dog</h4>
<p>It&#8217;s often useful to have your program talk to the outside world. Almost every computer language has some way to allow this. It&#8217;s often some variation of the word to show or display or print. Groovy uses the java approach, the print line command, or println, for short. What needs to be said is often enclosed in quotes, so the dumb computer will treat it as one statement.</p>
<p>So as promised, the Groovy way to say hello is :</p>
<pre><span style="color:#993366;">println "Hello World"</span></pre>
<p>and we should see a result like this :</p>
<pre><span style="color:#008000;">Hello World</span></pre>
<p>Hmmm. I didn&#8217;t know we could do something like this until i just tried it, but the results of your last command are returned to your computer screen, so if the last of a set of commands is just</p>
<p><span style="color:#993366;">&#8220;Hello World&#8221;</span></p>
<p>then the result is shown with the double quotes removed as the text moves to the screen :</p>
<p><span style="color:#008000;">Hello World</span></p>
<p>A simple sample, no doubt. But not much use really. Since a computer can hold a file of text, we often want to see what that text is. Textfiles are arranged into lines and given a name so the computer&#8217;s filing system can remember where it is. Text file names may have an appendix to the name that implies what&#8217;s in the file. This appendix is typically &#8216;txt&#8217;.</p>
<p>So now for the pasty resistance, let&#8217;s do something more complex; let&#8217;s print the content of a text file named readme.txt using a bit of Groovy :</p>
<pre><span style="color:#993366;">String fn = "readme.txt"
File f = new File(fn)
int linecount = 0
f.eachLine{it -&#62; println it; linecount += 1; }
println linecount+" lines"</span></pre>
<p>and for desert, the output would look like this :</p>
<pre><span style="color:#008000;">Mary
Harry
Why
Should I asked
Mary
5 lines</span></pre>
<p>Kinda nice, yes ? and if we didn&#8217;t want to indicate a variable type, we could use a &#8216;def&#8217; aka &#8216;define&#8217; and code this :</p>
<pre><span style="color:#993366;">def fn = "readme.txt"
def f = new File(fn)
def linecount = 0
f.eachLine{it -&#62; println it; linecount += 1; }
println linecount+" lines"</span></pre>
<p>or this ( look ma &#8211; no def&#8217;s ) :</p>
<pre><span style="color:#993366;">fn = "readme.txt"
f = new File(fn)
linecount = 0
f.eachLine{it -&#62; println it; linecount += 1; }
println linecount+" lines"</span></pre>
<p>or if you&#8217;re lazy like me we could save a line and declare the filename this way :</p>
<pre><span style="color:#993366;">f = new File("readme.txt")
linecount = 0
f.eachLine{it -&#62; println it; linecount += 1; }
println linecount+" lines"</span></pre>
<p>or reducing the number of lines of code, we could still run this too :</p>
<pre><span style="color:#993366;">linecount = 0
new File("readme.txt").eachLine{it -&#62; println it; linecount += 1; }
println linecount+" lines"</span></pre>
<p>this is the minimum code fragment that will  do the trick :</p>
<pre><span style="color:#993366;">linecount = 0
new File("readme.txt").eachLine{println it; linecount += 1; }
linecount+" lines"</span></pre>
<p>Any of these code fragments will produce the same result :</p>
<pre><span style="color:#008000;">Mary
Harry
Why
Should I asked
Mary
Result: "5 lines"</span></pre>
<p>=====================</p>
<p>For something similar, we could use a collection &#8211; a sequence of &#8216;things&#8217; and try :</p>
<pre><span style="color:#993366;">somebox = []
new File("readme.txt").eachLine{ somebox &#60;&#60; it + '\n' }
println somebox
println somebox.size()+" lines"</span></pre>
<p>and the <em><span style="color:#ff6600;">somebox</span></em> variable stores every line from the textfile. We can then use the <em><span style="color:#ff6600;">.size()</span></em> method to discover the count of lines :</p>
<pre><span style="color:#008000;">[Mary
, Harry
, Why
, Should I asked
, Mary
]
5 lines</span></pre>
<p>Ok, not an exact match, but an alternative. It gives us a choice of how to do things.</p>
<p>Next time, i want to look at the Groovy setup requirements for Mac o/s, *nix choices like Ubuntu, and windows XP.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cobol 101]]></title>
<link>http://jnorthr.wordpress.com/2009/09/16/cobol-101/</link>
<pubDate>Wed, 16 Sep 2009 22:54:14 +0000</pubDate>
<dc:creator>jnorthr</dc:creator>
<guid>http://jnorthr.wordpress.com/2009/09/16/cobol-101/</guid>
<description><![CDATA[Felt i must introduce you to my new best friend, at least, the programming equivalent of it. Why do ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Felt i must introduce you to my new best friend, at least, the programming equivalent of it.</p>
<p>Why do i love to code Groovy ? It&#8217;s easy to express a quick solution in a few lines of code, and for me, after almost fifty years of writing COBOL code, my brain has nearly turned to rice pudding from writing huge lumps of english-like code just to express a logical solution to some problem or other that i can do in a few lines of Groovy. A COBOL overview follows, so kindly click on Groovy 101 to avoid falling asleep.</p>
<p>COBOL, you may or may not rememeber, was invented as a tool that programmers could use to develop and express solutions to common business oriented problems in a platform-independent way, and before you can say Grace Hopper, we had a high level language that was human-readable and portable between machines. We dumped the work of expressing our solutions onto the machine. Instead of writing thousands of lines of code in machine language, or it&#8217;s later cousin, assembler, which was extremely machine-friendly and man-hostile, we started to write in english and then use translators and compilers to interpret what the english would mean in computer-speak.</p>
<p>This, of course, forced the hardware providers to write compilers to do just that. Each vendor had their own flavor of COBOL. Burroughs had theirs, Honeywell, Univac and DEC had different flavors, RCA 301 and 501 systems had started earlier on their COBOL compilers, so they were a little less buggy. IBM had forms of COBOL on their 1401, 1620, 7040, 7090, S360, and later S/34-S/36-S/38 systems, and since they sold more machines, their version of COBOL became more acceptable. (Hitachi pitched in too).</p>
<p>Still, there were far too many versions of COBOL and each version had it&#8217;s own vendor-specific features making it a lot less portable than Grace first envisioned. Enter CODASYL. See <a title="CODASYL" href="http://en.wikipedia.org/wiki/CODASYL">http://en.wikipedia.org/wiki/CODASYL</a> for an overview of what was needed. I made a fairly good living migrating different versions of COBOL between platforms.  To read more about the various incarnations of the COBOL specification, please google &#8216;<em>american national standards institute 1960 cobol</em>&#8216; .</p>
<p>My memories of Burroughs systems are quite nostalgic. Burroughs COBOL in the &#8217;70s looked like this</p>
<p><a title="Burroughs B1700 Cobol" href="http://bitsavers.org/pdf/burroughs/B1700/B1700_brochures/1058542_COBOL/1058542_COBOL_front_feb73.jpg">http://bitsavers.org/pdf/burroughs/B1700/B1700_brochures/1058542_COBOL/1058542_COBOL_front_feb73.jpg</a></p>
<p>In COBOL, i had to code four divisions of statements. The IDENTIFICATION DIVISION spells out the program name. The ENVIRONMENT DIVISION declares the model of computer the program can run on, and associates the files to be used in this program with the type of external devices used by this program, i.e. punch cards, magnetic tape, etc. The DATA DIVISION has two sections, the first section describes file usage in more detail with variables for file-related purposes and the second section is for non-file related variables, or fields. The intended use of a field is declared in PICTURE statements. The final division is the PROCEDURE DIVISION where we code the actual logic to solve our problem using english-like statements.</p>
<p>Our typical &#8216;Hello World&#8217; COBOL program requires a minimum set of statements like this:</p>
<pre><span style="color:#993366;">IDENTIFICATION DIVISION.
PROGRAM-ID. HELLOWORLD.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
    SOURCE-COMPUTER. IBM-360.
    OBJECT-COMPUTER. BURROUGHS-B1700.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
DATA DIVISION.
FILE SECTION.
WORKING-STORAGE SECTION.
01 HELLO-MESSAGE PIC X(20) VALUE "HELLO WORLD".
PROCEDURE DIVISION.
LOGIC-1.
    DISPLAY HELLO-MESSAGE.
    STOP RUN.</span></pre>
<p>A program to print out each line of an input text file plus a count of lines might look like this :</p>
<pre><span style="color:#993366;">IDENTIFICATION DIVISION.
PROGRAM-ID. HELLOWORLD.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
    SOURCE-COMPUTER. IBM-360.
    OBJECT-COMPUTER. BURROUGHS-B1700.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
    SELECT README-FILE ASSIGN TO DISK
       ACCESS MODE IS SEQUENTIAL.
DATA DIVISION.
FILE SECTION.
FD README-FILE
    RECORD CONTAINS 1 TO 80 CHARACTERS
    VALUE OF ID IS "README.TXT"
    DATA RECORD IS RECORD-1.
01  RECORD-1.
    05  FIELD-NAME PIC X(80).
WORKING-STORAGE SECTION.
01 LINE-COUNT PIC S9(5) VALUE ZERO.
PROCEDURE DIVISION.
SOME-LOGIC-STATEMENTS.
    OPEN INPUT README-FILE.
PARAGRAPH-2.
    READ README-FILE AT END GO TO PARAGRAPH-123.
    DISPLAY FIELD-NAME.
    ADD 1 TO LINE-COUNT.
    GO TO PARAGRAPH-2.
PARAGRAPH-123.
    CLOSE README-FILE.
    DISPLAY LINE-COUNT " LINES".
    STOP RUN.</span></pre>
<p>So you can see from these examples, the amount of supporting syntax to get the job done is similar to Java. Groovy gets the job done in fewer lines. Please see Groovy 101 for the Groovy equivalent code.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My first post]]></title>
<link>http://madicemickael.wordpress.com/2009/09/06/my-first-post/</link>
<pubDate>Sun, 06 Sep 2009 19:28:54 +0000</pubDate>
<dc:creator>madicemickael</dc:creator>
<guid>http://madicemickael.wordpress.com/2009/09/06/my-first-post/</guid>
<description><![CDATA[I would like to post here some of the things I encountered in my domain:programming. Some of the thi]]></description>
<content:encoded><![CDATA[I would like to post here some of the things I encountered in my domain:programming. Some of the thi]]></content:encoded>
</item>

</channel>
</rss>
