<?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>Vixio Network<title></title>
</title>
	<atom:link href="http://www.vixionetwork.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vixionetwork.com</link>
	<description>Servicio Global de Calidad y Confianza</description>
	<lastBuildDate>Sun, 04 Mar 2012 00:56:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Procedimientos Almacenados en PHP con MySQL</title>
		<link>http://www.vixionetwork.com/2012/03/03/procedimientos-almacenados-en-php-con-mysql/</link>
		<comments>http://www.vixionetwork.com/2012/03/03/procedimientos-almacenados-en-php-con-mysql/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 21:13:08 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Desarrollo Web]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=438</guid>
		<description><![CDATA[Ejemplo de un procedimiento almacenado en PHP con MySql, el ejemplo indica la creación del procedimiento almacenado, la configuración de conexión y un ejemplo real para cargar datos en un combo box. Antes de pasar al ejemplo, es necesario verificar si tenemos el driver del PDO activado en nuestro servidor Apache, un paso simple es [...]]]></description>
			<content:encoded><![CDATA[<p>Ejemplo de un procedimiento almacenado en PHP con MySql, el ejemplo indica la creación del procedimiento almacenado, la configuración de conexión y un ejemplo real para cargar datos en un combo box.</p>
<p>Antes de pasar al ejemplo, es necesario verificar si tenemos el driver del PDO activado en nuestro servidor Apache, un paso simple es <a href="http://www.vixionetwork.com/wp-content/uploads/2012/03/PDO-driver-MySql-PHP-php-ini.jpg">verificar con un phpinfo</a>, en caso contrario habilitarlo en nuestro php.ini.</p>
<pre class="brush: plain; title: ; notranslate">
extension=php_pdo_mysql.dll
</pre>
<hr />
<h3>Procedimiento Almacenado</h3>
<pre class="brush: sql; title: ; notranslate">
DROP PROCEDURE IF EXISTS sp_ubigeo_prov $$
CREATE PROCEDURE sp_ubigeo_prov(in p_departamento text)
BEGIN
	SELECT codprov,nombre
	FROM ubigeo
	WHERE coddpto = p_departamento and coddist = '00' and codprov != '00';
END $$
</pre>
<hr />
<h3>config_PDO.php</h3>
<pre class="brush: php; title: ; notranslate">
&lt;?php
	$servidor = &quot;localhost&quot;;
	$usuario = &quot;administrador&quot;;
	$password = &quot;abcdefgh&quot;;
	$bd = &quot;ejemplo&quot;; 

	$bdconexion = new PDO(&quot;mysql:host=$servidor;dbname=$bd&quot;, $usuario, $password, array( PDO::ATTR_PERSISTENT =&gt; false));
?&gt;
</pre>
<hr />
<h3>Ejemplo.php</h3>
<pre class="brush: php; title: ; notranslate">
&lt;?php $Departamento = $_GET[&quot;Departamento&quot;]; ?&gt;

&lt;p class=&quot;right&quot;&gt;
    &lt;label&gt;Provincia&lt;/label&gt;&lt;br /&gt;
	&lt;select class=&quot;text&quot; name=&quot;Provincia&quot; id=&quot;Provincia&quot; onChange=&quot;showDist(this.value)&quot; &gt;
    &lt;option&gt;&lt;/option&gt;
  &lt;?php
	try {
		include 'config_PDO.php';
        $result = $bdconexion -&gt; prepare(&quot;CALL sp_ubigeo_prov('$Departamento')&quot;);
        $result -&gt; execute();
		while ($row = $result -&gt; fetch(PDO::FETCH_OBJ))
		{
        	echo &quot;&lt;option value=&quot;.$row-&gt;codprov.&quot;&gt;&quot;.$row-&gt;nombre.&quot;&lt;/option&gt;&quot;;
		}
		$bd = null;
	    } catch (PDOException $e) {
    	    print &quot;Error!: &quot; . $e-&gt;getMessage() . &quot;&lt;br/&gt;&quot;;
        die();
    	}
  ?&gt;
    &lt;/select&gt;
&lt;/p&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2012/03/03/procedimientos-almacenados-en-php-con-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No mostrar entradas en la página principal del blog en Blogger</title>
		<link>http://www.vixionetwork.com/2012/02/24/no-mostrar-entradas-en-la-pagina-principal-del-blog-en-blogger/</link>
		<comments>http://www.vixionetwork.com/2012/02/24/no-mostrar-entradas-en-la-pagina-principal-del-blog-en-blogger/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 14:55:36 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[blogger]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=433</guid>
		<description><![CDATA[Ocultar las entradas del blog de la página principal de nuestro blog en blogger resulta importante cuando queremos hacer de nuestro blog una especie de landscape, intro o simplemente personalizar nuestro nuestro home. Básicamente el truco es solo asignar una serie de códigos condicionales para blogger. Ejemplo]]></description>
			<content:encoded><![CDATA[<p>Ocultar las entradas del blog de la página principal de nuestro blog en blogger resulta importante cuando queremos hacer de nuestro blog una especie de landscape, intro o simplemente personalizar nuestro nuestro home. Básicamente el truco es solo asignar una serie de <a href="http://www.vixionetwork.com/2012/02/09/codigos-condicionales-para-blogger/">códigos condicionales para blogger</a>.</p>
<hr />
<h3>Ejemplo</h3>
<pre class="brush: plain; title: ; notranslate">
&lt;-- Inicio / Ocultar entradas en la página principal o home del blog en blogger --&gt;
&lt;b:if cond='data:blog.url != data:blog.homepageUrl'&gt;
   &lt;b:section class='main' id='main' showaddelement='no'&gt;
   &lt;b:widget id='Blog1' locked='true' title='Entradas del blog' type='Blog'&gt;
      xxxxxxxxxxx
   &lt;/b:widget&gt;
   &lt;/b:section&gt;
&lt;/b:if&gt;
&lt;-- Final / Ocultar entradas en la página principal o home del blog en blogger --&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2012/02/24/no-mostrar-entradas-en-la-pagina-principal-del-blog-en-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Códigos Condicionales para Blogger</title>
		<link>http://www.vixionetwork.com/2012/02/09/codigos-condicionales-para-blogger/</link>
		<comments>http://www.vixionetwork.com/2012/02/09/codigos-condicionales-para-blogger/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 22:36:13 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[condicionales]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=424</guid>
		<description><![CDATA[En blogger existen códigos condicionales con el fin de personalizar nuestro diseño y contenido, a continuación hago una lista de lo mas requeridos, se irán añadiendo mas condicionales para blogger. Página de Inicio Páginas Estáticas Entradas Entrada, Etiqueta o Página Específica Primer Elemento]]></description>
			<content:encoded><![CDATA[<p>En blogger existen códigos condicionales con el fin de personalizar nuestro diseño y contenido, a continuación hago una lista de lo mas requeridos, se irán añadiendo mas condicionales para blogger.</p>
<hr />
<h3>Página de Inicio</h3>
<pre class="brush: plain; title: ; notranslate">
&lt;b:if cond='&quot;data:blog.url == data:blog.homepageUrl&quot;'&gt;
   &lt;-- Mostrar contenido solo en la página de inicio o home --&gt;
&lt;/b:if&gt;
</pre>
<hr />
<h3>Páginas Estáticas</h3>
<pre class="brush: plain; title: ; notranslate">
&lt;b:if cond='data:blog.pageType == &quot;static_page&quot;'&gt;
   &lt;-- Mostrar contenido solo en páginas estáticas --&gt;
&lt;/b:if&gt;
</pre>
<hr />
<h3>Entradas</h3>
<pre class="brush: plain; title: ; notranslate">
&lt;b:if cond='data:blog.pageType == &quot;item&quot;'&gt;
   &lt;-- Mostrar contenido solo en entradas o post --&gt;
&lt;/b:if&gt;
</pre>
<hr />
<h3>Entrada, Etiqueta o Página Específica</h3>
<pre class="brush: plain; title: ; notranslate">
&lt;b:if cond='data:blog.url == &quot;Blog Post URL&quot;'&gt;
   &lt;-- Mostrar contenido solo en la dirección especificada --&gt;
&lt;/b:if&gt;
</pre>
<hr />
<h3>Primer Elemento</h3>
<pre class="brush: plain; title: ; notranslate">
&lt;b:if cond='data:post.isFirstPost'&gt;
   &lt;-- Mostrar contenido solo en la primera entrada --&gt;
&lt;/b:if&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2012/02/09/codigos-condicionales-para-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paquetes de Idiomas para Adobe CS5</title>
		<link>http://www.vixionetwork.com/2011/04/22/paquetes-de-idiomas-para-adobe-cs5/</link>
		<comments>http://www.vixionetwork.com/2011/04/22/paquetes-de-idiomas-para-adobe-cs5/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 08:00:35 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Desarrollo Web]]></category>
		<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=419</guid>
		<description><![CDATA[Compartimos gran parte de los paquetes de idiomas para Adobe CS5 listo para su descarga gratuita. Los paquetes de idioma disponibles son el portugués, chino simplificado, chino tradicional, checo, inglés americano, inglés británico, francés, alemán, italiano, japones, coreano, polaco, ruso, español, sueco, turco y otros más para el paquete completo de Adobe CS5: Dreamweaver, Fireworks, [...]]]></description>
			<content:encoded><![CDATA[		<div class="cox-slideshow"> <div id="msg_slideshow" class="msg_slideshow-1">
            <div id="msg_wrapper" class="msg_wrapper-1"></div>
            <div id="msg_controls" class="msg_controls"><!-- right has to animate to 15px, default -110px -->
				<a href="#" id="msg_grid" class="msg_grid"></a>
				<a href="#" id="msg_prev" class="msg_prev"></a>
				<a href="#" id="msg_pause_play" class="msg_pause"></a><!-- has to change to msg_play if paused-->
				<a href="#" id="msg_next" class="msg_next"></a>
			</div>
			<div id="msg_thumbs" class="msg_thumbs"><!-- top has to animate to 0px, default -230px -->
					<ul class="msg_thumb_wrapper"><li><img src="http://www.vixionetwork.com/wp-content/themes/cox/lib/tools/timthumb.php?src=http://www.vixionetwork.com/wp-content/uploads/2011/04/Paquetes-de-Idiomas-para-Adobe-CS5.png&amp;w=70&amp;h=70&amp;zc=1&amp;q=100" alt="" title="http://www.vixionetwork.com/wp-content/uploads/2011/04/Paquetes-de-Idiomas-para-Adobe-CS5.png" />
<div style="display:none" title="http://www.vixionetwork.com/wp-content/uploads/2011/04/Paquetes-de-Idiomas-para-Adobe-CS5.png"></div></li></ul><!--<a href="#" id="msg_thumb_next" class="msg_thumb_next"></a>
				<a href="#" id="msg_thumb_prev" class="msg_thumb_prev"></a>-->
				<a href="#" id="msg_thumb_close" class="msg_thumb_close"></a>
				<span class="msg_loading"></span><!-- show when next thumb wrapper loading -->
			</div>
		</div></div>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<p>Compartimos gran parte de los <b>paquetes de idiomas para Adobe CS5 listo para su descarga gratuita</b>. Los paquetes de idioma disponibles son el portugués, chino simplificado, chino tradicional, checo, inglés americano, inglés británico, francés, alemán, italiano, japones, coreano, polaco, ruso, español, sueco, turco y otros más para el paquete completo de Adobe CS5: Dreamweaver, Fireworks, Flash, Illustrator, InDesign y Photoshop.</p>
<p><span class="source-credits">Extraído de: <a class="tooltip" href="http://www.mrvixio.com/download/2010/12/30/adobe-cs5-language-packs/" title="Adobe CS5 Language Packs">Adobe CS5 Language Packs</a></span><br />
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span></p>
<div style="text-align: center">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-7779507245527292";
/* VX */
google_ad_slot = "8005094554";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<h2>Paquetes de Idiomas para Adobe Dreamweaver CS5</h2>
<ul>
<li>Brazilian Portuguese &#8211; http://www.4shared.com/file/G54YfFdS/DreamweaverCS5LanguagePack_pt_.html</li>
<li>Chinese Simplified &#8211; http://www.4shared.com/file/gZZ9Uiwg/DreamweaverCS5LanguagePack_zh_.html</li>
<li>Chinese Traditional &#8211; http://www.4shared.com/file/-ASdgMxC/DreamweaverCS5LanguagePack_zh_.html</li>
<li>Czech &#8211; http://www.4shared.com/file/cqEOR3G1/DreamweaverCS5LanguagePack_cs_.html</li>
<li>Dutch &#8211; http://www.4shared.com/file/f2yFNNU0/DreamweaverCS5LanguagePack_nl_.html</li>
<li>English (United States) &#8211; http://www.4shared.com/file/tYz1Tfew/DreamweaverCS5LanguagePack_en_.html</li>
<li>French &#8211; http://www.4shared.com/file/3izvBeSb/DreamweaverCS5LanguagePack_fr_.html</li>
<li>German &#8211; http://www.4shared.com/file/6HyX-ftA/DreamweaverCS5LanguagePack_de_.html</li>
<li>Italian &#8211; http://www.4shared.com/file/KNfmbVjR/DreamweaverCS5LanguagePack_it_.html</li>
<li>Japanese &#8211; http://www.4shared.com/file/nD8Y8CZj/DreamweaverCS5LanguagePack_ja_.html</li>
<li>Korean &#8211; http://www.4shared.com/file/EdGALznu/DreamweaverCS5LanguagePack_ko_.html</li>
<li>Polish &#8211; http://www.4shared.com/file/wHtI-vFA/DreamweaverCS5LanguagePack_pl_.html</li>
<li>Russian &#8211; http://www.4shared.com/file/5NMan6gE/DreamweaverCS5LanguagePack_ru_.html</li>
<li>Spanish &#8211; http://www.4shared.com/file/aNuG03-3/DreamweaverCS5LanguagePack_es_.html</li>
<li>Swedish &#8211; http://www.4shared.com/file/qvQS96bQ/DreamweaverCS5LanguagePack_sv_.html</li>
<li>Turkish &#8211; http://www.4shared.com/file/64AE0s-N/DreamweaverCS5LanguagePack_tr_.html</li>
</ul>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<h2>Paquetes de Idiomas para Adobe Fireworks CS5</h2>
<ul>
<li>Brazilian Portuguese &#8211; http://www.4shared.com/file/kAwSTyeg/FireworksCS5LanguagePack_pt_BR.html</li>
<li>Chinese Simplified &#8211; http://www.4shared.com/file/2GpS5weP/FireworksCS5LanguagePack_zh_CN.html</li>
<li>Chinese Traditional &#8211; http://www.4shared.com/file/7L5rxXTq/FireworksCS5LanguagePack_zh_TW.html</li>
<li>Czech &#8211; http://www.4shared.com/file/jNNiEDBs/FireworksCS5LanguagePack_cs_CZ.html</li>
<li>Dutch &#8211; http://www.4shared.com/file/PDrJJlIZ/FireworksCS5LanguagePack_nl_NL.html</li>
<li>English &#8211; http://www.4shared.com/file/k6sYo4v-/FireworksCS5LanguagePack_EN_.html</li>
<li>French &#8211; http://www.4shared.com/file/Hna8DxiY/FireworksCS5LanguagePack_FR_.html</li>
<li>German &#8211; http://www.4shared.com/file/CVd-D0ic/FireworksCS5LanguagePack_de_DE.html</li>
<li>Italian &#8211; http://www.4shared.com/file/ZASWDEfI/FireworksCS5LanguagePack_it_IT.html</li>
<li>Japanese &#8211; http://www.4shared.com/file/5gEN1kdO/FireworksCS5LanguagePack_ja_JP.html</li>
<li>Korean &#8211; http://www.4shared.com/file/z7MC_CGk/FireworksCS5LanguagePack_ko_KR.html</li>
<li>Polish &#8211; http://www.4shared.com/file/5_aWzxfX/FireworksCS5LanguagePack_pl_PL.html</li>
<li>Russian &#8211; http://www.4shared.com/file/aAFb8Q5P/FireworksCS5LanguagePack_ru_RU.html</li>
<li>Spanish &#8211; http://www.4shared.com/file/sIUTfVeS/FireworksCS5LanguagePack_ES_.html</li>
<li>Swedish &#8211; http://www.4shared.com/file/_x0yiG_8/FireworksCS5LanguagePack_sv_SE.html</li>
<li>Turkish &#8211; http://www.4shared.com/file/8vjBxfGq/FireworksCS5LanguagePack_tr_TR.html</li>
</ul>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<h2>Paquetes de Idiomas para Adobe Flash CS5</h2>
<ul>
<li>Brazilian Portuguese &#8211; http://www.4shared.com/file/mAXaOR80/FlashProfessionalCS5LanguagePa.html</li>
<li>Chinese Simplified &#8211; http://www.4shared.com/file/o1H1ez4l/FlashProfessionalCS5LanguagePa.html</li>
<li>Chinese Traditional &#8211; http://www.4shared.com/file/7S0gGM8I/FlashProfessionalCS5LanguagePa.html</li>
<li>Czech &#8211; http://www.4shared.com/file/v-TfhMUC/FlashProfessionalCS5LanguagePa.html</li>
<li>Dutch &#8211; http://www.4shared.com/file/mwEiAqDb/FlashProfessionalCS5LanguagePa.html</li>
<li>English &#8211; http://www.4shared.com/file/jjLptgHF/FlashProfessionalCS5LanguagePa.html</li>
<li>French &#8211; http://www.4shared.com/file/Mj9FiC08/FlashProfessionalCS5LanguagePa.html</li>
<li>German &#8211; http://www.4shared.com/file/G-CJ1vfy/FlashProfessionalCS5LanguagePa.html</li>
<li>Italian &#8211; http://www.4shared.com/file/M5ZOoux-/FlashProfessionalCS5LanguagePa.html</li>
<li>Japanese &#8211; http://www.4shared.com/file/WRxcGS9c/FlashProfessionalCS5LanguagePa.html</li>
<li>Korean &#8211; http://www.4shared.com/file/gOk7g4B8/FlashProfessionalCS5LanguagePa.html</li>
<li>Polish &#8211; http://www.4shared.com/file/TdRbpJTU/FlashProfessionalCS5LanguagePa.html</li>
<li>Russian &#8211; http://www.4shared.com/file/PH3Rvyha/FlashProfessionalCS5LanguagePa.html</li>
<li>Swedish &#8211; http://www.4shared.com/file/-hJ-r8l_/FlashProfessionalCS5LanguagePa.html</li>
<li>Spanish &#8211; http://www.4shared.com/file/5t5GTAfM/FlashProfessionalCS5LanguagePa.html</li>
<li>Turkish &#8211; http://www.4shared.com/file/lh5Yc1xl/FlashProfessionalCS5LanguagePa.html</li>
</ul>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<h2>Paquetes de Idiomas para Adobe Illustrator CS5</h2>
<ul>
<li>Brazilian Portuguese &#8211; Part 1: http://www.4shared.com/file/x1MpVqjg/IllustratorCS5LanguagePack_pt_.html , Part 2: http://www.4shared.com/file/Ntzpanzk/IllustratorCS5LanguagePack_pt_.html , Part 3: http://www.4shared.com/file/zK2Pu0F_/IllustratorCS5LanguagePack_pt_.html</li>
<li>Chinese Simplified &#8211; Part 1: http://www.4shared.com/file/53CEJPlt/IllustratorCS5LanguagePack_zh_.html , Part 2: http://www.4shared.com/file/3fgR33o4/IllustratorCS5LanguagePack_zh_.html , Part 3: http://www.4shared.com/file/MNGyFokI/IllustratorCS5LanguagePack_zh_.html</li>
<li>Chinese Traditional &#8211; Part 1: http://www.4shared.com/file/wtt7k7YS/IllustratorCS5LanguagePack_zh_.html , Part 2: http://www.4shared.com/file/7Nwu_lj6/IllustratorCS5LanguagePack_zh_.html , Part 3: http://www.4shared.com/file/ZTZcrZKU/IllustratorCS5LanguagePack_zh_.html</li>
<li>Czech &#8211; Part 1: http://www.4shared.com/file/TD2sdMiB/IllustratorCS5LanguagePack_cs_.html , Part 2: http://www.4shared.com/file/wR2Rg2-B/IllustratorCS5LanguagePack_cs_.html , Part 3: http://www.4shared.com/file/kOa2MyXd/IllustratorCS5LanguagePack_cs_.html</li>
<li>Danish &#8211; Part 1: http://www.4shared.com/file/RtCqf2NB/IllustratorCS5LanguagePack_da_.html , Part 2: http://www.4shared.com/file/-D2QOCEe/IllustratorCS5LanguagePack_da_.html , Part 3: http://www.4shared.com/file/qXsNTNT1/IllustratorCS5LanguagePack_da_.html</li>
<li>Dutch &#8211; Part 1: http://www.4shared.com/file/kFZLe0E7/IllustratorCS5LanguagePack_nl_.html , Part 2: http://www.4shared.com/file/myd5dOd7/IllustratorCS5LanguagePack_nl_.html , Part 3: http://www.4shared.com/file/l-hxmjBn/IllustratorCS5LanguagePack_nl_.html , Part 4: http://www.4shared.com/file/JpzUG9qs/IllustratorCS5LanguagePack_nl_.html</li>
<li>English &#8211; Part 1: http://www.4shared.com/file/vDcl7Dkz/IllustratorCS5LanguagePack_EN_.html , Part 2: http://www.4shared.com/file/Pqgk4oAO/IllustratorCS5LanguagePack_EN_.html , Part 3: http://www.4shared.com/file/FTlDp8o-/IllustratorCS5LanguagePack_EN_.html , Part 4: http://www.4shared.com/file/IY1ZWQuM/IllustratorCS5LanguagePack_EN_.html</li>
<li>French &#8211; Part 1: http://www.4shared.com/file/YH_SApYW/IllustratorCS5LanguagePack_FR_.html , Part 2: http://www.4shared.com/file/5nKPLyHd/IllustratorCS5LanguagePack_FR_.html , Part 3: http://www.4shared.com/file/PM2glTin/IllustratorCS5LanguagePack_FR_.html</li>
<li>German &#8211; Part 1: http://www.4shared.com/file/7tZ3Vibg/IllustratorCS5LanguagePack_de_.html , Part 2: http://www.4shared.com/file/nAzxrcPE/IllustratorCS5LanguagePack_de_.html , Part 3: http://www.4shared.com/file/NY4sg63B/IllustratorCS5LanguagePack_de_.html</li>
<li>Hungarian &#8211; Part 1: http://www.4shared.com/file/cdhMH9Vs/IllustratorCS5LanguagePack_hu_.html , Part 2: http://www.4shared.com/file/tYsBDqTb/IllustratorCS5LanguagePack_hu_.html , Part 3: http://www.4shared.com/file/yKz4kI0C/IllustratorCS5LanguagePack_hu_.html</li>
<li>Italian &#8211; Part 1: http://www.4shared.com/file/iikiQv4u/IllustratorCS5LanguagePack_it_.html , Part 2: http://www.4shared.com/file/nN46rbLo/IllustratorCS5LanguagePack_it_.html , Part 3: http://www.4shared.com/file/lwxS9yHj/IllustratorCS5LanguagePack_it_.html</li>
<li>Japanese &#8211; Part 1: http://www.4shared.com/file/Jr5pg95l/IllustratorCS5LanguagePack_ja_.html , Part 2: http://www.4shared.com/file/sbFhI23I/IllustratorCS5LanguagePack_ja_.html , Part 3: http://www.4shared.com/file/PXVuUk7L/IllustratorCS5LanguagePack_ja_.html , Part 4: http://www.4shared.com/file/TRcdCZwX/IllustratorCS5LanguagePack_ja_.html</li>
<li>Korean &#8211; Part 1: http://www.4shared.com/file/A1b6-x05/IllustratorCS5LanguagePack_ko_.html , Part 2: http://www.4shared.com/file/WYrn9lP5/IllustratorCS5LanguagePack_ko_.html , Part 3: http://www.4shared.com/file/aYldDMMH/IllustratorCS5LanguagePack_ko_.html</li>
<li>Polish &#8211; Part 1: http://www.4shared.com/file/olDwx-kG/IllustratorCS5LanguagePack_pl_.html , Part 2: http://www.4shared.com/file/rUjFUC8f/IllustratorCS5LanguagePack_pl_.html , Part 3: http://www.4shared.com/file/pPbbHRLY/IllustratorCS5LanguagePack_pl_.html</li>
<li>Russian &#8211; Part 1: http://www.4shared.com/file/Ws1GD7SX/IllustratorCS5LanguagePack_ru_.html , Part 2: http://www.4shared.com/file/dYQr1ePh/IllustratorCS5LanguagePack_ru_.html , Part 3: http://www.4shared.com/file/9cjJzCTa/IllustratorCS5LanguagePack_ru_.html</li>
<li>Spanish &#8211; Part 1: http://www.4shared.com/file/4tnWFhdY/IllustratorCS5LanguagePack_ES_.html , Part 2: http://www.4shared.com/file/qGg1Zvex/IllustratorCS5LanguagePack_ES_.html , Part 3: http://www.4shared.com/file/xSUV2_Y3/IllustratorCS5LanguagePack_ES_.html</li>
<li>Swedish &#8211; Part 1: http://www.4shared.com/file/6k6EzoSG/IllustratorCS5LanguagePack_sv_.html , Part 2: http://www.4shared.com/file/tyu29eIj/IllustratorCS5LanguagePack_sv_.html , Part 3: http://www.4shared.com/file/Mia85JJ4/IllustratorCS5LanguagePack_sv_.html</li>
<li>Turkish &#8211; Part 1: http://www.4shared.com/file/WVfTjXVm/IllustratorCS5LanguagePack_tr_.html , Part 2: http://www.4shared.com/file/_cCGUM8L/IllustratorCS5LanguagePack_tr_.html , Part 3: http://www.4shared.com/file/oSIXy4qa/IllustratorCS5LanguagePack_tr_.html</li>
<li>Ukrainian &#8211; Part 1: http://www.4shared.com/file/ACoACTAr/IllustratorCS5LanguagePack_uk_.html , Part 2: http://www.4shared.com/file/TC7GSyCf/IllustratorCS5LanguagePack_uk_.html , Part 3: http://www.4shared.com/file/cnhNO_D0/IllustratorCS5LanguagePack_uk_.html</li>
</ul>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<h2>Paquetes de Idiomas para Adobe InDesign CS5</h2>
<ul>
<li>Arabic (UAE) &#8211; http://www.4shared.com/file/EcyS3OMi/InDesignCS5LanguagePack_ar_AE_.html</li>
<li>Brazilian Portuguese &#8211; http://www.4shared.com/file/dC7Imm09/InDesignCS5LanguagePack_pt_BR_.html</li>
<li>Chinese Simplified &#8211; http://www.4shared.com/file/no8yphHU/InDesignCS5LanguagePack_zh_CN_.html</li>
<li>Chinese Traditional &#8211; http://www.4shared.com/file/ot87aZ5Q/InDesignCS5LanguagePack_zh_TW_.html</li>
<li>Czech &#8211; http://www.4shared.com/file/DSgbAQCH/InDesignCS5LanguagePack_cs_CZ_.html</li>
<li>Danish &#8211; http://www.4shared.com/file/xTY0dLPl/InDesignCS5LanguagePack_da_DK_.html</li>
<li>Dutch &#8211; http://www.4shared.com/file/5fkzFWHc/InDesignCS5LanguagePack_nl_NL_.html</li>
<li>English (International) &#8211; http://www.4shared.com/file/SPz5W45g/InDesignCS5LanguagePack_en_GB_.html</li>
<li>English (United States) &#8211; http://www.4shared.com/file/B_oM0f1x/InDesignCS5LanguagePack_en_US_.html</li>
<li>Finnish &#8211; http://www.4shared.com/file/Z07mzWob/InDesignCS5LanguagePack_fi_FI_.html</li>
<li>French &#8211; http://www.4shared.com/file/8UiqANFX/InDesignCS5LanguagePack_FR_.html</li>
<li>German &#8211; http://www.4shared.com/file/oRY1HWjd/InDesignCS5LanguagePack_de_DE_.html</li>
<li>Hebrew &#8211; http://www.4shared.com/file/gNqTf5gm/InDesignCS5LanguagePack_he_IL_.html</li>
<li>Hungarian &#8211; http://www.4shared.com/file/xhxFnAdE/InDesignCS5LanguagePack_hu_HU_.html</li>
<li>Italian &#8211; http://www.4shared.com/file/yOuatLRp/InDesignCS5LanguagePack_it_IT_.html</li>
<li>Japanese &#8211; http://www.4shared.com/file/Gaur20Fi/InDesignCS5LanguagePack_ja_JP_.html</li>
<li>Korean &#8211; http://www.4shared.com/file/lNaEActH/InDesignCS5LanguagePack_ko_KR_.html</li>
<li>Modern Greek &#8211; http://www.4shared.com/file/3zzc6iCj/InDesignCS5LanguagePack_el_GR_.html</li>
<li>Norwegian Bokmål &#8211; http://www.4shared.com/file/aVAe-LCA/InDesignCS5LanguagePack_nb_NO_.html</li>
<li>Polish &#8211; http://www.4shared.com/file/8rVyCPXr/InDesignCS5LanguagePack_pl_PL_.html</li>
<li>Russian &#8211; http://www.4shared.com/file/v-5r_wVQ/InDesignCS5LanguagePack_ru_RU_.html</li>
<li>Swedish &#8211; http://www.4shared.com/file/USxvXqah/InDesignCS5LanguagePack_sv_SE_.html</li>
<li>Spanish &#8211; http://www.4shared.com/file/X9KW7UNP/InDesignCS5LanguagePack_ES_.html</li>
<li>Turkish &#8211; http://www.4shared.com/file/wEpX9nhA/InDesignCS5LanguagePack_tr_TR_.html</li>
<li>Ukrainian &#8211; http://www.4shared.com/file/bn8wjOa9/InDesignCS5LanguagePack_uk_UA_.html</li>
</ul>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<h2>Paquetes de Idiomas para Adobe Photoshop CS5</h2>
<ul>
<li>Brazilian Portuguese &#8211; http://www.4shared.com/file/cZSaRGQf/PhotoShopCS5LanguagePack_pt_BR.html</li>
<li>Chinese Simplified &#8211; http://www.4shared.com/file/yA6eTHlw/PhotoShopCS5LanguagePack_zh_CN.html</li>
<li>Chinese Traditional &#8211; http://www.4shared.com/file/4ZVcu-6F/PhotoShopCS5LanguagePack_zh_TW.html</li>
<li>Czech &#8211; http://www.4shared.com/file/f9C2jbin/PhotoShopCS5LanguagePack_cs_CZ.html</li>
<li>Danish &#8211; http://www.4shared.com/file/0-uAWcXM/PhotoShopCS5LanguagePack_da_DK.html</li>
<li>Dutch &#8211; http://www.4shared.com/file/_Cpq3zUy/PhotoShopCS5LanguagePack_nl_NL.html</li>
<li>English (International + United States) &#8211; http://www.4shared.com/file/as_hKy8d/PhotoShopCS5LanguagePack_EN__M.html</li>
<li>Finnish &#8211; http://www.4shared.com/file/pD_O4N04/PhotoShopCS5LanguagePack_fi_FI.html</li>
<li>French &#8211; http://www.4shared.com/file/qpyvZTVx/PhotoShopCS5LanguagePack_FR_.html</li>
<li>German &#8211; http://www.4shared.com/file/LHdIe-YB/PhotoShopCS5LanguagePack_de_DE.html</li>
<li>Hungarian &#8211; http://www.4shared.com/file/J9amQBD1/PhotoShopCS5LanguagePack_hu_HU.html</li>
<li>Italian &#8211; http://www.4shared.com/file/CRn2M6xK/PhotoShopCS5LanguagePack_it_IT.html</li>
<li>Japanese &#8211; http://www.4shared.com/file/2DnOrAeF/PhotoShopCS5LanguagePack_ja_JP.html</li>
<li>Korean &#8211; http://www.4shared.com/file/phW5I2yJ/PhotoShopCS5LanguagePack_ko_KR.html</li>
<li>Norwegian Bokmål &#8211; http://www.4shared.com/file/wFVgjcmD/PhotoShopCS5LanguagePack_nb_NO.html</li>
<li>Polish &#8211; http://www.4shared.com/file/fnjDeOX7/PhotoShopCS5LanguagePack_pl_PL.html</li>
<li>Romanian &#8211; http://www.4shared.com/file/krWM7eKj/PhotoShopCS5LanguagePack_ro_RO.html</li>
<li>Russian &#8211; http://www.4shared.com/file/4CPqPEoL/PhotoShopCS5LanguagePack_ru_RU.html</li>
<li>Swedish &#8211; http://www.4shared.com/file/0MZlbrnl/PhotoShopCS5LanguagePack_sv_SE.html</li>
<li>Spanish &#8211; http://www.4shared.com/file/jGYn90nk/PhotoShopCS5LanguagePack_ES_.html</li>
<li>Turkish &#8211; http://www.4shared.com/file/cKzdckBB/PhotoShopCS5LanguagePack_tr_TR.html</li>
<li>Ukrainian &#8211; http://www.4shared.com/file/mC6K-HtA/PhotoShopCS5LanguagePack_uk_UA.html</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2011/04/22/paquetes-de-idiomas-para-adobe-cs5/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Complementos para Firefox 4 que todo Diseñador y Desarrollador Web debe tener</title>
		<link>http://www.vixionetwork.com/2011/04/21/complementos-para-firefox-4-que-todo-disenador-y-desarrollador-web-debe-tener/</link>
		<comments>http://www.vixionetwork.com/2011/04/21/complementos-para-firefox-4-que-todo-disenador-y-desarrollador-web-debe-tener/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 00:03:41 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Desarrollo Web]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=408</guid>
		<description><![CDATA[Firefox 4 para muchos es la principal herramienta de desarrollo web tanto para testear aplicaciones, como para ir editando en modo real o caliente tecnologías como HTML, CSS, JS de una manera rápida y sencilla, semanas después del lanzamiento de Firefox 4, hemos armado una lista de los mejores complementos para Firefox 4 orientadas al [...]]]></description>
			<content:encoded><![CDATA[		<div class="cox-slideshow"> <div id="msg_slideshow" class="msg_slideshow-1">
            <div id="msg_wrapper" class="msg_wrapper-1"></div>
            <div id="msg_controls" class="msg_controls"><!-- right has to animate to 15px, default -110px -->
				<a href="#" id="msg_grid" class="msg_grid"></a>
				<a href="#" id="msg_prev" class="msg_prev"></a>
				<a href="#" id="msg_pause_play" class="msg_pause"></a><!-- has to change to msg_play if paused-->
				<a href="#" id="msg_next" class="msg_next"></a>
			</div>
			<div id="msg_thumbs" class="msg_thumbs"><!-- top has to animate to 0px, default -230px -->
					<ul class="msg_thumb_wrapper"><li><img src="http://www.vixionetwork.com/wp-content/themes/cox/lib/tools/timthumb.php?src=http://www.vixionetwork.com/wp-content/uploads/2011/04/Complementos-para-Firefox-4-que-todo-Diseñador-y-Desarrollador-Web-debe-tener.png&amp;w=70&amp;h=70&amp;zc=1&amp;q=100" alt="" title="http://www.vixionetwork.com/wp-content/themes/cox/lib/tools/timthumb.php?src=http://www.vixionetwork.com/wp-content/uploads/2011/04/Complementos-para-Firefox-4-que-todo-Diseñador-y-Desarrollador-Web-debe-tener.png&amp;w=536&amp;h=284&amp;zc=1&amp;q=100" />
<div style="display:none" title="http://www.vixionetwork.com/wp-content/uploads/2011/04/Complementos-para-Firefox-4-que-todo-Diseñador-y-Desarrollador-Web-debe-tener.png"></div></li></ul><!--<a href="#" id="msg_thumb_next" class="msg_thumb_next"></a>
				<a href="#" id="msg_thumb_prev" class="msg_thumb_prev"></a>-->
				<a href="#" id="msg_thumb_close" class="msg_thumb_close"></a>
				<span class="msg_loading"></span><!-- show when next thumb wrapper loading -->
			</div>
		</div></div>
<p>Firefox 4 para muchos es la principal herramienta de desarrollo web tanto para testear aplicaciones, como para ir editando en modo real o caliente tecnologías como HTML, CSS, JS de una manera rápida y sencilla, semanas después del lanzamiento de Firefox 4, hemos armado una <b>lista de los mejores complementos para Firefox 4 orientadas al desarrollo web</b>, si tienes alguna extensión u complemento que uses en tu desarrollo, tal vez porque no compartila en los comentarios.</p>
<span class="source-credits">Pack en 1 link de <a href="http://www.megaupload.com/?f=2AOXN29K" rel="nofollow" target="_blank">MegaUpload</a> &#8211; <i>Update:</i> 21 de Abril del 2011</span>
<span class="cox-divider-with-top"><a href="#wrap">Go to Top ↑</a></span>
<h2>Complementos de Firefox 4 Esenciales</h2>
<span class="cox-divider"></span>
<div style="text-align: center">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-7779507245527292";
/* VX */
google_ad_slot = "8005094554";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<span class="cox-divider"></span>
<h3>Firebug:</h3>
<p>Firebug se integra con Firefox para poner una gran cantidad de herramientas de desarrollo web a su alcance mientras navegas. Puede editar, depurar y monitorear CSS, HTML y JavaScript en vivo cualquier página web.</p>
<p><b>Download:</b> <a href="https://addons.mozilla.org/en-US/firefox/addon/firebug/" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/firebug/</a></p>
<span class="cox-divider"></span>
<h3>Firepicker:</h3>
<p>Agrega un pequeño cuadro de color seleccionable cuando se edita una regla CSS en Firebug. El complemento busca valores que se pueden analizar como los colores CSS (#abc, RGB (1,2,3), azul, rojo, etc) y los muestra en un derecho de lista desplegable debajo de la caja de firebug editor de CSS. Al hacer clic en el valor del color en el menú desplegable aparece automaticamente el valor del color en hexadecimal.</p>
<p><b>Download:</b> <a href="https://addons.mozilla.org/en-US/firefox/addon/firepicker/" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/firepicker/</a></p>
<span class="cox-divider"></span>
<h3>GridFox</h3>
<p>Dibuja una rejilla en la parte superior de una página web. Esto es útil para el control de los diseños que siguen un diseño basado en una cuadrícula como 960.</p>
<p><b>Download:</b> <a href="https://addons.mozilla.org/en-US/firefox/addon/gridfox/" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/gridfox/</a></p>
<span class="cox-divider"></span>
<h3>ResizeIT</h3>
<p>Cambiar el tamaño personalizado y la posición de las ventanas del navegador Firefox con las teclas: ALT + 1, 2, 3, 4, ideal para las pruebas en diferentes resoluciones de pantalla.</p>
<p><b>Download:</b> <a href="https://addons.mozilla.org/en-US/firefox/addon/resizeit/" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/resizeit/</a></p>
<span class="cox-divider"></span>
<h3>Screengrab</h3>
<p>Se captura lo que se puede ver en la ventana, la página entera, sólo una selección, un cuadro en particular, básicamente guarda las páginas web como imágenes ya sea en un archivo .PNG o al portapapeles, esta herramienta también captura Flash; muy útil y necesario en la etapa final de nuestros proyectos.</p>
<p><b>Download:</b> <a href="https://addons.mozilla.org/en-US/firefox/addon/screengrab/" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/screengrab/</a></p>
<span class="cox-divider"></span>
<h3>Seo Toolbar</h3>
<p>La parte SEO en Firefox nunca fué tan sencilla, SEO Toolbar brindas las mejores herramientas de investigación.</p>
<p><b>Download:</b> <a href="http://tools.seobook.com/seo-toolbar/" rel="nofollow">http://tools.seobook.com/seo-toolbar/</a></p>
<span class="cox-divider"></span>
<h3>Delicious</h3>
<p>Guarda tus tutoriales web, sitios de referencia para ser consultados en cualquier momento.</p>
<p><b>Download:</b> <a href="http://wordpress.kendaric.net/delicious_bookmarks-2.1.106-fx.xpi" rel="nofollow">http://wordpress.kendaric.net/delicious_bookmarks-2.1.106-fx.xpi</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2011/04/21/complementos-para-firefox-4-que-todo-disenador-y-desarrollador-web-debe-tener/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nuevos planes en Radio Streaming y en alta definición</title>
		<link>http://www.vixionetwork.com/2010/12/27/nuevos-planes-en-radio-streaming-y-en-alta-definicion/</link>
		<comments>http://www.vixionetwork.com/2010/12/27/nuevos-planes-en-radio-streaming-y-en-alta-definicion/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 00:24:56 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Promociones]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[Streaming]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=376</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2010/12/27/nuevos-planes-en-radio-streaming-y-en-alta-definicion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cupones de Google Adwords Gratis en planes de E-marketing</title>
		<link>http://www.vixionetwork.com/2010/12/27/cupones-de-google-adwords-gratis-en-planes-de-e-marketing/</link>
		<comments>http://www.vixionetwork.com/2010/12/27/cupones-de-google-adwords-gratis-en-planes-de-e-marketing/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 00:00:01 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Promociones]]></category>
		<category><![CDATA[Adwords]]></category>
		<category><![CDATA[E-marketing]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=370</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2010/12/27/cupones-de-google-adwords-gratis-en-planes-de-e-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hazte fan de Vixio Network en Facebook y Twitter para obtener promociones especiales</title>
		<link>http://www.vixionetwork.com/2010/12/27/hazte-fan-de-vixio-network-en-facebook-y-twitter-para-obtener-promociones-especiales/</link>
		<comments>http://www.vixionetwork.com/2010/12/27/hazte-fan-de-vixio-network-en-facebook-y-twitter-para-obtener-promociones-especiales/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 23:42:31 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Promociones]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[promociones]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=368</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2010/12/27/hazte-fan-de-vixio-network-en-facebook-y-twitter-para-obtener-promociones-especiales/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dominio Gratis en todos los paquetes de Servicios Web</title>
		<link>http://www.vixionetwork.com/2010/12/27/dominio-gratis-en-todos-los-paquetes-de-servicios-web/</link>
		<comments>http://www.vixionetwork.com/2010/12/27/dominio-gratis-en-todos-los-paquetes-de-servicios-web/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 23:38:19 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Promociones]]></category>
		<category><![CDATA[dominios]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=366</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2010/12/27/dominio-gratis-en-todos-los-paquetes-de-servicios-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20% de Descuento en Dominios .com, .net, .org</title>
		<link>http://www.vixionetwork.com/2010/12/26/20-de-descuento-en-dominios-com-net-org/</link>
		<comments>http://www.vixionetwork.com/2010/12/26/20-de-descuento-en-dominios-com-net-org/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 00:38:03 +0000</pubDate>
		<dc:creator>MrVixio</dc:creator>
				<category><![CDATA[Promociones]]></category>
		<category><![CDATA[dominios]]></category>

		<guid isPermaLink="false">http://www.vixionetwork.com/?p=324</guid>
		<description><![CDATA[Con la llegada del año 2011, Vixio Network trae consigo las promociones en dominios .com, .net, .org con un 20% de descuento; recuerda la promoción es válida hasta el 31 de enero del 2011 .]]></description>
			<content:encoded><![CDATA[<p>Con la llegada del año 2011, Vixio Network trae consigo las promociones en dominios .com, .net, .org con un 20% de descuento; recuerda la promoción es válida hasta el 31 de enero del 2011 <img src='http://www.vixionetwork.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vixionetwork.com/2010/12/26/20-de-descuento-en-dominios-com-net-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 539/671 objects using disk: basic

Served from: www.vixionetwork.com @ 2012-05-19 23:39:46 -->
