<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
	<channel>
		
      	<title>Snippets</title>
      	<link>http://snippets.inacho.es</link>
      	<description>Últimos Snippets</description>
		      		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/snippets-inacho" /><feedburner:info uri="snippets-inacho" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
         		<title>Virtual host</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/XkXMciptMHY/virtual-host</link>
         		<description>&lt;h1&gt;Htaccess&lt;/h1&gt; &lt;pre&gt;&amp;lt;VirtualHost *:10088&amp;gt;
	DocumentRoot &amp;quot;/my/path/to/server&amp;quot;
	ServerName mypage.com

	# This should be omitted in the production environment
	SetEnv APPLICATION_ENV development

	&amp;lt;Directory &amp;quot;/my/path/to/server&amp;quot;&amp;gt;
		Options Indexes MultiViews FollowSymLinks
		AllowOverride All
		Order allow,deny
		Allow from all
	&amp;lt;/Directory&amp;gt;

&amp;lt;/VirtualHost&amp;gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/XkXMciptMHY" height="1" width="1"/&gt;</description>
         		<pubDate>Sun, 05 Dec 2010 16:17:39 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/virtual-host</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/virtual-host</feedburner:origLink></item>
		      		<item>
         		<title>Evitar acceso a .svn</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/iuZPRiA9IbU/evitar-acceso-ficheros-svn</link>
         		<description>&lt;h1&gt;Htaccess&lt;/h1&gt; &lt;pre&gt;&amp;lt;DirectoryMatch .*.svn/.*&amp;gt;
	Deny From All
&amp;lt;/DirectoryMatch&amp;gt;&lt;/pre&gt; &lt;p&gt;
Regla en htaccess para evitar que los ficheros de metadata de svn sean visibles a través de http.&lt;br/&gt;
Esto es útil para el servidor de producción, donde las actualizaciones de los ficheros se hacen actualizando una copia del repositorio
&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/iuZPRiA9IbU" height="1" width="1"/&gt;</description>
         		<pubDate>Thu, 07 Oct 2010 10:48:28 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/evitar-acceso-ficheros-svn</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/evitar-acceso-ficheros-svn</feedburner:origLink></item>
		      		<item>
         		<title>Chmod Apache</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/EzPlxKYTRhA/chmod-apache</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;find . -type d -exec chmod 755 {} \;

find . -type f -exec chmod 644 {} \;&lt;/pre&gt; &lt;p&gt;Propaga permisos de forma recursiva partiendo del directorio actual.&lt;/p&gt;

&lt;p&gt;Aplica 0755 para directorios y 0644 para ficheros&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/EzPlxKYTRhA" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 01 Mar 2010 16:19:05 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/chmod-apache</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/chmod-apache</feedburner:origLink></item>
		      		<item>
         		<title>Ampersand tipográfico</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/DDToQzi0bkw/ampersand-tipografico</link>
         		<description>&lt;h1&gt;CSS&lt;/h1&gt; &lt;pre&gt;.amp{
	font-family: 'Hoefler Text', Baskerville, 'Palatino Linotype', 'Times New Roman', serif;
	font-style: italic;
}&lt;/pre&gt; &lt;p&gt;Ejemplo del efecto:&lt;/p&gt;

&lt;p style="font-family:'Hoefler Text', Baskerville, 'Palatino Linotype', 'Times New Roman', serif; font-style: italic; font-size:22px;"&gt;
&amp;
&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/DDToQzi0bkw" height="1" width="1"/&gt;</description>
         		<pubDate>Tue, 16 Feb 2010 19:03:33 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/ampersand-tipografico</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/ampersand-tipografico</feedburner:origLink></item>
		      		<item>
         		<title>Sincronizar app en Dropbox</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/LxOj4nFuqPY/sincronizar-app-dropbox</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;mv ~/Library/Application\ Support/AddressBook ~/Dropbox/DB/
ln -s ~/Dropbox/DB/AddressBook ~/Library/Application\ Support/AddressBook&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/LxOj4nFuqPY" height="1" width="1"/&gt;</description>
         		<pubDate>Sun, 10 Jan 2010 03:33:16 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/sincronizar-app-dropbox</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/sincronizar-app-dropbox</feedburner:origLink></item>
		      		<item>
         		<title>Validar Email</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/bUMLIhvKWeo/validar-email</link>
         		<description>&lt;h1&gt;JavaScript&lt;/h1&gt; &lt;pre&gt;var email = 'steve@apple.com'
if(!(/^((([a-z]|\d|[!#\$%&amp;amp;'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&amp;amp;'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(email)))
alert('Email inv&amp;aacute;lido');&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/bUMLIhvKWeo" height="1" width="1"/&gt;</description>
         		<pubDate>Sat, 09 Jan 2010 01:42:35 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/validar-email</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/validar-email</feedburner:origLink></item>
		      		<item>
         		<title>Tooltips</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/M7a_Py_jcFQ/tooltips</link>
         		<description>&lt;h1&gt;CSS&lt;/h1&gt; &lt;pre&gt;a.tooltip:hover {background:#ffffff; text-decoration:none;}
a.tooltip span {display:none; padding:2px 3px; margin-left:8px; width:130px;}
a.tooltip:hover span{display:inline; position:absolute; background:#ffffff; border:1px solid #cccccc; color:#6c6c6c;}

/*
	Uso:
	&amp;lt;a class=&amp;quot;tooltip&amp;quot; href=&amp;quot;#&amp;quot;&amp;gt;Tooltip&amp;lt;span&amp;gt;Contenido del tooltip&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;
*/&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/M7a_Py_jcFQ" height="1" width="1"/&gt;</description>
         		<pubDate>Wed, 16 Dec 2009 00:14:12 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/tooltips</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/tooltips</feedburner:origLink></item>
		      		<item>
         		<title>Optimizar DB Firefox</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/hh9l_50x4Q4/optimizar-basedatos-firefox</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;# V&amp;aacute;lido para Mac OS X

cd ~/Library/Application\ Support/Firefox/Profiles/
for f in */*.sqlite; do sqlite3 $f 'VACUUM;'; done&lt;/pre&gt; &lt;p&gt;Compacta las bases de datos sqlite de Firefox, conviene hacerlo cuando el navegador empieza a ir más lento de lo normal.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/hh9l_50x4Q4" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 07 Dec 2009 19:53:33 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/optimizar-basedatos-firefox</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/optimizar-basedatos-firefox</feedburner:origLink></item>
		      		<item>
         		<title>Comprimir con gzip</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/1i6GdlseuGc/comprimir-gzip</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;ob_start('ob_gzhandler');

// c&amp;oacute;digo fuente&lt;/pre&gt; &lt;p&gt;La llamada a &lt;em&gt;ob_start&lt;/em&gt; debe estar al principio del fichero php&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/1i6GdlseuGc" height="1" width="1"/&gt;</description>
         		<pubDate>Wed, 02 Dec 2009 12:05:16 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/comprimir-gzip</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/comprimir-gzip</feedburner:origLink></item>
		      		<item>
         		<title>Compila .java, ejecuta y borra</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/wSHKsdZkFac/compilar-ejecutar-java</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;function jr()
{
	file=$(basename $@ .java)
	if [ -f $@ ]; then
		if [ -f $file.class ]; then #si existe una version anterior eliminar
			rm $file.class
		fi

		javac $@;

		if [ -f $file.class ]; then #si existe el fichero compilado ejecutar
			java $file;
			rm $file.class #eliminar el fichero
		fi
	else
		echo El fichero especificado no existe
	fi
}&lt;/pre&gt; Creado por &lt;a href="http://www.gspidermac.es/"&gt;gspidermac&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/wSHKsdZkFac" height="1" width="1"/&gt;</description>
         		<pubDate>Sun, 22 Nov 2009 23:17:47 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/compilar-ejecutar-java</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/compilar-ejecutar-java</feedburner:origLink></item>
		      		<item>
         		<title>Función autoload</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/wEH2bCpTWZE/funcion-autoload</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;function __autoload($clase)
{
	require_once($clase . '.class.php');
}&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/wEH2bCpTWZE" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 09 Nov 2009 14:51:30 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/funcion-autoload</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/funcion-autoload</feedburner:origLink></item>
		      		<item>
         		<title>Clase Singleton</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/sV9YMhBTf4c/clase-singleton</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;class Singleton
{
	private static $instancia;

	private function __construct()
	{
		
	}

	public static function getInstancia()
	{
		if (!isset(self::$instancia))
		{
			$c = __CLASS__;
			self::$instancia = new $c;
		}
		return self::$instancia;
	}

	public function __clone()
	{
		trigger_error('No se permite clonar la clase', E_USER_ERROR);
	}

}&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/sV9YMhBTf4c" height="1" width="1"/&gt;</description>
         		<pubDate>Sat, 07 Nov 2009 22:23:08 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/clase-singleton</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/clase-singleton</feedburner:origLink></item>
		      		<item>
         		<title>Doctype XHTML Transitional</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/gnZOitZpdFk/doctype-xhtml-transitional</link>
         		<description>&lt;h1&gt;HTML&lt;/h1&gt; &lt;pre&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;
        &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; xml:lang=&amp;quot;es&amp;quot; lang=&amp;quot;es&amp;quot;&amp;gt;
&amp;lt;head&amp;gt;
	&amp;lt;meta http-equiv=&amp;quot;content-type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot; /&amp;gt;
	&amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/gnZOitZpdFk" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 02 Nov 2009 18:57:58 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/doctype-xhtml-transitional</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/doctype-xhtml-transitional</feedburner:origLink></item>
		      		<item>
         		<title>Timer infinito</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/ORSLMKT8xZ8/timer-infinito</link>
         		<description>&lt;h1&gt;JavaScript&lt;/h1&gt; &lt;pre&gt;function timeout()
{
	// c&amp;oacute;digo

	setTimeout(&amp;quot;timeout()&amp;quot;, 1000);
}

timeout();&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/ORSLMKT8xZ8" height="1" width="1"/&gt;</description>
         		<pubDate>Thu, 29 Oct 2009 19:41:57 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/timer-infinito</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/timer-infinito</feedburner:origLink></item>
		      		<item>
         		<title>Punteros a funciones</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/Py70A7mkEQY/punteros-funciones</link>
         		<description>&lt;h1&gt;C&lt;/h1&gt; &lt;pre&gt;// fptr es un puntero a una funci&amp;oacute;n, sin par&amp;aacute;metros, que devuelve void.
void (*fptr)();

// fptr es un puntero a funci&amp;oacute;n que recibe un int como par&amp;aacute;metro y devuelve void.
void (*fptr)(int);

// fptr es puntero a funci&amp;oacute;n, que acepta un int y un char como argumentos y devuelve un int.
int (*fptr)(int, char);

// fptr es puntero a funci&amp;oacute;n, que acepta sendos punteros a int y char como argumentos, y devuelve un puntero a int.
int* (*fptr)(int*, char*);&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/Py70A7mkEQY" height="1" width="1"/&gt;</description>
         		<pubDate>Tue, 27 Oct 2009 00:07:31 +0100</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/punteros-funciones</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/punteros-funciones</feedburner:origLink></item>
		      		<item>
         		<title>Conexión con base de datos</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/OnVLi4nJwiA/conexion-base-datos</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;$host = 'localhost';
$user = 'user';
$pass = 'pass';
$database = 'database';
$encoding = 'utf8';

$conexion = mysql_connect($host, $user, $pass);
if($encoding) mysql_set_charset($encoding, $conexion);
mysql_select_db($database, $conexion);&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/OnVLi4nJwiA" height="1" width="1"/&gt;</description>
         		<pubDate>Sat, 24 Oct 2009 21:36:27 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/conexion-base-datos</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/conexion-base-datos</feedburner:origLink></item>
		      		<item>
         		<title>HtmlEntities con UTF-8</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/JgFSxOipQbA/htmlentities-utf8</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;htmlentities($texto, ENT_COMPAT, 'UTF-8');&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/JgFSxOipQbA" height="1" width="1"/&gt;</description>
         		<pubDate>Sat, 24 Oct 2009 20:45:52 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/htmlentities-utf8</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/htmlentities-utf8</feedburner:origLink></item>
		      		<item>
         		<title>Favicon</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/fzi_XfLh-fo/favicon</link>
         		<description>&lt;h1&gt;HTML&lt;/h1&gt; &lt;pre&gt;&amp;lt;link rel=&amp;quot;icon&amp;quot; href=&amp;quot;favicon.gif&amp;quot; type=&amp;quot;image/gif&amp;quot; /&amp;gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/fzi_XfLh-fo" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:48 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/favicon</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/favicon</feedburner:origLink></item>
		      		<item>
         		<title>Evitar www</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/24Q_9N4qrZ4/evitar-www</link>
         		<description>&lt;h1&gt;Htaccess&lt;/h1&gt; &lt;pre&gt;RewriteCond %{HTTP_HOST} ^www.miweb.es$ [NC]
RewriteRule ^(.*)$ http://miweb.es/$1 [R=301,L]&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/24Q_9N4qrZ4" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:46 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/evitar-www</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/evitar-www</feedburner:origLink></item>
		      		<item>
         		<title>URLs amigables</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/vSDHQ3pgb_0/urls-amigables</link>
         		<description>&lt;h1&gt;Htaccess&lt;/h1&gt; &lt;pre&gt;RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?p=$1 [L]&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/vSDHQ3pgb_0" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:44 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/urls-amigables</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/urls-amigables</feedburner:origLink></item>
		      		<item>
         		<title>Bloquear Perl</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/9RkMHS7gzcM/bloquear-perl</link>
         		<description>&lt;h1&gt;Htaccess&lt;/h1&gt; &lt;pre&gt;RewriteEngine on
# si no est&amp;aacute; en error, continuar con la siguiente regla
RewriteCond %{REQUEST_FILENAME} !.*error\.html.*
# si es perl, redirigir a error
RewriteCond %{HTTP_USER_AGENT} .*(libwww-perl|libwwwperl).* [nc]
RewriteRule .* http://miweb.es/error.html [r=301,l]&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/9RkMHS7gzcM" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:42 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/bloquear-perl</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/bloquear-perl</feedburner:origLink></item>
		      		<item>
         		<title>Objeto Flash</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/fAaqysuqwgg/objeto-flash</link>
         		<description>&lt;h1&gt;HTML&lt;/h1&gt; &lt;pre&gt;&amp;lt;object classid=&amp;quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&amp;quot; codebase=&amp;quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0&amp;quot; width=&amp;quot;300&amp;quot; height=&amp;quot;120&amp;quot;&amp;gt;
	&amp;lt;param name=&amp;quot;movie&amp;quot; value=&amp;quot;flash.swf&amp;quot; /&amp;gt;
	&amp;lt;param name=&amp;quot;quality&amp;quot; value=&amp;quot;high&amp;quot; /&amp;gt;
	&amp;lt;param name=&amp;quot;bgcolor&amp;quot; value=&amp;quot;#FFFFFF&amp;quot; /&amp;gt;
	&amp;lt;!--[if !IE]&amp;gt; &amp;lt;--&amp;gt;
		&amp;lt;object data=&amp;quot;flash.swf&amp;quot; width=&amp;quot;300&amp;quot; height=&amp;quot;120&amp;quot; type=&amp;quot;application/x-shockwave-flash&amp;quot;&amp;gt;
			&amp;lt;param name=&amp;quot;quality&amp;quot; value=&amp;quot;high&amp;quot; /&amp;gt;
			&amp;lt;param name=&amp;quot;bgcolor&amp;quot; value=&amp;quot;#FFFFFF&amp;quot; /&amp;gt;
			&amp;lt;param name=&amp;quot;pluginurl&amp;quot; value=&amp;quot;http://www.macromedia.com/go/getflashplayer&amp;quot; /&amp;gt;
		&amp;lt;/object&amp;gt;
	&amp;lt;!--&amp;gt; &amp;lt;![endif]--&amp;gt;
&amp;lt;/object&amp;gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/fAaqysuqwgg" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:40 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/objeto-flash</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/objeto-flash</feedburner:origLink></item>
		      		<item>
         		<title>Cargar jQuery dinámicamente</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/pWX9qC8edCU/cargar-jquery-dinamicamente</link>
         		<description>&lt;h1&gt;jQuery&lt;/h1&gt; &lt;pre&gt;var jQueryCargado = false;

function iniciarJQuery()
{
	if (typeof(jQuery) == 'undefined')
	{
		if (!jQueryCargado)
		{
			jQueryCargado = true;
			document.write('&amp;lt;scr' + 'ipt type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&amp;quot;&amp;gt;&amp;lt;/scr' + 'ipt&amp;gt;');
		}
		setTimeout('iniciarJQuery()', 50);
	}
	else
	{
		$(function(){
			// c&amp;oacute;digo
		});
	}
}

iniciarJQuery();&lt;/pre&gt; &lt;p&gt;Si jQuery ya está cargado, ejecuta el código, en caso contrario, primero lo carga y luego ejecuta el código&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/pWX9qC8edCU" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:38 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/cargar-jquery-dinamicamente</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/cargar-jquery-dinamicamente</feedburner:origLink></item>
		      		<item>
         		<title>Window load</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/QOPx25q9Gdg/window-load</link>
         		<description>&lt;h1&gt;jQuery&lt;/h1&gt; &lt;pre&gt;$(window).load(function(){
	// c&amp;oacute;digo
});&lt;/pre&gt; &lt;p&gt;A diferencia de document ready, esta función espera a que toda la página se haya cargado, incluyendo imágenes, etc.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/QOPx25q9Gdg" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:36 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/window-load</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/window-load</feedburner:origLink></item>
		      		<item>
         		<title>Prompt coloreado</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/fbD720RLMDk/prompt-coloreado</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;amarillo='\[\e[0;33m\]'
normal='\[\e[0m\]'
cyan='\[\e[0;36m\]'
blanco='\[\e[0;37m\]'

PS1=$cyan'\u@\h'$blanco': '$amarillo'\w '$normal'\$ '
export PS1&lt;/pre&gt; &lt;p&gt;Meter dentro del .bash_profile&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/fbD720RLMDk" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:34 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/prompt-coloreado</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/prompt-coloreado</feedburner:origLink></item>
		      		<item>
         		<title>Modificar colores ls</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/KDPuYN6GlCA/colores-ls</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;export LSCOLORS=dxfxcxdxbxegedabagacad&lt;/pre&gt; &lt;p&gt;Meter dentro del .bash_profile&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/KDPuYN6GlCA" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:32 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/colores-ls</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/colores-ls</feedburner:origLink></item>
		      		<item>
         		<title>Alias útiles</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/IiSyx_CMMzU/alias-utiles</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;alias root='sudo -i'
alias ls='ls -Gh'
alias grep='grep --color'
alias curld='curl -C - -O'
alias rmsvn='rm -rf `find . -type d -name .svn`'
alias flushhosts='dscacheutil -flushcache'
alias finder='open . -a finder.app'&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/IiSyx_CMMzU" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:30 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/alias-utiles</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/alias-utiles</feedburner:origLink></item>
		      		<item>
         		<title>AFP con túnel SSH</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/KkkqkeO8KSo/afp-tunel-ssh</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;sudo ssh -L 22:127.0.0.1:548 usuario@host&lt;/pre&gt; &lt;p&gt;Después de hacer el túnel, conectar a: &lt;em&gt;afp://127.0.0.1:22&lt;/em&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/KkkqkeO8KSo" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:28 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/afp-tunel-ssh</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/afp-tunel-ssh</feedburner:origLink></item>
		      		<item>
         		<title>Sombra en cajas</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/vkTiu0X9MaI/sombra-cajas</link>
         		<description>&lt;h1&gt;CSS&lt;/h1&gt; &lt;pre&gt;box-shadow: 5px 5px 5px #ccc;
-moz-box-shadow: 5px 5px 5px #ccc;
-webkit-box-shadow: 5px 5px 5px #ccc;&lt;/pre&gt; &lt;p&gt;Puede ser utilizado en elementos tipo &lt;em&gt;div&lt;/em&gt;, &lt;em&gt;img&lt;/em&gt;, etc.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/vkTiu0X9MaI" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:26 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/sombra-cajas</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/sombra-cajas</feedburner:origLink></item>
		      		<item>
         		<title>Bordes redondeados</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/3AkCgugSi7A/bordes-redondeados</link>
         		<description>&lt;h1&gt;CSS&lt;/h1&gt; &lt;pre&gt;-moz-border-radius: 10px;
-webkit-border-radius: 10px;

/* Individuales */

-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;

-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/3AkCgugSi7A" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:24 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/bordes-redondeados</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/bordes-redondeados</feedburner:origLink></item>
		      		<item>
         		<title>Target blank en xhtml strict</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/hUTAWF_j24Q/target-blank-strict</link>
         		<description>&lt;h1&gt;HTML&lt;/h1&gt; &lt;pre&gt;&amp;lt;a href=&amp;quot;http://google.es&amp;quot; onclick=&amp;quot;window.open(this.href); return false;&amp;quot;&amp;gt;http://google.es&amp;lt;/a&amp;gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/hUTAWF_j24Q" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:22 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/target-blank-strict</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/target-blank-strict</feedburner:origLink></item>
		      		<item>
         		<title>Parámetros en AJAX</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/jT5A7m1rWsY/parametros-ajax</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;// Codificar en javascript con:
// encodeURIComponent( parametro );

// Descodificar en PHP con:

$param = $_GET['param'];
$param = preg_replace('/%([0-9a-f]{2})/ie', &amp;quot;chr(hexdec('\\1'))&amp;quot;, $param);
$param = stripslashes ( $param );&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/jT5A7m1rWsY" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:20 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/parametros-ajax</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/parametros-ajax</feedburner:origLink></item>
		      		<item>
         		<title>Obtener IP</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/PwDvlXu0gDs/obtener-ip</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;function getIP()
{
	$ip = false;
	if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
	elseif(isset($_SERVER['HTTP_VIA'])) $ip = $_SERVER['HTTP_VIA'];
	elseif(isset($_SERVER['REMOTE_ADDR'])) $ip = $_SERVER['REMOTE_ADDR'];
	return $ip;
}&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/PwDvlXu0gDs" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:18 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/obtener-ip</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/obtener-ip</feedburner:origLink></item>
		      		<item>
         		<title>Descargar fichero</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/AopJSiRW4hI/descargar-fichero</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;header('Content-Disposition: attachment; filename=&amp;quot;descarga.zip&amp;quot;');
header('Content-Length: ' . $size);
header('Content-Type: application/application/octet-stream;');
readfile($fichero);

// otra forma, puede no funcionar bien en safari

header('Content-Disposition: inline; filename=&amp;quot;descarga.zip&amp;quot;');
header('Content-Transfer-Encoding: Binary');
header('Content-length: ' . $size); // tama&amp;ntilde;o de fichero (filesize)
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=&amp;quot;descarga.zip&amp;quot;');
readfile($fichero);&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/AopJSiRW4hI" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:16 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/descargar-fichero</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/descargar-fichero</feedburner:origLink></item>
		      		<item>
         		<title>Curl</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/jeJFZsVo12w/curl</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;$curl = curl_init('http://ejemplo.com');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

//curl_setopt($curl, CURLOPT_COOKIEFILE, 'cookie.txt');
//curl_setopt($curl, CURLOPT_COOKIEJAR, 'cookie.txt');
//curl_setopt($curl, CURLOPT_POST, 1);
//curl_setopt($curl, CURLOPT_POSTFIELDS, $valores);

curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
$resultado = curl_exec($curl);
curl_close($curl);&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/jeJFZsVo12w" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:14 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/curl</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/curl</feedburner:origLink></item>
		      		<item>
         		<title>Aumentar memoria</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/fe44v5BhKaA/aumentar-memoria</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;ini_set('memory_limit', '1024M');&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/fe44v5BhKaA" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:12 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/aumentar-memoria</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/aumentar-memoria</feedburner:origLink></item>
		      		<item>
         		<title>Interpolado bicúbico en IE7</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/-j2X5ERw_qw/interpolado-bicubico-ie7</link>
         		<description>&lt;h1&gt;CSS&lt;/h1&gt; &lt;pre&gt;img { -ms-interpolation-mode:bicubic; }&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/-j2X5ERw_qw" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:10 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/interpolado-bicubico-ie7</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/interpolado-bicubico-ie7</feedburner:origLink></item>
		      		<item>
         		<title>Compila .c, ejecuta y borra</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/11uWjtmRBLM/compilar-ejecutar-c</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;function cr()
{
	if [ -f $@ ]; then
		if [ -f $@.out ]; then #si existe una version anterior eliminar
			rm $@.out
		fi
	
		gcc $@ -o $@.out;
	
		if [ -f $@.out ]; then #si existe el fichero compilado ejecutar
			./$@.out
			rm $@.out #eliminar el fichero
		fi
	else
		echo El fichero especificado no existe
	fi
}&lt;/pre&gt; &lt;p&gt;Meter la función dentro del .bash_profile para usar cómodamente&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/11uWjtmRBLM" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:08 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/compilar-ejecutar-c</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/compilar-ejecutar-c</feedburner:origLink></item>
		      		<item>
         		<title>Eliminar .svn</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/fPcl3x4JQQQ/eliminar-ocultos-svn</link>
         		<description>&lt;h1&gt;UNIX Bash&lt;/h1&gt; &lt;pre&gt;rm -rf `find . -type d -name .svn`&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/fPcl3x4JQQQ" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:04 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/eliminar-ocultos-svn</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/eliminar-ocultos-svn</feedburner:origLink></item>
		      		<item>
         		<title>Video Quicktime</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/oTHCzwCUT70/video-quicktime</link>
         		<description>&lt;h1&gt;HTML&lt;/h1&gt; &lt;pre&gt;&amp;lt;object classid=&amp;quot;clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B&amp;quot; codebase=&amp;quot;http://www.apple.com/qtactivex/qtplugin.cab&amp;quot; width=&amp;quot;320&amp;quot; height=&amp;quot;260&amp;quot;&amp;gt;
	&amp;lt;param name=&amp;quot;src&amp;quot; value=&amp;quot;movie.mov&amp;quot; /&amp;gt;
	&amp;lt;param name=&amp;quot;autoplay&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
	&amp;lt;param name=&amp;quot;pluginspage&amp;quot; value=&amp;quot;http://www.apple.com/quicktime/download/&amp;quot; /&amp;gt;
	&amp;lt;param name=&amp;quot;controller&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
	&amp;lt;!--[if !IE]&amp;gt; &amp;lt;--&amp;gt;
		&amp;lt;object data=&amp;quot;movie.mov&amp;quot; width=&amp;quot;320&amp;quot; height=&amp;quot;260&amp;quot; type=&amp;quot;video/quicktime&amp;quot;&amp;gt;
			&amp;lt;param name=&amp;quot;pluginurl&amp;quot; value=&amp;quot;http://www.apple.com/quicktime/download/&amp;quot; /&amp;gt;
			&amp;lt;param name=&amp;quot;controller&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;/object&amp;gt;
	&amp;lt;!--&amp;gt; &amp;lt;![endif]--&amp;gt;
&amp;lt;/object&amp;gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/oTHCzwCUT70" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:02 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/video-quicktime</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/video-quicktime</feedburner:origLink></item>
		      		<item>
         		<title>Mostrar errores</title>
         		<link>http://feedproxy.google.com/~r/snippets-inacho/~3/f5vM8Lk2wLk/mostrar-errores</link>
         		<description>&lt;h1&gt;PHP&lt;/h1&gt; &lt;pre&gt;error_reporting(E_ALL);
ini_set('display_errors', '1');&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/snippets-inacho/~4/f5vM8Lk2wLk" height="1" width="1"/&gt;</description>
         		<pubDate>Mon, 19 Oct 2009 22:00:00 +0200</pubDate>
         		<guid isPermaLink="false">http://snippets.inacho.es/snippet/mostrar-errores</guid>
      		<feedburner:origLink>http://snippets.inacho.es/snippet/mostrar-errores</feedburner:origLink></item>
		   	</channel>
</rss>

