<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Sergio Infante</title>
	
	<link>http://neosergio.net</link>
	<description>Back to the geek world</description>
	<lastBuildDate>Tue, 07 Sep 2010 13:10:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BackToTheGeekWorld" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="backtothegeekworld" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Ejercicio PHP | Ejercicio Python : Sorteo de alumnos</title>
		<link>http://neosergio.net/2010/09/02/sorteo-php-python/</link>
		<comments>http://neosergio.net/2010/09/02/sorteo-php-python/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 22:27:44 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=525</guid>
		<description><![CDATA[Hace unos días me vi en la necesidad de hacer un rápido sorteo para el orden de presentación de trabajos finales de un curso que dicto. Me pareció muy simple hacer el respectivo sorteo usando PHP, y de paso también &#8230; <a href="http://neosergio.net/2010/09/02/sorteo-php-python/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hace unos días me vi en la necesidad de hacer un rápido sorteo para el orden de presentación de trabajos finales de un curso que dicto. Me pareció muy simple hacer el respectivo sorteo usando PHP, y de paso también decidí hacerlo con Python, gracias a una sugerencia <img src='http://neosergio.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  (<a href="https://twitter.com/pmunozdelrio/status/22025096326">twit</a>).</p>
<p>Antes de empezar debo aclarar que la lista de alumnos se encuentra en un archivo de texto, llamado <strong>alumnos6to</strong></p>
<h2>Sorteo con PHP:</h2>
<p>Voy a obviar algunos detalles en el orden e ire al grano.</p>
<p>Primero almaceno en un array (arreglo) el contenido del archivo alumnos6to</p>
<p><code>$alumnos = file('alumnos6to');</code></p>
<p>Luego se puede imprimir el arreglo para visualizar la lista original, se podria hacer con una función creada: imprimir($alumnos):<br />
<code><br />
function imprimir($array){<br />
&#160;&#160;echo "&lt;ol class='alumnos'&gt;";<br />
&#160;&#160;foreach ($array as $valor){<br />
&#160;&#160;&#160;&#160;echo "&lt;li&gt;$valor&lt;/li&gt;";<br />
&#160;&#160;}<br />
&#160;&#160;echo "&lt;/ol&gt;";<br />
}<br />
</code><br />
Luego se hace la mezcla aleatoria con:</p>
<p><code>shuffle($alumnos);</code></p>
<p>Y por ultimo se vuelve a imprimir la lista, ya mezclada aleatoriamente:Alex Gorbatchev</p>
<p><code>imprimir($alumnos);</code></p>
<p>Y ya se hizo el sorteo.</p>
<h2>Sorteo con Python:</h2>
<p>Con Python haré el mismo proceso, solo que tendré un archivo resultante llamado: <strong>aleatorio</strong>, antes de empezar a obtener el contenido del archivo de texto, importé el modulo <em>random</em>, luego importé el contenido del archivo alumnos6to y lo almacené en una lista llamada <strong>alumno</strong>, usé la función <strong>shuffle()</strong> que permite mezclar la lista y por ultimo guardé la lista mezclada en el archivo <strong>aleatorio.</strong>.</p>
<p>El código para realizar esto es el siguiente:<br />
<code><br />
from random import *<br />
alumno = []<br />
for nombre in file('alumnos6to'):<br />
&#160;&#160;&#160;&#160;alumno.append([nombre])<br />
shuffle(alumno)<br />
aleatorio = file('aleatorio','w')<br />
for nombre in alumno:<br />
&#160;&#160;&#160;&#160;aleatorio.write(str(nombre)+'\n')<br />
</code></p>
<p>Los archivos completos pueden ser descargados desde <a href="http://code.neosergio.net/ejemplo_aleatorio.tar.gz">aqui</a>.</p>
<p>Esta es solo una, de las muchas maneras de aleatorizar una lista de elementos.</p>
<p>Happy coding <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/omjp-mceFe2Zsq48W7614vlkpy0/0/da"><img src="http://feedads.g.doubleclick.net/~a/omjp-mceFe2Zsq48W7614vlkpy0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/omjp-mceFe2Zsq48W7614vlkpy0/1/da"><img src="http://feedads.g.doubleclick.net/~a/omjp-mceFe2Zsq48W7614vlkpy0/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/09/02/sorteo-php-python/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #06</title>
		<link>http://neosergio.net/2010/07/10/gsoc-weekly-report-06-en/</link>
		<comments>http://neosergio.net/2010/07/10/gsoc-weekly-report-06-en/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 00:10:16 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=510</guid>
		<description><![CDATA[This is my weekly report # 06: What I have done last week I was reviewing and checking the code of this rich text editors on JavaScript to see good examples how to do that to my project. TinyMCE CKEditor &#8230; <a href="http://neosergio.net/2010/07/10/gsoc-weekly-report-06-en/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
<p>This is my weekly report # 06:</p>
<h2>What I have done last week</h2>
<ul>
<li>I was reviewing and checking the code of this rich text editors on JavaScript to see good examples how to do that to my project.
<ul>
<li><a href="http://tinymce.moxiecode.com/">TinyMCE</a></li>
<li><a href="http://ckeditor.com/">CKEditor</a></li>
<li><a href="http://www.infrae.com/products/kupu_editor">Kupu</a></li>
<li><a href="http://trac.xinha.org/">Xinha</a></li>
<li><a href="http://www.openwebware.com/">openWYSIWYG</a></li>
<li><a href="http://www.avidansoft.com/dsrte/">DSRTE</a></li>
<li><a href="http://www.cdolivet.com/index.php?page=editArea&amp;sess=0c468e6ae015bfeff02657e34b6fe0e3">EditArea</a></li>
<li><a href="http://bitfluxeditor.org/">BXE</a></li>
</ul>
</li>
<li>Began the code to transform text to Mallard Syntax.</li>
</ul>
<h2>What I will do this week</h2>
<ul>
<li>Put a demo on my blog to translate content to <a href="http://projectmallard.org/1.0/index.html">Mallard Syntax</a>.</li>
</ul>
<h2>Timeline</h2>
<ul>
<li>My <a href="http://live.gnome.org/SummerOfCode2010/SergioInfanteMontero_Mallard/schedule">schedule</a></li>
</ul>
<h2>Issues</h2>
<ul>
<li>Just thinking for the better way to produce a mallard syntax document</li>
</ul>
<h2>Cool Things</h2>
<ul>
<li>Work with people at GNOME, for suggestions, code and friendship #FTW.</li>
</ul>
<p><span style="line-height: 24px; font-size: 16px;">Regards <img src='http://neosergio.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </span></p>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/xozbgjW_5nK-NV74R9aoGXT4N7g/0/da"><img src="http://feedads.g.doubleclick.net/~a/xozbgjW_5nK-NV74R9aoGXT4N7g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/xozbgjW_5nK-NV74R9aoGXT4N7g/1/da"><img src="http://feedads.g.doubleclick.net/~a/xozbgjW_5nK-NV74R9aoGXT4N7g/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/07/10/gsoc-weekly-report-06-en/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #05</title>
		<link>http://neosergio.net/2010/07/01/gsoc-weekly-report-05-en/</link>
		<comments>http://neosergio.net/2010/07/01/gsoc-weekly-report-05-en/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 19:11:19 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=503</guid>
		<description><![CDATA[This is my weekly report # 05: What I have done last week Still improving my skills on Django Enable the code repository at gitorious.org: Repository GNOME Project Mallard Online. What I will do this week Start to create the &#8230; <a href="http://neosergio.net/2010/07/01/gsoc-weekly-report-05-en/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>This is my weekly report # 05:</strong></p>
<h2>What I have done last week</h2>
<ul>
<li>Still improving my skills on <a href="http://www.djangoproject.com/">Django</a></li>
<li>Enable the code repository at gitorious.org: <a href="http://gitorious.org/gnome-project-mallard-online">Repository GNOME Project Mallard Online.</a></li>
</ul>
<h2>What I will do this week</h2>
<ul>
<li>Start to create the Javascript Text Editor to translate content to <a href="http://projectmallard.org/1.0/index.html">Mallard Syntax</a>, probably I will use TinyMCE to acomplish that.</li>
</ul>
<h2>Timeline</h2>
<ul>
<li>My <a href="http://live.gnome.org/SummerOfCode2010/SergioInfanteMontero_Mallard/schedule">schedule</a></li>
</ul>
<h2>Issues</h2>
<ul>
<li>I&#8217;m a little afraid for my code, I think that all is wrong. I think that is normal behaviour for the context. I don&#8217;t want ruin all.</li>
</ul>
<h2>Cool Things</h2>
<ul>
<li>I&#8217;m learning a lot from <a href="http://gitorious.org/projects">Gitorious projects</a> and <a href="http://github.com/repositories">Github Repositories</a>, where I found a lot open source code for guidance and personal inspiration. Including one of my mentor: <a href="http://gitorious.org/blip/blinq">blinq</a></li>
</ul>
<p>Cheers <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/bYUBBrYtbImiKyay9FQEYMT4cWw/0/da"><img src="http://feedads.g.doubleclick.net/~a/bYUBBrYtbImiKyay9FQEYMT4cWw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bYUBBrYtbImiKyay9FQEYMT4cWw/1/da"><img src="http://feedads.g.doubleclick.net/~a/bYUBBrYtbImiKyay9FQEYMT4cWw/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/07/01/gsoc-weekly-report-05-en/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mostrar errores de PHP en servidor de desarrollo | Ubuntu Server</title>
		<link>http://neosergio.net/2010/06/26/errores-php/</link>
		<comments>http://neosergio.net/2010/06/26/errores-php/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 07:45:52 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Ubuntu GNU/Linux]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=493</guid>
		<description><![CDATA[En un servidor de producción es aconsejable NO mostrar los errores de PHP. En Ubuntu Server 10.04 sucede que por defecto está configurado para no mostrarlos (preparado para producción), sin embargo para desarrollar o por simples motivos de aprendizaje en &#8230; <a href="http://neosergio.net/2010/06/26/errores-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>En un servidor de producción es aconsejable <strong>NO</strong> mostrar los errores de PHP. En Ubuntu Server 10.04 sucede que por defecto está configurado para no mostrarlos (preparado para producción), sin embargo para desarrollar o por simples motivos de aprendizaje en muchas ocasiones se requiere que los errores sean visualizados.</p>
<p>En el caso de fallar, cuando no muestra errores, simplemente aparecerá una página en blanco. Para cambiar este comportamiento se deben seguir los siguientes pasos:</p>
<p>1. Ubicar el archivo de configuración de PHP, por lo general se puede encontrar en /etc/php5/apache2/php.ini , en caso de no encontrarlo una simple ejecución de phpinfo() nos puede mostrar esa ubicación:</p>
<p style="text-align: center;"><a href="http://neosergio.net/wp-content/uploads/2010/06/phpinfocut.png"><img class="size-medium wp-image-494  aligncenter" title="phpinfocut" src="http://neosergio.net/wp-content/uploads/2010/06/phpinfocut-300x173.png" alt="phpinfo()" width="300" height="173" /></a></p>
<p>2. Ubicar la linea que contenga la instrucción displa﻿y_errors (en mi caso, esta en la linea 531) y cambiar el Off por el On para que quede asi:</p>
<blockquote><p>display_errors = On</p></blockquote>
<p>3. Guardar  los cambios en el archivo php.ini</p>
<p>4. Reiniciar el servicio:</p>
<blockquote><p>sudo /etc/init.d/apache2 restart</p></blockquote>
<p>Es suficiente con estos pasos para habilitar la visualización de errores.</p>
<p>Happy coding <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/GeO41LOwFry2qg3_6DM1fqz1Swo/0/da"><img src="http://feedads.g.doubleclick.net/~a/GeO41LOwFry2qg3_6DM1fqz1Swo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GeO41LOwFry2qg3_6DM1fqz1Swo/1/da"><img src="http://feedads.g.doubleclick.net/~a/GeO41LOwFry2qg3_6DM1fqz1Swo/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/06/26/errores-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #04</title>
		<link>http://neosergio.net/2010/06/22/gsoc-weekly-report-04-en/</link>
		<comments>http://neosergio.net/2010/06/22/gsoc-weekly-report-04-en/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 00:42:51 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=484</guid>
		<description><![CDATA[This is my weekly report # 04: What I have done last week Still improving my skills on Django I was reading a lot of books about Django Projects, I found some interesting books: What I will do this week &#8230; <a href="http://neosergio.net/2010/06/22/gsoc-weekly-report-04-en/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>This is my weekly report # 04:</strong></p>
<h2>What I have done last week</h2>
<ul>
<li>Still improving my skills on <a href="http://www.djangoproject.com/">Django</a></li>
<li>I was reading a lot of books about Django Projects, I found some interesting books:
<ul>
<li><a href="https://www.packtpub.com/django-1-2-e-commerce-build-powerful-applications/book"></a><a href="https://www.packtpub.com/django-1-2-e-commerce-build-powerful-applications/book"><img class="alignnone size-full wp-image-491" title="Django 1.2 E-commerce" src="http://neosergio.net/wp-content/uploads/2010/06/7009_MockupCover.png" alt="Django 1.2 E-commerce" width="125" height="152" /></a><a href="https://www.packtpub.com/django-1-1-testing-and-debugging/book"><img class="alignnone" title="Django 1.1 Testing and Debugging" src="https://www.packtpub.com/sites/default/files/imagecache/productview/bookimages/7566_MockupCover.jpg" alt="Django 1.1 Testing and Debugging" width="125" height="152" /></a><a href="http://apress.com/book/view/9781430210474"><img class="alignnone" title="Pro Django" src="http://apress.com/resource/bookcover/9781430210474?size=medium" alt="Pro Django" width="125" height="164" /></a><a href="http://apress.com/book/view/143021936X"><img class="alignnone" title="The Definitive Guide to Django: Web Development Done Right, Second Edition" src="http://apress.com/resource/bookcover/9781430219361?size=medium" alt="The Definitive Guide to Django: Web Development Done Right, Second Edition" width="125" height="164" /></a></li>
</ul>
</li>
</ul>
<h2>What I will do this week</h2>
<ul>
<li>Finish the web interface according the schedule.</li>
<li>Start to create the Javascript functions to translate content to <a href="http://projectmallard.org/1.0/index.html">Mallard Syntax</a></li>
</ul>
<h2>Timeline</h2>
<ul>
<li>I&#8217;m just on time according to my <a href="http://live.gnome.org/SummerOfCode2010/SergioInfanteMontero_Mallard/schedule">schedule</a></li>
</ul>
<h2>Issues</h2>
<ul>
<li>Little problems with Django, but nothing serious.</li>
</ul>
<h2>Cool Things</h2>
<ul>
<li>I met cool people at IRC, great developers and friends at server:irc.gnome.org</li>
</ul>
<p>Regards <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/M0PASQCv7USe2SkUm5YCXTtNsgM/0/da"><img src="http://feedads.g.doubleclick.net/~a/M0PASQCv7USe2SkUm5YCXTtNsgM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/M0PASQCv7USe2SkUm5YCXTtNsgM/1/da"><img src="http://feedads.g.doubleclick.net/~a/M0PASQCv7USe2SkUm5YCXTtNsgM/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/06/22/gsoc-weekly-report-04-en/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #03</title>
		<link>http://neosergio.net/2010/06/21/gsoc-weekly-report-03-en/</link>
		<comments>http://neosergio.net/2010/06/21/gsoc-weekly-report-03-en/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 18:39:29 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=474</guid>
		<description><![CDATA[This is my weekly report # 03: What I have done last week Improving my skills on Django What I will do this week Finish the web interface Start to create the Javascript functions to translate content to Mallard Syntax &#8230; <a href="http://neosergio.net/2010/06/21/gsoc-weekly-report-03-en/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>This is my weekly report # 03:</strong></p>
<h2>What I have done last week</h2>
<ul>
<li>Improving my skills on <a href="http://www.djangoproject.com/">Django</a></li>
</ul>
<h2>What I will do this week</h2>
<ul>
<li>Finish the web interface</li>
<li>Start to create the Javascript functions to translate content to <a href="http://projectmallard.org/1.0/index.html">Mallard Syntax</a></li>
</ul>
<h2>Timeline</h2>
<ul>
<li>I&#8217;m still delay on my weekly reports, and I remade my project <a href="http://live.gnome.org/SummerOfCode2010/SergioInfanteMontero_Mallard/schedule">schedule</a></li>
</ul>
<h2>Issues</h2>
<ul>
<li>I found new things to think, about data flow of my project.</li>
<li>I found some system specs that I don&#8217;t know to develop them with Django.</li>
</ul>
<h2>Cool Things</h2>
<ul>
<li>I got money from my University (for Visa and Food), if I get the sponsorship to <a href="http://www.guadec.org/index.php/guadec/2010/">GUADEC 2010</a>.</li>
</ul>
<p style="text-align: center;"><span style="color: #000000;"><a href="http://live.gnome.org/GUADEC/2010"></a><a href="http://live.gnome.org/GUADEC/2010"><img class="size-full wp-image-478 aligncenter" title="the-hague-footer-logo" src="http://neosergio.net/wp-content/uploads/2010/06/the-hague-footer-logo.png" alt="" width="220" height="55" /></a></span></p>
<p>Cheers <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/GIeTfTCcx5W91QyOWEjdIx46U3E/0/da"><img src="http://feedads.g.doubleclick.net/~a/GIeTfTCcx5W91QyOWEjdIx46U3E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GIeTfTCcx5W91QyOWEjdIx46U3E/1/da"><img src="http://feedads.g.doubleclick.net/~a/GIeTfTCcx5W91QyOWEjdIx46U3E/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/06/21/gsoc-weekly-report-03-en/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #02 (Spanish Version)</title>
		<link>http://neosergio.net/2010/06/11/gsoc-weekly-report-02-es/</link>
		<comments>http://neosergio.net/2010/06/11/gsoc-weekly-report-02-es/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 14:41:15 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME-es]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=449</guid>
		<description><![CDATA[Mi reporte semanal # 02: Que hice la semana pasada Empezar la construcción de la interfaz web con Django Empezar la construcción de la base de datos, Use Dia para construir los diagramas lógicos. Que hare esta semana Finalizar la interfaz web &#8230; <a href="http://neosergio.net/2010/06/11/gsoc-weekly-report-02-es/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
<p>Mi reporte semanal # 02:</p>
<h2>Que hice la semana pasada</h2>
<ul>
<li>Empezar la construcción de la interfaz web con <a href="http://www.djangoproject.com/">Django</a></li>
<li>Empezar la construcción de la base de datos, Use <a href="http://projects.gnome.org/dia/">Dia</a> para construir los diagramas lógicos.</li>
</ul>
<h2>Que hare esta semana</h2>
<ul>
<li>Finalizar la interfaz web</li>
<li>Empezar a crear las funciones Javascript para traducir contendio a la <a href="http://projectmallard.org/1.0/index.html">sintaxis de Mallard</a></li>
</ul>
<h2>Linea de tiempo</h2>
<ul>
<li>Sigo con el retraso en los reportes semanales.</li>
</ul>
<h2>Problemas</h2>
<ul>
<li>Tengo algunos problemas para construir la interfaz con Python sin un Framework. Por eso pedí sugerencias a mi mentor, y decidí usar Django.</li>
</ul>
<h2>Cosas Interesantes</h2>
<ul>
<li>Dia es una buena herramienta, para construir diagramas, rápida y simple. Aquí algunos <a href="http://projects.gnome.org/dia/exempl.html">ejemplos</a> and <a href="http://projects.gnome.org/dia/links.html">enlaces</a> que son útiles.</li>
</ul>
<p>Saludos <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/MwTBlR1Uv5gCGF_1R8YyJMQuYrg/0/da"><img src="http://feedads.g.doubleclick.net/~a/MwTBlR1Uv5gCGF_1R8YyJMQuYrg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MwTBlR1Uv5gCGF_1R8YyJMQuYrg/1/da"><img src="http://feedads.g.doubleclick.net/~a/MwTBlR1Uv5gCGF_1R8YyJMQuYrg/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/06/11/gsoc-weekly-report-02-es/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #02</title>
		<link>http://neosergio.net/2010/06/11/gsoc-weekly-report-02-en/</link>
		<comments>http://neosergio.net/2010/06/11/gsoc-weekly-report-02-en/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 14:28:35 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=446</guid>
		<description><![CDATA[This is my weekly report # 02: What I have done last week Began to build web interface with Django Began to build the database, I used Dia to build logic diagrams. What I will do this week Finish the &#8230; <a href="http://neosergio.net/2010/06/11/gsoc-weekly-report-02-en/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>This is my weekly report # 02:</strong></p>
<h2>What I have done last week</h2>
<ul>
<li>Began to build web interface with <a href="http://www.djangoproject.com/">Django</a></li>
<li>Began to build the database, I used <a href="http://projects.gnome.org/dia/">Dia</a> to build logic diagrams.</li>
</ul>
<h2>What I will do this week</h2>
<ul>
<li>Finish the web interface</li>
<li>Start to create the Javascript functions to translate content to <a href="http://projectmallard.org/1.0/index.html">Mallard Syntax</a></li>
</ul>
<h2>Timeline</h2>
<ul>
<li>I&#8217;m still delay on my weekly reports</li>
</ul>
<h2>Issues</h2>
<ul>
<li>I have some troubles to build the interface with Python without a Framework. So I ask for suggestions to my mentor, and I decided to use Django.</li>
</ul>
<h2>Cool Things</h2>
<ul>
<li>Dia is a good tool, to build diagrams, fast and simple. See some <a href="http://projects.gnome.org/dia/exempl.html">examples</a> and <a href="http://projects.gnome.org/dia/links.html">links</a> that are useful.</li>
</ul>
<p>Cheers <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/dZIAiPcoRbeQ6tcV1NPvo7V17zA/0/da"><img src="http://feedads.g.doubleclick.net/~a/dZIAiPcoRbeQ6tcV1NPvo7V17zA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dZIAiPcoRbeQ6tcV1NPvo7V17zA/1/da"><img src="http://feedads.g.doubleclick.net/~a/dZIAiPcoRbeQ6tcV1NPvo7V17zA/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/06/11/gsoc-weekly-report-02-en/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #01 (Spanish version)</title>
		<link>http://neosergio.net/2010/06/02/gsoc-weekly-report-01-es/</link>
		<comments>http://neosergio.net/2010/06/02/gsoc-weekly-report-01-es/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 06:53:18 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME-es]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=439</guid>
		<description><![CDATA[Este es mi reporte semanal #01: Lo que hice la semana pasada Planificar las interfaces simples y útiles. Planificar el flujo de datos de la aplicación web. Bosquejos de la interfaz principal (interfaces basicas de usuarios simples, mantenedor y administrador) &#8230; <a href="http://neosergio.net/2010/06/02/gsoc-weekly-report-01-es/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
<p>Este es mi reporte semanal #01:</p>
<h2>Lo que hice la semana pasada</h2>
<div id="_mcePaste">
<ul>
<li>Planificar las interfaces simples y útiles.</li>
<li>Planificar el flujo de datos de la aplicación web.</li>
<li>Bosquejos de la interfaz principal (interfaces basicas de usuarios simples, mantenedor y administrador)</li>
</ul>
<p><img title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb7.png" alt="" width="250" height="150" /><img title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb6.png" alt="" width="250" height="150" /><img title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb5.png" alt="" width="250" height="150" /><img title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb4.png" alt="" width="250" height="150" /><img title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb02.png" alt="" width="250" height="150" /><img title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb01.png" alt="" width="250" height="150" /></p>
<p>Los bosquejos completos estan aqui (<a title="mockups mallard online" href="http://live.gnome.org/SummerOfCode2010/SergioInfanteMontero_Mallard?action=AttachFile&amp;do=get&amp;target=mallard-online.pdf">PDF</a>)</p>
<h2>Que hare esta semana</h2>
</div>
<ul>
<li>Construir las interfaces reales basadas en los bosquejos</li>
</ul>
<h2>Linea de tiempo</h2>
<ul>
<li>Estoy retrasado en mi reporte semanal, lo siento.</li>
</ul>
<h2>Problemas</h2>
<ul>
<li>He gastado mucho tiempo, resolviendo y construyendo el flujo de datos y las interfaces simples y útiles.</li>
</ul>
<h2>Cosas Interesantes</h2>
<ul>
<li>Encontré que al usar <a href="http://gomockingbird.com/">gomockingbird.com</a>, la creación de bosquejos puede ser facil, rápida y buena. Puedo exportar los bosquejos a PDF y PNG. (<a href="http://gomockingbird.com/mockingbird/index.html?project=191c9b8281c0fca9b3e35f41a9dfc31a9475c25d">Aqui esta mallard-online</a> en <a href="http://gomockingbird.com/">gomockingbird.com</a>)</li>
</ul>
<p>Saludos <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/e19u50wCGk5YvNoybSzxp6RUXfQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/e19u50wCGk5YvNoybSzxp6RUXfQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/e19u50wCGk5YvNoybSzxp6RUXfQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/e19u50wCGk5YvNoybSzxp6RUXfQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/06/02/gsoc-weekly-report-01-es/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GNOME Project Mallard Online – Weekly report #01</title>
		<link>http://neosergio.net/2010/06/02/gsoc-weekly-report-01-en/</link>
		<comments>http://neosergio.net/2010/06/02/gsoc-weekly-report-01-en/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 06:31:41 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=414</guid>
		<description><![CDATA[This is my weekly report #01: What I have done last week Planning the simple and useful interfaces. Planning the data flow of the web application. Mockups about main interface (basic interfaces of simple user, maintainer and admin) All mockups &#8230; <a href="http://neosergio.net/2010/06/02/gsoc-weekly-report-01-en/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is my <strong>weekly report #01</strong>:</p>
<h2>What I have done last week</h2>
<ul>
<li>Planning the simple and useful interfaces.</li>
<li>Planning the data flow of the web application.</li>
<li>Mockups about main interface (basic interfaces of simple user, maintainer and admin)</li>
</ul>
<p><img class="alignnone size-full wp-image-426" title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb7.png" alt="" width="250" height="150" /><img class="alignnone size-full wp-image-426" title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb6.png" alt="" width="250" height="150" /><img class="alignnone size-full wp-image-426" title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb5.png" alt="" width="250" height="150" /><img class="alignnone size-full wp-image-426" title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb4.png" alt="" width="250" height="150" /><img class="alignnone size-full wp-image-426" title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb02.png" alt="" width="250" height="150" /><img class="alignnone size-full wp-image-426" title="thumb7" src="http://neosergio.net/wp-content/uploads/2010/06/thumb01.png" alt="" width="250" height="150" /></p>
<p>All mockups are here (<a title="mockups mallard online" href="http://live.gnome.org/SummerOfCode2010/SergioInfanteMontero_Mallard?action=AttachFile&amp;do=get&amp;target=mallard-online.pdf">PDF</a>)</p>
<h2>What I will do this week</h2>
<ul>
<li>Build real interfaces based on the mockups</li>
</ul>
<h2>Timeline</h2>
<ul>
<li>I&#8217;m late on my weekly report sorry for that</li>
</ul>
<h2>Issues</h2>
<ul>
<li>I Spend a lot of time, figuring and making out the data flow and the simple and useful interfaces</li>
</ul>
<h2>Cool Things</h2>
<p><span style="font-family: 'Times New Roman'; line-height: normal; font-size: small;"> </span></p>
<ul>
<li>I found that using <a href="http://gomockingbird.com/">gomockingbird.com</a>, could be easy, fast and good creating mockups. I can export the mockups to PDF and PNG. (<a href="http://gomockingbird.com/mockingbird/index.html?project=191c9b8281c0fca9b3e35f41a9dfc31a9475c25d">Here is mallard-online</a> at <a href="http://gomockingbird.com/">gomockingbird.com</a>)</li>
</ul>
<p>Kind regards <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/rOnoiyupKV-uRIo3mlO91qqgWRQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/rOnoiyupKV-uRIo3mlO91qqgWRQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rOnoiyupKV-uRIo3mlO91qqgWRQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/rOnoiyupKV-uRIo3mlO91qqgWRQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/06/02/gsoc-weekly-report-01-en/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Summer of code project Portfolio</title>
		<link>http://neosergio.net/2010/05/31/my-soc-portfolio/</link>
		<comments>http://neosergio.net/2010/05/31/my-soc-portfolio/#comments</comments>
		<pubDate>Mon, 31 May 2010 23:51:22 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=403</guid>
		<description><![CDATA[During the course of my Summer of Code project, I&#8217;ll not only have to write code, I&#8217;ll also have to spend some time on reporting the progress of my project. This consists of the following: Send to gnome-soc-list a weekly &#8230; <a href="http://neosergio.net/2010/05/31/my-soc-portfolio/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>During the course of my Summer of Code project, I&#8217;ll not only have to write code, I&#8217;ll also have to spend some time  on reporting the progress of my project. This consists of the following:</p>
<ul>
<li>Send to gnome-soc-list a weekly report</li>
<li>Keep my  portfolio page up-to-date</li>
<li>Promote my work on my blog</li>
</ul>
<p>So, I have to maintain a wiki page with all the information about my project. This page should have all the necessary information about my project, for those people that want to know more about it.</p>
<p>The goal  of this page is to inform people about my project (the link you give  them if they want to know more) and to make sure that all the  information about it will still be available after the summer.</p>
<p>A placeholder  for each project at GNOME has been made here: <a href="http://live.gnome.org/SummerOfCode2010/Projects">Student  Projects</a></p>
<p>My portfolio is here: <a href="http://live.gnome.org/SummerOfCode2010/SergioInfanteMontero_Mallard">GNOME  Project Mallard online (Sergio Infante Montero)</a></p>
<p style="text-align: center;"><a href="http://projectmallard.org/"><img class="size-medium wp-image-408 aligncenter" title="mallard-header" src="http://neosergio.net/wp-content/uploads/2010/05/mallard-header-300x78.png" alt="" width="300" height="78" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/lrhzd1u8oVMFSMpvSpv6PyiDFfs/0/da"><img src="http://feedads.g.doubleclick.net/~a/lrhzd1u8oVMFSMpvSpv6PyiDFfs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lrhzd1u8oVMFSMpvSpv6PyiDFfs/1/da"><img src="http://feedads.g.doubleclick.net/~a/lrhzd1u8oVMFSMpvSpv6PyiDFfs/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/05/31/my-soc-portfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Details of my GSoC Project – GNOME Project Mallard online</title>
		<link>http://neosergio.net/2010/05/20/details-of-my-gsoc-project-gnome-project-mallard-online/</link>
		<comments>http://neosergio.net/2010/05/20/details-of-my-gsoc-project-gnome-project-mallard-online/#comments</comments>
		<pubDate>Thu, 20 May 2010 14:29:37 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=392</guid>
		<description><![CDATA[Title: GNOME Project Mallard online Student: Sergio Infante Montero Abstract: System online to create, edit, review Mallard Syntax document for GNOME Documentation Project Content: What is the ultimate goal of your proposal? : System online to write,edit and review documentation &#8230; <a href="http://neosergio.net/2010/05/20/details-of-my-gsoc-project-gnome-project-mallard-online/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://neosergio.net/wp-content/uploads/2010/05/gsoc_gnome_2010.png"><img class="size-medium wp-image-396 aligncenter" title="gsoc_gnome_2010" src="http://neosergio.net/wp-content/uploads/2010/05/gsoc_gnome_2010-300x180.png" alt="GSOC GNOME" width="300" height="180" /></a></p>
<p><strong>Title:</strong> GNOME Project Mallard online<br />
<strong>Student:</strong> Sergio Infante Montero<strong><br />
Abstract:</strong> System online to create, edit, review Mallard Syntax document for GNOME Documentation Project<strong><br />
Content:</strong></p>
<ul>
<li> What is the ultimate goal of your proposal? : System online to write,edit and review documentation for GNOME Project</li>
<li>What components/modules will it touch/change or create? ProjectMallard, Yelp, GIT</li>
<li>What benefits does it have for GNOME and its community? : More people involved on generate of Documentation using Mallard</li>
<li>Why you&#8217;d like to complete this particular project?  I want to contribute with GNOME, especially on Documentation Project and be part of GNOME Foundation</li>
<li>How do you plan to achieve completion of your project?
<ul>
<li>Use an agile development software methodology</li>
<li>Generate all basic Web Interface with HTML, CSS and Python. Hosting project on gitorious &#8211; <em>May 31 Deadline</em></li>
<li>Make a JavaScript module to give an usable web interface to write documentation according to Mallard, this module will generate XML &#8211; <em>Jun 14 Deadline</em></li>
<li>Generation of Mallard Syntax document with Python- <em>Jun 28 Deadline</em></li>
<li>Editing Mallard documents  with web interface-  <em>Jul 12 Deadline</em></li>
<li>Integration with GIT using Python- <em>Ago 9 Deadline</em></li>
<li>System complete and debugged &#8211; <em>Ago 16 Deadline</em></li>
</ul>
</li>
<li>What will be showable at mid-term [1]? : Generation of Mallard files, edit, review, and creation online.</li>
<li>Why do you think you are be the best person to work on this project?: I was working with Mallard on last months, understand it, write some documentation for postr (app for flickr on GNOME), giving speechs of Mallard, and developing a web application to generate .page files</li>
<li>What are your past experiences (if any) with the open source world?: I&#8217;m a member of OpenOffice.org Project, as a translator, documentator and managing the Spanish web site of oooauthors.org, patchs and bug triagging too. With GNOME, I participated on Bug Team Squad, on bug triagging, and adding some code on Postr application, and now with ProjectMallard.</li>
<li>Why are you interested in improving GNOME? I really like the project, GNOME 3 will be awesome and I want to contribute with the future, i like the people around it, the friendship, the way how it develop software, and I have good friends that they are part of GNOME Foundation and I want to colaborate with them.</li>
<li>Please attach a link to a bug (bugzilla.gnome.org or other Free Software tracker) containing a patch you&#8217;ve written: https://bugzilla.gnome.org/show_bug.cgi?id=562160</li>
</ul>
<p>[1] All students are invited to attend GUADEC and present theirproject there, which is right after the midterm evaluation deadline.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/aw6KfQ98HwoXn5Ywr9nS6ejrnPE/0/da"><img src="http://feedads.g.doubleclick.net/~a/aw6KfQ98HwoXn5Ywr9nS6ejrnPE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aw6KfQ98HwoXn5Ywr9nS6ejrnPE/1/da"><img src="http://feedads.g.doubleclick.net/~a/aw6KfQ98HwoXn5Ywr9nS6ejrnPE/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/05/20/details-of-my-gsoc-project-gnome-project-mallard-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Charla IRC de GNOME Hispano | Abril 2010</title>
		<link>http://neosergio.net/2010/04/17/charla-irc-de-gnome-hispano-abril-2010/</link>
		<comments>http://neosergio.net/2010/04/17/charla-irc-de-gnome-hispano-abril-2010/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 14:11:06 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=386</guid>
		<description><![CDATA[La Asociación GNOME Hispano, con la intención de promocionar el proyecto GNOME en todos los ámbitos y, segundo, intentar servir de punto de entrada al proyecto para los usuarios/desarrolladores que lo deseen, los invita a participar de la Charla IRC &#8230; <a href="http://neosergio.net/2010/04/17/charla-irc-de-gnome-hispano-abril-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>La Asociación GNOME Hispano, con la intención de promocionar el proyecto GNOME en todos los ámbitos y, segundo, intentar servir de punto de entrada al proyecto para los usuarios/desarrolladores que lo deseen, los invita a participar de la Charla IRC de Febrero.</p>
<p>Para este mes tenemos ya todo confirmado:</p>
<p><strong>Tema:</strong> <em>GNOME 3</em><br />
<strong>Expositor:</strong> Siegfried-Angel Gevatter Pujals<br />
<strong> Fecha:</strong> Sábado 17 de Febrero &#8211; 2010<br />
<strong>Hora:</strong> 18hrs UTC (12hrs, México D.F., 13hrs Lima, 13hrs Bogota, 14hrs Santiago, 15hrs Buenos Aires, 20hrs Madrid, 21hrs Helsinki)<br />
<strong>Lugar:</strong> En irc.gnome.org canal #gnome-hispano</p>
<p>Los recursos previos y posteriores a la charla estarán en el <a href="http://es.gnome.org/Eventos/CharlasIRC/CharlaFebrero2010">sitio de GNOME HIspano</a></p>
<p>Si tienes problemas con el tiempo <a href="http://www.timeanddate.com/counters/customcounter.html?day=17&amp;month=4&amp;year=2010&amp;hour=18&amp;min=0&amp;sec=0&amp;p0=0">aquí</a> tienes una cuenta regresiva <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Están cordialmente invitados, por favor compartan esta invitación con sus colegas, amigos, curiosos y fans Gnomeros. Así que no se olviden separar un tiempo para estar presentes en la charla.</p>
<p style="text-align: center;"><a href="http://neosergio.net/wp-content/uploads/2010/02/Gnome.png"><img class="aligncenter" title="Gnome" src="http://neosergio.net/wp-content/uploads/2010/02/Gnome-300x300.png" alt="Gnome" width="180" height="180" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/veip2JFad2ilYdvR9gQWeXcrsZI/0/da"><img src="http://feedads.g.doubleclick.net/~a/veip2JFad2ilYdvR9gQWeXcrsZI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/veip2JFad2ilYdvR9gQWeXcrsZI/1/da"><img src="http://feedads.g.doubleclick.net/~a/veip2JFad2ilYdvR9gQWeXcrsZI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/04/17/charla-irc-de-gnome-hispano-abril-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with OpenOffice.org | Comenzando con OpenOffice.org | Febrero 2010</title>
		<link>http://neosergio.net/2010/03/03/getting-started-with-openoffice-org-comenzando-con-openoffice-org-febrero-2010/</link>
		<comments>http://neosergio.net/2010/03/03/getting-started-with-openoffice-org-comenzando-con-openoffice-org-febrero-2010/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:56:17 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=379</guid>
		<description><![CDATA[En incontables ocasiones, me han preguntado, ¿Que libro es bueno para aprender OpenOffice.org? o ¿Como puedo saber todas las funcionalidades de OpenOffice.org?, y demas preguntas relacionadas al uso de esta gran suite ofimatica. Pues bueno, desde el año 2005, la &#8230; <a href="http://neosergio.net/2010/03/03/getting-started-with-openoffice-org-comenzando-con-openoffice-org-febrero-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>En incontables ocasiones, me han preguntado, ¿Que libro es bueno para aprender OpenOffice.org? o ¿Como puedo saber todas las funcionalidades de OpenOffice.org?, y demas preguntas relacionadas al uso de esta gran suite ofimatica.</p>
<p>Pues bueno, desde el año 2005, la comunidad de OpenOffice.org entrega libros de muy buena calidad con el propósito de enseñar OpenOffice.org, todo esto a través del portal <a href="http://www.oooauthors.org/">OpenOffice.org Authors</a>.</p>
<p>El mes pasado (2 de Febrero del 2010)  OOoAuthors publico la reciente version de su libro Getting Started with OpenOffice.org basado en la version 3.2 de la suite. Y ahora se los comparto por este medio, es un libro de 442 paginas, muy completo e incluso servira para aquellas personas que buscan hacer silabos o cursos de OpenOffice.org.</p>
<p style="text-align: center;"><a href="http://share.neosergio.net/books/0100GS3-GettingStartedOOo3.pdf"><img class="size-medium wp-image-380 aligncenter" title="getting_started_ooo3" src="http://neosergio.net/wp-content/uploads/2010/03/getting_started_ooo3-213x300.png" alt="Getting Started with OpenOffice.org" width="213" height="300" /></a><strong><a href="http://share.neosergio.net/books/0100GS3-GettingStartedOOo3.pdf">Descargar</a></strong></p>
<p>Como se daran cuenta el libro esta en Ingles y la versión en Español se esta preparando. Si deseas ayudar en la versión en Español comunícate conmigo para empezar a coordinar tu participación en OOoAuthors, envíame un mail a: <strong>neosergio(arroba)openoffice.org.</strong></p>
<p>Enjoy OOo</p>
<p>p.d. Insisto en recordarles no nombrar solamente OpenOffice sino por su nombre completo OpenOffice.org o solamente OOo, <a href="http://neosergio.net/2008/11/21/openofficeorg-vs-openoffice/">estos son los motivos</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/qihM3ASQWO3RjFuMMW2RbDhLH_g/0/da"><img src="http://feedads.g.doubleclick.net/~a/qihM3ASQWO3RjFuMMW2RbDhLH_g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qihM3ASQWO3RjFuMMW2RbDhLH_g/1/da"><img src="http://feedads.g.doubleclick.net/~a/qihM3ASQWO3RjFuMMW2RbDhLH_g/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/03/03/getting-started-with-openoffice-org-comenzando-con-openoffice-org-febrero-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charla IRC de GNOME Hispano – Febrero 2010</title>
		<link>http://neosergio.net/2010/02/22/charla-irc-febrero-2010/</link>
		<comments>http://neosergio.net/2010/02/22/charla-irc-febrero-2010/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 19:53:38 +0000</pubDate>
		<dc:creator>neosergio</dc:creator>
				<category><![CDATA[GNOME]]></category>

		<guid isPermaLink="false">http://neosergio.net/?p=370</guid>
		<description><![CDATA[Este 2010, Luego de un mes de descanso, retomamos las Charlas IRC de GNOME Hispano. La Asociación GNOME Hispano, con la intención de promocionar el proyecto GNOME en todos los ámbitos y, segundo, intentar servir de punto de entrada al &#8230; <a href="http://neosergio.net/2010/02/22/charla-irc-febrero-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Este 2010, Luego de un mes de descanso, retomamos las Charlas IRC de GNOME Hispano.</p>
<p>La Asociación GNOME Hispano, con la intención de promocionar el proyecto GNOME en todos los ámbitos y, segundo, intentar servir de punto de entrada al proyecto para los usuarios/desarrolladores que lo deseen, los invita a participar de la Charla IRC de Febrero.</p>
<p>Las Charlas IRC de GNOME Hispano, tienen como objetivo fomentar la formación de <a href="http://catb.org/jargon/html/H/hacker.html">hackers</a> hispanos.</p>
<p>Para este mes tenemos ya todo confirmado:</p>
<p><strong>Tema:</strong> <em>Genie, o por qué tuve que dejar Python</em><br />
<strong>Expositor:</strong> Sandino Flores<br />
<strong> Fecha:</strong> sábado 27 de Febrero &#8211; 2010<br />
<strong>Hora:</strong> 17hrs UTC (11hrs, México D.F., 12hrs Lima, 12hrs Bogota, 14hrs Santiago, 14hrs Buenos Aires, 18hrs Madrid, 19hrs Helsinki)<br />
<strong>Lugar:</strong> En irc.gnome.org canal #gnome-hispano</p>
<p>Los recursos previos y posteriores a la charla estarán en el <a href="http://es.gnome.org/Eventos/CharlasIRC/CharlaFebrero2010">sitio de GNOME HIspano</a></p>
<p>Si tienes problemas con el tiempo <a href="http://www.timeanddate.com/counters/customcounter.html?day=27&amp;month=2&amp;year=2010&amp;hour=17&amp;min=0&amp;sec=0&amp;p0=0">aquí</a> tienes una cuenta regresiva <img src='http://neosergio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Están cordialmente invitados, por favor compartan esta invitación con sus colegas, amigos, curiosos y fans Gnomeros. Así que no se olviden separar un tiempo para estar presentes en la charla.</p>
<p style="text-align: center;"><a href="http://neosergio.net/wp-content/uploads/2010/02/Gnome.png"><img class="size-medium wp-image-372 aligncenter" title="Gnome" src="http://neosergio.net/wp-content/uploads/2010/02/Gnome-300x300.png" alt="Gnome" width="180" height="180" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/aBkrl5Zf9omXizZGWJJZfi_mWxM/0/da"><img src="http://feedads.g.doubleclick.net/~a/aBkrl5Zf9omXizZGWJJZfi_mWxM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aBkrl5Zf9omXizZGWJJZfi_mWxM/1/da"><img src="http://feedads.g.doubleclick.net/~a/aBkrl5Zf9omXizZGWJJZfi_mWxM/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://neosergio.net/2010/02/22/charla-irc-febrero-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
