<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KodeGeek &#187; opensource</title>
	<atom:link href="http://kodegeek.com/blog/category/opensource/feed/" rel="self" type="application/rss+xml" />
	<link>http://kodegeek.com/blog</link>
	<description>Programación, fitness, interés geek</description>
	<lastBuildDate>Sun, 05 Feb 2012 19:12:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>¿Como saber el tipo de un archivo? (I)</title>
		<link>http://kodegeek.com/blog/2011/02/26/%c2%bfcomo-saber-el-tipo-de-un-archivo-i/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25c2%25bfcomo-saber-el-tipo-de-un-archivo-i</link>
		<comments>http://kodegeek.com/blog/2011/02/26/%c2%bfcomo-saber-el-tipo-de-un-archivo-i/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 23:25:08 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[c]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[mime magic libmagic jni java]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[jni]]></category>
		<category><![CDATA[libmagic]]></category>
		<category><![CDATA[mime]]></category>
		<category><![CDATA[mime type]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2762</guid>
		<description><![CDATA[Por alguna razón, este articulo viejo ha tenido algo de tráfico en los últimos días. Me dí cuenta que la idea de usar Java y JNI nunca se materializó, sólo dí unas pistas. Una forma de hacer esto es llamando a la librería &#8216;magic&#8217;. Magic viene prácticamente en cualquier sistema operativo que se parezca a [...]]]></description>
			<content:encoded><![CDATA[<p>Por alguna razón, <a href="http://kodegeek.com/blog/2007/09/22/echando-codigo-¿como-saber-de-que-tipo-es-un-archivo-desde-java">este articulo viejo</a> ha tenido algo de tráfico en los últimos días. Me dí cuenta que la idea de usar Java y JNI nunca se materializó, sólo dí unas pistas.</p>
<p>Una forma de hacer esto es llamando a la librería &#8216;magic&#8217;. Magic viene prácticamente en cualquier sistema operativo que se parezca a UNIX que se respete, como BSD, OSX y por supuesto Linux.</p>
<p>Si usted llama a la página man (man 3 libmagic) allí encontrará suficiente información. Por ejemplo, aquí les muestro un pequeño programa que hice en C el cual detecta el tipo de archivo que usted le pase por la línea de comandos:</p>

<div class="wp_codebox"><table><tr id="p27624"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code" id="p2762code4"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include </span>
<span style="color: #339933;">#include </span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 * Program that shows how to use the magic library to figure out the type of a file
 * @author Jose V Nunez (josevnz@kodegeek.com)
 * License: BSD
 */</span>
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> argc<span style="color: #339933;">,</span> <span style="color: #993333;">char</span> <span style="color: #339933;">**</span> argv<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>argc <span style="color: #339933;">==</span> <span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;[ERROR]: Please provide the file name to check and try again!<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #666666; font-style: italic;">// See manpage libmagic for details on what this flags mean</span>
        <span style="color: #993333;">int</span> flags <span style="color: #339933;">=</span> MAGIC_SYMLINK<span style="color: #339933;">|</span>MAGIC_COMPRESS<span style="color: #339933;">|</span>MAGIC_CONTINUE<span style="color: #339933;">|</span>MAGIC_PRESERVE_ATIME<span style="color: #339933;">|</span>MAGIC_ERROR<span style="color: #339933;">;</span>
&nbsp;
        magic_t cookie <span style="color: #339933;">=</span> magic_open<span style="color: #009900;">&#40;</span>flags<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>cookie <span style="color: #339933;">==</span> NULL<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;There was a problem opening the magic library!<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #993333;">int</span> status <span style="color: #339933;">=</span> magic_load<span style="color: #009900;">&#40;</span>cookie<span style="color: #339933;">,</span> NULL<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>status <span style="color: #339933;">!=</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Unable to load magic default database!, %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> magic_error<span style="color: #009900;">&#40;</span>cookie<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                magic_close<span style="color: #009900;">&#40;</span>cookie<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #993333;">const</span> <span style="color: #993333;">char</span> <span style="color: #339933;">*</span> file_details <span style="color: #339933;">=</span>  magic_file<span style="color: #009900;">&#40;</span>cookie<span style="color: #339933;">,</span> argv<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Type for file: %s is %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> argv<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> file_details<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        magic_close<span style="color: #009900;">&#40;</span>cookie<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Para compilarlo les dejo un archivo Makefile:</p>

<div class="wp_codebox"><table><tr id="p27625"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p2762code5"><pre class="makefile" style="font-family:monospace;">CPPFLAGS += -O2 -L/Users/Shared/lib -I/Users/Shared/include -lmagic
all: magic.c
        $(CC) $(CPPFLAGS) magic.c -o magic</pre></td></tr></table></div>

<p>Y finalmente como se corre:</p>

<div class="wp_codebox"><table><tr id="p27626"><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code" id="p2762code6"><pre class="bash" style="font-family:monospace;">auyan:c josevnz$ <span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">cc</span> <span style="color: #660033;">-O2</span> -L<span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>Shared<span style="color: #000000; font-weight: bold;">/</span>lib -I<span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>Shared<span style="color: #000000; font-weight: bold;">/</span>include <span style="color: #660033;">-lmagic</span> magic.c <span style="color: #660033;">-o</span> magic
auyan:c josevnz$ .<span style="color: #000000; font-weight: bold;">/</span>magic <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>josevnz<span style="color: #000000; font-weight: bold;">/</span>CTX.DAT
Mime <span style="color: #7a0874; font-weight: bold;">type</span> <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>josevnz<span style="color: #000000; font-weight: bold;">/</span>CTX.DAT is Java serialization data, version <span style="color: #000000;">5</span>
auyan:c josevnz$</pre></td></tr></table></div>

<p>En la siguiente entrada las prometo como hacer esto desde Java (pista, vamos a utilizar JNI).</p>
<p>&#8211;José</p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2011/02/26/%c2%bfcomo-saber-el-tipo-de-un-archivo-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And the winner of the JavaFXpert RIA Exemplar Challenge</title>
		<link>http://kodegeek.com/blog/2010/09/20/and-the-winner-of-the-javafxpert-ria-exemplar-challenge/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=and-the-winner-of-the-javafxpert-ria-exemplar-challenge</link>
		<comments>http://kodegeek.com/blog/2010/09/20/and-the-winner-of-the-javafxpert-ria-exemplar-challenge/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 00:44:54 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[kodegeek]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[javafx]]></category>
		<category><![CDATA[ria exemplar challenge]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2601</guid>
		<description><![CDATA[La aplicación es una belleza, además de que el código y el problema que resuelve son interesantes. Si agregar más nada And the winner [of the JavaFXpert RIA Exemplar Challenge] ¡Ah, y tiene código abierto!]]></description>
			<content:encoded><![CDATA[<p>La aplicación es una belleza, además de que el código y el problema que resuelve son interesantes. Si agregar más nada<br />
<a href="http://learnjavafx.typepad.com/weblog/2010/09/and-the-winner-to-the-javafxpert-ria-exemplar-challenge-is.html">And the winner [of the JavaFXpert RIA Exemplar Challenge]</a></p>
<p>¡Ah, y tiene código abierto!</p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/09/20/and-the-winner-of-the-javafxpert-ria-exemplar-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.9 ya está afuera, JUnit no incluido en JavaFX</title>
		<link>http://kodegeek.com/blog/2010/06/18/netbeans-6-9-ya-esta-afuera-junit-no-incluido-en-javafx/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-6-9-ya-esta-afuera-junit-no-incluido-en-javafx</link>
		<comments>http://kodegeek.com/blog/2010/06/18/netbeans-6-9-ya-esta-afuera-junit-no-incluido-en-javafx/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 09:32:18 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[javafx]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[netbeans 6.9]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2414</guid>
		<description><![CDATA[Para quienes han seguido el asunto de NetBeans (el cual ya salió en su versión final 6.9) y la cucaracha de JUnit, este es el resultado: JUnit no es soportado en proyectos de JavaFX. Uno de los desarrolladores de NetBeans me mostró en el reporte de la cucaracha en donde está desactivado. ¿Entonces, cual es [...]]]></description>
			<content:encoded><![CDATA[<p>Para quienes <a href="http://kodegeek.com/blog/2010/06/13/netbeans-6-9-junit-aun-esta-roto/">han seguido</a> el asunto de NetBeans (el cual ya salió en su versión final 6.9) y la cucaracha de JUnit, este es el resultado: <a href="http://netbeans.org/bugzilla/show_bug.cgi?id=187528">JUnit no es soportado en proyectos de JavaFX</a>.</p>
<p>Uno de los desarrolladores de NetBeans me mostró <a href="http://hg.netbeans.org/javafx/rev/504d0a273c83">en el reporte de la cucaracha</a> en donde está desactivado.</p>
<p>¿Entonces, cual es la solución? Bueno, algo inconveniente pero que funciona, simplemente cree un proyecto de Java (no JavaFX) y entonces desde allí incluya sus pruebas de unidad.</p>
<p>Pero como una foto dice más que mil palabras les dejo el ejemplo abajo, creado con uno de los &#8216;magos de código&#8217; (wizzards) de NetBeans:</p>
<p><a href="http://kodegeek.com/blog/wp-content/uploads/2010/06/Picture-11.png"><img src="http://kodegeek.com/blog/wp-content/uploads/2010/06/Picture-11-300x219.png" alt="" title="Java, JavaFX y JUnit: Juntos pero no revueltos" width="300" height="219" class="alignnone size-medium wp-image-2418" /><br />
¡Misterio resuelto!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/06/18/netbeans-6-9-ya-esta-afuera-junit-no-incluido-en-javafx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.9: JUnit aún está roto</title>
		<link>http://kodegeek.com/blog/2010/06/13/netbeans-6-9-junit-aun-esta-roto/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-6-9-junit-aun-esta-roto</link>
		<comments>http://kodegeek.com/blog/2010/06/13/netbeans-6-9-junit-aun-esta-roto/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 00:16:37 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[javafx]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[programación]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2392</guid>
		<description><![CDATA[Después de probar varias soluciones que leí en la red y de ver como aún la versión 6.9 RC2 aún tiene esta cucaracha me decidí a reportar el problema. La cucaracha es la 187528. Si tu eres uno de los afectados te invito a comentar esta cucaracha, de esta manera los desarrolladores de NetBeans le [...]]]></description>
			<content:encoded><![CDATA[<p>Después de probar varias soluciones que leí en la red y de ver como aún la versión 6.9 RC2 aún tiene esta cucaracha me decidí a reportar el problema.</p>
<p><a href="http://netbeans.org/bugzilla/show_bug.cgi?id=187528">La cucaracha es la 187528</a>.</p>
<p>Si tu eres uno de los afectados te invito a comentar esta cucaracha, de esta manera los desarrolladores de <a href="http://netbeans.org">NetBeans</a> le darán más prioridad <img src='http://kodegeek.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&#8211;José</p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/06/13/netbeans-6-9-junit-aun-esta-roto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adios NetBeans 6.9, hola Eclipse Ganymede + Exadel JavaFX plugin</title>
		<link>http://kodegeek.com/blog/2010/06/06/adios-netbeans-6-9-hola-eclipse-ganymede-exadel-javafx-plugin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adios-netbeans-6-9-hola-eclipse-ganymede-exadel-javafx-plugin</link>
		<comments>http://kodegeek.com/blog/2010/06/06/adios-netbeans-6-9-hola-eclipse-ganymede-exadel-javafx-plugin/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:01:40 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[javafx]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[eclipse plugin exadel javafx netbeans bugs crash]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2356</guid>
		<description><![CDATA[La última gota que derramo el vaso; NetBeans 9.6 beta se cayó en medio de una operación sencilla, sin correr ni siquiera JavaFX. Me tiene realmente irritado que ni siquiera puedo crear mis pruebas de JUnit, así que moví todo mi proyecto a Eclipse. Las pruebas de JUnit las hice en un momento pero ahora [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_2357" class="wp-caption alignnone" style="width: 310px"><a href="http://kodegeek.com/blog/wp-content/uploads/2010/06/Picture-1.png"><img src="http://kodegeek.com/blog/wp-content/uploads/2010/06/Picture-1-300x189.png" alt="Instalando el plugin para Eclipse de JavaFX" title="Instalando el plugin para Eclipse de JavaFX" width="300" height="189" class="size-medium wp-image-2357" /></a><p class="wp-caption-text">¿Será que Exadel mejorará el soporte de JavaFX en Eclipse?</p></div><br />
La última gota que derramo el vaso; NetBeans 9.6 beta se cayó en medio de una operación sencilla, sin correr ni siquiera JavaFX. <a href="http://kodegeek.com/blog/2010/05/01/aventuras-con-javafx-1-3-y-netbean-6-9/">Me tiene realmente irritado que ni siquiera puedo crear mis pruebas de JUnit</a>, así que moví todo mi proyecto a Eclipse. Las pruebas de JUnit las hice en un momento pero ahora me encuentro que tengo que montar <a href="http://mkblog.exadel.com/javafx-plug-in/exadel-javafx-plug-in-for-eclipse-with-javafx-1-3-support/">soporte JavaFX 1.3</a>.</p>
<p>¿Será sencillo?<br />
¿Será mejor que NetBeans 6.9?</p>
<p>No tengo nada en contra de NetBeans, de hecho yo lo utilicé mucho antes que Eclipse (cuando se llamaba Forte). Hay <a href="http://netbeans.dzone.com/articles/netbeans-ide-69-stabilization">un grupo de gente dedicada a corregir errores</a>, pero quiero ver si al fin puedo terminar este proyecto en vez de pasar el tiempo reiniciando mi IDE.</p>
<p>Como si todo fuera tan fácil; Resulta que el plugin de Exadel para Eclipse se tira 3 peos dando un mensaje de error que dice &#8216;<a href="http://exadel.org/node/86">bad .class version</a>&#8216;.</p>
<p>Vamos a ver si lo resuelvo hoy mismo, ¡sino no me quedará otra que seguir trabajando con JavaFX 1.2!</p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/06/06/adios-netbeans-6-9-hola-eclipse-ganymede-exadel-javafx-plugin/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>¿Amanda se vuelve una solución comercial?</title>
		<link>http://kodegeek.com/blog/2010/02/27/%c2%bfamanda-se-vuelve-una-solucion-comercial/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25c2%25bfamanda-se-vuelve-una-solucion-comercial</link>
		<comments>http://kodegeek.com/blog/2010/02/27/%c2%bfamanda-se-vuelve-una-solucion-comercial/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 14:17:02 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[kodegeek]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[amanda]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[zamanda]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2277</guid>
		<description><![CDATA[Hoy leyendo mis correos de la lista de Amanda (a la cual estoy metido más por razones sentimentales que otra cosa) me conseguí con esto: Greetings; I have taken note that there have been no new snapshots made available in a bit over 3 weeks now, and other than the downloads page, all of the [...]]]></description>
			<content:encoded><![CDATA[<p>Hoy leyendo mis correos de la lista de <a href="http://www.amanda.org/download.php">Amanda</a> (a la cual estoy metido más <a href="http://kodegeek.com/blog/2005/04/29/opinion-de-libro-unix-backup-recover-de-wcurtis-preston/">por razones sentimentales que otra cosa</a>) me conseguí con esto:</p>
<blockquote><p>Greetings;</p>
<p>I have taken note that there have been no new snapshots made available in a<br />
bit over 3 weeks now, and other than the downloads page, all of the rest of<br />
the new web pages point to paid support.</p>
<p>What is the future direction of amanda?</p></blockquote>
<p>No es una sorpresa,<a href="http://kodegeek.com/blog/2009/03/18/resumen-de-communityeastone-dia-1/"> yo ya habia visto algo de esto en Community East con ZAmanda</a>. Amanda es <a href="http://kodegeek.com/blog/2005/02/19/trucos-unix-%C2%A1respaldando-servidores-usando-amanda/">en mi opinión</a> el mejor software de respaldo de código abierto que existe hoy en día y su evolución hacia software comercial con raíces de código abierto (como MySQL) es evolucionaría.</p>
<p>Yo realmente creo que el <a href="http://wiki.zmanda.com/index.php/Main_Page">producto</a> va a mejorar, sobre todo que ahora puede ser considerado una alternativa con soporte pago para las empresas (y definitivamente no creo que lo cierren).</p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/02/27/%c2%bfamanda-se-vuelve-una-solucion-comercial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Monitoreo de sistemas con Ganglia</title>
		<link>http://kodegeek.com/blog/2010/02/13/monitoreo-de-sistemas-con-ganglia/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=monitoreo-de-sistemas-con-ganglia</link>
		<comments>http://kodegeek.com/blog/2010/02/13/monitoreo-de-sistemas-con-ganglia/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 03:26:50 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[opensource]]></category>
		<category><![CDATA[ganglia]]></category>
		<category><![CDATA[openms]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2253</guid>
		<description><![CDATA[Bueno, por razones del destino me estoy familiarizando con Ganglia. Ganglia es un sistema de monitoreo distribuido, similar a OpenNMS, el cual además de ser gratuito es extensible. En mi caso lo tengo corriendo bajo OSX en mi Mac mini, lo cual me trajo ciertos dolores de cabeza en la instalación (sin embargo y como [...]]]></description>
			<content:encoded><![CDATA[<p>Bueno, por razones del destino me estoy familiarizando con <a href="http://sourceforge.net/projects/ganglia">Ganglia</a>. Ganglia es un sistema de monitoreo distribuido, similar a <a href="http://kodegeek.com/blog/2005/02/08/echando-codigo-%C2%BFcomo-desarrollar-un-plugin-para-opennms/">OpenNMS</a>, el cual además de ser gratuito es extensible.</p>
<p>En mi caso lo tengo corriendo bajo OSX en mi Mac mini, lo cual me trajo ciertos dolores de cabeza en la instalación (sin embargo y como siempre <a href="http://www.deanspot.org/content/compiling-ganglia-gmond-and-gmetad-osx-105">ya alguien se las habia ingeniado para resolver el problema</a>).</p>
<p>Ya les contaré como me va con este nuevo pasatiempo <img src='http://kodegeek.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/02/13/monitoreo-de-sistemas-con-ganglia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle y el desnalgue de Kenai.com</title>
		<link>http://kodegeek.com/blog/2010/02/06/oracle-y-el-desnalgue-de-kenai-com/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=oracle-y-el-desnalgue-de-kenai-com</link>
		<comments>http://kodegeek.com/blog/2010/02/06/oracle-y-el-desnalgue-de-kenai-com/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 14:59:19 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[opensource]]></category>
		<category><![CDATA[java.net]]></category>
		<category><![CDATA[kenai]]></category>
		<category><![CDATA[nini]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2245</guid>
		<description><![CDATA[Esto me está ladillando de sobremanera. Primero Oracle decidió tumbar a Kenai.com en favor de Java.net (e inclusive aconsejó a sus usuarios a moverse a otros sitios para el hospedaje del código). Y resulta que hoy leyendo mi correo me consigo esta perla: Gentlepeople, In an effort to get information out to the Kenai community [...]]]></description>
			<content:encoded><![CDATA[<p>Esto me está ladillando de sobremanera. Primero <a href="http://kodegeek.com/blog/2010/02/02/es-oficial-kenai-com-tiene-60-dias-mas-de-vida/">Oracle decidió tumbar a Kenai.com en favor de Java.net</a> (e inclusive aconsejó a sus usuarios a moverse a otros sitios para el hospedaje del código). Y resulta que hoy leyendo mi correo me consigo esta perla:</p>
<blockquote><p>Gentlepeople,</p>
<p>In an effort to get information out to the Kenai community quickly, while trying to manage the integration of our two companies, I think we did a poor job at communicating our plans for Kenai.com to you. I would like to remedy that now.</p>
<p>Our strategy is simple. We don&#8217;t believe it makes sense to continue investing in multiple hosted development sites that are basically doing the same thing.<strong> Our plan is to shut down kenai.com and focus our efforts on java.net as the hosted development community.</strong></p>
<p>We are in the process of migrating java.net to the kenai technology. <strong>This means that any project currently hosted on kenai.com will be able to continue as you are on java.net</strong>. We are still working out the technical details, but the goal is to make this migration as seamless as possible for the current kenai.com projects.</p>
<p>So in the meantime I suggest that you stay put on kenai.com and let us work through the details and get back to you later this month.</p>
<p>Thanks for your feedback and patience.</p>
<p>-Ted Farrell<br />
Oracle Corporation</p></blockquote>
<p>Si entiendo bien significa:</p>
<ul>
<li>No se vayan a Source Forge, Google o GitHub, los queremos en Java.net</li>
<li>La migración de los proyectos de Kenai.com a Java.net debería ser más o menos transparente</li>
</ul>
<p>¡Terminen de decidir que es lo que van a hacer!</p>
<p>Aún así pienso <a href="http://www.devx.com/opensource/Article/39525/0/page/2">seguir investigando que tan complicado es sacar mi código de Kenai.com</a>. Un mes de incertidumbre es una eternidad para un proyecto Open Source como StupidZombie <img src='http://kodegeek.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/02/06/oracle-y-el-desnalgue-de-kenai-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Es oficial: Kenai.com tiene 60 días más de vida</title>
		<link>http://kodegeek.com/blog/2010/02/02/es-oficial-kenai-com-tiene-60-dias-mas-de-vida/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=es-oficial-kenai-com-tiene-60-dias-mas-de-vida</link>
		<comments>http://kodegeek.com/blog/2010/02/02/es-oficial-kenai-com-tiene-60-dias-mas-de-vida/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:03:41 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[kenai]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[stupidzombie]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2234</guid>
		<description><![CDATA[Bueno, ya lo habia comentado anteriormente pero ahora es oficial: Hello fellow Project Administrators, It&#8217;s with a sad heart that we have to announce that the Kenai.com domain will be shutdown as part of the consolidation of project hosting sites now that Sun is a wholly owned subsidiary of Oracle. Project Kenai has always existed [...]]]></description>
			<content:encoded><![CDATA[<p>Bueno, <a href="http://kodegeek.com/blog/2010/01/29/se-acabo-sun-%c2%bfque-viene-despues/">ya lo habia comentado anteriormente</a> pero ahora es oficial:</p>
<blockquote><p>Hello fellow Project Administrators,</p>
<p>It&#8217;s with a sad heart that we have to announce that the Kenai.com domain will be shutdown as part of the consolidation of project hosting sites now that Sun is a wholly owned subsidiary of Oracle.</p>
<p>Project Kenai has always existed as two different things: Kenai the infrastructure, and Kenai the website (Kenai.com).  While it has come time to close the domain of Kenai.com, the infrastructure (which is already used under NetBeans.org) will live on to support other domains in the future.</p>
<p>With this decision from Oracle to close the Kenai.com domain, it is now time for project owners to begin the process of migrating their repositories and content over to other locations.  A few things to note as you begin this process:</p>
<p>   * More then one forum thread is going on at this time discussing alternative sites for hosting projects; this one appears to be the most active: </p>
<p>http://kenai.com/projects/help/forums/general/topics/2406-Alternatives-for-Kenai-com-</p>
<p>   * For Source repositories, SVNSync can be used for Subversion.  Git, and Hg are pretty simple by nature to move.</p>
<p>   * Wiki source code is available to all project admins and can be cut and paste into any other site that supports the Mediawiki syntax.</p>
<p>   * For Issue Trackers and Forum content, we are looking at ways to make that content available, but we have nothing at this time in place.  If you can come up with a way to move the content on your own, proceed as such.  Please do not wait for us.</p>
<p>The website will be closed to the creation of new projects in the next week.  The complete shutdown of the site and the removal of the domain will be completed in the next 60 days (April 2nd 2010). This should provide ample time for all projects to be moved to a new home of the project owners choice.</p>
<p>If you have a private project (only available to Sun internal projects) those projects will continue to exist.  We will send information about how to access those in a separate notice.</p>
<p>Any public projects that remain after the 60 day limit (April 2nd 2010) will be removed when the site is turned off.</p>
<p>It has been an amazing ride, and a great pleasure to personally work with so many of you over the last year or so. From the entire Project Kenai Team I want to thank you for all of the feedback, criticisms, and support over our time together.</p>
<p>With much respect,<br />
The Project Kenai Team </p></blockquote>
<p>No me queda otra que buscarle un nuevo hogar a StupidZombie. ¿Alguien tiene sugerencias? <img src='http://kodegeek.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/02/02/es-oficial-kenai-com-tiene-60-dias-mas-de-vida/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Se acabó Sun, ¿qué viene después?</title>
		<link>http://kodegeek.com/blog/2010/01/29/se-acabo-sun-%c2%bfque-viene-despues/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=se-acabo-sun-%25c2%25bfque-viene-despues</link>
		<comments>http://kodegeek.com/blog/2010/01/29/se-acabo-sun-%c2%bfque-viene-despues/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 03:39:38 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[javafx]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[kenai]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://kodegeek.com/blog/?p=2214</guid>
		<description><![CDATA[Esta semana ha sido una semana interesante para la gente que alguna vez utilizó productos de Sun Microsystems. Para no repetir lo obvio los dejo con una lista preparada por James Weaver (un fanático de JavaFX) el cual nos dá su opinión de las cosas que vienen. Como toda transacción de este tipo, hay ganadores [...]]]></description>
			<content:encoded><![CDATA[<p>Esta semana ha sido una semana interesante para la gente que alguna vez utilizó productos de Sun Microsystems. Para no repetir lo obvio los dejo con una lista preparada por James Weaver (un fanático de JavaFX) el cual <a href="http://learnjavafx.typepad.com/weblog/2010/01/oracle-we-will-invest-heavily-in-javafx.html">nos dá su opinión de las cosas que vienen</a>.</p>
<p>Como toda transacción de este tipo, hay ganadores y perdedores. Las cosas cambian y la gente decide moverse para hacer cosas distintas. Por ejemplo, Sang Shin ,el creador e instructor de<a href="http://javapassion.com/"> JavaPassion</a>, mandó un correo de despedida en el cual nos cuenta que piensa seguir otras oportunidades fuera de Sun:</p>
<blockquote><p>As a result of recent Sun/Oracle merger, I&#8217;ve decided to<br />
leave Sun/Oracle and decided to pursue a career of teaching<br />
and consulting.</p>
<p>What this means is that the &#8220;javafxhomeworks@sun.com&#8221;<br />
homework alias will not work anymore from tomorrow.</p>
<p>A new homework alias has been created and it is</p>
<p> javafxhomeworks@javapassion.com (same address with<br />
 different domain name)</p>
<p>Please send your homework to the new address above from<br />
now on.</p>
<p>If you already submitted all the homeworks and personal<br />
information to the old homework address, there is NO<br />
need to resubmit since I have the copies.</p>
<p>Thanks.</p>
<p>-Sang Shin</p></blockquote>
<p>Otra que me pegó de cerca es que <a href="http://blogs.sun.com/projectkenai/entry/the_future_of_kenai_com">Oracle planea descontinuar</a> a <a href="http://kenai.com">Kenai.com</a>. Para mi eso se traduce en que debo migrar el código de<a href="http://stupidzombie.com"> StupidZombie</a> a otro sitio, probablemente<a href="http://sf.net"> Source Forge </a>(pese a sus verrugas):</p>
<blockquote><p>The Future of Kenai.com<br />
With Sun now a wholly owned subsidiary of Oracle, the acquisition is triggering a consolidation process. Part of this process is the phasing out of the public-facing domain used for the Project Kenai Beta site. This action is being undertaken to provide the best project hosting solution for all of our customers into one location.  Minimizing the number of current project hosting sites is a start in this direction. The consolidation process is underway and we will post notices about the plans and timeline as they become publicly available. The end-goal is to ensure we provide even more useful resources for all of the Oracle and Java developer communities.</p>
<p>Stay tuned as we work things through.</p></blockquote>
<p>Ya hay gente que comenzó a irse debido a la adquisición de Sun por parte de Oracle. Charles Nutter (desarrollador lider de JRuby) <a href="http://twitter.com/headius/status/8356816606">nos cuenta desde Twitter</a>:</p>
<blockquote><p>Sounds like the post-merger bloodletting has begun at Sun/Oracle. Already hearing about some friends getting laid off <img src='http://kodegeek.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />
</p></blockquote>
<p>Al mismo tiempo que <a href="http://twitter.com/OpenJonathan">Jonathan Schwarts</a> <a href="http://blogs.sun.com/jonathan/entry/where_life_takes_me_next">se despide de Sun</a>:<br />
As for where life takes me next, you should follow me via Twitter at openjonathan to find out. I&#8217;ll also be rehosting this blog (and again, stay tuned to Twitter by following me here). I expect to do my part to keep things interesting.</p>
<blockquote><p>Thank you for your support and commitment. I wish you all the best of luck building, taking advantage of (and likely wearing) the future!</p>
<p>Jonathan Schwartz<br />
CEO, Sun Microsystems, Inc.<br />
A Wholly Owned Subsidiary of Oracle Corporation. </p></blockquote>
<p>No todo es malo, el solapamiento de areas entre Sun y Oracle es mínimo y por los menos Java, JavaFX y NetBeans tienen un futuro promisorio. MySQL tampoco se puede quejar (al menos por los momentos) y este año viene un JavaOne.</p>
<p>Tiempos interesantes, los dejo con un enlace de mi experiencia <a href="http://kodegeek.com/blog/2008/05/11/mi-experiencia-de-javaone/">en Java One del 2008</a>. Me pone algo nostálgico <img src='http://kodegeek.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kodegeek.com/blog/2010/01/29/se-acabo-sun-%c2%bfque-viene-despues/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

