<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Random Thoughts...</title>
	<atom:link href="http://alexvy86.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexvy86.wordpress.com</link>
	<description>Divagaciones esporádicas sobre cualquier tema</description>
	<lastBuildDate>Mon, 17 Jan 2011 07:18:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='alexvy86.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Random Thoughts...</title>
		<link>http://alexvy86.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://alexvy86.wordpress.com/osd.xml" title="Random Thoughts..." />
	<atom:link rel='hub' href='http://alexvy86.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Adventures of a developer</title>
		<link>http://alexvy86.wordpress.com/2010/03/20/adventures-of-a-developer/</link>
		<comments>http://alexvy86.wordpress.com/2010/03/20/adventures-of-a-developer/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 21:18:34 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=546</guid>
		<description><![CDATA[It&#8217;s amazing how much one can learn from very short texts. I read this post that I had put in my &#8220;to read [when you have time to really pay attention and think about what you're reading]&#8221; list a long time ago, and was surprised by the amount of content and learning that can be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=546&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s amazing how much one can learn from very short texts.</p>
<p>I read <a href="http://ryanangilly.com/post/355271652/how-google-tracks-clicks-for-backpropagation">this post </a>that I had put in my &#8220;to read [when you have time to really pay attention and think about what you're reading]&#8221; list a long time ago, and was surprised by the amount of content and learning that can be obtained from it. This is a sample of what I&#8217;m talking about:</p>
<ul>
<li><span style="text-decoration:underline;">Backpropagation algorithms</span>: term taken from Artificial Intelligence, used in this context to trace who clicked on ads, to monitor their effectiveness.</li>
<li><span style="text-decoration:underline;">Firebug</span>: Firefox extension that allows the user to see and edit (seeing the results in realtime) the HTML, CSS, javascript, etc, of a webpage. You can also monitor requests made by the page, including their response times and responses. <strong>Extremely </strong>useful for web developers.</li>
<li><span style="text-decoration:underline;">XMLHttpRequest (also referred to in the post as XHR)</span>: type of request used in AJAX to allow for dynamic retrieval of content (without the need to refresh the page).</li>
<li><span style="text-decoration:underline;">204 http responses</span>: &#8220;No Content&#8221; responses for web requests.</li>
<li><a href="http://en.wikipedia.org/wiki/Http_request#Request_message"><span style="text-decoration:underline;">Accepts header</span></a>: part of an http request that specifies what does the request expect as a response (if I request an image, I wouldn&#8217;t expect to receive text content in response).</li>
<li><a href="http://en.wikipedia.org/wiki/Web_bug"><span style="text-decoration:underline;">Pixel tagging</span></a>: one of many ways of monitoring webpage views and user behavior in websites.</li>
<li><span style="text-decoration:underline;">&#8220;Or&#8221;-ing functions in javascript</span>: I&#8217;m not even sure of how this works, but it seems to be combining 2 functions into one that will be later used to apply both at the same time (<em>a=encodeURIComponent||escape</em>).</li>
<li><a href="http://en.wikipedia.org/wiki/Regular_expressions">Regular expressions</a>: (/#.*/, matching &#8220;#[whatever]&#8221; and /\+/g, matching &#8220;+[whatever is in parameter g]&#8220;, if I&#8217;m not mistaken).</li>
</ul>
<p>Developers who analyze code written by others can also relate to the post because of the way in which Ryan (the author) writes how he arrived at his discoveries:</p>
<blockquote><p>So I cracked open Firebug, did a search and watched the Console tab  while I clicked a link.  I was expecting to see a nice little  XMLHttpRequest go across the screen… and didn’t.</p></blockquote>
<p>The always useful trial and error.</p>
<blockquote><p>A call to clk() in the console tab just returned true, so off to the  source for clk() I went. Cmd+U… Cmd+F… ‘clk’…:</p></blockquote>
<p>More trial and error. &#8220;Exploring&#8221; a function with quick &amp; easy calls to it. Look for the actual code to understand what it&#8217;s doing. A bit of developer background to know that he 1) conjured up the source code of the webpage (Cmd + U), 2) wanted to find something in it (Cmd + F) and 3) typed it (&#8216;clk&#8217;). Also, that he&#8217;s a Mac user, as evidenced by <em>Cmd</em> and not <em>Ctrl</em>.</p>
<p>Even without understanding the fine details of what Google&#8217;s doing there, I understand the overall idea, and I&#8217;m a bit impressed of how something that looks so &#8220;hackish&#8221; is at the heart of their ad-monitoring system (I think?).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/546/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=546&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/03/20/adventures-of-a-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>David S. Richeson &#8211; Euler&#8217;s Gem</title>
		<link>http://alexvy86.wordpress.com/2010/03/14/david-s-richeson-eulers-gem/</link>
		<comments>http://alexvy86.wordpress.com/2010/03/14/david-s-richeson-eulers-gem/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 18:51:25 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Books I&#039;ve read]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=519</guid>
		<description><![CDATA[Read from-to: Feb 19, 2010  &#8211; Mar 14, 2010 (24 days). Liked: &#8230;it&#8217;s math, what&#8217;s not to like? Didn&#8217;t like: al final se pone un poco denso y pierde un poco las ayudas visuales (que es entendible, hablando de n-dimensiones no sirven de mucho, pero hay algunas que no son tan triviales de entender con [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=519&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Read from-to</strong>: Feb 19, 2010  &#8211; Mar 14, 2010 (24 days).</p>
<p><strong>Liked:</strong> &#8230;it&#8217;s math, what&#8217;s not to like?<strong><br />
</strong></p>
<p><strong>Didn&#8217;t like: </strong>al final se pone un poco denso y pierde un poco las ayudas visuales (que es entendible, hablando de <em>n</em>-dimensiones no sirven de mucho, pero hay algunas que no son tan triviales de entender con la poca explicación que da).</p>
<p><strong>Overall</strong>: nice book =D.</p>
<p>Get it <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.amazon.com/Eulers-Gem-Polyhedron-Formula-Topology/dp/0691126771/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1268592861&amp;sr=8-1">here</a>.</p>
<p><strong>Notes &amp; Quotes:</strong></p>
<blockquote><p>&#8220;Mathematical folklore says that he [<a href="http://en.wikipedia.org/wiki/Euler">Euler</a>] could write mathematics papers while bouncing a baby on his knee, and that he could compose a treatise between the first and second calls to dinner&#8221; (p.16)</p></blockquote>
<blockquote><p>&#8220;Later he [Pythagoras] settled in the Greek city of Croton in what is now southern Italy&#8221; (p.37).</p></blockquote>
<p>Italia? Interesting&#8230;</p>
<blockquote><p>&#8220;I hope that posterity will judge me kindly, not only as to the things which I have explained, but also to those which I have intentionally omitted, so as to leave to others the pleasure of discovery&#8221; &#8211; <a href="http://en.wikipedia.org/wiki/Descartes">Rene Descartes </a>(quoted in p.81).</p></blockquote>
<p>Riiiiiiiight jaja.</p>
<blockquote><p>There is a oft-repeated quip that &#8220;objects in mathematics are named after the first person after Euler to discover them&#8221; (p.86)</p></blockquote>
<p>Jaja THAT&#8217;s fame.</p>
<p>La prueba de <a href="http://en.wikipedia.org/wiki/Adrien_Marie_Legendre">Legendre</a> [JAJAJA la caricatura en wikipedia =P] de la <a href="http://en.wikipedia.org/wiki/Euler_characteristic">fórmula de Euler</a>, en el capítulo 10 (pp.87-99)&#8230; wow. Beautiful. Too long to transcribe though.</p>
<blockquote><p><a href="http://en.wikipedia.org/wiki/G.H.Hardy">G. H. Hardy</a> wrote &#8220;<em>Reductio ad absurdum</em>, which Euclid loved so much, is one of a mathematician&#8217;s finest weapons. It is a far finer gambit than any chess gambit; a chess player may offer the sacrifice of a pawn or even a piece, but a mathematician offers the game&#8221; (p.123).</p></blockquote>
<p>&#8220;Ok, you win, it is false. But HA! That means it&#8217;s true! IN YOUR FACE!&#8221;</p>
<blockquote><p>Any knot can be obtained as the boundary of an orientable surface with one boundary component (p.185).</p></blockquote>
<blockquote><p>Mathematicians work in a store that makes and sells tools. Occasionally they take special orders from their scientific customers, but most of the day they toil away making elegant tools, the uses for which have not yet been invented. Scientists visit this tool shop and browse the shelves in hopes that one of the tools fits their needs (p.201).</p></blockquote>
<p>Nice description.</p>
<blockquote><p><a href="http://en.wikipedia.org/wiki/Henri_Poincar%C3%A9">Poincaré </a>had a restless curiosity that kept him moving from topic to topic. He would attack a new area of mathematics, make an indelible mark, then move on the the next. A contemporary called him &#8220;a conqueror, not a colonist&#8221; (p.212).</p></blockquote>
<p>Otra buena descripción.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/519/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/519/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/519/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/519/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/519/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/519/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/519/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/519/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/519/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/519/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/519/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/519/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/519/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/519/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=519&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/03/14/david-s-richeson-eulers-gem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Back to learning music</title>
		<link>http://alexvy86.wordpress.com/2010/03/14/back-to-learning-music/</link>
		<comments>http://alexvy86.wordpress.com/2010/03/14/back-to-learning-music/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 08:01:22 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=533</guid>
		<description><![CDATA[Hace un buen rato que no aprendía a tocar alguna canción nueva. Cuando estoy cerca de un instrumento —a veces es mi guitarra, a veces el piano en casa de mi tía— y traigo alguna melodía en la cabeza, me da por intentar &#8220;transcribirla&#8221; y tocarla, pero por lo general no pasan de ser sesiones [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=533&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hace un buen rato que no aprendía a tocar alguna canción nueva. Cuando estoy cerca de un instrumento —a veces es mi guitarra, a veces el piano en casa de mi tía— y traigo alguna melodía en la cabeza, me da por intentar &#8220;transcribirla&#8221; y tocarla, pero por lo general no pasan de ser sesiones de 5 min o menos, que terminan sin importar si tuve o no éxito en mi intento.</p>
<p>A diferencia de eso, hoy busqué el <a href="http://www.guitaretab.com/p/porcupine-tree/25944.html">tab</a> de Trains (<a href="http://en.wikipedia.org/wiki/Porcupine_tree">Porcupine Tree</a>), que tenía finta de no ser muy complicada, y efectivamente el 90% de la canción salió sin problemas tocando del tab a primera vista. El solo y un bridge fueron lo único que tuve que ponerme a sacar de oído, pero después de un rato salieron (wu! =D) and now I&#8217;m happy to say there&#8217;s a new song in my repertoire! Una que disfruto mucho escuchar, y ahora también tocar. Great way to end the day.</p>
<p><em>When the evening reaches here, you&#8217;re tying me up&#8230; I&#8217;m dying of love&#8230; it&#8217;s ok&#8230;</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/533/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=533&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/03/14/back-to-learning-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Learning about my limitations</title>
		<link>http://alexvy86.wordpress.com/2010/03/09/learning-about-my-limitations/</link>
		<comments>http://alexvy86.wordpress.com/2010/03/09/learning-about-my-limitations/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 06:31:51 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=528</guid>
		<description><![CDATA[Hoy leí el post Hearing the Uncertainty Principle, que aparte de estar interesante me dio la excusa&#8230; ejem&#8230; explicación, perfecta, de por qué me es mucho más difícil sacar de oído melodías rápidas que melodías lentas. Y dejando al ego de lado, por qué es más difícil sacar de oído melodías rápidas que melodías lentas. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=528&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hoy leí el post <a href="http://scienceblogs.com/builtonfacts/2010/03/hearing_the_uncertainty_princi.php">Hearing the Uncertainty Principle</a>, que aparte de estar interesante me dio la excusa&#8230; ejem&#8230; <em>explicación</em>, perfecta, de por qué me es mucho más difícil sacar de oído melodías rápidas que melodías lentas. Y dejando al ego de lado, por qué es más difícil sacar de oído melodías rápidas que melodías lentas. It seems obvious enough, pero tener un por qué siempre es bueno. Entre más larga sea una onda en el tiempo, más angosta su representación en frecuencia, y entonces se parece más a una nota pura. Notas muy cortas en el tiempo implican un espectro de frecuencias mucho más amplio, que hace bastante más complicado determinar cuál es la frecuencia (nota) principal del sonido.</p>
<p>Ta-ran!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/528/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=528&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/03/09/learning-about-my-limitations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Analogy on software engineering &amp; PEBKAC</title>
		<link>http://alexvy86.wordpress.com/2010/03/07/analogy-on-software-engineering-pebkac/</link>
		<comments>http://alexvy86.wordpress.com/2010/03/07/analogy-on-software-engineering-pebkac/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 10:35:45 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=523</guid>
		<description><![CDATA[Leyendo los comentarios de un post de reddit donde Peter Norvig (director de investigación en Google) contesta preguntas hechas por la comunidad me encontré este (contexto: Norvig habla de la diferencia entre Civil Engineering y Software Engineering, y construir puentes VS construir programas): Imagine that one day, one of your users (a driver) decides to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=523&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Leyendo los comentarios de un post de reddit donde <a href="http://norvig.com/">Peter Norvig </a>(director de investigación en Google) contesta preguntas hechas por la comunidad me encontré este (contexto: Norvig habla de la diferencia entre Civil Engineering y Software Engineering, y construir puentes VS construir programas):</p>
<blockquote><p>Imagine that one day, one of your users (a driver) decides to drive off  the bridge. In civil engineering, it isn&#8217;t your fault, it&#8217;s his. In  Software, it is your fault. You would have to have thought about a way  of preventing that. Thats akin to saying that when a driver is about to  drive off a bridge, a huge rubber wall should instantly appear bouncing  him into the bridge again. This wall should have the message &#8220;The  operation you tried to do is not allowed&#8221;.</p></blockquote>
<p>En otras palabras, el problema del desarrollo de software es que en caso de PEBKAC (Problem Exists Between Keyboard And Chair), la culpa recae sobre el programador en vez de sobre el Between-Keyboard-And-Chair. Maldito mundo injusto =P.</p>
<p>La &#8220;entrevista&#8221; completa de Norvig está <a href="http://www.youtube.com/watch?v=hE7k0_9k0VA">aquí</a>. El comentario original <a href="http://www.reddit.com/r/blog/comments/b8aln/peter_norvig_answers_your_questions_ask_me/c0lh35r">acá</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/523/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=523&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/03/07/analogy-on-software-engineering-pebkac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Definición de &#8220;fama&#8221;</title>
		<link>http://alexvy86.wordpress.com/2010/03/04/definicion-de-fama/</link>
		<comments>http://alexvy86.wordpress.com/2010/03/04/definicion-de-fama/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 04:34:55 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=521</guid>
		<description><![CDATA[There is a oft-repeated quip that &#8220;objects in mathematics are named after the first person after Euler to discover them&#8221;. Need I say more?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=521&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>There is a oft-repeated quip that &#8220;objects in mathematics are named after the first person after Euler to discover them&#8221;.</p></blockquote>
<p>Need I say more?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/521/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=521&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/03/04/definicion-de-fama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Neil Gaiman &#8211; The Graveyard Book</title>
		<link>http://alexvy86.wordpress.com/2010/02/21/neil-gaiman-the-graveyard-book/</link>
		<comments>http://alexvy86.wordpress.com/2010/02/21/neil-gaiman-the-graveyard-book/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 07:47:12 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Books I&#039;ve read]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=515</guid>
		<description><![CDATA[First post in the &#8220;Books I&#8217;ve read&#8221; series/category. Read from-to: Feb 4, 2010 (aprox) &#8211; Feb 18, 2010 (14 days). Liked: the Macabray related verses (Time to work and time to play, time to dance the macabray; step and turn and walk and stay, now we dance the macabray) Didn&#8217;t like: it&#8217;s much more like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=515&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First post in the &#8220;Books I&#8217;ve read&#8221; series/category.</p>
<p><strong>Read from-to</strong>: Feb 4, 2010 (aprox) &#8211; Feb 18, 2010 (14 days).</p>
<p><strong>Liked:</strong> the Macabray related verses (<em>Time to work and time to play, time to dance the macabray</em>; <em>step and turn and walk and stay, now we dance the macabray</em>)</p>
<p><strong>Didn&#8217;t like: </strong>it&#8217;s much more like a child&#8217;s story than I expected (especially after reading <a href="http://en.wikipedia.org/wiki/The_Sandman_%28Vertigo%29">Sandman</a>&#8230; awesome comic).</p>
<p><strong>Overall</strong>: not too long, finished half the book in one chunk&#8230; mildly entertaining. Didn&#8217;t meet my expectations.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/515/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=515&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/02/21/neil-gaiman-the-graveyard-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Video. Just sharing.</title>
		<link>http://alexvy86.wordpress.com/2010/02/20/video-just-sharing/</link>
		<comments>http://alexvy86.wordpress.com/2010/02/20/video-just-sharing/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 08:22:00 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/2010/02/20/video-just-sharing/</guid>
		<description><![CDATA[Entre mis feeds encontré este video, que está largo pero entretenido e interesante, sobre todo la parte que empieza en el 20:57 aprox.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=513&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Entre mis feeds encontré <a href="http://g4tv.com/thefeed/blog/post/702668/DICE-2010-Video-Design-Outside-The-Box.html">este video</a>, que está largo pero entretenido e interesante, sobre todo la parte que empieza en el 20:57 aprox.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/513/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/513/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/513/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/513/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/513/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/513/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/513/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/513/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/513/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/513/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/513/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/513/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/513/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/513/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=513&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/02/20/video-just-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Kiss a lover, dance a measure&#8230;</title>
		<link>http://alexvy86.wordpress.com/2010/02/18/kiss-a-lover-dance-a-measure/</link>
		<comments>http://alexvy86.wordpress.com/2010/02/18/kiss-a-lover-dance-a-measure/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 05:51:38 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=509</guid>
		<description><![CDATA[find your name, and buried treasure&#8230; - from Neil Gaiman&#8217;s The Graveyard Book<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=509&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>find your name,<br />
and buried treasure&#8230;</p></blockquote>
<p>- from Neil Gaiman&#8217;s The Graveyard Book</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/509/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=509&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/02/18/kiss-a-lover-dance-a-measure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>
	</item>
		<item>
		<title>Fail</title>
		<link>http://alexvy86.wordpress.com/2010/02/16/fail/</link>
		<comments>http://alexvy86.wordpress.com/2010/02/16/fail/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 20:28:38 +0000</pubDate>
		<dc:creator>alexvy86</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alexvy86.wordpress.com/?p=505</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=505&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://alexvy86.files.wordpress.com/2010/02/capture.png"><img class="aligncenter size-full wp-image-506" title="Capture" src="http://alexvy86.files.wordpress.com/2010/02/capture.png?w=500&#038;h=145" alt="" width="500" height="145" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexvy86.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexvy86.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexvy86.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexvy86.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexvy86.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexvy86.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexvy86.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexvy86.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexvy86.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexvy86.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexvy86.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexvy86.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexvy86.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexvy86.wordpress.com/505/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexvy86.wordpress.com&amp;blog=2449732&amp;post=505&amp;subd=alexvy86&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexvy86.wordpress.com/2010/02/16/fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aabb72335adb2ae9c2d7bf8e3c14bfb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">alexvy86</media:title>
		</media:content>

		<media:content url="http://alexvy86.files.wordpress.com/2010/02/capture.png" medium="image">
			<media:title type="html">Capture</media:title>
		</media:content>
	</item>
	</channel>
</rss>
