<?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"
	>

<channel>
	<title>DevAyd Blog</title>
	<atom:link href="http://blog.devayd.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.devayd.com</link>
	<description>CakePHP, Linux and web development related information</description>
	<pubDate>Tue, 07 Sep 2010 16:30:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>one line http server</title>
		<link>http://blog.devayd.com/2010/09/one-line-http-server/</link>
		<comments>http://blog.devayd.com/2010/09/one-line-http-server/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 16:30:58 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=55</guid>
		<description><![CDATA[Sometimes I find myself doing some simple html project. Usually, it could be seen right from the hd using file://, but there are some stuff, that doesn&#8217;t necesarily works this way.
Instead of creating a new apache account etc. etc.. I found this simple line to create a http static server that server files from the [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I find myself doing some simple html project. Usually, it could be seen right from the hd using file://, but there are some stuff, that doesn&#8217;t necesarily works this way.</p>
<p>Instead of creating a new apache account etc. etc.. I found this simple line to create a http static server that server files from the current directory:</p>
<p>python -m SimpleHTTPServer 8900</p>
<p>and you can access your files with http://localhost:8900</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2010/09/one-line-http-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>automating openvpn configuration with php</title>
		<link>http://blog.devayd.com/2010/07/automating-openvpn-configuration-with-php/</link>
		<comments>http://blog.devayd.com/2010/07/automating-openvpn-configuration-with-php/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 12:06:53 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[openvpn]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=53</guid>
		<description><![CDATA[Virtual Private Networks can be very handy, but even with easy-rsa scripts it&#8217;s a little time taking to add new computers to the network, especially if you frecuently add new machines.
With this handy php script you can automate this process a little bit - you could for example publish it on a web server and [...]]]></description>
			<content:encoded><![CDATA[<p>Virtual Private Networks can be very handy, but even with easy-rsa scripts it&#8217;s a little time taking to add new computers to the network, especially if you frecuently add new machines.</p>
<p>With this handy php script you can automate this process a little bit - you could for example publish it on a web server and then make customers to connet to it in order to generate their access keys and configuration (It would be a good idea to password protect it first <img src='http://blog.devayd.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
<p>You will need to generate the CA key and certificate first before you will be able to use it.</p>
<p>Check this guide on how to do it:<br />
<a href="http://www.openvpn.net/index.php/open-source/documentation/howto.html#pki" target="_blank">http://www.openvpn.net/index.php/open-source/documentation/howto.html#pki</a></p>
<p>and here goes the code:</p>
<pre name="code" class="php">

//this should be unique for each client

$commonName = 'ayd-test';

$tmpDir = '/tmp/openvpn-'.time();

$dn = array(

&quot;countryName&quot; =&gt; 'ES',

&quot;stateOrProvinceName&quot; =&gt; 'Baleares',

&quot;localityName&quot; =&gt; 'Palma de Mallorca',

&quot;organizationName&quot; =&gt; 'AYD',

&quot;organizationalUnitName&quot; =&gt; 'AYD test',

&quot;commonName&quot; =&gt; $commonName,

&quot;emailAddress&quot; =&gt; 'test@test.com'

);

$privkeypass = null;

$numberofdays = 3650;

//load previously generated server private key

$fp=fopen(&quot;./ca.key&quot;,&quot;r&quot;);

$caData = fread($fp,8192);

fclose($fp);

// $passphrase is required if your key is encoded (suggested)

$caKey = openssl_get_privatekey($caData);

//load previously generated server cartificate

$fp=fopen(&quot;./ca.crt&quot;,&quot;r&quot;);

$caCrt = fread($fp,8192);

fclose($fp);

//--------------- generating a new user cert and key -------------

// create private key for the user

$privkey = openssl_pkey_new();

openssl_pkey_export($privkey, $privatekey, $privkeypass);

//make certificate request for the user

$csr = openssl_csr_new($dn, $privatekey);

openssl_csr_export($csr, $csrStr);

//sign certificate request with the CA key

$sscert = openssl_csr_sign($csrStr, $caCrt, $caKey, $numberofdays);

openssl_x509_export($sscert, $publickey);

//create a tmp dir

mkdir($tmpDir);

//write a private key

echo &quot;writting private key...\n&quot;;

echo $privatekey; // Will hold the exported PriKey

file_put_contents($tmpDir.&quot;/&quot;.$commonName.'.key', $privatekey);

//write an user cert

echo &quot;writting ceritifate...\n&quot;;

echo $publickey;     // Will hold the exported Certificate

file_put_contents($tmpDir.&quot;/&quot;.$commonName.'.crt', $publickey);

//copy server certificate (we need it for openvpn config)

copy('./ca.crt', $tmpDir.'/ca.crt');

//generate and write openvpn config file

//edit data for according to your configuration

$config = &quot;client

dev tun

tun-mtu 1200

proto udp

remote yourserver.com 1194

resolv-retry infinite

nobind

persist-key

persist-tun

ca /etc/openvpn/server_ca.crt

cert /etc/openvpn/$commonName.crt

key /etc/openvpn/{$commonName}.key

comp-lzo

verb 5

&quot;;

file_put_contents($tmpDir.'/server.conf', $config);

echo &quot;generated files are in: &quot;.$tmpDir;
</pre>
<p>you can then copy the generated files to your /etc/openvpn directory and you should be able to connect to the vpn.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2010/07/automating-openvpn-configuration-with-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>google releases a high quality video codec</title>
		<link>http://blog.devayd.com/2010/05/google-releases-a-high-quality-video-codec/</link>
		<comments>http://blog.devayd.com/2010/05/google-releases-a-high-quality-video-codec/#comments</comments>
		<pubDate>Wed, 19 May 2010 18:13:19 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=52</guid>
		<description><![CDATA[This is some good news for the cross-browser video support in html5. As you might already know, there is a video tag, that allows videos to be played in browsers without any third party plugins (like flash player, for example).
The problem was that browser developers could not agree on which codec should be used for [...]]]></description>
			<content:encoded><![CDATA[<p>This is some good news for the cross-browser video support in html5. As you might already know, there is a <a href="http://www.w3schools.com/html5/tag_video.asp">video tag</a>, that allows videos to be played in browsers without any third party plugins (like flash player, for example).</p>
<p>The problem was that browser developers could not agree on which codec should be used for video encoding. There is the <a href="http://en.wikipedia.org/wiki/H.263">h263 mp4 codec used by many vendors</a>, and which offers a ver good quality and a small size, but it&#8217;s protected by patents, which makes it a no-option for many people. (Btw. did you know that most of cameras, even the &#8220;professional&#8221; ones that allow to record natively in mp4, don&#8217;t allow for professional usage of the recorded videos by licence?)</p>
<p>On the other hand there is an open source <a href="http://www.theora.org/">theora video codec</a> which offers quite good quality (we used it for <a href="http://www.tvmallorca.ne">www.tvmallorca.ne</a><a href="http://www.tvmallorca.ne">t</a> project) and it seems not to be limited by any license (although some vendors like apple or microsoft say otherwise)</p>
<p>This gives a big headache to us, developers, because we need to prepare content in many different formats to be sure everyone will be able to watch it. Not fun at all!</p>
<p>Luckily, google released today an open web media project, which includes they recently aqqured vp8 codec. Will this finally bring the html5 video to the masses? Let&#8217;s hope so. Youtube, Chrome browser and Firefox already support this codec in their nightly builds, and hopefuly other vendors will jump on the wagon soon.</p>
<p><a href="http://www.webmproject.org" target="_blank">http://www.webmproject.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2010/05/google-releases-a-high-quality-video-codec/feed/</wfw:commentRss>
		</item>
		<item>
		<title>html5 - The future is here</title>
		<link>http://blog.devayd.com/2010/04/the-future-is-here/</link>
		<comments>http://blog.devayd.com/2010/04/the-future-is-here/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 16:01:59 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=50</guid>
		<description><![CDATA[http://apirocks.com/html5/html5.html#slide1
(check it out in a chrome browser - which seems to have most features implemented)
]]></description>
			<content:encoded><![CDATA[<p><a href="http://apirocks.com/html5/html5.html#slide1">http://apirocks.com/html5/html5.html#slide1</a></p>
<p>(check it out in a chrome browser - which seems to have most features implemented)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2010/04/the-future-is-here/feed/</wfw:commentRss>
		</item>
		<item>
		<title>node.js - javascript para servidores</title>
		<link>http://blog.devayd.com/2010/02/nodejs-javascript-para-servidores/</link>
		<comments>http://blog.devayd.com/2010/02/nodejs-javascript-para-servidores/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 18:24:11 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[random]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[xmpp]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=49</guid>
		<description><![CDATA[éste es uno de los nuevos proyectos más prometedores que he visto últimamente. es un servidor de javascript, basado en la misma idea de callbacks que tiene por ejemplo Twisted de python.
según varias fuentes el servidor es rápido, permite muchos usuarios concurrentes y, lo que no es sin importancia, en muchos casos permite reusar el [...]]]></description>
			<content:encoded><![CDATA[<p>éste es uno de los nuevos proyectos más prometedores que he visto últimamente. es un servidor de javascript, basado en la misma idea de callbacks que tiene por ejemplo <a href="http://twistedmatrix.com/trac/" target="_blank">Twisted</a> de python.</p>
<p>según varias fuentes el servidor es rápido, permite muchos usuarios concurrentes y, lo que no es sin importancia, en muchos casos permite reusar el código js que uno tiene por allí, lo que puede accelerar bastante el desarrollo. hay bastante librerías externas en github.</p>
<p>combinado con xmpp, websockets o incluso cometm abre muchas posibilidades de crear aplicaciones web interactivas de nueva generación.</p>
<p>muy recomendable!</p>
<p><a href="http://nodejs.org" target="_blank">www.nodejs.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2010/02/nodejs-javascript-para-servidores/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Más de un tercio de los españoles cree que el Sol gira alrededor de la Tierra</title>
		<link>http://blog.devayd.com/2009/11/mas-de-un-tercio-de-los-espanoles-cree-que-el-sol-gira-alrededor-de-la-tierra/</link>
		<comments>http://blog.devayd.com/2009/11/mas-de-un-tercio-de-los-espanoles-cree-que-el-sol-gira-alrededor-de-la-tierra/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 21:38:34 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=47</guid>
		<description><![CDATA[¡Wow! Simplemente ¡wow!


vía menéame.net (oríg: http://blogs.elcorreodigital.com/magonia/2009/11/19/mas-la-mitad-los-canarios-y-casi-mitad-los)
]]></description>
			<content:encoded><![CDATA[<p><strong>¡Wow!</strong> Simplemente ¡wow!</p>
<p><em><br />
</em></p>
<p><em>vía <a href="http://meneame.net/story/34-2-espanoles-creen-sol-gira-alrededor-tierra" target="_blank">menéame.net</a> (oríg: <a href="http://blogs.elcorreodigital.com/magonia/2009/11/19/mas-la-mitad-los-canarios-y-casi-mitad-los" target="_blank">http://blogs.elcorreodigital.com/magonia/2009/11/19/mas-la-mitad-los-canarios-y-casi-mitad-los</a>)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2009/11/mas-de-un-tercio-de-los-espanoles-cree-que-el-sol-gira-alrededor-de-la-tierra/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TVMallorca a través TDT en Kaffeine (Ubuntu)</title>
		<link>http://blog.devayd.com/2009/11/tvmallorca-via-tdt-en-kaffeine-ubuntu/</link>
		<comments>http://blog.devayd.com/2009/11/tvmallorca-via-tdt-en-kaffeine-ubuntu/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 18:40:03 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[tdt]]></category>

		<category><![CDATA[tv]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=45</guid>
		<description><![CDATA[Hace algún tiempo escribí como configurar Kaffeine para poder recibir IB3 usando TDT.
Desde hace unos días otra televisión local, TVMallorca (a la cual, por cierto, ayudamos en su día configurar la emisión a través de internet), está emitiendo en el formato digital.
Desgraciadamente, Kaffeine, al no tener configuradas las frecuencias, no encuentra este canal. Para remediarlo [...]]]></description>
			<content:encoded><![CDATA[<p>Hace algún tiempo <a href="http://blog.devayd.com/2008/05/actualizar-kaffeine-para-poder-ver-ib3-en-tdt/" target="_blank">escribí como configurar Kaffeine para poder recibir IB3 usando TDT</a>.</p>
<p>Desde hace unos días otra televisión local, <a href="http://tvmallorca.net" target="_blank">TVMallorca</a> (a la cual, por cierto, <a href="http://www.tvmallorca.net/pages/tv_online" target="_blank">ayudamos en su día configurar la emisión a través de internet</a>), está emitiendo en el formato digital.</p>
<p>Desgraciadamente, Kaffeine, al no tener configuradas las frecuencias, no encuentra este canal. Para remediarlo hay que añadir en el archivo (yo uso ubuntu, pero debe ser algo parecido en otras distribuciones):</p>
<p>~/.kde/share/apps/kaffeine/dvb-t</p>
<p>la siguiente línea:</p>
<p>T 602000000 8MHz 2/3 NONE QAM64 8k 1/4 NONE # TVM</p>
<p>Ahora reiniciamos el Kaffeine y voilá! El programa ya encuentra este canal y algunos más. (Ahora tengo 29 canales de tv + 15 de radio).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2009/11/tvmallorca-via-tdt-en-kaffeine-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>El Aire - (III Jornada sobre Soluciones Open Source para PYMES)</title>
		<link>http://blog.devayd.com/2009/11/el-aire-iii-jornada-sobre-soluciones-open-source-para-pymes/</link>
		<comments>http://blog.devayd.com/2009/11/el-aire-iii-jornada-sobre-soluciones-open-source-para-pymes/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 23:58:18 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[negocio]]></category>

		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=44</guid>
		<description><![CDATA[Estamos tan rodeados por el software libre y tan acostrumbrados a estar acompañados por él, que casi no nos damos cuenta de la cantidad de open source en todos los sitios. Como el aire, es esencial para la vida, pero ¿quién lo habrá notado antes de verse privado de él?
Quizás esa es la razón por [...]]]></description>
			<content:encoded><![CDATA[<p>Estamos tan rodeados por el software libre y tan acostrumbrados a estar acompañados por él, que casi no nos damos cuenta de la cantidad de open source en <strong>todos</strong> los sitios. Como el aire, es esencial para la vida, pero ¿quién lo habrá notado antes de verse privado de él?</p>
<p>Quizás esa es la razón por la cuál <strong>hay muchas confusiones a la hora de pensar en un modelo de negocio basado en el open source</strong>. Aunque, no hay que olvidarse que la gran mayoría de empresas ha podido existir únicamente gracias a ello (y en muchos casos sin darse cuenta).</p>
<p>Hoy en día, (casi) cualquiera puede iniciar su negocio con un coste cercano a cero, por no tener que pagar licencias de todo tipo: sistemas, software etc.. Pero bueno, <strong>como ya estamos acostumbrados a respirar el software abierto como si fuera el aire, pocos se dan cuenta que lo que ahora viene gratis antes costaba mucho dinero</strong>. Es un ejemplo tópico decir que Google no habría podido sostenerse económicamente, si tuviese que desembolsar los costes de licencias para sus miles de servidores.</p>
<p>OK! Pero <strong>¿dónde está el negocio para una empresa pequeña de open source?</strong> Siendo un cliente final, seguro que puedo aprovecharme y ahorrar costes, pero ¿cómo puede sobrevivir una empresa que crea código libre? <a href="http://trespams.com/" target="_blank">Antoni Aloy</a> y <a href="http://www.zikzakmedia.com/" target="_blank">Jordi Esteve</a>, los ponentes de la <a href="http://www.cambramallorca.com/ampliar.php?Cod_not=2247" target="_blank">III Jornada sobre Soluciones Open Source para PYMES</a> intentarón contestar a esta pregunta.</p>
<p>Una respuesta (obvia) es: &#8220;servicios&#8221;. Si el software en sí, puede ser gratis (aunque no tiene por qué serlo) - todo lo que lo rodea, puede ser una fuente potencial de ingresos.<strong> Consultoría, personalización, mantenimiento, venta de hardware y atención al usuario</strong> pueden ser útiles para nuestros clientes.</p>
<p>No hay que olvidar que gracias al acceso al código fuente, podemos fácilmente <strong>construir sobre una base sólida</strong>, creando un <strong>valor añadido</strong>, por el cual muchos clientes estarán dispuestos a pagar. Para una empresa de software privativo, que tiene que crearlo todo de cero, será muy difícil competir con nosotros. (Luego, ¿por qué no?, podemos <a href="svn://anon:anon@svn.devayd.com" target="_blank">devolverlo a la comunidad</a> <img src='http://blog.devayd.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
<p><strong>La comunidad</strong>, es otro aspecto muy importante del éxito (si no el más importante). Muchos colaboradores externos, pueden <strong>ayudarnos crear un producto mejor</strong> que si lo tuvieramos que desarrollar con sólo nuestro propio esfuerzo.</p>
<p>Como vemos, en el mundo de software abierto <strong>la clave de conseguir beneficios es principalmente de bajar los gastos y ser más competitivo sin comprometer la calidad</strong>.</p>
<p>Con esto, el nivel de entrada para clientes finales puede ser (y normalmente es) menor, con lo cual <strong>podemos ganar un numero mayor de ventas al hacer el producto más accesible</strong>.</p>
<p>Una cosa, que en los tiempos de crisis, no es poco.</p>
<p>Una joya open source de la conferencia: <a href="http://www.openerpspain.com/" target="_blank">OpenERP </a><br />
Veo un mundo de oportunidades <img src='http://blog.devayd.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2009/11/el-aire-iii-jornada-sobre-soluciones-open-source-para-pymes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Todos somos iguales (pero hay unos más iguales que otros)&#8221;</title>
		<link>http://blog.devayd.com/2009/10/todos-somos-iguales-pero-hay-unos-mas-iguales-que-los-otros/</link>
		<comments>http://blog.devayd.com/2009/10/todos-somos-iguales-pero-hay-unos-mas-iguales-que-los-otros/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 23:02:12 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[random]]></category>

		<category><![CDATA[es]]></category>

		<category><![CDATA[sociedad]]></category>

		<category><![CDATA[trabajo]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=43</guid>
		<description><![CDATA[Como empresario, siempre he sido en contra de las ayudas financieras directas a los desempleados, ya que considero (y mi experiencia lo afirma) que al final se convierten a unas vacaciones de pago a costa del estado para un 90% de los que cobran este tipo de prestaciones.
Claro, cada uno aprovecha estos meses de protección [...]]]></description>
			<content:encoded><![CDATA[<p>Como empresario, siempre he sido en contra de las ayudas financieras directas a los desempleados, ya que considero (y mi experiencia lo afirma) que al final se convierten a unas vacaciones de pago a costa del estado para un 90% de los que cobran este tipo de prestaciones.</p>
<p>Claro, cada uno aprovecha estos meses de protección como quiere. Unos no moverán un dedo y otros dedicarán el tiempo para mejorar su situación en el mercado laboral - formarse, buscar otro empleo etc. etc.</p>
<p>Sin embargo, no entiendo que los que somos pequeños empresarios autónomos, no tengamos la misma protección del subsidio cuando nos quedamos en el paro, a pesar de que<a href="http://www.pymesyautonomos.com/fiscalidad-y-contabilidad/comparativa-entre-la-fiscalidad-de-asalariados-y-autonomos" target="_blank"> solemos pagar más impuestos que los que trabajan por cuenta ajena</a>. En un país como España, donde la mayoría de empresas no tiene más de 5-10 empleados (y una gran parte de ellas se constituye de una sola persona), me parece una injusticia social.</p>
<p>Creo que está muy bien, que el gobierno quiera proteger a los miles de familias que se han quedado sin empleo, designando una partida importante de sus presupuestos para este fin. En una crisis que estamos sufriendo, el labor social del estado es importante. Pero, ¿realmente su manera de hacerlo - regalando dinero a la gente - ayuda a mejorar su situación? ¿No sería mejor, en vez de hacer esto (o darle el dinero a los bancos), aprovechar estos fondos para crear nuevos puestos de trabajo? Habría más de un empresario dispuesto a contratar a la gente (o mantener los puestos de trabajo) si se viese apoyado por el govierno. Sin hablar de los beneficios sociales y personales que supone para una persona tener un empleo. Pero, teniendo en cuenta la inminente subida de impuestos, el gobierno, parece que prefiere regalar pasta al pueblo (y a los causantes de la crisis) sacándola y aumentando la presión fiscal a los que crean la riqueza en este páis.</p>
<p>&#8220;Todos somos iguales, pero hay unos más iguales que los demás&#8221;.</p>
<p>* Si alguien no reconoce esta cita es de &#8220;<a href="http://es.wikipedia.org/wiki/Rebeli%C3%B3n_en_la_granja" target="_blank">Rebelión en la granja</a>&#8221; - una fabulosa novela de George Orvell, el autor también de &#8220;1984&#8243; - la novela donde intventó el termino &#8220;el Gran Hermano&#8221;. En España no tienen la misma popularidad que en Polonia, pero son muy, pero muy recomendables.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2009/10/todos-somos-iguales-pero-hay-unos-mas-iguales-que-los-otros/feed/</wfw:commentRss>
		</item>
		<item>
		<title>how to convert powerpoint to flash (or another format) on linux</title>
		<link>http://blog.devayd.com/2009/10/how-to-convert-powerpoint-to-flash-or-another-format-on-linux/</link>
		<comments>http://blog.devayd.com/2009/10/how-to-convert-powerpoint-to-flash-or-another-format-on-linux/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 22:41:10 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[converter]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[openoffice]]></category>

		<category><![CDATA[powerpoint]]></category>

		<category><![CDATA[pyton]]></category>

		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://blog.devayd.com/?p=42</guid>
		<description><![CDATA[Importing a powerpoint presentation into a web application has been always a huge headache for a web developer, especially if your everyday environment is labeled with a penguin. I have seen dozens of converters for windows desktop, but they could not be used in our case.
Unfortunately, the old friend OpenOffice combined with some open source [...]]]></description>
			<content:encoded><![CDATA[<p>Importing a powerpoint presentation into a web application has been always a huge headache for a web developer, especially if your everyday environment is labeled with a penguin. I have seen dozens of converters for windows desktop, but they could not be used in our case.</p>
<p>Unfortunately, the old friend <a href="http://www.openoffice.org" target="_blank">OpenOffice</a> combined with some open source technologies come to rescue!</p>
<p>OpenOffice opens and stores documents in many formats and it can be started in a service mode, which works perfect for servers and these scripts from the <a href="http://www.artofsolving.com/opensource/jodconverter" target="_blank">JODConverter</a> project make the job very easy.</p>
<p>The only thing I miss is to be able to add some parameters to the output format, for example autoplay for presentations instead of having to click at each frame to go on.</p>
<p>Links:<br />
<a href="http://www.artofsolving.com/opensource/jodconverter" target="_blank">JODConverter</a><br />
<a href="http://code.google.com/p/openmeetings/wiki/OpenOfficeConverter" target="_blank">More info on installation</a></p>
<p>Note:<br />
It seems it&#8217;s also possible to use <a href="http://code.google.com/intl/en/apis/documents/docs/3.0/developers_guide_protocol.html#DownloadingDocs" target="_blank">Google Docs API</a> for this purpose.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devayd.com/2009/10/how-to-convert-powerpoint-to-flash-or-another-format-on-linux/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
