<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Código Fuente de la Vida</title>
	<atom:link href="http://vitocosan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vitocosan.wordpress.com</link>
	<description>Tan solo otro weblog sobre nada y todo</description>
	<lastBuildDate>Tue, 29 Sep 2009 22:33:29 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='vitocosan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/86e57c09e95d5fe327acb8c0a25062c1?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Código Fuente de la Vida</title>
		<link>http://vitocosan.wordpress.com</link>
	</image>
			<item>
		<title>How access file upload in controller action</title>
		<link>http://vitocosan.wordpress.com/2009/09/29/how-access-file-upload-in-controller-action/</link>
		<comments>http://vitocosan.wordpress.com/2009/09/29/how-access-file-upload-in-controller-action/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 22:26:05 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[Asp.net mvc]]></category>
		<category><![CDATA[C#.Net]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=182</guid>
		<description><![CDATA[Despues de tratar muchas cosas, como por ejemplo Request.Files, HttpContext.Request.Files, encontre la forma de obtener o mejor dicho accesar por completo un file upload en un action de un controller.
Supongamos que el codigo html es el siguiente

html form:
 &#60;form name="" method="post" enctype="mulitipart/form-data"&#62;
     &#60;input type="file" name="file" /&#62;
 &#60;/form&#62;


La manera mas simple de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=182&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">Despues de tratar muchas cosas, como por ejemplo Request.Files, HttpContext.Request.Files, encontre la forma de obtener o mejor dicho accesar por completo un file upload en un action de un controller.</p>
<p>Supongamos que el codigo html es el siguiente</p>
<div style="border:2px dotted #dff2bf;overflow:auto;width:550px;">
<pre style="overflow:auto;"><strong>html form:</strong>
 &lt;form name="" method="post" enctype="mulitipart/form-data"&gt;
     &lt;input type="file" name="file" /&gt;
 &lt;/form&gt;
</pre>
</div>
<p style="text-align:justify;">La manera mas simple de manejar un file en el action de un controller es usando HttpPostedFileBase type:</p>
<div style="border:2px dotted #bde5f8;overflow:auto;width:550px;">
<pre style="overflow:auto;">public ActionResult ImporFile(HttpPostedFileBase file)
{
    // Do things with the file here like
    /*
       var fullPathFile = file.FileName;
       var sr = new StreamReader(file.InputStream,Encoding.UTF8);
       var filas = 0;
       while (sr.ReadLine() != null) { ++filas; }
       sr.Close();
    */
    return View();
}
</pre>
</div>
<p style="text-align:justify;">Ahora si en base al codigo html te preguntas ¿Cómo debo hacer para añadir enctype=&#8221;multipart/form-data&#8221; a un form que es generado usando &lt;%Html.BeginForm();%&gt;?<br />
La respuesta es: como parte de los htmlAttributes,Ej.</p>
<div style="border-top:2px dotted #dff2bf;border-left:2px dotted #dff2bf;border-right:2px dotted #dff2bf;overflow:auto;width:550px;">
<pre style="overflow:auto;">Html.BeginForm(action,controller, FormMethod.Post, new { enctype="multipart/form-data"})
</pre>
</div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=182&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/09/29/how-access-file-upload-in-controller-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>Replace con Javascript y jQuery</title>
		<link>http://vitocosan.wordpress.com/2009/09/23/replace-con-javascript-y-jquery/</link>
		<comments>http://vitocosan.wordpress.com/2009/09/23/replace-con-javascript-y-jquery/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 20:36:40 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=175</guid>
		<description><![CDATA[Hoy compartiré unas funciones bastante útiles (dependiendo del contexto en que se usen) que mezclan html+javascript+jQuery.
El ejemplo es bastante simple y su objetivo es el siguiente:

Para una cadena ingresado se deben reemplazar todos los caracteres [X] con el caracter [Y]
Para un archivo indicado se deben eliminar todos los &#8220;.&#8221; (puntos) que existan en el nombre [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=175&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hoy compartiré unas funciones bastante útiles (dependiendo del contexto en que se usen) que mezclan html+javascript+jQuery.</p>
<p>El ejemplo es bastante simple y su objetivo es el siguiente:</p>
<ul>
<li>Para una cadena ingresado se deben reemplazar todos los caracteres [X] con el caracter [Y]</li>
<li>Para un archivo indicado se deben eliminar todos los &#8220;.&#8221; (puntos) que existan en el nombre del archivo.</li>
</ul>
<p>En javascript se puede utilizar la funcion replace para reemplazar una cadena ingresada por otra:</p>
<p><strong>Sintaxis</strong><br />
<code>stringObject.replace(findstring,newstring) </code></p>
<p>Esta funcion reemplaza el primer match de findstring con newstring en stringObject. Pero ¿como reemplazar todos los caracteres que conocuerden con findstring?, para ello se pueden utilizar 2 parametros de la función replace:</p>
<ul>
<li><strong>g</strong> utizado para encontrar todos los match de findstring en stringObject</li>
<li><strong>i</strong> utilizado para que sea una busqueda &#8220;icasesensitive&#8221;</li>
</ul>
<p>Otra forma de reemplazar todos los caracteres que conocuerden con findstring es mediante un ciclo iterativo el cual verán en el código.</p>
<p><strong>Código de función que obtiene el nombre del archivo</strong></p>
<div style="border-top:2px dotted #dff2bf;border-left:2px dotted #dff2bf;border-right:2px dotted #dff2bf;overflow:auto;width:550px;">
<pre style="overflow:auto;">function GetFileName() {
        var fullFileName = $("#file").val();
        var fileName = fullFileName.substr(fullFileName.lastIndexOf("\\") + 1, fullFileName.length);
        return fileName;
    }</pre>
</div>
<p><strong>Código de función que obtiene la extensióndel archivo</strong></p>
<div style="border-top:2px dotted #bde5f8;border-left:2px dotted #bde5f8;border-right:2px dotted #bde5f8;overflow:auto;width:550px;">
<pre style="overflow:auto;">function GetExtension() {
        var fileName = GetFileName();
        var fileEx = fileName.substr(fileName.lastIndexOf("."), fileName.length);
        return fileEx;
    }</pre>
</div>
<p><strong>Código que realiza el Replace</strong></p>
<div style="border-top:2px dotted #dff2bf;border-left:2px dotted #dff2bf;border-right:2px dotted #dff2bf;overflow:auto;width:550px;">
<pre style="overflow:auto;">$(document).ready(function() {
		$("#btnReplace").click(function () {
			var txtData = $("#txtData").val();
			var txtRemp = $("#txtRemp").val();
			var txtCaracter = $("#txtCaracter").val();
			var fileName = GetFileName();
			var fileEx = GetExtension();

			//replace "." en fileName
			fileName = fileName.replace(fileEx, '').replace(/\x2E/g, '') + fileEx;

			//replace txtRemp con txtCaracter en txtData
			/*
			solucion para todos los navegadores excepto iexplorer <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />
			txtData = txtData.replace(txtRemp,txtCaracter,'gi');
			*/
			//solucion para todos los navegadores incluido iexplorer
			var intIndexOfMatch = txtData.indexOf(txtRemp);
			while (intIndexOfMatch != -1){
				txtData = txtData.replace(txtRemp,txtCaracter)
				intIndexOfMatch = txtData.indexOf(txtRemp);
			}

			$("#replace1").html(txtData);
			$("#replace2").html(fileName);
		});
	});</pre>
</div>
<p><strong><em>Un par de consideraciones:</em></strong></p>
<ul>
<li>Cuando reemplazo el punto uso una expresion regular con el valor hexadecimal del caracter &#8220;.&#8221; seguido con el parametro <strong>g</strong> para reemplazarlo en todo el nombre del archivo.</li>
<li>La sintaxis <code>stringObject.replace(findstring,newstring,parameters) </code> no es reconocida en IExplorer</li>
</ul>
<p>Los fuentes del ejemplo los dejo en este <a href="http://www.box.net/shared/0u0g1avdp8">Enlace</a></p>
<p>Saludos!!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=175&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/09/23/replace-con-javascript-y-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>Menu Recursivo</title>
		<link>http://vitocosan.wordpress.com/2009/09/16/menu-recursivo/</link>
		<comments>http://vitocosan.wordpress.com/2009/09/16/menu-recursivo/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 20:49:02 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[C#.Net]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=156</guid>
		<description><![CDATA[Hace mucho rato que no trabajaba con un menu recursivo, desde que trabaje en Tajamar/Travel Security que no veia uno  , pero en un proyecto reciente tuve que volver a generar un menu recursivamente y aqui dejo respaldo de la logica base usada.
En resumen se trata de generar una lista recursiva de items con [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=156&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hace mucho rato que no trabajaba con un menu recursivo, desde que trabaje en Tajamar/Travel Security que no veia uno <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> , pero en un proyecto reciente tuve que volver a generar un menu recursivamente y aqui dejo respaldo de la logica base usada.<br />
En resumen se trata de generar una lista recursiva de items con una estructura como la siguiente:</p>
<ul>
<li>Modulo 1
<ul>
<li>Opcion 1</li>
<li>Opcion 2</li>
</ul>
</li>
<li>Modulo 2
<ul>
<li>SubModulo 2
<ul>
<li>Opcion 3</li>
<li>Opcion 4</li>
</ul>
</li>
<li>Opcion 5</li>
</ul>
</li>
<li>Modulo 3
<ul>
<li>Opcion 6</li>
<li>Opcion 7</li>
</ul>
</li>
</ul>
<p>Para lo anterior tengo dos clases, una con la estructura de la tabla de la base de datos que maneja la info de los objetos del menu del sistema, y otra clase que usare solo para generar la lista recursiva anteriormente mencionada.</p>
<div style="width:550px;overflow:auto;border-left:2px dotted #DFF2BF;border-right:2px dotted #DFF2BF;border-top:2px dotted #DFF2BF;">
<pre style="overflow:auto;">
public class SecObjeto
{
	public Int32 IdObjeto { get; set; }
	public Int32 IdPadre { get; set; }
	public String Controller { get; set; }
	public String Action { get; set; }
	public String NombreModulo { get; set; }

	public SecObjeto(){ }

	public SecObjeto(int idobjeto, int idpadre, string controller, string action, string nombremodulo)
	{
		IdObjeto = idobjeto;
		IdPadre = idpadre;
		Controller = controller;
		Action = action;
		NombreModulo = nombremodulo;
	}
}
</pre>
</div>
<p></p>
<div style="width:550px;overflow:auto;border-left:2px dotted #BDE5F8;border-right:2px dotted #BDE5F8;border-top:2px dotted #BDE5F8;">
<pre>
public class MenuList
{
	public String UrlView { get; set; }
	public String Name { get; set; }
	public List&lt;MenuList&gt; SubMenu { get; set; }

	public MenuList(string urlview,string name,List&lt;MenuList&gt; submenu)
	{
		UrlView = urlview;
		Name = name;
		SubMenu = submenu;
	}
}
</pre>
</div>
<p></p>
<div style="width:550px;overflow:auto;border-left:2px dotted #DFF2BF;border-right:2px dotted #DFF2BF;border-top:2px dotted #DFF2BF;">
<pre>
public static List&lt;MenuList&gt; GenerarMenu(List&lt;SecObjeto&gt; secObjetos)
{
	var menuList = new List&lt;MenuList&gt;();
	foreach (var sObj in secObjetos)
	{
		//0 indica que se trata de un nodo padre
		if (sObj.IdPadre == 0)
		{
			//uri para accesar una view bajo el patron mvc
			var urlAction = sObj.Controller + "/" + sObj.Action;
			menuList.Add(new MenuList(urlAction, sObj.NombreModulo, GenerarSubMenu(secObjetos, sObj)));
		}
	}
	return menuList;
}
</pre>
</div>
<p></p>
<div style="width:550px;overflow:auto;border-left:2px dotted #BDE5F8;border-right:2px dotted #BDE5F8;border-top:2px dotted #BDE5F8;">
<pre>
public static List&lt;MenuList&gt; GenerarSubMenu(List&lt;SecObjeto&gt; secObjetos, SecObjeto sObj)
{
	var menuList = new List&lt;MenuList&gt;();
	foreach (var objeto in secObjetos)
	{
		//la igualdad indica que objeto es hijo de sObj
		if (objeto.IdPadre == sObj.IdObjeto)
		{
			var urlAction = objeto.Controller + "/" + objeto.Action;
			menuList.Add(new MenuList(urlAction, objeto.Descripcion, GenerarSubMenu(secObjetos, objeto)));
		}
	}
	return menuList;
}
</pre>
</div>
<p>Con esto ya tengo una lista recursiva (List) con todo lo necesario para generar mi menu con html,jquery y css por ejemplo <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=156&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/09/16/menu-recursivo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>Gravity by Embrace</title>
		<link>http://vitocosan.wordpress.com/2009/08/24/gravity-by-embrace/</link>
		<comments>http://vitocosan.wordpress.com/2009/08/24/gravity-by-embrace/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:25:39 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[musica]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=146</guid>
		<description><![CDATA[Song
Lyrics
Honey, It&#8217;s been a long time coming
And I can&#8217;t stop now
Such a long time running
And I can&#8217;t stop now
Do you hear my heart beating
Can you hear that sound
Cause I can&#8217;t help thinking
And I don&#8217;t look down
And then I looked up at the sun and I could see
Oh the way that gravity turns for you and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=146&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="text-decoration:underline;"><strong>Song</strong></span></p>
<object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fvitocosan%2Fgravity-by-embrace&amp;g=1&amp;"></param><param name="allowscriptaccess" value="always"></param><embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fvitocosan%2Fgravity-by-embrace&amp;g=1&amp;" type="application/x-shockwave-flash" width="100%"> </embed> </object>
<p><span style="text-decoration:underline;"><strong>Lyrics</strong></span></p>
<p><span style="color:#003366;">Honey, It&#8217;s been a long time coming<br />
And I can&#8217;t stop now<br />
Such a long time running<br />
And I can&#8217;t stop now<br />
Do you hear my heart beating<br />
Can you hear that sound<br />
Cause I can&#8217;t help thinking<br />
And I don&#8217;t look down</span></p>
<p><span style="color:#003366;">And then I looked up at the sun and I could see<br />
Oh the way that gravity turns for you and me<br />
And then I looked up at the sky and saw the sun<br />
And the way that gravity pulls on everyone, on everyone</span></p>
<p><span style="color:#003366;">Baby, It&#8217;s been a long time waiting<br />
Such a long, long time<br />
And I can&#8217;t stop smiling<br />
No I can&#8217;t stop now<br />
And do you hear my heart beating<br />
And can you hear that sound<br />
Cause I can&#8217;t help crying<br />
And I won&#8217;t look down</span></p>
<p><span style="color:#003366;">And then I looked up at the sun and I could see<br />
Oh the way that gravity turns on you and me<br />
And then I looked up at the sun and saw the sky<br />
And the way that gravity pulls on you and I, on you and I</span></p>
<p><span style="color:#003366;">Can you hear my heart beating<br />
Can you hear that sound<br />
Cause I can&#8217;t help crying<br />
And I wont look down</span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=146&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/08/24/gravity-by-embrace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>Exp/Imp de Esquema en Oracle 9i</title>
		<link>http://vitocosan.wordpress.com/2009/08/12/expimp-de-esquema-en-oracle-9i/</link>
		<comments>http://vitocosan.wordpress.com/2009/08/12/expimp-de-esquema-en-oracle-9i/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 17:48:50 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=130</guid>
		<description><![CDATA[Para poder realizar un export e import de un esquema determinado en una base de datos Oracle 9i necesitas realizar lo siguiente en el servidor de base de datos.
En una consola de windows ejecutamos lo siguiente:
c:\&#62;exp test1/test1@desa_db FILE=data_test1.dmp LOG=data_test1.log
Con esto hemos exportado el esquema completo test1 el cual esta asociado al usuario test1. Este esquema [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=130&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Para poder realizar un export e import de un esquema determinado en una base de datos Oracle 9i necesitas realizar lo siguiente en el servidor de base de datos.<br />
En una consola de windows ejecutamos lo siguiente:<br />
<code>c:\&gt;exp test1/test1@desa_db FILE=data_test1.dmp LOG=data_test1.log</code><br />
Con esto hemos exportado el esquema completo test1 el cual esta asociado al usuario test1. Este esquema ha quedado en un archivo .dmp que en nuestro caso se llama data_test1.dmp y ademas hemos generado un .log para ver todos los export generados en el archivo.<br />
Ahora vamos a realizar el import de este archivo en un nuevo esquema que debe haber sido creado con anterioridad. En mi caso he creado el usuario test2 y le he dado los privilegios necesarios (casi dba) y con esta creacion de usuario ya tenemos un nuevo esquema en nuestra base de datos llamado test2, el cual no contiene ningun objeto aun.<br />
Entonces realizamos el import de la siguiente manera:<br />
<code>c:\&gt;imp test1/test1@desa_db FILE=data_test1.dmp LOG=data_test1_import.log FROMUSER=test1 TOUSER=test2 COMMIT=y IGNORE=y</code><br />
Con esto hemos realizado el import de nuestro archivo .dmp generado anteriormente y hemos especificado ademas que el import se realiza desde el usuario test1 al usuario test2.<br />
Ahora ya estas listo para usar tu nuevo esquema test2 que contiene todos los objetos del esquema test1.</p>
<p>Saludos!!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=130&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/08/12/expimp-de-esquema-en-oracle-9i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>(Parentesis) VideoTape by Thom Yorke</title>
		<link>http://vitocosan.wordpress.com/2009/08/07/parentesis-videotape-by-thom-yorke/</link>
		<comments>http://vitocosan.wordpress.com/2009/08/07/parentesis-videotape-by-thom-yorke/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 20:56:38 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[musica]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=119</guid>
		<description><![CDATA[Hace días vi este video en el blog de 7vicio con el tema VideoTape de fondo&#8230; tanto el tema como el video son geniales y cito las mismas palabras que Gonzalo Frías puso como título del video: &#8220;Yo vería esto antes de morir ¿y tú?&#8221;. Bueno le agreraría un poco de mi cosecha pero el [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=119&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hace días vi este video en el blog de <a href="http://www.viax.cl/7movicio/" target="_blank">7vicio</a> con el tema VideoTape de fondo&#8230; tanto el tema como el video son geniales y cito las mismas palabras que Gonzalo Frías puso como título del video: &#8220;Yo vería esto antes de morir ¿y tú?&#8221;. Bueno le agreraría un poco de mi cosecha pero el tema definitivamente sería el mismo.</p>
<p>Esperando que los de 7vicio no me cobren derechos de autor <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  les dejo el video.<br />
http://ia301528.us.archive.org/1/items/videotape/VideotapeByRadiohead.ogv<br />
http://ia301528.us.archive.org/1/items/videotape/VideotapeByRadiohead_512kb.mp4</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=119&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/08/07/parentesis-videotape-by-thom-yorke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://ia301528.us.archive.org/1/items/videotape/VideotapeByRadiohead.ogv" length="21525725" type="video/ogg" />
<enclosure url="http://ia301528.us.archive.org/1/items/videotape/VideotapeByRadiohead_512kb.mp4" length="18330051" type="video/mp4" />
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>(Parentesis) Her most beautiful smile</title>
		<link>http://vitocosan.wordpress.com/2009/07/06/parentesis-her-most-beautiful-smile/</link>
		<comments>http://vitocosan.wordpress.com/2009/07/06/parentesis-her-most-beautiful-smile/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 14:38:21 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[musica]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=117</guid>
		<description><![CDATA[


Artista
Taro Iwashiro


Título
Her most beautiful smile


Description
Pertenece al OST de Rurouni Kenshin


Género
Música Clasica




Descargar mp3
http://www.archive.org/details/MyMusic_454
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=117&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><table border="0">
<tbody>
<tr>
<td>Artista</td>
<td>Taro Iwashiro</td>
</tr>
<tr>
<td>Título</td>
<td>Her most beautiful smile</td>
</tr>
<tr>
<td>Description</td>
<td>Pertenece al OST de Rurouni Kenshin</td>
</tr>
<tr>
<td>Género</td>
<td>Música Clasica</td>
</tr>
</tbody>
</table>
<p><span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://vitocosan.wordpress.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://vitocosan.wordpress.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fwww.archive.org%2Fdownload%2FMyMusic_454%2F06_HER_MOST_BEAUTIFUL_SMILE.MP3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /></object></p></span></p>
<p><a href="http://www.archive.org/download/MyMusic_454/06_HER_MOST_BEAUTIFUL_SMILE.MP3">Descargar mp3</a><br />
http://www.archive.org/details/MyMusic_454</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=117&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/07/06/parentesis-her-most-beautiful-smile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.archive.org/download/MyMusic_454/06_HER_MOST_BEAUTIFUL_SMILE.MP3" length="2533376" type="audio/mpeg" />
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>

		<media:content url="http://www.archive.org/download/MyMusic_454/06_HER_MOST_BEAUTIFUL_SMILE.MP3" medium="audio">
			<media:player url="http://vitocosan.wordpress.com/wp-content/plugins/audio-player/player.swf?soundFile=http://www.archive.org/download/MyMusic_454/06_HER_MOST_BEAUTIFUL_SMILE.MP3" />
		</media:content>
	</item>
		<item>
		<title>OraKill &#8211; Matar una conexion activa de Oracle</title>
		<link>http://vitocosan.wordpress.com/2009/06/03/orakill-matar-una-conexion-activa-de-oracle/</link>
		<comments>http://vitocosan.wordpress.com/2009/06/03/orakill-matar-una-conexion-activa-de-oracle/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:22:55 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=110</guid>
		<description><![CDATA[Dejare estas querys y comandos a modo de recordatorio por si algún día los vuelvo a necesitar o en caso de que alguien mas necesite de ellos.
Por DOS (ambiente windows) es posible matar una conexion especifica de oracle, mediante el comando orakill que especifica lo siguiente:
C:\&#62;orakill
 Usage:  orakill sid thread
   where sid [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=110&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Dejare estas querys y comandos a modo de recordatorio por si algún día los vuelvo a necesitar o en caso de que alguien mas necesite de ellos.</p>
<p>Por DOS (ambiente windows) es posible matar una conexion especifica de oracle, mediante el comando <strong>orakill</strong> que especifica lo siguiente:</p>
<pre style="width:500px;overflow:auto;">C:\&gt;orakill
 Usage:  orakill sid thread
   where sid    = the Oracle instance to target
        thread = the thread id of the thread to kill
   The thread id should be retrieved from the spid column of a query such as:
         select spid, osuser, s.program from
        v$process p, v$session s where p.addr=s.paddr</pre>
<p>Con este comando puedes terminar (kill -9) cualquier conexión activa hacia Oracle.<br />
Bien, ahora como obtenemos estos parametros, primero el parametro sid. El nombre sid nos confunde, pero en realidad es el nombre de la instancia del Oracle, si te conectas a la base de datos y ejecutas la siguiente Query obtenemos ese sid:</p>
<pre style="width:500px;overflow:auto;">select sys_context('USERENV','DB_NAME') as Instance from dual

 INSTANCE
 -----------
 MYINSTANCE     

 1 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms] 

 [Executed: 03-06-09 03:16:23 PM CLT ] [Execution: 0/ms]
</pre>
<p>Ahora necesitamos identificar el spid (thread) de las conexiones que deseamos terminar, para ello tenemos la siguiente Query:</p>
<pre style="width:500px;overflow:auto;">select v.sid, a.SPID, v.serial#, v.username, v.OSUSER, v.program, v.MACHINE, v.LOGON_TIME
from user_users u, v$session v, v$process a
where v.user# = u.user_id
and v.paddr = a.addr

 SID     SPID     SERIAL#     USERNAME     OSUSER           PROGRAM     MACHINE              LOGON_TIME
 ------  -------  ----------  -----------  ---------------  ----------  -------------------  ----------------------
 23      3144     26769       DESARROLLO   NETWORK?SERVICE  w3wp.exe    WORKGROUP\VM_MMANN 	 03-06-2009 03:19:57 PM
 10      3116     2685        DESARROLLO   (null)           (null)      note_vvarela         03-06-2009 10:53:32 AM
 13      3720     15823       DESARROLLO   (null)           (null)      note_vvarela         03-06-2009 10:53:37 AM 

 3 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms] 

 [Executed: 03-06-09 03:17:45 PM CLT ] [Execution: 0/ms]
</pre>
<p>La salida de esta Query nos entrega la columna SPID y una serie de otras columnas que nos ayudan a identificar el proceso que deseamos terminar. Ojo que esta salida identifica solo a las conexiones activas.</p>
<p>Ahora solo nos resta ejecutar el comando en DOS para matar la conexión activa:</p>
<pre style="width:500px;overflow:auto;">C:\&gt;orakill MYINSTANCE 3144</pre>
<p>Si se ejecuta correctamente obtenemos algo como esto:</p>
<pre style="width:500px;overflow:auto;">Kill of thread id 3144 in instance MYINSTANCE successfully signalled.</pre>
<p>Saludos</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=110&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/06/03/orakill-matar-una-conexion-activa-de-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>(Parentesis) Reflección &#8211; Inmadurez</title>
		<link>http://vitocosan.wordpress.com/2009/05/26/parentesis-refleccion-inmadurez/</link>
		<comments>http://vitocosan.wordpress.com/2009/05/26/parentesis-refleccion-inmadurez/#comments</comments>
		<pubDate>Tue, 26 May 2009 16:34:21 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[Reflecciones]]></category>
		<category><![CDATA[refleccion]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=108</guid>
		<description><![CDATA[Cuando yo tenía catorce años, mi padre era tan ignorante que no podía soportarle. Pero cuando cumplí los veintiuno, me parecía increíble lo mucho que mi padre había aprendido en siete años.
Mark Twain, 30.11.1835 &#8211; 21.04.1910
Seudónimo de Samuel Langhorne Clemens, escritor y periodista estadounidense
Si no lo entiendes aún, espera un par de años y lo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=108&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote><p><span style="color:#c0c0c0;"><strong>Cuando yo tenía catorce años, mi padre era tan ignorante que no podía soportarle. Pero cuando cumplí los veintiuno, me parecía increíble lo mucho que mi padre había aprendido en siete años.</strong></span></p>
<p><span style="color:#c0c0c0;"><strong><a title="22 Quotes" href="http://citas-comunidad.com/autores/mark%20twain/citas.html">Mark Twain</a>, 30.11.1835 &#8211; 21.04.1910</strong></span></p>
<p><span style="color:#c0c0c0;"><strong>Seudónimo de Samuel Langhorne Clemens, escritor y periodista estadounidense</strong></span></p></blockquote>
<p>Si no lo entiendes aún, espera un par de años y lo entenderas :p</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=108&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/05/26/parentesis-refleccion-inmadurez/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>
	</item>
		<item>
		<title>(Parentesis) The Promise of the World ~ Merry Go Round of Life</title>
		<link>http://vitocosan.wordpress.com/2009/05/14/parentesis-the-promise-of-the-world-merry-go-round-of-life/</link>
		<comments>http://vitocosan.wordpress.com/2009/05/14/parentesis-the-promise-of-the-world-merry-go-round-of-life/#comments</comments>
		<pubDate>Thu, 14 May 2009 15:43:35 +0000</pubDate>
		<dc:creator>vitocosan</dc:creator>
				<category><![CDATA[musica]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://vitocosan.wordpress.com/?p=95</guid>
		<description><![CDATA[


Artista
Yuki Kimura


Título
The Promise of the World


Description
Ending to Howl&#8217;s Moving Castle


Género
Música Clasica


Languaje
Japones




Lyrics Japanese:
Namida no oku ni yuragu hohoemi wa
Toki no hajime kara no sekai no yakusoku
Ima wa hitori demo futari no kinou kara
Kyou wa umare kirameku
Hajimete atta hi no you ni
Omoide no uchi ni anata wa inai
Soyokaze to natte hoho ni furetekuru
Komorebi no gogo no wakare [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=95&subd=vitocosan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><table border="0">
<tbody>
<tr>
<td>Artista</td>
<td>Yuki Kimura</td>
</tr>
<tr>
<td>Título</td>
<td>The Promise of the World</td>
</tr>
<tr>
<td>Description</td>
<td>Ending to Howl&#8217;s Moving Castle</td>
</tr>
<tr>
<td>Género</td>
<td>Música Clasica</td>
</tr>
<tr>
<td>Languaje</td>
<td>Japones</td>
</tr>
</tbody>
</table>
<p><span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://vitocosan.wordpress.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://vitocosan.wordpress.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fwww.archive.org%2Fdownload%2FMyMusic_547%2F26-ending-ThePromiseOfTheWorld-MerryGoRoundOfLife.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /></object></p></span></p>
<p>Lyrics Japanese:</p>
<p><span style="color:#ff9900;">Namida no oku ni yuragu hohoemi wa<br />
Toki no hajime kara no sekai no yakusoku</span></p>
<p><span style="color:#ff9900;">Ima wa hitori demo futari no kinou kara<br />
Kyou wa umare kirameku<br />
Hajimete atta hi no you ni</span></p>
<p><span style="color:#ff9900;">Omoide no uchi ni anata wa inai<br />
Soyokaze to natte hoho ni furetekuru</span></p>
<p><span style="color:#ff9900;">Komorebi no gogo no wakare no ato mo<br />
Kesshite owaranai sekai no yakusoku</span></p>
<p><span style="color:#ff9900;">Ima wa hitori demo ashita wa kagirinai<br />
Anata ga oshietekureta<br />
Yoru ni hisomu yasashisa</span></p>
<p><span style="color:#ff9900;">Omoide no uchi ni anata wa inai<br />
Seseragi no uta ni kono sora no iro ni<br />
Hana no kaori ni itsumademo ikite</span></p>
<hr />
Lyrics English:</p>
<p><span style="color:#33cccc;">the smile that waver inside tears<br />
is the promise of the world since the beginning of time</span></p>
<p><span style="color:#33cccc;">even if now u&#8217;re alone, from the yesterday when u were two<br />
glittering today&#8217;s arisen<br />
as the day u met for the first time</span></p>
<p><span style="color:#33cccc;">u are not inside memories<br />
come as a gentle breeze to graze my cheek</span></p>
<p><span style="color:#33cccc;">even after parting in an afternoon, sunshine leaking through leaves<br />
the promise of the world never dies</span></p>
<p><span style="color:#33cccc;">now u&#8217;re alone, but tomorrow&#8217;s limitless<br />
u taught me<br />
the gentleness hidden in the night</span></p>
<p><span style="color:#33cccc;">u are not inside memories<br />
u live forever into the melody of a brook,<br />
in the colour of this sky, in the fragrance of flowers</span></p>
<p><a href="http://www.archive.org/download/MyMusic_547/26-ending-ThePromiseOfTheWorld-MerryGoRoundOfLife.mp3">Descargar mp3</a><br />
http://www.archive.org/details/MyMusic_547</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vitocosan.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vitocosan.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vitocosan.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vitocosan.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vitocosan.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vitocosan.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vitocosan.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vitocosan.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vitocosan.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vitocosan.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vitocosan.wordpress.com&blog=1160432&post=95&subd=vitocosan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vitocosan.wordpress.com/2009/05/14/parentesis-the-promise-of-the-world-merry-go-round-of-life/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://www.archive.org/download/MyMusic_547/26-ending-ThePromiseOfTheWorld-MerryGoRoundOfLife.mp3" length="9641041" type="audio/mpeg" />
	
		<media:content url="http://0.gravatar.com/avatar/c460c2594ff50f485bf80fd902f3f16a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">VitocoSan</media:title>
		</media:content>

		<media:content url="http://www.archive.org/download/MyMusic_547/26-ending-ThePromiseOfTheWorld-MerryGoRoundOfLife.mp3" medium="audio">
			<media:player url="http://vitocosan.wordpress.com/wp-content/plugins/audio-player/player.swf?soundFile=http://www.archive.org/download/MyMusic_547/26-ending-ThePromiseOfTheWorld-MerryGoRoundOfLife.mp3" />
		</media:content>
	</item>
	</channel>
</rss>