<?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>El Bruno</title>
	<atom:link href="http://elbruno.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://elbruno.com</link>
	<description>Mis experiencias en ...</description>
	<lastBuildDate>Thu, 17 May 2012 17:36:41 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='elbruno.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>El Bruno</title>
		<link>http://elbruno.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://elbruno.com/osd.xml" title="El Bruno" />
	<atom:link rel='hub' href='http://elbruno.com/?pushpress=hub'/>
		<item>
		<title>[#VS11] HowTo: Include and des serialize a XML file in a #METRO application</title>
		<link>http://elbruno.com/2012/05/17/vs11-howto-include-and-des-serialize-a-xml-file-in-a-metro-application/</link>
		<comments>http://elbruno.com/2012/05/17/vs11-howto-include-and-des-serialize-a-xml-file-in-a-metro-application/#comments</comments>
		<pubDate>Thu, 17 May 2012 17:36:40 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Metro]]></category>
		<category><![CDATA[Visual Studio 11]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2885</guid>
		<description><![CDATA[Buenas, today touches give an example of fairly simple code, but that can bring you a couple of headaches if you don&#8217;t know where to start. The idea is simple: Include an XML file in a METRO application and des serialize it to work in an application. This seems so simple, is complicated somewhat by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2885&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>today touches give an example of fairly simple code, but that can bring you a couple of headaches if you don&#8217;t know where to start. The idea is simple:</p>
<blockquote><p>Include an XML file in a METRO application and des serialize it to work in an application.</p>
</blockquote>
<p>This seems so simple, is complicated somewhat by METRO as the so so popular as System.IO namespaces and others with which we are accustomed to work because they are not available.</p>
<p>If add you to that, that the majority of the shares are in asynchronous mode, since the programming changes fairly. But of course, <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fmsdn.microsoft.com%2Fes-es%2Fvstudio%2Faa718325">Visual Studio 11</a> comes to our rescue with new sentences ASYNC and AWAIT that really help us to program in asynchronous mode.</p>
<p>We split in the sample project we have a class sample data with 2 properties defined as the following example:</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">namespace</span> Application1</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>     <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">class</span> SampleData</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>     {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">string</span> Id { get; set; }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">string</span> Name { get; set; }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>We then include an XML file within a folder XML with the following information within the same file name:</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">&lt;?</span><span style="color:#800000;">xml</span> <span style="color:#ff0000;">version</span><span style="color:#0000ff;">=&quot;1.0&quot;</span>?<span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">ArrayOfSampleData</span> </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>     <span style="color:#ff0000;">xmlns:xsi</span><span style="color:#0000ff;">=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>     <span style="color:#ff0000;">xmlns:xsd</span><span style="color:#0000ff;">=&quot;http://www.w3.org/2001/XMLSchema&quot;</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>   <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">SampleData</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>     <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">Id</span><span style="color:#0000ff;">&gt;</span>El<span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">Id</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">Name</span><span style="color:#0000ff;">&gt;</span>Bruno<span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">Name</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span>   <span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">SampleData</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum9" style="color:#606060;">   9:</span> <span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">ArrayOfSampleData</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></div>
</div>
<p>So at a glance, we can see that this XML is a serialization of an Array of elements of type <strong><em>SampleData</em> </strong>.</p>
<p>Then is the interesting part, which is read from this file. The following code shows an example where the<strong><em>LoadSampleData()</em> </strong>function returns a collection of elements of type SampleData reading a file called &quot;<strong><em>data.xml</em></strong>&quot; of an application directory called &quot;<strong><em>XML</em></strong>&quot;.</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">private</span> async <span style="color:#0000ff;">void</span> BtnGetClick(<span style="color:#0000ff;">object</span> sender, RoutedEventArgs e)</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>     var collection = LoadSampleData();</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>     await collection;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>     var item = collection.Result[0];</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>     txtId.Text = item.Id;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     txtName.Text = item.Name;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span> }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum9" style="color:#606060;">   9:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum10" style="color:#606060;">  10:</span> <span style="color:#0000ff;">public</span> async Task&lt;ObservableCollection&lt;SampleData&gt;&gt; LoadSampleData()</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum11" style="color:#606060;">  11:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum12" style="color:#606060;">  12:</span>     var storageFolder = await Package.Current.InstalledLocation.GetFolderAsync(<span style="color:#006080;">&quot;XML&quot;</span>);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum13" style="color:#606060;">  13:</span>     var sampleDataItems = await LoadFromXmlFile&lt;ObservableCollection&lt;SampleData&gt;&gt;(<span style="color:#006080;">&quot;data.xml&quot;</span>, storageFolder);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum14" style="color:#606060;">  14:</span>     <span style="color:#0000ff;">return</span> sampleDataItems;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum15" style="color:#606060;">  15:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>A couple of details to keep in mind is that the function <strong><em>LoadSampleData()</em> </strong>is defined with a prefix <strong><em>async</em></strong>, denotes that it can run in asynchronous mode. This is possible because the reading of the working (line 12) directory is done in asynchronous mode.</p>
<p>At this point sentences where <strong><em>await</em></strong>is used for the execution of the asynchronous function deserve a special detail. The simplest define <strong><em>await</em> </strong>is think that with this statement we can call asynchronous functions and when completion of them, <strong><em>await</em> </strong>will return to the specified workflow.</p>
<p>Now for the interesting part which is desserialización in the XML file. For this use the function LoadFromXmlFile to internally, once he has read the contents of the file, des serializing it in memory (lines 3 to 6). The following code shows an example of this operation:</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">static</span> async Task&lt;T&gt; LoadFromXmlFile&lt;T&gt;(<span style="color:#0000ff;">string</span> fileName, StorageFolder folder = <span style="color:#0000ff;">null</span>)</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>     var xmlString = await ReadFromFile(fileName, folder);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>     var ms = <span style="color:#0000ff;">new</span> MemoryStream(UTF8Encoding.UTF8.GetBytes(xmlString));</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>     var ser = <span style="color:#0000ff;">new</span> XmlSerializer(<span style="color:#0000ff;">typeof</span>(T));</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>     T result = (T)ser.Deserialize(ms);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     <span style="color:#0000ff;">return</span> result;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span> }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum9" style="color:#606060;">   9:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum10" style="color:#606060;">  10:</span> <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">static</span> async Task&lt;<span style="color:#0000ff;">string</span>&gt; ReadFromFile(<span style="color:#0000ff;">string</span> fileName, StorageFolder folder = <span style="color:#0000ff;">null</span>)</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum11" style="color:#606060;">  11:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum12" style="color:#606060;">  12:</span>     folder = folder ?? ApplicationData.Current.LocalFolder;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum13" style="color:#606060;">  13:</span>     var file = await folder.GetFileAsync(fileName);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum14" style="color:#606060;">  14:</span>     <span style="color:#0000ff;">using</span> (var accessStream = await file.OpenAsync(FileAccessMode.Read))</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum15" style="color:#606060;">  15:</span>     {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum16" style="color:#606060;">  16:</span>         <span style="color:#0000ff;">using</span> (var inStream = accessStream.GetInputStreamAt(0))</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum17" style="color:#606060;">  17:</span>         {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum18" style="color:#606060;">  18:</span>             <span style="color:#0000ff;">using</span> (var reader = <span style="color:#0000ff;">new</span> DataReader(inStream))</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum19" style="color:#606060;">  19:</span>             {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum20" style="color:#606060;">  20:</span>                 await reader.LoadAsync((<span style="color:#0000ff;">uint</span>)accessStream.Size);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum21" style="color:#606060;">  21:</span>                 var data = reader.ReadString((<span style="color:#0000ff;">uint</span>)accessStream.Size);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum22" style="color:#606060;">  22:</span>                 reader.DetachStream();</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum23" style="color:#606060;">  23:</span>                 <span style="color:#0000ff;">return</span> data;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum24" style="color:#606060;">  24:</span>             }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum25" style="color:#606060;">  25:</span>         }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum26" style="color:#606060;">  26:</span>     }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum27" style="color:#606060;">  27:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>I’m going to try to separate the code of the piece of POC that I am building, and after a bit of refactoring go up a more complete example.</p>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/howto/'>HowTo</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/metro/'>Metro</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/'>Windows 8</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2885/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2885&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/17/vs11-howto-include-and-des-serialize-a-xml-file-in-a-metro-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#VS11] HowTo: Incluir y des serializar un archivo XML en una aplicaci&#243;n #METRO</title>
		<link>http://elbruno.com/2012/05/17/vs11-howto-incluir-y-des-serializar-un-archivo-xml-en-una-aplicacin-metro/</link>
		<comments>http://elbruno.com/2012/05/17/vs11-howto-incluir-y-des-serializar-un-archivo-xml-en-una-aplicacin-metro/#comments</comments>
		<pubDate>Thu, 17 May 2012 17:30:58 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Metro]]></category>
		<category><![CDATA[Visual Studio 11]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2883</guid>
		<description><![CDATA[Buenas, hoy toca poner un ejemplo de código bastante simple, pero que puede traerte un par de dolores de cabeza si no sabes por donde empezar. La idea es simple: Incluir un archivo XML en una aplicación METRO y des serializar el mismo para trabajar en una aplicación. Esto que parece tan simple, se complica [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2883&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>hoy toca poner un ejemplo de código bastante simple, pero que puede traerte un par de dolores de cabeza si no sabes por donde empezar. La idea es simple: </p>
<blockquote><p>Incluir un archivo XML en una aplicación METRO y des serializar el mismo para trabajar en una aplicación.</p>
</blockquote>
<p>Esto que parece tan simple, se complica un poco en METRO ya que los tan namespaces tan populares como System.IO y otros con los que estamos acostumbrados a trabajar ya no están disponibles. </p>
<p>Si a eso le sumamos, que la mayoría de las acciones son en modo asíncrono, pues la programación cambia bastante. Pero claro, <a href="http://msdn.microsoft.com/es-es/vstudio/aa718325" target="_blank">Visual Studio 11</a> llega a nuestro rescate con las nuevas sentencias ASYNC y AWAIT que realmente nos ayudan a programar en modo asíncrono.</p>
<p>Vamos por partes, en el proyecto de ejemplo tenemos una clase sample data con 2 propiedades definidas como el siguiente ejemplo:</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">namespace</span> Application1</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>     <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">class</span> SampleData</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>     {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">string</span> Id { get; set; }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">string</span> Name { get; set; }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>Luego incluimos un archivo XML dentro de una carpeta XML, con la siguiente información dentro del mismo</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">&lt;?</span><span style="color:#800000;">xml</span> <span style="color:#ff0000;">version</span><span style="color:#0000ff;">=&quot;1.0&quot;</span>?<span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">ArrayOfSampleData</span> </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>    <span style="color:#ff0000;">xmlns:xsi</span><span style="color:#0000ff;">=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>    <span style="color:#ff0000;">xmlns:xsd</span><span style="color:#0000ff;">=&quot;http://www.w3.org/2001/XMLSchema&quot;</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>   <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">SampleData</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>     <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">Id</span><span style="color:#0000ff;">&gt;</span>El<span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">Id</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">Name</span><span style="color:#0000ff;">&gt;</span>Bruno<span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">Name</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span>   <span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">SampleData</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum9" style="color:#606060;">   9:</span> <span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">ArrayOfSampleData</span><span style="color:#0000ff;">&gt;</span></pre>
<p><!--CRLF--></div>
</div>
<p>Así a simple vista, podemos ver que este XML es una serialización de un Array de elementos de tipo <strong><em>SampleData</em></strong>.</p>
<p>Luego queda la parte interesante, que es leer de este archivo. El siguiente código muestra un ejemplo donde la función <strong><em>LoadSampleData()</em></strong> retorna una colección de elementos del tipo SampleData leyendo un archivo llamado “<strong><em>data.xml</em></strong>” de un directorio de la aplicación llamado “<strong><em>XML</em></strong>“.</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">private</span> async <span style="color:#0000ff;">void</span> BtnGetClick(<span style="color:#0000ff;">object</span> sender, RoutedEventArgs e)</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>     var collection = LoadSampleData();</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>     await collection;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>     var item = collection.Result[0];</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>     txtId.Text = item.Id;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     txtName.Text = item.Name;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span> }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum9" style="color:#606060;">   9:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum10" style="color:#606060;">  10:</span> <span style="color:#0000ff;">public</span> async Task&lt;ObservableCollection&lt;SampleData&gt;&gt; LoadSampleData()</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum11" style="color:#606060;">  11:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum12" style="color:#606060;">  12:</span>     var storageFolder = await Package.Current.InstalledLocation.GetFolderAsync(<span style="color:#006080;">&quot;XML&quot;</span>);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum13" style="color:#606060;">  13:</span>     var sampleDataItems = await LoadFromXmlFile&lt;ObservableCollection&lt;SampleData&gt;&gt;(<span style="color:#006080;">&quot;data.xml&quot;</span>, storageFolder);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum14" style="color:#606060;">  14:</span>     <span style="color:#0000ff;">return</span> sampleDataItems;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum15" style="color:#606060;">  15:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>Un par de detalles a tener en cuenta es que la función <strong><em>LoadSampleData()</em></strong> está definida con un prefijo <strong><em>async</em></strong>, que denota que la misma se puede ejecutar de modo asíncrono. Esto es posible ya que la lectura del directorio de trabajo (línea 12) se realiza en modo asíncrono.</p>
<p>En este punto merecen un especial detalle las sentencias donde para la ejecución de la función asíncrona se utiliza <strong><em>await</em></strong>. La forma más simple de definir a <strong><em>await</em></strong> es pensar en que con esta sentencia podremos llamar a funciones asíncronas y cuando se terminen las mismas, <strong><em>await</em></strong> retornará al flujo de trabajo indicado.</p>
<p>Ahora vamos a la parte interesante que es la desserialización del archivo XML. Para esto utilizamos la función LoadFromXmlFile que internamente, una vez que ha leido el contenido del archivo, des serializa el mismo en memoria (líneas 3 a 6). El siguiente código muestra un ejemplo de este funcionamiento:</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet" style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum1" style="color:#606060;">   1:</span> <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">static</span> async Task&lt;T&gt; LoadFromXmlFile&lt;T&gt;(<span style="color:#0000ff;">string</span> fileName, StorageFolder folder = <span style="color:#0000ff;">null</span>)</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum2" style="color:#606060;">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum3" style="color:#606060;">   3:</span>     var xmlString = await ReadFromFile(fileName, folder);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum4" style="color:#606060;">   4:</span>     var ms = <span style="color:#0000ff;">new</span> MemoryStream(UTF8Encoding.UTF8.GetBytes(xmlString));</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum5" style="color:#606060;">   5:</span>     var ser = <span style="color:#0000ff;">new</span> XmlSerializer(<span style="color:#0000ff;">typeof</span>(T));</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum6" style="color:#606060;">   6:</span>     T result = (T)ser.Deserialize(ms);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum7" style="color:#606060;">   7:</span>     <span style="color:#0000ff;">return</span> result;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum8" style="color:#606060;">   8:</span> }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum9" style="color:#606060;">   9:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum10" style="color:#606060;">  10:</span> <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">static</span> async Task&lt;<span style="color:#0000ff;">string</span>&gt; ReadFromFile(<span style="color:#0000ff;">string</span> fileName, StorageFolder folder = <span style="color:#0000ff;">null</span>)</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum11" style="color:#606060;">  11:</span> {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum12" style="color:#606060;">  12:</span>     folder = folder ?? ApplicationData.Current.LocalFolder;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum13" style="color:#606060;">  13:</span>     var file = await folder.GetFileAsync(fileName);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum14" style="color:#606060;">  14:</span>     <span style="color:#0000ff;">using</span> (var accessStream = await file.OpenAsync(FileAccessMode.Read))</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum15" style="color:#606060;">  15:</span>     {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum16" style="color:#606060;">  16:</span>         <span style="color:#0000ff;">using</span> (var inStream = accessStream.GetInputStreamAt(0))</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum17" style="color:#606060;">  17:</span>         {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum18" style="color:#606060;">  18:</span>             <span style="color:#0000ff;">using</span> (var reader = <span style="color:#0000ff;">new</span> DataReader(inStream))</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum19" style="color:#606060;">  19:</span>             {</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum20" style="color:#606060;">  20:</span>                 await reader.LoadAsync((<span style="color:#0000ff;">uint</span>)accessStream.Size);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum21" style="color:#606060;">  21:</span>                 var data = reader.ReadString((<span style="color:#0000ff;">uint</span>)accessStream.Size);</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum22" style="color:#606060;">  22:</span>                 reader.DetachStream();</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum23" style="color:#606060;">  23:</span>                 <span style="color:#0000ff;">return</span> data;</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum24" style="color:#606060;">  24:</span>             }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum25" style="color:#606060;">  25:</span>         }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:#f4f4f4;border-style:none;padding:0;"><span id="lnum26" style="color:#606060;">  26:</span>     }</pre>
<p><!--CRLF--></p>
<pre style="font-size:8pt;font-family:&#039;width:100%;color:black;overflow:visible;direction:ltr;text-align:left;margin:0;line-height:12pt;background-color:white;border-style:none;padding:0;"><span id="lnum27" style="color:#606060;">  27:</span> }</pre>
<p><!--CRLF--></div>
</div>
<div id="codeSnippetWrapper">&#160;</div>
<p>Voy a intentar separar el código del pedazo de POC que estoy construyendo y después de un poco de refactoring subiré un ejemplo más completo.</p>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/howto/'>HowTo</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/metro/'>Metro</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/'>Windows 8</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2883/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2883&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/17/vs11-howto-incluir-y-des-serializar-un-archivo-xml-en-una-aplicacin-metro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[# WP] HowTo: Install Microsoft.Xna.Framework reference for Windows Phone development in # Windows8</title>
		<link>http://elbruno.com/2012/05/14/wp-howto-install-microsoft-xna-framework-reference-for-windows-phone-development-in-windows8-2/</link>
		<comments>http://elbruno.com/2012/05/14/wp-howto-install-microsoft-xna-framework-reference-for-windows-phone-development-in-windows8-2/#comments</comments>
		<pubDate>Mon, 14 May 2012 18:28:56 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2881</guid>
		<description><![CDATA[Buenas, I am not a developer of Windows Phone applications, so are the cracks (@ RafaSermed or @ JosueYerayfor example), but since I have Windows 8 installed as main working platform, because I missed in face to finish a few touches to an application of WP. Now that we have the Windows Phone SDK 7.1.1 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2881&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/04/image.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/04/image_thumb.png?w=583&amp;h=189&h=189" width="583" height="189" /></a></p>
<p>Buenas,</p>
<p>I am not a developer of Windows Phone applications, so are the cracks (<a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Ftwitter.com%2FRafaSermed">@ RafaSermed</a> or <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Ftwitter.com%2FJosueYeray">@ JosueYeray</a>for example), but since I have Windows 8 installed as main working platform, because I missed in face to finish a few touches to an application of WP.</p>
<p>Now that we have the <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fdownload%2Fdetails.aspx%3Fid%3D29233">Windows Phone SDK 7.1.1 Update</a> that already allows us to install WP on Windows 8 development tools, because I thought that it was all fixed. But&#8230; zas! the first on the face, to the point of wanting to compile the project, because I realize that I&#8217;m lacking in XNA.</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage13.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb13.png?w=405&amp;h=428&h=428" width="405" height="428" /></a></p>
<p>So ignorant of me, I think that installing <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fdownload%2Fdetails.aspx%3Fid%3D23714">Microsoft XNA Game Studio 4.0</a> it would solve my problems, but of course</p>
<blockquote><p>trying to install XNA in Windows 8 is just as easy to scratch the back with knee</p>
</blockquote>
<p>So he plays a little read installation logs, and after a while I realise that the fundamental problem seems to be related to a product that did not know until the day of today: <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.xbox.com%2Fen-US%2FLIVE%2FPC%2FDownloadClient">Game for Windows Client</a>.</p>
<p>And of course, the problem is the following:</p>
<ul>
<li>The installer of Windows Phone tries to install a version of XNA, but cannot </li>
<li>Actually it can not, because the XNA Installer tries to install a version of <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.xbox.com%2Fen-US%2FLIVE%2FPC%2FDownloadClient">Game for Windows Client</a> and Windows 8 says NOT IN MY WATCH!</li>
</ul>
<p>So slowly and lovingly, the steps to get everything to work are as follows:</p>
<ul>
<li>Uninstall everything from XNA if you tried until the update of Windows Phone 7. </li>
<li>Download and install the latest version of <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.xbox.com%2Fen-US%2FLIVE%2FPC%2FDownloadClient">Game for Windows Client</a>. </li>
<li>Now yes, install <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fdownload%2Fdetails.aspx%3Fid%3D29233">Windows Phone SDK 7.1.1 Update</a> and if we need it, because also <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fdownload%2Fdetails.aspx%3Fid%3D23714">Microsoft XNA Game Studio 4.0</a></li>
</ul>
<p>That Yes, the interesting evening of Logs that I noticed today the does me anyone <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile5.png?w=620" /></p>
<p>Downloads:</p>
<ul>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fdownload%2Fdetails.aspx%3Fid%3D29233">Windows Phone SDK 7.1.1 Update</a></li>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fdownload%2Fdetails.aspx%3Fid%3D23714">Microsoft XNA Game Studio 4.0</a></li>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.xbox.com%2Fen-US%2FLIVE%2FPC%2FDownloadClient">Game for Windows Client</a></li>
</ul>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/howto/'>HowTo</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-2010/'>Visual Studio 2010</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/'>Windows 8</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-phone/'>Windows Phone</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2881/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2881&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/14/wp-howto-install-microsoft-xna-framework-reference-for-windows-phone-development-in-windows8-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/04/image_thumb.png?w=583&#38;h=189" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb13.png?w=405&#38;h=428" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile5.png?w=620" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#WP] HowTo: Install Microsoft.Xna.Framework reference for Windows Phone development in #Windows8</title>
		<link>http://elbruno.com/2012/05/14/wp-howto-install-microsoft-xna-framework-reference-for-windows-phone-development-in-windows8/</link>
		<comments>http://elbruno.com/2012/05/14/wp-howto-install-microsoft-xna-framework-reference-for-windows-phone-development-in-windows8/#comments</comments>
		<pubDate>Mon, 14 May 2012 18:26:10 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2879</guid>
		<description><![CDATA[&#160; Buenas, no soy un desarrollador de aplicaciones de Windows Phone, para eso están los cracks (@RafaSermed o @JosueYeray por ejemplo), pero desde que tengo Windows 8 instalado como plataforma principal de trabajo, pues echaba en cara poder terminar de dar unos toques a una aplicación de WP. Ahora que tenemos el Windows Phone SDK [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2879&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#160;<a href="http://brunocapuano.files.wordpress.com/2012/04/image.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/04/image_thumb.png?w=583&amp;h=189&h=189" width="583" height="189" /></a></p>
<p>Buenas,</p>
<p>no soy un desarrollador de aplicaciones de Windows Phone, para eso están los cracks (<a href="http://twitter.com/RafaSermed" target="_blank">@RafaSermed</a> o <a href="http://twitter.com/JosueYeray" target="_blank">@JosueYeray</a> por ejemplo), pero desde que tengo Windows 8 instalado como plataforma principal de trabajo, pues echaba en cara poder terminar de dar unos toques a una aplicación de WP.</p>
<p>Ahora que tenemos el <a href="http://www.microsoft.com/en-us/download/details.aspx?id=29233" target="_blank">Windows Phone SDK 7.1.1 Update</a> que ya nos permite instalar las herramientas de desarrollo de WP sobre Windows 8, pues pensé que tenía todo solucionado. Pero … zas! la primera en la cara, al momento de querer compilar el proyecto, pues me doy cuenta de que ando falto de XNA.</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image13.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb13.png?w=405&h=428" width="405" height="428" /></a></p>
<p>Así que ignorante de mí, pienso que instalando <a href="http://www.microsoft.com/en-us/download/details.aspx?id=23714" target="_blank">Microsoft XNA Game Studio 4.0</a> solucionaría mis problemas, pero claro </p>
<blockquote><p>intentar instalar XNA en Windows 8 es igual de fácil que rascarse la espalda con la rodilla</p>
</blockquote>
<p>Así que toca leer un poco los logs de instalación, y después de un rato me doy cuenta de que el problema de fondo parece que está relacionado con un producto que no conocía hasta el día de hoy: <a href="http://www.xbox.com/en-US/LIVE/PC/DownloadClient" target="_blank">Game for Windows Client</a>.</p>
<p>Y claro, el problema es el siguiente:</p>
<ul>
<li>El instalador de Windows Phone intenta instalar una versión de XNA, aunque no puede</li>
<li>En realidad no puede, porque el instalador de XNA intenta instalar una versión de <a href="http://www.xbox.com/en-US/LIVE/PC/DownloadClient" target="_blank">Game for Windows Client</a> y Windows 8 dice NOT IN MY WATCH !!!</li>
</ul>
<p>Así que de a poco y con cariño, los pasos para lograr que todo funcione son los siguientes:</p>
<ul>
<li>Desinstalar todo, desde XNA si lo intentaste hasta el update de Windows Phone 7.</li>
<li>Descargar e instalar la última versión de <a href="http://www.xbox.com/en-US/LIVE/PC/DownloadClient" target="_blank">Game for Windows Client</a>.</li>
<li>Ahora sí, instalar <a href="http://www.microsoft.com/en-us/download/details.aspx?id=29233" target="_blank">Windows Phone SDK 7.1.1 Update</a> y si lo necesitamos, pues también <a href="http://www.microsoft.com/en-us/download/details.aspx?id=23714" target="_blank">Microsoft XNA Game Studio 4.0</a></li>
</ul>
<p>Eso sí, la tarde interesante de Logs que me he dado hoy no me la quita nadie <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile5.png?w=620" /></p>
<p>&#160;</p>
<p>Descargas:</p>
<ul>
<li><a href="http://www.microsoft.com/en-us/download/details.aspx?id=29233" target="_blank">Windows Phone SDK 7.1.1 Update</a></li>
<li><a href="http://www.microsoft.com/en-us/download/details.aspx?id=23714" target="_blank">Microsoft XNA Game Studio 4.0</a></li>
<li><a href="http://www.xbox.com/en-US/LIVE/PC/DownloadClient" target="_blank">Game for Windows Client</a></li>
</ul>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/howto/'>HowTo</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-2010/'>Visual Studio 2010</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/'>Windows 8</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-phone/'>Windows Phone</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2879/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2879/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2879/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2879/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2879/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2879/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2879/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2879/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2879/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2879/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2879/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2879/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2879/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2879/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2879&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/14/wp-howto-install-microsoft-xna-framework-reference-for-windows-phone-development-in-windows8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/04/image_thumb.png?w=583&#38;h=189" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb13.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile5.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[# VS11] NUnit plugin updated (Yahooo!)</title>
		<link>http://elbruno.com/2012/05/13/vs11-nunit-plugin-updated-yahooo/</link>
		<comments>http://elbruno.com/2012/05/13/vs11-nunit-plugin-updated-yahooo/#comments</comments>
		<pubDate>Sun, 13 May 2012 19:01:54 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[Visual Studio 11]]></category>
		<category><![CDATA[Visual Studio Gallery]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2869</guid>
		<description><![CDATA[Buenas, today I was watching / updating a little code viejuno where used NUnit as a framework for my testing unit and clear, as we are now using 100% Visual Studio 11 development, so I decided to use the plugin to NUnit. The good thing about VS11 is that it allows to use different plugins [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2869&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>today I was watching / updating a little code viejuno where used <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fnunit.org%2F">NUnit</a> as a framework for my testing unit and clear, as we are now using 100% <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fmsdn.microsoft.com%2Fes-es%2Fvstudio%2Faa718325">Visual Studio 11</a> development, so I decided to use the plugin to <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fnunit.org%2F">NUnit</a>.</p>
<p>The good thing about VS11 is that it allows to use different plugins for unit testing (something already talked <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Felbruno.com%2F2012%2F04%2F16%2Fvs11-nuevos-adaptadores-de-unit-testing-en-visual-studio-11-nunit-xunit-y-otros-superheroes-mas%2F">here</a>), but better was my surprise when I found myself with a new version of the adapter for <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fnunit.org%2F">NUnit</a>.</p>
<p>As in the <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fvisualstudiogallery.msdn.microsoft.com%2F">Visual Studio Gallery</a> <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fvisualstudiogallery.msdn.microsoft.com%2F6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d">PlugIn</a> page there is no much information thereon, because I sign the following links to see innovations, because among other things that you there is no Active Bug brightens as developer <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile4.png?w=580" /></p>
<ul>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Flaunchpad.net%2Fnunit-vs-adapter">NUnit Test Adapter Project Page</a></li>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbugs.launchpad.net%2Fnunit-vs-adapter">Bug Tracker</a></li>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fnunit.org%2Findex.php%3Fp%3DvsTestAdapter%26r%3D2.6">Documentation</a></li>
</ul>
<p>Best regards</p>
<ul>
<li>Download     <br /><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fvisualstudiogallery.msdn.microsoft.com%2F6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d">http://visualstudiogallery.msdn.Microsoft.com/6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d</a></li>
<li>More Information     <br /><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fnunit.org%2Findex.php%3Fp%3DvsTestAdapter%26r%3D2.6">http://NUnit.org/index.php?p=vsTestAdapter &amp; r = 2. 6</a></li>
</ul>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-gallery/'>Visual Studio Gallery</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2869/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2869/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2869/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2869/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2869/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2869/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2869/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2869/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2869/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2869/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2869/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2869/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2869/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2869/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2869&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/13/vs11-nunit-plugin-updated-yahooo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile4.png?w=580" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#VS11] Actualizado el plugin para NUnit (yahooooo !!!)</title>
		<link>http://elbruno.com/2012/05/13/vs11-actualizado-el-plugin-para-nunit-yahooooo/</link>
		<comments>http://elbruno.com/2012/05/13/vs11-actualizado-el-plugin-para-nunit-yahooooo/#comments</comments>
		<pubDate>Sun, 13 May 2012 18:59:04 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[Visual Studio 11]]></category>
		<category><![CDATA[Visual Studio Gallery]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2867</guid>
		<description><![CDATA[Buenas, hoy me encontraba mirando/actualizando un poco de código viejuno donde utilizaba NUnit como framework para mis pruebas unitarias y claro, como ahora estamos utilizando 100% Visual Studio 11 para el desarrollo, pues me decidí a utilizar el plugin para NUnit. Lo bueno de VS11 es que permite utilizar diferentes plugins para pruebas unitarias (algo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2867&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>hoy me encontraba mirando/actualizando un poco de código viejuno donde utilizaba <a href="http://nunit.org" target="_blank">NUnit</a> como framework para mis pruebas unitarias y claro, como ahora estamos utilizando 100% <a href="http://msdn.microsoft.com/es-es/vstudio/aa718325" target="_blank">Visual Studio 11</a> para el desarrollo, pues me decidí a utilizar el plugin para <a href="http://nunit.org" target="_blank">NUnit</a>. </p>
<p>Lo bueno de VS11 es que permite utilizar diferentes plugins para pruebas unitarias (algo de lo que ya hablé <a href="http://elbruno.com/2012/04/16/vs11-nuevos-adaptadores-de-unit-testing-en-visual-studio-11-nunit-xunit-y-otros-superheroes-mas/" target="_blank">aquí</a>), pero fue mejor mi sorpresa cuando me encontré con una nueva versión del adaptador para <a href="http://nunit.org" target="_blank">NUnit</a>.</p>
<p>Como en la página del <a href="http://visualstudiogallery.msdn.microsoft.com/6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d" target="_blank">PlugIn</a> de <a href="http://visualstudiogallery.msdn.microsoft.com/" target="_blank">Visual Studio Gallery</a> no hay mucha información al respecto, pues me apunto los siguientes enlaces para ver las novedades, porque entre otras cosas ver que no hay ningún Bug activo me alegra como developer <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile4.png?w=620" /></p>
<ul>
<li><a href="http://launchpad.net/nunit-vs-adapter">NUnit Test Adapter Project Page</a></li>
<li><a href="http://bugs.launchpad.net/nunit-vs-adapter">Bug Tracker</a></li>
<li><a href="http://nunit.org/index.php?p=vsTestAdapter&amp;r=2.6">Documentation</a></li>
</ul>
<p>Saludos</p>
<ul>
<li>Descarga     <br /><a title="http://visualstudiogallery.msdn.microsoft.com/6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d" href="http://visualstudiogallery.msdn.microsoft.com/6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d">http://visualstudiogallery.msdn.microsoft.com/6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d</a></li>
<li>More Information     <br /><a title="http://nunit.org/index.php?p=vsTestAdapter&amp;r=2.6" href="http://nunit.org/index.php?p=vsTestAdapter&amp;r=2.6">http://nunit.org/index.php?p=vsTestAdapter&amp;r=2.6</a></li>
</ul>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-gallery/'>Visual Studio Gallery</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2867/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2867/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2867/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2867/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2867/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2867/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2867/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2867&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/13/vs11-actualizado-el-plugin-para-nunit-yahooooo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile4.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#VS11] Windows 8 and the Speech Recognition are brutal enemies when you are developing #METRO applications</title>
		<link>http://elbruno.com/2012/05/11/vs11-windows-8-and-the-speech-recognition-are-brutal-enemies-when-you-are-developing-metro-applications/</link>
		<comments>http://elbruno.com/2012/05/11/vs11-windows-8-and-the-speech-recognition-are-brutal-enemies-when-you-are-developing-metro-applications/#comments</comments>
		<pubDate>Fri, 11 May 2012 16:53:13 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[Visual Studio 11]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2862</guid>
		<description><![CDATA[Buenas, today is I’ll try to share an experience of a typical Friday. Almost at the end of the development of a METRO application (cool not?), and doing a couple of tests in environments like laptops, tablets, touch. When I try some configurations and tests in the emulator I find the following error: Note: if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2862&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>today is I’ll try to share an experience of a typical Friday. Almost at the end of the development of a METRO application (cool not?), and doing a couple of tests in environments like laptops, tablets, touch. When I try some configurations and tests in the emulator I find the following error:</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage9.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb9.png?w=941&amp;h=583&h=583" width="941" height="583" /></a></p>
<p><em><strong>Note:</strong> if you&#8217;re wondering why I had to use the emulator of Windows 8, I encourage you to try to move from landscape to portrait a 5 Kilos HP Touch .</em></p>
<p>So taht’s it, the emulator can’t launch everything ok if you have activated Microsoft Speech and in case you need both, you’ll take a good annoyance.</p>
<p>But of course, is Friday better dig between encouraging phrases of Friday and move forward with a</p>
<blockquote><p>Problems are always showing up, but solutions are also always showing up.</p>
</blockquote>
<p>The more objective solution is to chante to a new religion “the creationism” and try to create an extension for the emulator that supports audio device. The more realistic option, is to test the application in the emulator without the audio features and remember the mother of Sinofsky (or as type the name of the boss of W8).</p>
<p>That Yes, with any of the 2 options already can have the application running with <strike>all</strike> the features we need.</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage12.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb12.png?w=285&amp;h=177&h=177" width="285" height="177" /></a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/'>Windows 8</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2862/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2862&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/11/vs11-windows-8-and-the-speech-recognition-are-brutal-enemies-when-you-are-developing-metro-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb9.png?w=941&#38;h=583" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb12.png?w=285&#38;h=177" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#VS11] Porque Windows 8 y el speech recognition se llevan de los pelos si desarrollas aplicaciones Metro</title>
		<link>http://elbruno.com/2012/05/11/vs11-porque-windows-8-y-el-speech-recognition-se-llevan-de-los-pelos-si-desarrollas-aplicaciones-metro/</link>
		<comments>http://elbruno.com/2012/05/11/vs11-porque-windows-8-y-el-speech-recognition-se-llevan-de-los-pelos-si-desarrollas-aplicaciones-metro/#comments</comments>
		<pubDate>Fri, 11 May 2012 16:26:01 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[Visual Studio 11]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2854</guid>
		<description><![CDATA[Buenas, hoy toca compartir una experiencia de las que te pasan los viernes. Casi al final del desarrollo de una aplicación METRO (a que mola no?), y haciendo un par de pruebas en entornos no portátiles, tablets, touch, en el momento de probar algunas configuraciones en el emulador me encuentro con el siguiente error: Nota: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2854&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>hoy toca compartir una experiencia de las que te pasan los viernes. Casi al final del desarrollo de una aplicación METRO (a que mola no?), y haciendo un par de pruebas en entornos no portátiles, tablets, touch, en el momento de probar algunas configuraciones en el emulador me encuentro con el siguiente error:</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image9.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb9.png?w=941&h=583" width="941" height="583" /></a></p>
<p><em><strong>Nota:</strong> si te estás preguntando porqué tuve que utilizar el emulador de Windows 8, te animo a que intentes mover de landscape a portrait un HP Touch de 5 kilos.</em></p>
<p>Pues bien, el emulador no se puede lanzar si tienes activado el Microsoft Speech y en caso de que necesites ambos, te puedes llevar un buen disgusto.</p>
<p>Pero claro, es viernes mejor rebuscar entre frases alentadoras de viernes y salir adelante con un </p>
<blockquote><p>Los problemas nunca se acaban, pero las soluciones tampoco.</p>
</blockquote>
<p>La solución más objetiva consiste en convertirse al creacionismo e intentar crear una extensión para el emulador que soporte dispositivo de audio. La opción más realista, es probar la aplicación en el emulador sin las features de audio y acordarse de la madre de Sinofsky (o como se escriba el nombre del jefazo de W8).</p>
<p>Eso sí, con cualquiera de las 2 opciones ya podremos tener la aplicación en funcionamiento con <strike>todas</strike> las features que necesitamos.</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image12.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb12.png?w=285&h=177" width="285" height="177" /></a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>, <a href='http://elbruno.com/category/msn-microsoft/windows-8/'>Windows 8</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2854/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2854&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/11/vs11-porque-windows-8-y-el-speech-recognition-se-llevan-de-los-pelos-si-desarrollas-aplicaciones-metro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb12.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#RESHARPER] ReSharper 7 EAP for Visual Studio 11 expired? Not problem</title>
		<link>http://elbruno.com/2012/05/09/resharper-resharper-7-eap-for-visual-studio-11-expired-not-problem/</link>
		<comments>http://elbruno.com/2012/05/09/resharper-resharper-7-eap-for-visual-studio-11-expired-not-problem/#comments</comments>
		<pubDate>Wed, 09 May 2012 20:56:09 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[JetBrains]]></category>
		<category><![CDATA[ReSharper]]></category>
		<category><![CDATA[Visual Studio 11]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2833</guid>
		<description><![CDATA[Buenas, If you has expired the trial of the EAP of 7 ReSharper for Visual Studio 11 and when you open Visual Studio you are with You&#8217;ll see that the link proposes to upgrade to a new version does not work. So the best thing is to uninstall 7 Resharperhandmade from &#34;add and remove programs&#34; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2833&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>If you has expired the trial of the EAP of <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Felbruno.com%2F2012%2F03%2F04%2Fvs11-resharper-7-eap-para-visual-studio-11-beta%2F">7 ReSharper for Visual Studio 11</a> and when you open Visual Studio you are with</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage7.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb7.png?w=552&amp;h=223&h=223" width="552" height="223" /></a></p>
<p>You&#8217;ll see that the <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Felbruno.com%2F2011%2F09%2F09%2Falm-pintando-muros-cambiando-paales-de-y-la-deuda-tcnica%2F">link</a> proposes to upgrade to a new version does not work. So the best thing is to uninstall 7 <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.jetbrains.com%2Fresharper%2F">Resharper</a>handmade from &quot;add and remove programs&quot;</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage8.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb8.png?w=405&amp;h=185&h=185" width="405" height="185" /></a></p>
<p>And once uninstalled, are again going to the list of night-time compilations of <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.jetbrains.com%2Fresharper%2F">ReSharper</a> 7 which you can access from<a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fconfluence.jetbrains.net%2Fdisplay%2FReSharper%2FReSharper%2B7%2BEAP%2Bfor%2BVS11%2BBeta">http://confluence.jetbrains.net/display/ReSharper/ReSharper+7+EAP+for+VS11+Beta</a>, downloaded the version that puts us more happy and ready to reinstall <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile3.png?w=620" /></p>
<p>In 10 minutes we have the help of <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.jetbrains.com%2Fresharper%2F">ReSharper</a> embedded within the IDE.</p>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/jetbrains/'>JetBrains</a>, <a href='http://elbruno.com/category/jetbrains/resharper-jetbrains/'>ReSharper</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2833/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2833&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/09/resharper-resharper-7-eap-for-visual-studio-11-expired-not-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb7.png?w=552&#38;h=223" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb8.png?w=405&#38;h=185" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile3.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#RESHARPER] Ha caducado ReSharper 7 EAP para Visual Studio 11? No problem</title>
		<link>http://elbruno.com/2012/05/09/resharper-te-ha-caducado-la-eap-para-visual-studio-11-no-problem/</link>
		<comments>http://elbruno.com/2012/05/09/resharper-te-ha-caducado-la-eap-para-visual-studio-11-no-problem/#comments</comments>
		<pubDate>Wed, 09 May 2012 20:53:24 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[ReSharper]]></category>
		<category><![CDATA[Visual Studio 11]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2829</guid>
		<description><![CDATA[Buenas, si se te ha vencido el trial del EAP de ReSharper 7 para Visual Studio 11 y cuando abres Visual Studio te encuentras con Verás que el link que propone para actualizar a una nueva versión no funciona. Así que lo mejor es desinstalar Resharper 7 a mano desde “add and remove programs” Y [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2829&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>si se te ha vencido el trial del EAP de <a href="http://elbruno.com/2012/03/04/vs11-resharper-7-eap-para-visual-studio-11-beta/" target="_blank">ReSharper 7 para Visual Studio 11</a> y cuando abres Visual Studio te encuentras con</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image7.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb7.png?w=552&h=223" width="552" height="223" /></a></p>
<p>Verás que el <a href="http://elbruno.com/2011/09/09/alm-pintando-muros-cambiando-paales-de-y-la-deuda-tcnica/" target="_blank">link</a> que propone para actualizar a una nueva versión no funciona. Así que lo mejor es desinstalar <a href="http://www.jetbrains.com/resharper/" target="_blank">Resharper</a> 7 a mano desde “add and remove programs”</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image8.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb8.png?w=405&h=185" width="405" height="185" /></a></p>
<p>Y una vez desinstalado, vamos nuevamente al listado de compilaciones nocturnas de <a href="http://www.jetbrains.com/resharper/" target="_blank">ReSharper</a> 7 que se puede acceder desde <a title="http://confluence.jetbrains.net/display/ReSharper/ReSharper+7+EAP+for+VS11+Beta" href="http://confluence.jetbrains.net/display/ReSharper/ReSharper+7+EAP+for+VS11+Beta">http://confluence.jetbrains.net/display/ReSharper/ReSharper+7+EAP+for+VS11+Beta</a>, descargamos la versión que nos ponga más felices y listo a instalar nuevamente <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile3.png?w=620" /></p>
<p>En 10 minutos ya tenemos la ayuda de <a href="http://www.jetbrains.com/resharper/" target="_blank">ReSharper</a> embebida dentro del IDE.</p>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/jetbrains/resharper-jetbrains/'>ReSharper</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2829/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2829&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/09/resharper-te-ha-caducado-la-eap-para-visual-studio-11-no-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile3.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#VS11] Some colors are back in Visual Studio 11</title>
		<link>http://elbruno.com/2012/05/08/vs11-some-colors-are-back-in-visual-studio-11/</link>
		<comments>http://elbruno.com/2012/05/08/vs11-some-colors-are-back-in-visual-studio-11/#comments</comments>
		<pubDate>Tue, 08 May 2012 20:11:57 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[Visual Studio 11]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2822</guid>
		<description><![CDATA[Buenas, and it is that about VS11 Beta was somewhat intolerable. A little more bland and it was like chewing wet cardboard. Now it seems that we will have a Carnival of colors that help us think seriously if both work with redial blue not burn us the vista for the next RC. In the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2822&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>and it is that about VS11 Beta was somewhat intolerable. A little more bland and it was like chewing wet cardboard. Now it seems that we will have a Carnival of colors that help us think seriously if both work with redial blue not burn us the vista for the next RC.</p>
<p>In the post of the Visual Studio product team are all examples, but some I do not end like.</p>
<p>For example, defining a clearer than the current grey background color and mark the selected elements into blue, is very Metro, but I do not know if this idea is correct for an IDE.</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage2.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb2.png?w=628&amp;h=156&h=156" width="628" height="156" /></a></p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage3.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb3.png?w=628&amp;h=156&h=156" width="628" height="156" /></a></p>
<p>Not to mention if we above begin to use colors as indicators of State or progress. The Rio film will be a movie in black and white next to the new Visual Studio.</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage4.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb4.png?w=628&amp;h=156&h=156" width="628" height="156" /></a></p>
<p>That Yes, there are some interesting things like the new colors of the Solution Explorer or a friendlier toolbar</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage5.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb5.png?w=628&amp;h=421&h=421" width="628" height="421" /></a></p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage6.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb6.png?w=628&amp;h=139&h=139" width="628" height="139" /></a></p>
<p>Although, after a couple of months, I ended up getting used to the new IDE and I understand that with this I will do the same.</p>
<p>That Yes, in my next life I want to be an expert in user experience <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile2.png?w=620" /></p>
<p>Source: <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fblogs.msdn.com%2Fb%2Fvisualstudio%2Farchive%2F2012%2F05%2F08%2Fvisual-studio-11-user-interface-updates-coming-in-rc.aspx">http://blogs.msdn.com/b/visualstudio/archive/2012/05/08/visual-studio-11-user-interface-updates-coming-in-rc.aspx</a></p>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2822/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2822/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2822/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2822/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2822/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2822/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2822/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2822/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2822/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2822/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2822/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2822/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2822/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2822/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2822&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/08/vs11-some-colors-are-back-in-visual-studio-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb2.png?w=628&#38;h=156" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb3.png?w=628&#38;h=156" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb4.png?w=628&#38;h=156" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb5.png?w=628&#38;h=421" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb6.png?w=628&#38;h=139" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile2.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#VS11] Vuelven algunos colores a Visual Studio 11</title>
		<link>http://elbruno.com/2012/05/08/vs11-vuelven-algunos-colores-a-visual-studio-11/</link>
		<comments>http://elbruno.com/2012/05/08/vs11-vuelven-algunos-colores-a-visual-studio-11/#comments</comments>
		<pubDate>Tue, 08 May 2012 20:08:30 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[Visual Studio 11]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2820</guid>
		<description><![CDATA[Buenas, y es que lo de VS11 Beta era un poco intolerable. Un poco más soso y era como masticar cartón mojado. Ahora parece que para el próximo RC tendremos un carnaval de colores que nos ayudará a pensar seriamente si tanto trabajar con azules remarcados no nos quemará la vista. En el post del [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2820&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>y es que lo de VS11 Beta era un poco intolerable. Un poco más soso y era como masticar cartón mojado. Ahora parece que para el próximo RC tendremos un carnaval de colores que nos ayudará a pensar seriamente si tanto trabajar con azules remarcados no nos quemará la vista.</p>
<p>En el post del equipo de producto de Visual Studio están todos los ejemplos, pero algunos no me terminan de gustar.</p>
<p>Por ejemplo, el definir un color de fondo más claro que el gris actual y marcar los elementos seleccionados en Azul, es muy Metro, pero no sé si para un IDE esa idea es correcta.</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image2.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb2.png?w=628&h=156" width="628" height="156" /></a></p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image3.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb3.png?w=628&h=156" width="628" height="156" /></a></p>
<p>Ni hablar si encima comenzamos a utilizar colores como indicadores de estado o de progreso. La película Rio será una peli en blanco y negro al lado del nuevo Visual Studio.</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image4.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb4.png?w=628&h=156" width="628" height="156" /></a></p>
<p>Eso sí, hay algunas cosas interesantes como los nuevos colores del Solution Explorer o una barra de herramientas más amigable</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image5.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb5.png?w=628&h=421" width="628" height="421" /></a></p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image6.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb6.png?w=628&h=139" width="628" height="139" /></a></p>
<p>Aunque, después de un par de meses me terminé acostumbrando al nuevo IDE y entiendo que con este haré lo mismo. </p>
<p>Eso sí, en mi próxima vida quiero ser experto en experiencia de usuario <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile2.png?w=620" /></p>
<p>&#160;</p>
<p>Fuente: <a href="http://blogs.msdn.com/b/visualstudio/archive/2012/05/08/visual-studio-11-user-interface-updates-coming-in-rc.aspx">http://blogs.msdn.com/b/visualstudio/archive/2012/05/08/visual-studio-11-user-interface-updates-coming-in-rc.aspx</a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/visual-studio/visual-studio-11/'>Visual Studio 11</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2820/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2820/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2820/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2820/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2820/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2820/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2820/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2820/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2820/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2820/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2820/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2820/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2820/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2820/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2820&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/08/vs11-vuelven-algunos-colores-a-visual-studio-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile2.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[# VS11] Test Scribe now with support for Microsoft Test Manager 11</title>
		<link>http://elbruno.com/2012/05/07/vs11-test-scribe-now-with-support-for-microsoft-test-manager-11/</link>
		<comments>http://elbruno.com/2012/05/07/vs11-test-scribe-now-with-support-for-microsoft-test-manager-11/#comments</comments>
		<pubDate>Mon, 07 May 2012 21:21:56 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[Microsoft Test Manager 11]]></category>
		<category><![CDATA[Visual Studio Gallery]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2807</guid>
		<description><![CDATA[Buenas, Quick note so I will not forget about this: Test Scribe. that extension that lets you generate documentation from Microsoft Test Manager information, now supports working with Visual Studio 11. By the way, and if you did not know, the tool is created and supported by the Visual Studio QA team Download: http://visualstudiogallery.msdn.microsoft.com/85b8215f-263f-4d1f-822b-307de339af38 Saludos [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2807&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>Quick note so I will not forget about this:</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fvisualstudiogallery.msdn.microsoft.com%2F85b8215f-263f-4d1f-822b-307de339af38">Test Scribe</a>. that extension that lets you generate documentation from Microsoft Test Manager information, now supports working with <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fmsdn.microsoft.com%2Fes-es%2Fvstudio%2Faa718325">Visual Studio 11</a>.</p>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage1.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb1.png?w=628&amp;h=493&h=493" width="628" height="493" /></a></p>
<p>By the way, and if you did not know, the tool is created and supported by the Visual Studio QA team <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile1.png?w=620" /></p>
<p>Download: <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fvisualstudiogallery.msdn.microsoft.com%2F85b8215f-263f-4d1f-822b-307de339af38">http://visualstudiogallery.msdn.microsoft.com/85b8215f-263f-4d1f-822b-307de339af38</a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/visual-studio/microsoft-test-manager-11/'>Microsoft Test Manager 11</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-gallery/'>Visual Studio Gallery</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2807/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2807/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2807/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2807/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2807/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2807/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2807/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2807/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2807/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2807/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2807/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2807/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2807/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2807/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2807&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/07/vs11-test-scribe-now-with-support-for-microsoft-test-manager-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb1.png?w=628&#38;h=493" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile1.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#VS11] Test Scribe ahora con soporte para Microsoft Test Manager 11</title>
		<link>http://elbruno.com/2012/05/07/vs11-test-scribe-ahora-con-soporte-para-microsoft-test-manager-11/</link>
		<comments>http://elbruno.com/2012/05/07/vs11-test-scribe-ahora-con-soporte-para-microsoft-test-manager-11/#comments</comments>
		<pubDate>Mon, 07 May 2012 21:19:03 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[Microsoft Test Manager 11]]></category>
		<category><![CDATA[Visual Studio Gallery]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2805</guid>
		<description><![CDATA[Buenas, me lo apunto para no olvidarme: Test Scribe. esa extensión que te permite generar documentación a partir de información de Microsoft Test Manager, ahora soporta trabajar con Visual Studio 11. Por cierto y por si no lo sabías, la herramienta es creada y soportada por el equipo de QA de Visual Studio Descarga: http://visualstudiogallery.msdn.microsoft.com/85b8215f-263f-4d1f-822b-307de339af38 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2805&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>me lo apunto para no olvidarme:</p>
<p><a href="http://visualstudiogallery.msdn.microsoft.com/85b8215f-263f-4d1f-822b-307de339af38" target="_blank">Test Scribe</a>. esa extensión que te permite generar documentación a partir de información de Microsoft Test Manager, ahora soporta trabajar con <a href="http://msdn.microsoft.com/es-es/vstudio/aa718325" target="_blank">Visual Studio 11</a>.</p>
<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image1.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb1.png?w=628&h=493" width="628" height="493" /></a></p>
<p>Por cierto y por si no lo sabías, la herramienta es creada y soportada por el equipo de QA de Visual Studio <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile1.png?w=620" /></p>
<p>Descarga: <a title="http://visualstudiogallery.msdn.microsoft.com/85b8215f-263f-4d1f-822b-307de339af38" href="http://visualstudiogallery.msdn.microsoft.com/85b8215f-263f-4d1f-822b-307de339af38">http://visualstudiogallery.msdn.microsoft.com/85b8215f-263f-4d1f-822b-307de339af38</a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/visual-studio/microsoft-test-manager-11/'>Microsoft Test Manager 11</a>, <a href='http://elbruno.com/category/visual-studio/visual-studio-gallery/'>Visual Studio Gallery</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2805/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2805&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/07/vs11-test-scribe-ahora-con-soporte-para-microsoft-test-manager-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile1.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#OPINION] From Programmer to Manager, what has happened to my.</title>
		<link>http://elbruno.com/2012/05/06/opinion-from-programmer-to-manager-what-has-happened-to-my/</link>
		<comments>http://elbruno.com/2012/05/06/opinion-from-programmer-to-manager-what-has-happened-to-my/#comments</comments>
		<pubDate>Sun, 06 May 2012 15:26:06 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[ALM]]></category>
		<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2800</guid>
		<description><![CDATA[Buenas, today I hit him a push and I finish the post Meanwhile AVE, travel and showrooms of innovation, I don&#8217;t have much time. A couple of days Juan Quijano (@ jc_quijano) and Alvaro Roca published a series of articles where talked about the pros and cons of the path &#34;of programmer to Manager&#34;. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2800&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/03/alm-03.png" target="_blank"><img title="ALM 03" style="margin:0 0 3px;display:inline;" alt="ALM 03" src="http://brunocapuano.files.wordpress.com/2012/03/alm-03_thumb.png?w=735&h=243" width="735" height="243" /></a></p>
<p>Buenas,</p>
<p>today I hit him a push and I finish the post Meanwhile AVE, travel and showrooms of innovation, I don&#8217;t have much time.</p>
<p>A couple of days <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2F1poquitodtodo.blogspot.com%2F">Juan Quijano</a> (<a href="https://twitter.com/#!/jc_quijano">@ jc_quijano</a>) and Alvaro Roca published a series of articles where talked about the pros and <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.genbetadev.com%2Fdesarrolladores%2Fde-programador-a-manager-el-camino-profesional-de-un-desarrollador-en-contra">cons</a> of the path &quot;of programmer to Manager&quot;.</p>
<p>I I am going to comment on my personal opinion, where today I&#8217;m not a programmer at 100% but am not a person who is dedicated to the Management in the form that we know it. The first thing that caught my attention in the comments of both posts is <strong><em>The complete DISGUST</em> </strong>that shows more than one programmer to switch to a Management position, and of course, I&#8217;m 99.9999% sure that this is because they have had bad experiences with team leaders (since now no more managers) who can&#8217;t do their job.</p>
<p>In my case in particular, I&#8217;ve spent years programming. I am not of those who comment that 4 years they already coding in a Commodore 64 and from there throw lines, but I discovered more than large computer and I loved it from the first day. I spent years learning to program and believe that what most caught my attention is that in this business, we always have to be constantly learning.</p>
<p>When I was in my first job I was fortunate to participate in the creation of a product that started selling internationally and clear, what started as a team of 3 people, began to grow until they not reached me the fingers of one hand to count the team. At that point, it had been years of self-education on new technologies, programming, etc.; He had to become start to learn about elements to ensure that the work we did all as team was consistent, all understood where we wanted to get, etc.</p>
<p>At the same time I came to Spain and as coincided with the release of Visual Studio 2005, as I started to read books that went beyond programming techniques. I met AGILE, I discovered the business behind CMMI, but mainly I realized that unless concrete projects in my career would have to work hard as a team. Is for this reason that I started to try to improve the quality of the deliverables of my team, I tried to make everyone better that I (Germán taught me that the quality of a team is measured by the worst of its members), etc.</p>
<p>By the way, I fell a couple of awards MVPs, where in recent years have been basically Alm MVP category is to recognize and learn how to correctly use the tools of Visual Studio ALM to teamwork.</p>
<p>So well, I&#8217;m not a &quot;manager of those&quot; discussed in the posts from <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2F1poquitodtodo.blogspot.com%2F">Juan Quijano</a> and Alvaro Roca, but if I consider myself one of those trying to carry out a team until you get a satisfied customer and a productive team. Do seems incoherent, no?</p>
<p>By the way, 2 days ago I found a logical problem it took me almost a night build. As I realized that I&#8217;m &quot;half Rusty&quot; I am intended to make 30 minutes of Code Kata daily during the month of May.</p>
<blockquote><p>Do to how many project managers / managers / managers know to do this sort of thing?</p>
</blockquote>
<p>References:</p>
<ul>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.genbetadev.com%2Ftrabajar-como-desarrollador%2Fde-programador-a-manager-el-camino-profesional-de-un-desarrollador">Programmer to manager</a>. </li>
<li><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.genbetadev.com%2Fdesarrolladores%2Fde-programador-a-manager-el-camino-profesional-de-un-desarrollador-en-contra">Programmer&#8217;s Manager, against</a>.</li>
</ul>
<p>&#160;</p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/alm/'>ALM</a>, <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/personal/opinion/'>Opinion</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2800/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2800/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2800/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2800/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2800/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2800/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2800/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2800/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2800/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2800/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2800/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2800/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2800/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2800/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2800&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/06/opinion-from-programmer-to-manager-what-has-happened-to-my/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/alm-03_thumb.png" medium="image">
			<media:title type="html">ALM 03</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#OPINION] De Programador a Manager, lo que me ha pasado a mi.</title>
		<link>http://elbruno.com/2012/05/06/opinion-de-programador-a-manager-lo-que-me-ha-pasado-a-mi/</link>
		<comments>http://elbruno.com/2012/05/06/opinion-de-programador-a-manager-lo-que-me-ha-pasado-a-mi/#comments</comments>
		<pubDate>Sun, 06 May 2012 15:24:11 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[ALM]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2797</guid>
		<description><![CDATA[Buenas, hoy le pego un empujón y termino el post que entre tanto AVE, viaje y showrooms de Innovación, no tengo mucho tiempo. Hace un par de días Juan Quijano (@jc_quijano) y Álvaro Roca publicaron una serie de artículos donde comentaban los pros y contras de seguir el camino “de Programador a Manager”. Yo os [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2797&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/03/alm-03.png" target="_blank"><img title="ALM 03" style="margin:0 0 3px;display:inline;" alt="ALM 03" src="http://brunocapuano.files.wordpress.com/2012/03/alm-03_thumb.png?w=735&h=243" width="735" height="243" /></a></p>
<p>Buenas,</p>
<p>hoy le pego un empujón y termino el post que entre tanto AVE, viaje y showrooms de Innovación, no tengo mucho tiempo.</p>
<p>Hace un par de días <a href="http://1poquitodtodo.blogspot.com/" target="_blank">Juan Quijano</a> (<a href="https://twitter.com/#!/jc_quijano" target="_blank">@jc_quijano</a>) y Álvaro Roca publicaron una serie de artículos donde comentaban los pros y <a href="http://www.genbetadev.com/desarrolladores/de-programador-a-manager-el-camino-profesional-de-un-desarrollador-en-contra" target="_blank">contras</a> de seguir el camino “de Programador a Manager”.</p>
<p>Yo os voy a comentar mi opinión personal, donde hoy no soy un Programador al 100% pero tampoco soy una persona que se dedica al Management en la forma que lo conocemos. Lo primero que me ha llamado la atención en los comentarios de ambos posts es <strong><em>LA COMPLETA REPUGNANCIA</em></strong> que demuestra más de un programador por cambiar a una posición de Management, y claro, estoy un 99,9999% seguro que esto es porque han tenido malas experiencias con jefes de equipo (desde ahora no más managers) que no saben hacer su trabajo.</p>
<p>En mi caso en particular, me he pasado años programando. No soy de esos que comentan que a los 4 años ya programaban en una Commodore 64 y desde allí tiran líneas, sino que descubrí a la informática más de grande y me apasionó desde el primer día. Me pasé años aprendiendo a programar y creo que lo que más me llamó la atención es que en este mundillo, siempre tenemos que estar aprendiendo constantemente.</p>
<p>Cuando estaba en mi primer trabajo tuve la suerte de participar en la creación de un producto que comenzó a comercializarse a nivel internacional y claro, lo que comenzó siendo un equipo de 3 personas, comenzó a crecer hasta que no me alcanzaban los dedos de una mano para contar el equipo. En ese punto, lo que había sido años de autoformación sobre nuevas tecnologías, programación, etc.; tuvo que convertirse en comenzar a aprender sobre elementos para garantizar que el trabajo que hacíamos todos como equipo era coherente, que todos entendíamos hacia donde queríamos llegar, etc.</p>
<p>En esa misma época llegué a España y como coincidía con el lanzamiento de Visual Studio 2005, pues empecé a leer libros que iban más allá de las técnicas de programación. Conocí AGILE, descubrí el negocio detrás de CMMI, pero principalmente comprendí que salvo proyectos concretos, en mi carrera profesional iba a tener que trabajar mucho en equipo. Es por este motivo que comencé a intentar mejorar la calidad de los entregables de mi equipo, intenté que todo el mundo sea mejor que yo (Germán me enseñó que la calidad de un equipo se mide por el peor de sus integrantes), etc.</p>
<p>Por el camino, me cayeron un par de premios MVPs, donde en los últimos años han sido de la categoría MVP ALM. Básicamente es reconocer y aprender como utilizar correctamente las herramientas de Visual Studio ALM para trabajar en equipo.</p>
<p>Así que bien, no soy un “manager de esos” que comentan en los posts de <a href="http://1poquitodtodo.blogspot.com/" target="_blank">Juan Quijano</a> y Álvaro Roca, pero si me considero una de las personas que intenta llevar adelante un equipo hasta obtener un cliente satisfecho y un equipo productivo. ¿Parece una incoherencia , no?</p>
<p>&#160;</p>
<p>Por cierto, hace 2 días me encontré frente a un problema lógico que me costó casi una noche de construir. Como me di cuenta de que estoy “medio oxidado” me he puesto como objetivo hacer 30 minutos de Code Kata diariamente durante el mes de mayo. </p>
<blockquote><p>¿A cuántos jefes de proyecto / gestores / managers conoces que hagan este tipo de cosas?</p>
</blockquote>
<p>&#160;</p>
<p>Referencias:</p>
<ul>
<li><a href="http://www.genbetadev.com/trabajar-como-desarrollador/de-programador-a-manager-el-camino-profesional-de-un-desarrollador" target="_blank">De programador a manager</a>.</li>
<li><a href="http://www.genbetadev.com/desarrolladores/de-programador-a-manager-el-camino-profesional-de-un-desarrollador-en-contra" target="_blank">De programador a manager, en contra</a>.</li>
</ul>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/alm/'>ALM</a>, <a href='http://elbruno.com/category/personal/opinion/'>Opinion</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2797/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2797&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/06/opinion-de-programador-a-manager-lo-que-me-ha-pasado-a-mi/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/alm-03_thumb.png" medium="image">
			<media:title type="html">ALM 03</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#KINECT] Angry Mouse &#8230; ;)</title>
		<link>http://elbruno.com/2012/05/01/kinect-angry-mouse/</link>
		<comments>http://elbruno.com/2012/05/01/kinect-angry-mouse/#comments</comments>
		<pubDate>Tue, 01 May 2012 17:00:09 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[Kinect]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2795</guid>
		<description><![CDATA[Good. If I were a mouse or mouse would be quite angry / upset / angry or whatever you want in your land. Now comes a device more or less €100 expensive called Microsoft Kinect that aims to replace me and dethrone me in the world of computers. But of course, the anger / anger [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2795&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F05%2Fimage.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb.png?w=324&amp;h=184&h=184" width="324" height="184" /></a></p>
<p>Good.</p>
<p>If I were a mouse or mouse would be quite angry / upset / angry or whatever you want in your land. Now comes a device more or less €100 expensive called Microsoft Kinect that aims to replace me and dethrone me in the world of computers. But of course, the anger / anger / anger begins already some time ago, when some guys from a company with a manzanita, reinvent a mobile phone a little big, put iPad name and everyone gets used to</p>
<blockquote><p><strong><em>Touch and drag instead of move and click</em></strong></p>
</blockquote>
<p>Then why, if a mouse I would be very angry. But as said the great Groucho Marx</p>
<blockquote><p><strong><em>It is better to remain silent and appear stupid than talk and remove doubts definitively.</em></strong></p>
</blockquote>
<p>That&#8217;s why that mouse still quietly accompanied by more than one and I think it will take quite some time so definitely leaves us.</p>
<p>Especially when there are many people who, at the time is to create a new user interface, which seek to replace the mouse, for example with gestures and actions about Kinect. These projects are designed and destined to fail in 99.99% of cases.</p>
<p>The key to these cases is in the word &quot;<strong><em>create</em></strong>&quot;. What we must do is to leave alone the mouse, thank you for the services provided and start thinking what are the most effective ways of working with the new sensors that we possess.</p>
<p>Now the interaction between most mobile devices, tactile surfaces, as Kinect gestures detectors, pico projectors, etc.; It makes us think in new scenarios for applications that can really be great or disastrous.</p>
<p>Some will ask, you little sleep has affected the Bruno or what he writes this?, is very simple. As some have noticed that I like to play with Kinect and such devices, many times I get questions like</p>
<ul>
<li>How can I do to replace the mouse with Kinect? </li>
<li>Not be how to double click with Kinect, when I try to replace the mouse.</li>
</ul>
<p>And while it is true that I try to answer everything what you ask me, for those questions the answer this post. Where I do not respond nothing in particular but&#8230; well now you know.</p>
<p>I Luckily, have not only the opportunity to &quot;play&quot; with these devices but they are also part of my job at Avanade, so I can see the good and bad experiences in the world of the <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FNatural_user_interface">NUI</a> (term beater to describe natural forms of work with electronic devices). Many people don&#8217;t realize that Kinect, for example, need considerable to be effective space, or that on a touch device because the sensitivity of the touch is not the same as a mouse.</p>
<p>Finally, a fact to keep in mind:</p>
<blockquote><p><strong><em>During the year 2008 the number of devices connected to the internet surpassed the number of people on Earth. By 2020 it is expected to be more than 50 billion devices connected to the internet. (</em></strong><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fgigaom.com%2F2011%2F07%2F17%2Fthe-internet-of-things-infographic%2F"><strong><em>Source</em> </strong></a>)<strong><em>)</em></strong></p>
</blockquote>
<p>Does this mean?, which in addition to having a <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Felbruno.com%2F2012%2F04%2F03%2Favesome-microsoft-mustang%2F">Mustang 100% connected to the internet</a>, we will now have to interact with many types of new devices and of course, our friend the mouse will not be there to help us and is not a question that we emulate the functioning of mouse everywhere.</p>
<p>So I do not keep my mouse right now, but already begin to see how that can work in different spaces without a mouse&#8230; then I will see that device gives me the best help in that scenario <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png?w=620" /></p>
<p>By the way</p>
<p>1 As the layman has been me boy, wait to see what I&#8217;m doing with my <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fxcellencecars.blogspot.com.es%2F2011%2F06%2Fmazda-rx8.html">RX8</a>, a Kinect, a tablet with Windows 8, etc. <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DQRiPSlx8PxA">limited</a>in the hands of a piece of code C#. My girl is a little scared but the Valentino super happy to play with the car from a tablet&#8230; <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png?w=620" /></p>
<p>.2 The ratonazo angry / upset / angry took out it of <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fabstract.desktopnexus.com%2Fget%2F134212%3Ft%3D08tt07vgrel6eo8knisme46jh34fa00c9fcba2b">http://abstract.desktopnexus.com/get/134212?t=08tt07vgrel6eo8knisme46jh34fa00c9fcba2b</a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/msn-microsoft/kinect/'>Kinect</a>, <a href='http://elbruno.com/category/personal/opinion/'>Opinion</a>, <a href='http://elbruno.com/category/alm/user-experience/'>User Experience</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2795/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2795&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/01/kinect-angry-mouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb.png?w=324&#38;h=184" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#KINECT] Y los ratones enfadados &#8230; ;)</title>
		<link>http://elbruno.com/2012/05/01/kinect-y-los-ratones-enfadados/</link>
		<comments>http://elbruno.com/2012/05/01/kinect-y-los-ratones-enfadados/#comments</comments>
		<pubDate>Tue, 01 May 2012 16:56:16 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[Kinect]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2793</guid>
		<description><![CDATA[Buenas. Si yo fuese un ratón o mouse estaría bastante cabreado / enfadado / enojado o como se diga en tu tierra. Resulta que ahora llega un dispositivo de más o menos €100 llamado Microsoft Kinect que apunta a reemplazarme y destronarme en el mundo de los ordenadores. Pero claro, el cabreo / enfado / [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2793&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/05/image.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/05/image_thumb.png?w=324&h=184" width="324" height="184" /></a></p>
<p>Buenas.</p>
<p>Si yo fuese un ratón o mouse estaría bastante cabreado / enfadado / enojado o como se diga en tu tierra. Resulta que ahora llega un dispositivo de más o menos €100 llamado Microsoft Kinect que apunta a reemplazarme y destronarme en el mundo de los ordenadores. Pero claro, el cabreo / enfado / enojo ya comienza hace un tiempo, cuando unos tíos de una empresa con una manzanita, reinventan un teléfono móvil un poco grande, le ponen de nombre iPad y todo el mundo se acostumbra a </p>
<blockquote><p><strong><em>Tocar y arrastrar en lugar de mover y clicar</em></strong></p>
</blockquote>
<p>Pues por eso, si fuese un ratón estaría muy cabreado. Pero como dice el gran Groucho Marx</p>
<blockquote><p><strong><em>Es mejor permanecer callado y parecer tonto que hablar y despejar las dudas definitivamente.</em></strong></p>
</blockquote>
<p>Es por eso que el ratón sigue calladito acompañado a más de uno y creo que tardará bastante tiempo para que nos abandone definitivamente. </p>
<p>Especialmente cuando hay muchas personas que, al momento de crear una nueva interfaz de usuario, lo que intentan es reemplazar el ratón, por ejemplo con gestos y acciones de Kinect. Estos proyectos están orientados y destinados al fracaso en un 99,99% de los casos.</p>
<p>La clave de estos casos está en la palabra “<strong><em>crear</em></strong>”. Lo que debemos hacer es dejar en paz al ratón, agradecerle los servicios prestados y comenzar a pensar cuáles son las formas más efectivas de trabajo con los nuevos sensores que poseemos.</p>
<p>Ahora la interacción entre dispositivos cada vez más móviles, superficies táctiles, detectores de gestos como Kinect, pico proyectores, etc.; hace que podamos pensar en nuevos escenarios para aplicaciones que realmente pueden ser grandiosos o desastrosos.</p>
<p>Alguno se preguntará, ¿le ha afectado el poco sueño al Bruno o qué le pasa que escribe esto?, es muy simple. Como algunos se han dado cuenta que me gusta jugar con Kinect y con este tipo de dispositivos, muchas veces me llegan preguntas del tipo</p>
<ul>
<li>¿Cómo puedo hacer para reemplazar el ratón con Kinect? </li>
<li>No se cómo hacer un doble clic con Kinect, cuando intento reemplazar al ratón.</li>
</ul>
<p>Y si bien es cierto que intento responder todo lo que me preguntan, para esas preguntas la respuesta será este post. Donde no respondo nada en concreto pero … bueno ya sabes.</p>
<p>Yo por suerte, no solo tengo la oportunidad de “jugar” con estos dispositivos sino que además son parte de mi trabajo en Avanade, con lo que puedo ver las buenas y malas experiencias en el mundo de las <a href="http://en.wikipedia.org/wiki/Natural_user_interface" target="_blank">NUI</a> (término molón para describir formas naturales de trabajo frente a dispositivos electrónicos). Muchas personas no se dan cuenta que Kinect, por ejemplo, necesita un espacio considerable para ser efectivo, o que en un dispositivo táctil pues la sensibilidad del touch no es la misma que un ratón.</p>
<p>Finalmente, un dato a tener en cuenta:</p>
<blockquote><p><strong><em>Durante el año 2008 la cantidad de dispositivos conectados a internet superó a la cantidad de personas en la tierra. Para el año 2020 se espera que haya más de 50 billones de dispositivos conectados a internet. (</em></strong><a href="http://gigaom.com/2011/07/17/the-internet-of-things-infographic/" target="_blank"><strong><em>Fuente</em></strong></a><strong><em>)</em></strong></p>
</blockquote>
<p>Esto qué significa?, que además de tener un <a href="http://elbruno.com/2012/04/03/avesome-microsoft-mustang/" target="_blank">Mustang 100% conectado a internet</a>, ahora tendremos que interactuar con muchos tipos de dispositivos nuevos y claro, nuestro amigo el mouse no estará allí para ayudarnos y tampoco es cuestión de que emulemos el funcionamiento del mouse en todas partes.</p>
<p>Así que, yo no guardaré mi mouse ya mismo, pero ya comenzaré a ver de que forma puedo trabajar en diferentes espacios sin un mouse … luego veré que dispositivo me brinda la mejor ayuda en ese escenario <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png?w=620" /></p>
<p>Por cierto</p>
<p>1. Como el Lego me ha quedado chico,&#160; espera a ver lo que estoy haciendo con mi <a href="http://xcellencecars.blogspot.com.es/2011/06/mazda-rx8.html" target="_blank">RX8</a>, un Kinect, una tableta con Windows 8, etc. <a href="http://www.youtube.com/watch?v=QRiPSlx8PxA" target="_blank">230CV</a> en manos de una porción de código C#. Mi chica está un poco asustada pero el Valentino súper feliz de poder jugar con el coche desde una tableta … <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png?w=620" /></p>
<p>.2 El ratonazo cabreado / enfadado / enojado lo saqué de <a title="http://abstract.desktopnexus.com/get/134212?t=08tt07vgrel6eo8knisme46jh34fa00c9fcba2b" href="http://abstract.desktopnexus.com/get/134212?t=08tt07vgrel6eo8knisme46jh34fa00c9fcba2b">http://abstract.desktopnexus.com/get/134212?t=08tt07vgrel6eo8knisme46jh34fa00c9fcba2b</a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/msn-microsoft/kinect/'>Kinect</a>, <a href='http://elbruno.com/category/personal/opinion/'>Opinion</a>, <a href='http://elbruno.com/category/alm/user-experience/'>User Experience</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2793/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2793&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/05/01/kinect-y-los-ratones-enfadados/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/05/wlemoticon-openmouthedsmile.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[# TFService] A couple of good news</title>
		<link>http://elbruno.com/2012/04/30/tfservice-a-couple-of-good-news/</link>
		<comments>http://elbruno.com/2012/04/30/tfservice-a-couple-of-good-news/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 21:40:25 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[EnglishPost]]></category>
		<category><![CDATA[Team Foundation Service]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2788</guid>
		<description><![CDATA[Buenas, thanks to the great Brian Harry now we can make public some of the new features incorporated the other TFS &#62; Team Foundation Service (for me is still and unfortunate choice of name). On the one hand we have an interface much more &#34;touch friendly&#34;, meaning that if you want to control the TaskBoard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2788&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>thanks to the great <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fblogs.msdn.com%2Fb%2Fbharry">Brian Harry</a> now we can make public some of the new features incorporated the other TFS &gt; Team Foundation Service (for me is still and unfortunate choice of name).</p>
<ul>
<li>On the one hand we have an interface much more &quot;touch friendly&quot;, meaning that if you want to control the TaskBoard or product BackLog from a touch device is much simpler. If like me you want to do are applications of control with Kinect, also much simplifies work.</li>
<li>Vast selection of the provider of security when only there are LiveId. One form less and much more happy people.</li>
<li>Filters in some important parts and&#8230; little more. </li>
<li>Ahh and a new look &amp; feel much more metro <img alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/04/wlemoticon-openmouthedsmile4.png?w=620" /></li>
</ul>
<p><a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fbrunocapuano.files.wordpress.com%2F2012%2F04%2Fimage26.png"><img title="image" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/04/image_thumb25.png?w=648&amp;h=466&h=466" width="648" height="466" /></a></p>
<p>Source: <a href="http://www.microsofttranslator.com/bv.aspx?from=es&amp;to=en&amp;a=http%3A%2F%2Fblogs.msdn.com%2Fb%2Fbharry%2Farchive%2F2012%2F04%2F30%2Ftfspreview-update.aspx">http://blogs.msdn.com/b/bharry/archive/2012/04/30/tfspreview-update.aspx</a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/personal/englishpost/'>EnglishPost</a>, <a href='http://elbruno.com/category/team-foundation-server/team-foundation-service/'>Team Foundation Service</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2788/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2788/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2788/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2788/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2788/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2788/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2788/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2788/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2788/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2788/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2788/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2788/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2788/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2788/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2788&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/04/30/tfservice-a-couple-of-good-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/04/wlemoticon-openmouthedsmile4.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/04/image_thumb25.png?w=648&#38;h=466" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>[#TFService] Algunas novedades de ultimo momento</title>
		<link>http://elbruno.com/2012/04/30/tfservice-algunas-novedades-de-ultimo-momento/</link>
		<comments>http://elbruno.com/2012/04/30/tfservice-algunas-novedades-de-ultimo-momento/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 21:36:49 +0000</pubDate>
		<dc:creator>elbruno</dc:creator>
				<category><![CDATA[Team Foundation Service]]></category>

		<guid isPermaLink="false">https://brunocapuano.wordpress.com/?p=2786</guid>
		<description><![CDATA[Buenas, de la mano del gran Brian Harry ya podemos hacer públicas algunas de las new features incorporadas al otro TFS &#62; Team Foundation Service (me sigue pareciendo un poco desafortunada la elección del nombre). Por un lado tenemos una interfaz mucho más “touch friendly”, es decir que si quieres controlar el TaskBoard o el [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2786&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://brunocapuano.files.wordpress.com/2012/02/image18.png"><img title="image" style="background-image:none;padding-top:0;padding-left:0;margin:0 0 3px;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png?w=464&h=164" width="464" height="164" /></a></p>
<p>Buenas,</p>
<p>de la mano del gran <a href="http://blogs.msdn.com/b/bharry" target="_blank">Brian Harry</a> ya podemos hacer públicas algunas de las new features incorporadas al otro TFS &gt; Team Foundation Service (me sigue pareciendo un poco desafortunada la elección del nombre).</p>
<ul>
<li>Por un lado tenemos una interfaz mucho más “touch friendly”, es decir que si quieres controlar el TaskBoard o el product BackLog desde un dispositivo táctil es mucho más simple. Si como yo lo que quieres hacer son aplicaciones de control con Kinect, pues también se simplifica mucho el trabajo.</li>
<li>Basta de selección del provider de seguridad cuando solo hay LiveId. Un formulario menos y mucha más gente feliz.</li>
<li>Filtros en algunas partes importantes y … poco más.</li>
<li>Ahh y un nuevo look&amp;feel mucho mas metro <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" alt="Risa" src="http://brunocapuano.files.wordpress.com/2012/04/wlemoticon-openmouthedsmile4.png?w=620" /></li>
</ul>
<p><a href="http://brunocapuano.files.wordpress.com/2012/04/image26.png"><img title="image" style="border-top:0;border-right:0;background-image:none;border-bottom:0;padding-top:0;padding-left:0;margin:0 0 3px;border-left:0;display:inline;padding-right:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/04/image_thumb25.png?w=648&h=466" width="648" height="466" /></a></p>
<p>&#160;</p>
<p>Fuente: <a title="http://blogs.msdn.com/b/bharry/archive/2012/04/30/tfspreview-update.aspx" href="http://blogs.msdn.com/b/bharry/archive/2012/04/30/tfspreview-update.aspx">http://blogs.msdn.com/b/bharry/archive/2012/04/30/tfspreview-update.aspx</a></p>
<p>Saludos @ Home</p>
<p>El Bruno</p>
<table cellspacing="0" width="110" border="0">
<tbody>
<tr>
<td valign="top" width="36"><a href="http://facebook.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image2.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="http://es.linkedin.com/in/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image3.png?w=41&h=41" width="41" height="41" /></a></td>
<td valign="top" width="36"><a href="https://twitter.com/elbruno" target="_blank"><img title="image" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="image" src="http://brunocapuano.files.wordpress.com/2012/03/image4.png?w=40&h=40" width="40" height="40" /></a></td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://elbruno.com/category/team-foundation-server/team-foundation-service/'>Team Foundation Service</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunocapuano.wordpress.com/2786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunocapuano.wordpress.com/2786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunocapuano.wordpress.com/2786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunocapuano.wordpress.com/2786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunocapuano.wordpress.com/2786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunocapuano.wordpress.com/2786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunocapuano.wordpress.com/2786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunocapuano.wordpress.com/2786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunocapuano.wordpress.com/2786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunocapuano.wordpress.com/2786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunocapuano.wordpress.com/2786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunocapuano.wordpress.com/2786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunocapuano.wordpress.com/2786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunocapuano.wordpress.com/2786/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elbruno.com&#038;blog=19872796&#038;post=2786&#038;subd=brunocapuano&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elbruno.com/2012/04/30/tfservice-algunas-novedades-de-ultimo-momento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/616fe2d29c3285b5345527b4765e910b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brunocapuano</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/02/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/04/wlemoticon-openmouthedsmile4.png" medium="image">
			<media:title type="html">Risa</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/04/image_thumb25.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brunocapuano.files.wordpress.com/2012/03/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
