<?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>Alejandro Rodríguez</title>
	<atom:link href="http://www.alejandrorodriguez.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alejandrorodriguez.info</link>
	<description>Un blog personal</description>
	<lastBuildDate>Fri, 09 Dec 2011 19:55:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Le pacte des loups / El pacto de los lobos</title>
		<link>http://www.alejandrorodriguez.info/2011/04/le-pacte-des-loups-el-pacto-de-los-lobos/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=le-pacte-des-loups-el-pacto-de-los-lobos</link>
		<comments>http://www.alejandrorodriguez.info/2011/04/le-pacte-des-loups-el-pacto-de-los-lobos/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 14:08:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fotos y Videos]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=407</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><iframe title="YouTube video player" width="424" height="269" src="http://www.youtube.com/embed/KjdCp47eCh4" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2011/04/le-pacte-des-loups-el-pacto-de-los-lobos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Depurando&#8221; PHP con la consola de Firebug. (Truchada comoda)</title>
		<link>http://www.alejandrorodriguez.info/2010/11/depurando-php-con-la-consola-de-firebug-truchada-comoda/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=depurando-php-con-la-consola-de-firebug-truchada-comoda</link>
		<comments>http://www.alejandrorodriguez.info/2010/11/depurando-php-con-la-consola-de-firebug-truchada-comoda/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 16:56:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apuntes]]></category>
		<category><![CDATA[soluciones]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=354</guid>
		<description><![CDATA[Con tan solo 3 pasos tendrás listo tu script para poder relizar un seguimiento a lo que pasa en tu código php utilizando la consola de FireBug.

Sigue los siguientes pasos&#8230;
Paso 1: En el inicio de tu archivo poner el siguiente código

require_once 'Depurador.php';
$depurador=new Depurador(true);
Paso 2:En el &#60;head&#62; agregar el siguiente bloque Javascript:

&#60;script type=&#34;text/javascript&#34;&#62;
// &#60;![CDATA[
function _mylog(que, tipo){
	if [...]]]></description>
			<content:encoded><![CDATA[<p>Con tan solo 3 pasos tendrás listo tu script para poder relizar un seguimiento a lo que pasa en tu código php utilizando la consola de FireBug.</p>
<p><img style="display: block; margin-left: auto; margin-right: auto; border: 0px initial initial;" title="Clipboard01" src="http://www.alejandrorodriguez.info/wp-content/Clipboard011.jpg" alt="Clipboard01" width="480" height="287" /></p>
<p>Sigue los siguientes pasos&#8230;</p>
<p>Paso 1: En el inicio de tu archivo poner el siguiente código</p>
<pre class="brush: php;">
require_once 'Depurador.php';
$depurador=new Depurador(true);</pre>
<p>Paso 2:En el &lt;head&gt; agregar el siguiente bloque Javascript:</p>
<pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;
// &lt;![CDATA[
function _mylog(que, tipo){
	if ( typeof console == 'object') {
		switch (tipo) {
			default:
			case &quot;log&quot;:
				console.log(que); // Mostrar el log
				break;
			case &quot;warn&quot;:
				console.warn(que); // Mostrar el log
				break;
			case &quot;error&quot;:
				console.error(que); // Mostrar el log
				break;
		}
	}
}
// ]]&gt;
&lt;/script&gt;
</pre>
<p>Paso 3:Finalmente antes del &lt;/body&gt; agregar este otro bloque de código</p>
<pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;
&lt;?php echo $depurador-&gt;viewDatos(); ?&gt;
&lt;/script&gt;
</pre>
<p>Teniendo todo lo anterior configurado en tu archivo ahora podrás en todo momento hacer llamadas al depurador para pasarle datos. Todos los datos que le pases serán parseados en la consola de Firebug.</p>
<p>Para pasar información observa algunos ejemplos</p>
<pre class="brush: php;">
&lt;?php
$aMatriz=array(&quot;uno&quot;, &quot;dos&quot;, &quot;tres&quot;);
/*
* Envio datos al depurador
* El primer parametro es el dato propiamente dicho
* El segundo parametro es un titulo o referencia a tu gusto. Pa´identificar que es el dato
* El tercero es el tipo de mensaje de consola si es log, warn o error
*/
$depurador-&gt;addDatos($aMatriz, &quot;Matriz1&quot;, &quot;log&quot;);
// Ejemplo enviando String´s
$nombre=&quot;Alejandro Rodriguez&quot;;
$depurador-&gt;addDatos($nombre, &quot;Quien soy?&quot;, &quot;warn&quot;);
// Ejempplo enviando datos Boolean
$lDato1=true;
$depurador-&gt;addDatos($lDato1, &quot;Boolean&quot;, &quot;warn&quot;);
$lDato2=false;
$depurador-&gt;addDatos($lDato2, &quot;Boolean&quot;, &quot;log&quot;);
// Más matrices
$aMatriz2=array(&quot;uno&quot;=&gt;&quot;alto&quot;, &quot;dos&quot;=&gt;&quot;medio&quot;, &quot;tres&quot;=&gt;&quot;bajo&quot;);
$depurador-&gt;addDatos($aMatriz2, &quot;Matriz2&quot;, &quot;log&quot;);
$aMatriz3[]=array(&quot;nombre&quot;=&gt;&quot;Alejandro&quot;, &quot;apellido&quot;=&gt;&quot;Rodriguez&quot;, &quot;web&quot;=&gt;&quot;www.alejandrorodriguez.info&quot;) ;
$aMatriz3[]=array(&quot;nombre&quot;=&gt;&quot;Adobe User Group&quot;, &quot;apellido&quot;=&gt;&quot;Granada&quot;, &quot;web&quot;=&gt;&quot;www.adobe-user-group-granada.es&quot;) ;
$aMatriz3[]=array(&quot;nombre&quot;=&gt;&quot;Mediterranean&quot;, &quot;apellido&quot;=&gt;&quot;Adobe User Group&quot;, &quot;web&quot;=&gt;&quot;www.maug.es&quot;) ;
$depurador-&gt;addDatos($aMatriz3, &quot;Matriz3&quot;, &quot;log&quot;);
// Y más ejemplos que tu puedas inventarte...
?&gt;
</pre>
<p><a href="http://www.alejandrorodriguez.info/descargas/depurador.zip">Descargar ficheros</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/11/depurando-php-con-la-consola-de-firebug-truchada-comoda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hope There&#8217;s Someone &#8211; Antony and the Johnsons &#8211; letra y video</title>
		<link>http://www.alejandrorodriguez.info/2010/11/hope-theres-someone-antony-and-the-johnsons-letra-video/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=hope-theres-someone-antony-and-the-johnsons-letra-video</link>
		<comments>http://www.alejandrorodriguez.info/2010/11/hope-theres-someone-antony-and-the-johnsons-letra-video/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 09:20:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sobre mi]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=348</guid>
		<description><![CDATA[Este tema siempre me olvidaba el nombre solo conocía su melodía. Es un tema tristisimo y recuerdo que la primera vez que lo escuche fue en la oficina de Tarragona junto a mi compañera Eila en su iCat.fm
He aquí un video del tema:

El tema dice algo así&#8230;.
Hope there&#8217;s someone
Who&#8217;ll take care of me
When I die, [...]]]></description>
			<content:encoded><![CDATA[<p>Este tema siempre me olvidaba el nombre solo conocía su melodía. Es un tema tristisimo y recuerdo que la primera vez que lo escuche fue en la oficina de Tarragona junto a mi compañera Eila en su iCat.fm</p>
<p>He aquí un video del tema:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/loNU4fVpO8E" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/loNU4fVpO8E"></embed></object></p>
<p>El tema dice algo así&#8230;.<span id="more-348"></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Hope there&#8217;s someone</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Who&#8217;ll take care of me</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">When I die, will I go</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000; font-size: small;"> </span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Hope there&#8217;s someone</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Who&#8217;ll set my heart free</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Nice to hold when I&#8217;m tired</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><br style="line-height: 22px;" /><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">There&#8217;s a ghost on the horizon</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">When I go to bed</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">How can I fall asleep at night</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">How will I rest my head</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000; font-size: small;"> </span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Oh I&#8217;m scared of the middle place</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Between light and nowhere</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">I don&#8217;t want to be the one</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Left in there, left in there<br style="line-height: 24px;" /><br style="line-height: 24px;" /></span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">There&#8217;s a man on the horizon</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Wish that I&#8217;d go to bed</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">If I fall to his feet tonight</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Will allow rest my head</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000; font-size: small;"> </span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">So here&#8217;s hoping I will not drown</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Or paralyze in light</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">And godsend I don&#8217;t want to go</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">To the seal&#8217;s watershed</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><br style="line-height: 22px;" /><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Hope there&#8217;s someone</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Who&#8217;ll take care of me</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">When I die, Will I go</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><br style="line-height: 22px;" /><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Hope there&#8217;s someone</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Who&#8217;ll set my heart free</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-align: center; "><span style="line-height: 22px; color: #555555;" lang="EN-GB"><span style="line-height: normal; font-size: small;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Nice to hold when I&#8217;m tired</span></span></span></span></p>
<p style="line-height: 22px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;">y en español&#8230;</p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Espero que haya alguien</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Que cuíde de mi</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Cuando muera, cuando me vaya</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;"> </span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Espero que haya alguien</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Que libere mi corazón</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Que le guste sostenerlo cuando esté cansado</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;"> </span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Hay un fantasma en el horizonte</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Cuando me vaya a la cama</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">¿Cómo podré dormir al llegar la noche?</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">¿Cómo descansará mi cabeza?</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;"> </span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Oh, estoy espantado del lugar que hay</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Justo entre la luz y ninguna parte</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">No quiero ser el elegido</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;">Allí abandonado, allí abandonado</span></span><span style="line-height: 24px; color: #555555;"><br style="line-height: 24px;" /><br style="line-height: 24px;" /></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Hay un hombre en el horizonte</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Que desea que me acueste</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Si sucumbo a sus pies esta noche</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Permitirá que descanse mi cabeza</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;"> </span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Así que hay una esperanza de que no me asfixie</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">O de que quede paralizado por la luz</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Y como un regalo caído del cielo, no quiero irme</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Al final del horizonte</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;"> </span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Espero que haya alguien</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;">Que cuide de mí</span></span><span style="line-height: 24px; color: #555555;"><br style="line-height: 24px;" /></span><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Cuando yo muera, cuando yo parta</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman'; color: #000000;"> </span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Espero que haya alguien</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;" lang="EN-GB"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;">Que libere mi corazón</span></span></span></p>
<p style="line-height: 24px; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm;" align="center"><span style="line-height: 24px; color: #993300;"><span style="line-height: normal; font-family: 'Times New Roman';"><span style="line-height: normal; color: #000000;"><span style="text-decoration: underline;">Y que me abrace cuando esté cansado…</span></span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/11/hope-theres-someone-antony-and-the-johnsons-letra-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maqueta, Programa y Enriquece tus aplicaciones web. – 11 de Noviembre a las 19.30h GMT+1</title>
		<link>http://www.alejandrorodriguez.info/2010/11/maqueta-programa-y-enriquece-tus-aplicaciones-web-%e2%80%93-11-de-noviembre-a-las-19-30h-gmt1/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=maqueta-programa-y-enriquece-tus-aplicaciones-web-%25e2%2580%2593-11-de-noviembre-a-las-19-30h-gmt1</link>
		<comments>http://www.alejandrorodriguez.info/2010/11/maqueta-programa-y-enriquece-tus-aplicaciones-web-%e2%80%93-11-de-noviembre-a-las-19-30h-gmt1/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 10:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Adobe User Group]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=344</guid>
		<description><![CDATA[
En este eSeminario te mostraremos como comenzar a trabajar con las hojas de estilo de forma profesional. Desde los conceptos básicos hasta utilizar Frameworks para la maquetación CSS. Además podrás aprender las bases del lenguaje PHP para poder aplicar este lenguaje de Script a tus páginas web. Finalmente aprenderás a enriquecer tus aplicaciones mediante uno [...]]]></description>
			<content:encoded><![CDATA[<div style="background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #ffffff; font: normal normal normal 13px/19px Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-family: 'Times New Roman'; line-height: normal; font-size: small; padding: 0.6em; margin: 0px;">
<p><img class="aligncenter size-full wp-image-346" title="banner-maugg" src="http://www.alejandrorodriguez.info/wp-content/banner-maugg.jpg" alt="banner-maugg" width="284" height="428" />En este eSeminario te mostraremos como comenzar a trabajar con las hojas de estilo de forma profesional. Desde los conceptos básicos hasta utilizar Frameworks para la maquetación CSS. Además podrás aprender las bases del lenguaje PHP para poder aplicar este lenguaje de Script a tus páginas web. Finalmente aprenderás a enriquecer tus aplicaciones mediante uno de los frameworks, más utilizados,  de Javascript “jQuery”. Todo esto utilizando como IDE el Adobe Dreamweaver CS5.</p>
<p>Únete a esta serie de eSeminarios y aprende junto al Adobe User Group Granada y el <a href="http://www.maug.es/" target="_blank">Mediterranean Adobe User Group</a>.</p>
<p>Ah y recuerda <strong style="font-weight: bold;">regalaremos 2 </strong><strong style="font-weight: bold;">Adobe Creative Suite CS5</strong> a escoger entre la versión Design, Web y Production entre todos los que participen activamente durante el eSeminario. Las bases de este regalo, se darán a conocer en nuestro Moodle.</p>
<div>
<p><strong style="font-weight: bold;">¡La inscripción es gratuita! No te lo pienses más, regístrate para asistir desde donde más te convenga, sólo necesitas conexión a Internet y tener Flash Player instalado.</strong></div>
<p><a href="http://moodle.adobe-user-group-granada.es" target="_blank">+información y registro</a></p>
<p><span style="text-decoration: underline;"><strong style="font-weight: bold;">FAQ´s</strong></span></p>
<p><strong style="font-weight: bold;">A quién esta dirigido?</strong><br />
A diseñadores web, diseñadores gráficos, programadores junior de php u otro lenguaje y todo aquel que desee aprender</p>
<p><strong style="font-weight: bold;">Como puedo asistir?</strong><br />
Desde cualquier lugar en el que te encuentres. Sólo necesitas un navegador con<strong style="font-weight: bold;">Adobe Flash Player</strong>. La url de acceso se informara días previos al comienzo.</p>
<p><strong style="font-weight: bold;">Cuando?</strong><br />
El comienzo de los webinars será el día <strong style="font-weight: bold;">11 de noviembre</strong> a las a las <strong style="font-weight: bold;">19.30hs</strong> UTC+1 hours CEST</p>
<p><strong style="font-weight: bold;">Vivo fuera de España como se el horario correcto?</strong><br />
Puedes visitar la siguiente url: <a href="http://bit.ly/cPbBU7" target="_blank">http://bit.ly/cPbBU7</a></p>
<p><strong style="font-weight: bold;">Cual es la duración de estos webinars?</strong><br />
Cada webinar tiene una duración estimada de 45″ a 60″</p>
<p><strong style="font-weight: bold;">Cuanto Cuesta?</strong><br />
Es totalmente <strong style="font-weight: bold;">GRATIS!</strong></p>
<p><strong style="font-weight: bold;">De donde puedo bajar la demo de la suite?</strong><br />
La url para descargar la suite es: <a href="http://bit.ly/buycs5_sp" target="_blank">http://bit.ly/buycs5_sp</a> <span style="font-weight: bold;"><span style="font-weight: normal;">importante</span></span>:recomendamos hacerlo cuando comience el eSeminario a efectos de que no se caduque la demo.</p>
<p><strong style="font-weight: bold;">Se emitirá algún tipo de certificado?</strong><br />
No</p>
<p><strong style="font-weight: bold;">Se podrá bajar el material e intercambiar preguntas luego de cada clase?</strong><br />
Dispondremos de una plataforma <a href="http://moodle.adobe-user-group-granada.es/" target="_blank">Moodle </a>para el seguimiendo de todo el curso.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/11/maqueta-programa-y-enriquece-tus-aplicaciones-web-%e2%80%93-11-de-noviembre-a-las-19-30h-gmt1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bloqueando comentarios en Wordpress desde SQL</title>
		<link>http://www.alejandrorodriguez.info/2010/11/bloqueando-comentarios-en-wordpress-desde-sql/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=bloqueando-comentarios-en-wordpress-desde-sql</link>
		<comments>http://www.alejandrorodriguez.info/2010/11/bloqueando-comentarios-en-wordpress-desde-sql/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 09:45:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apuntes]]></category>
		<category><![CDATA[soluciones]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=342</guid>
		<description><![CDATA[Las siguientes lineas fueron preparadas para ejecutarse en las distintas bbdd de los wordpress &#8220;fantasmas&#8221; que tenemos por allí y de esa forma evitar nos lleguen los emails de los comentarios y ante la falta de tiempo de instalar en cada uno de ellos algun antispam.  Para más info pues los option_name se coinciden con lso form [...]]]></description>
			<content:encoded><![CDATA[<p>Las siguientes lineas fueron preparadas para ejecutarse en las distintas bbdd de los wordpress &#8220;fantasmas&#8221; que tenemos por allí y de esa forma evitar nos lleguen los emails de los comentarios y ante la falta de tiempo de instalar en cada uno de ellos algun antispam.  Para más info pues los option_name se coinciden con lso form field name Así que lo dicho aquí las líneas.</p>
<pre>
update wp_options set option_value='1' where option_name='default_pingback_flag';

update wp_options set option_value='0' where option_name='default_ping_status';

update wp_options set option_value='0' where option_name='default_comment_status';

update wp_options set option_value='1' where option_name='require_name_email';

update wp_options set option_value='1' where option_name='comment_registration';

update wp_options set option_value='1' where option_name='close_comments_for_old_posts';

update wp_options set option_value='0' where option_name='thread_comments';

update wp_options set option_value='1' where option_name='page_comments';

update wp_options set option_value='0' where option_name='comments_notify';

update wp_options set option_value='0' where option_name='moderation_notify';

update wp_options set option_value='1' where option_name='comment_moderation';

update wp_options set option_value='0' where option_name='comment_whitelist';</pre>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;1&#8242; where option_name=&#8217;default_pingback_flag&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;0&#8242; where option_name=&#8217;default_ping_status&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;0&#8242; where option_name=&#8217;default_comment_status&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;1&#8242; where option_name=&#8217;require_name_email&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;1&#8242; where option_name=&#8217;comment_registration&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;1&#8242; where option_name=&#8217;close_comments_for_old_posts&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;0&#8242; where option_name=&#8217;thread_comments&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;1&#8242; where option_name=&#8217;page_comments&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;0&#8242; where option_name=&#8217;comments_notify&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;0&#8242; where option_name=&#8217;moderation_notify&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;1&#8242; where option_name=&#8217;comment_moderation&#8217;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">update wp_options set option_value=&#8217;0&#8242; where option_name=&#8217;comment_whitelist&#8217;;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/11/bloqueando-comentarios-en-wordpress-desde-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows SP3 + Acronis + Imposible compartir archivos [SOLUCIONADO]</title>
		<link>http://www.alejandrorodriguez.info/2010/10/windows-sp3-acronis-imposible-compartir-archivos-solucionado/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=windows-sp3-acronis-imposible-compartir-archivos-solucionado</link>
		<comments>http://www.alejandrorodriguez.info/2010/10/windows-sp3-acronis-imposible-compartir-archivos-solucionado/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 14:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apuntes]]></category>
		<category><![CDATA[soluciones]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=336</guid>
		<description><![CDATA[La solución a un dolor de cabeza que se inicio cuando reinstale el portátil  la maquina principal con Win XP + SP3
Desde ese momento no pude compartir mas los archivos entre estos dos terminales.
Luego de mucho intentar, probar mil cosas, consultar a colegas, y de todo&#8230; Al fín di con la solución a mi problema gracias a la [...]]]></description>
			<content:encoded><![CDATA[<p>La solución a un dolor de cabeza que se inicio cuando reinstale el portátil  la maquina principal con Win XP + SP3</p>
<p>Desde ese momento no pude compartir mas los archivos entre estos dos terminales.</p>
<p>Luego de mucho intentar, probar mil cosas, consultar a colegas, y de todo&#8230; Al fín di con la solución a mi problema gracias a la web: <a href="http://winhlp.com/node/40" target="_blank">WinHlp</a></p>
<p>Mi problema puntual se pudo identificar desde el Visor de Sucesos &gt; Sistema &gt; Donde aparecían errores del tipo Srv identificados como el suceso 2011 al ver el detalle del error tenemos el siguiente mensaje</p>
<blockquote><p>El parámetro de configuración &#8220;irpstacksize&#8221; del servidor es demasiado pequeño para que el servidor pueda usar un dispositivo local. Aumente el valor de este parámetro.</p></blockquote>
<p>El tema es que al parecer el Acronis hace algo de las suyas y desaparece una entrada del registro. En síntesis la solución finalmente es sencilla. Agregar la siguiente entrada</p>
<p>HKEY_LOCAL_MACHINE<br />
\SYSTEM<br />
\CurrentControlSet<br />
\Services<br />
\LanmanServer<br />
\Parameters<br />
<strong>IRPStackSize DWORD 0&#215;00000014 (20)</strong></p>
<p>Para más información leer el post de <a href="http://winhlp.com/node/40" target="_blank">WinHlp</a> y la descripción del parámetro  <a href="http://support.microsoft.com/kb/285089/es" target="_blank">IRPStackSize</a></p>
<p>Gracias <a href="http://www.poisonclub.com.ar" target="_blank">Sebas</a>! por el soporte!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/10/windows-sp3-acronis-imposible-compartir-archivos-solucionado/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XXIII Concurs de Castells de Tarragona</title>
		<link>http://www.alejandrorodriguez.info/2010/10/xxiii-concurs-de-castells-de-tarragona/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xxiii-concurs-de-castells-de-tarragona</link>
		<comments>http://www.alejandrorodriguez.info/2010/10/xxiii-concurs-de-castells-de-tarragona/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 10:30:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[noticias]]></category>
		<category><![CDATA[castellers]]></category>
		<category><![CDATA[tarraco]]></category>
		<category><![CDATA[tarragona]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=332</guid>
		<description><![CDATA[Retransmisió en directe
Us esperem a tots el proper 3 d&#8217;octubre, a partir de les 10 h del matí, a la Tàrraco Arena Plaça de Tarragona per veure qui s&#8217;emporta la victòria al XXIII Concurs de Castells. http://bit.ly/CastellsXXIII
]]></description>
			<content:encoded><![CDATA[<h2 style="font-weight: normal; font-style: inherit; font-family: inherit; text-align: left; vertical-align: baseline; color: #ee0919; font-size: 1.5em; padding: 0px; margin: 0px; border: 0px initial initial;">Retransmisió en directe</h2>
<p>Us esperem a tots el proper 3 d&#8217;octubre, a partir de les 10 h del matí, a la Tàrraco Arena Plaça de Tarragona per veure qui s&#8217;emporta la victòria al XXIII Concurs de Castells. <a href="http://bit.ly/CastellsXXIII" target="_blank">http://bit.ly/CastellsXXIII</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/10/xxiii-concurs-de-castells-de-tarragona/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finalizado el eSeminario  &#8220;Desarrollo de Aplicaciones Web utilizando Adobe Dreamweaver CS5 (php + mysql)&#8221;</title>
		<link>http://www.alejandrorodriguez.info/2010/07/finalizado-el-eseminario-desarrollo-de-aplicaciones-web-utilizando-adobe-dreamweaver-cs5-php-mysql/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=finalizado-el-eseminario-desarrollo-de-aplicaciones-web-utilizando-adobe-dreamweaver-cs5-php-mysql</link>
		<comments>http://www.alejandrorodriguez.info/2010/07/finalizado-el-eseminario-desarrollo-de-aplicaciones-web-utilizando-adobe-dreamweaver-cs5-php-mysql/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 08:46:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[noticias]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[cs5]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[gratis]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=324</guid>
		<description><![CDATA[El pasado Jueves 16 de Julio han finalizado las sesiones del eSeminario  Desarrollo de Aplicaciones Web utilizando Adobe Dreamweaver CS5 (php + mysql)
A lo largo de este tiempo hemos ido tratando los siguientes temas:

Introducción a las Bases de Datos
Configuración de un Servidor Web
Configuración de un sitio en Adobe Dreamweaver CS5
Conexión a MySQL desde Adobe Dreamweaver [...]]]></description>
			<content:encoded><![CDATA[<p>El pasado Jueves 16 de Julio han finalizado las sesiones del eSeminario  Desarrollo de Aplicaciones Web utilizando Adobe Dreamweaver CS5 (php + mysql)</p>
<p>A lo largo de este tiempo hemos ido tratando los siguientes temas:</p>
<ul>
<li>Introducción a las Bases de Datos</li>
<li>Configuración de un Servidor Web</li>
<li>Configuración de un sitio en Adobe Dreamweaver CS5</li>
<li>Conexión a MySQL desde Adobe Dreamweaver CS5</li>
<li>Desarrollo de una aplicación Web con su panel de administración para poder  cargar y modificar contenidos.</li>
<li>Una serie de tips para enriquecer la aplicación desarrollada.</li>
</ul>
<p>Hemos tenido la suerte de contar con un número total de 227 participantes.</p>
<p>Para los que estáis interesados en poder revivir este eSeminario de 8 semanas, o compartirlo con personas que puedan estar interesadas, podéis ver las distintas sesiones:<br />
1/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc1">http://bit.ly/edawc1</a><br />
2/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc2">http://bit.ly/edawc2</a><br />
3/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc3">http://bit.ly/edawc3</a><br />
4/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc4">http://bit.ly/edawc4</a><br />
5/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc5">http://bit.ly/edawc5</a><br />
6/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc6">http://bit.ly/edawc6</a> <a style="color: #e03e00; text-decoration: none;" href="http://experts.na3.acrobat.com/dawc6/"></a><br />
7/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc7">http://bit.ly/edawc7</a><br />
8/8: <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/edawc8">http://bit.ly/edawc8</a></p>
<p>También comentarles que por cada sesión ha habido una clase de apoyo y materiales asociados que podéis consultar en nuestra página del Moodle  <a style="color: #e03e00; text-decoration: none;" href="http://bit.ly/aPcZlj">http://bit.ly/aPcZlj</a></p>
<p><a href="http://www.adobe-user-group-granada.es/8-semanas-han-pasado-compartiendo-conocimientos-de-adobe-dreamweaver-cs5/" target="_blank">+información en el AUGG</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/07/finalizado-el-eseminario-desarrollo-de-aplicaciones-web-utilizando-adobe-dreamweaver-cs5-php-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apache +urls amigables +rewritebase</title>
		<link>http://www.alejandrorodriguez.info/2010/07/apache-urls-amigables-rewritebase/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=apache-urls-amigables-rewritebase</link>
		<comments>http://www.alejandrorodriguez.info/2010/07/apache-urls-amigables-rewritebase/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 08:38:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apuntes]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=300</guid>
		<description><![CDATA[Acostumbrado a trabajar con VHosts para las urls amigables hago esta nota mental gracias a mi compañero @ReviewST y que para  poder trabajar con urls amigables en alias debemos tener en cuenta de poner en el  .htaccess RewriteBase /nombre_del_alias/ 
Es importante recordar de eliminarlo o documentarlo cuando publicamos el sitio en el servidor real.
]]></description>
			<content:encoded><![CDATA[<p>Acostumbrado a trabajar con VHosts para las urls amigables hago esta nota mental gracias a mi compañero <a href="http://twitter.com/reviewst" target="_blank">@ReviewST</a> y que para  poder trabajar con urls amigables en alias debemos tener en cuenta de poner en el  .htaccess <span style="color: #008000;">RewriteBase /nombre_del_alias/ </span></p>
<p>Es importante recordar de eliminarlo o documentarlo cuando publicamos el sitio en el servidor real.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/07/apache-urls-amigables-rewritebase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>create funcion en mysql</title>
		<link>http://www.alejandrorodriguez.info/2010/04/create-function-en-mysql/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=create-function-en-mysql</link>
		<comments>http://www.alejandrorodriguez.info/2010/04/create-function-en-mysql/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 11:25:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apuntes]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.alejandrorodriguez.info/?p=294</guid>
		<description><![CDATA[Para no olvidarme&#8230;
Necesitaba recorrer las actuaciones de las collas y solo tomar los 5 mejores resultados de las mismas.
CREATE FUNCTION spf_ultimas5( p_collaID INT) returns int
READS SQL DATA
NOT DETERMINISTIC
begin
DECLARE puntos_totales,puntos INT DEFAULT 0;
DECLARE done INT DEFAULT 0;
DECLARE rs CURSOR FOR
select punts_r
from actuacions
where collaID=p_collaID
order by punts_r  desc
limit 0,5 ;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;
OPEN rs;
repetir: [...]]]></description>
			<content:encoded><![CDATA[<p>Para no olvidarme&#8230;</p>
<p>Necesitaba recorrer las actuaciones de las collas y solo tomar los 5 mejores resultados de las mismas.</p>
<p>CREATE FUNCTION spf_ultimas5( p_collaID INT) returns int</p>
<p>READS SQL DATA<br />
NOT DETERMINISTIC</p>
<p>begin<br />
DECLARE puntos_totales,puntos INT DEFAULT 0;<br />
DECLARE done INT DEFAULT 0;<br />
DECLARE rs CURSOR FOR<br />
select punts_r<br />
from actuacions<br />
where collaID=p_collaID<br />
order by punts_r  desc<br />
limit 0,5 ;<br />
DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;<br />
OPEN rs;<br />
repetir: LOOP<br />
FETCH rs INTO puntos;</p>
<p>IF done=1 THEN<br />
LEAVE repetir;<br />
END IF;<br />
SET  puntos_totales = puntos_totales  + puntos;<br />
END LOOP  repetir;<br />
CLOSE rs;<br />
RETURN puntos_totales ;<br />
end;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alejandrorodriguez.info/2010/04/create-function-en-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

