<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-8796930443502419270</atom:id><lastBuildDate>Sat, 05 Oct 2024 02:06:44 +0000</lastBuildDate><category>Recursos</category><category>VB.NET</category><category>Eventos y jornadas</category><category>Otros</category><category>Visual Studio 2008</category><category>LINQ</category><category>Windows Phone</category><category>.NET Framework</category><category>ASP.NET</category><category>Sql Server</category><category>Visual Studio 2010</category><category>Ajax JavaScript</category><category>CRM 4.0</category><category>Dynamics Mobile</category><category>HTML5</category><category>Silverlight</category><title>Bizkaia .Net</title><description>La vida es como una caja de bombones, el problema es el sabor que te toca.</description><link>http://bizkaianet.blogspot.com/</link><managingEditor>noreply@blogger.com (Unknown)</managingEditor><generator>Blogger</generator><openSearch:totalResults>76</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-5259878228021509365</guid><pubDate>Tue, 04 Nov 2014 14:56:00 +0000</pubDate><atom:updated>2014-11-04T06:57:55.207-08:00</atom:updated><title>Cerrando conexiones de una base de datos SQLServer</title><description>A veces cuando restauramos o queremos hacer algúna operación de la base de datos nos dice que esta en uso y no se puede realizar, para poder hacer esto es tan sencillo como ejecutar este script &lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New; font-size: x-small;&quot;&gt;
&lt;span style=&quot;color: blue;&quot;&gt;SET&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: maroon;&quot;&gt;nocount&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;ON&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;DECLARE&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@DBName&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: black;&quot;&gt;&lt;i&gt;VARCHAR&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;50&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;DECLARE&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@spidstr&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: black;&quot;&gt;&lt;i&gt;VARCHAR&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;8000&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;DECLARE&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@ConnKilled&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: black;&quot;&gt;&lt;i&gt;SMALLINT&lt;/i&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;SET&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@ConnKilled&lt;/span&gt;&lt;span style=&quot;color: silver;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;0&lt;/span&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;SET&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@spidstr&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;=&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;&#39;&#39;&lt;/span&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;SET&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@DBName&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;=&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;&#39;nombre de la base de datos&#39;&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;IF&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: magenta;&quot;&gt;&lt;i&gt;Db_id&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #8000ff;&quot;&gt;@DBName&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;&amp;lt;&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: black;&quot;&gt;4&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;BEGIN&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;PRINT&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;&#39;Connections&amp;nbsp;to&amp;nbsp;system&amp;nbsp;databases&amp;nbsp;cannot&amp;nbsp;be&amp;nbsp;killed&#39;&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;RETURN&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;END&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;SELECT&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@spidstr&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;=&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: magenta;&quot;&gt;&lt;i&gt;COALESCE&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #8000ff;&quot;&gt;@spidstr&lt;/span&gt;&lt;span style=&quot;color: silver;&quot;&gt;,&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;&#39;,&#39;&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;+&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;&#39;kill&amp;nbsp;&#39;&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;+&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: magenta;&quot;&gt;&lt;i&gt;CONVERT&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;i&gt;VARCHAR&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: silver;&quot;&gt;,&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: maroon;&quot;&gt;spid&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;+&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;&#39;;&amp;nbsp;&#39;&lt;/span&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;FROM&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: maroon;&quot;&gt;master&lt;/span&gt;&lt;span style=&quot;color: silver;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: silver;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;sysprocesses&lt;/span&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;WHERE&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: maroon;&quot;&gt;dbid&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;=&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: magenta;&quot;&gt;&lt;i&gt;Db_id&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #8000ff;&quot;&gt;@DBName&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;IF&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: magenta;&quot;&gt;&lt;i&gt;Len&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #8000ff;&quot;&gt;@spidstr&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;&amp;gt;&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: black;&quot;&gt;0&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;BEGIN&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;EXEC&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #8000ff;&quot;&gt;@spidstr&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;SELECT&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: #8000ff;&quot;&gt;@ConnKilled&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;=&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: magenta;&quot;&gt;&lt;i&gt;Count&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;FROM&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: maroon;&quot;&gt;master&lt;/span&gt;&lt;span style=&quot;color: silver;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: silver;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;sysprocesses&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;WHERE&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: maroon;&quot;&gt;dbid&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: silver;&quot;&gt;=&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: magenta;&quot;&gt;&lt;i&gt;Db_id&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #8000ff;&quot;&gt;@DBName&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;)&lt;/span&gt;
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;END&lt;/span&gt;&amp;nbsp;
&lt;/span&gt;



</description><link>http://bizkaianet.blogspot.com/2014/11/cerrando-conexiones-de-una-base-de.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-7448241883003106128</guid><pubDate>Sat, 13 Oct 2012 12:06:00 +0000</pubDate><atom:updated>2012-10-14T16:33:17.477-07:00</atom:updated><title>Social Media </title><description>&lt;br /&gt;
Hoy me&amp;nbsp;gustaría&amp;nbsp;enseñaros una&amp;nbsp;gráfica&amp;nbsp;que muestra el uso de los TOP 7 sitios web de Social Media en este momento a nivel mundial, y es que las redes sociales se&amp;nbsp;están&amp;nbsp;convirtiendo en una herramienta tan potente como peligrosa. &lt;br /&gt;
&lt;br /&gt;
Y es que, sitios como Facebook, te convierten en un protagonista de una vida paralela a la real, en la que la timidez pasa a un segundo plano y tu eres el actor directo&amp;nbsp;de lo que ocurre a tu alrededor, actos, los cuales, gestionas con total libertad y sin casi control alguno, ocultando muchas veces todos los defectos y solo mostrando al mundo lo que quieres que vean.&lt;br /&gt;
&lt;br /&gt;
Bien es cierto que otras redes como LinkedIn te ayuda a contactar con otros profesionales, buscar colaboración, trabajo, asesoramiento, negocio...&amp;nbsp;dándote&amp;nbsp;una capacidad impensable de otra forma, y es que ya no solo tienes el CV si no grupos y foros a los que poder asociarte si son de tu&amp;nbsp;interés.&lt;br /&gt;
&lt;br /&gt;
La comida está en la mesa y tú eliges los ingredientes!&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhA1k6Q2Hy1m5n1iURqN7vJkX1wRgBnljCYZupTDS0oAiQetVrKts6o3tsEQtJdF2F5YUQ15695gJoALHqzALNuKcjo06FnUHcm-Flj5ZZy-hfN5alHHaKDqs5vY2rDmOCspxWeYoAXHGY/s1600/StatCounter-social_media-ww-monthly-201207-201209-bar.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;257&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhA1k6Q2Hy1m5n1iURqN7vJkX1wRgBnljCYZupTDS0oAiQetVrKts6o3tsEQtJdF2F5YUQ15695gJoALHqzALNuKcjo06FnUHcm-Flj5ZZy-hfN5alHHaKDqs5vY2rDmOCspxWeYoAXHGY/s400/StatCounter-social_media-ww-monthly-201207-201209-bar.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Es apabullante el uso de Facebook como herramienta social y &amp;nbsp;no dejando lugar a dudas, aunque la&amp;nbsp;estadística&amp;nbsp;esta basada solo en los&amp;nbsp;últimos&amp;nbsp;tres meses, se puede extender perfectamente con el mismo resultado a cualquier fecha. &lt;br /&gt;
&lt;br /&gt;
Viendo los resultados con&amp;nbsp;números&amp;nbsp;se observa claramente la diferencia del uso de Facebook, destacar que &quot;nuestro&quot; tuenti aparece en la lista con un 0,03% en el mercado mundial y que redes como Google + tienen que trabajar mucho si quieren acceder a esta lista. Otros como Hi5 con mucha más vida en Internet (2003) no acaban de despegar.&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse: collapse; width: 219px;&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;mso-width-alt: 4425; mso-width-source: userset; width: 91pt;&quot; width=&quot;121&quot;&gt;&lt;/col&gt;&lt;col style=&quot;mso-width-alt: 3584; mso-width-source: userset; width: 74pt;&quot; width=&quot;98&quot;&gt;&lt;/col&gt;&lt;/colgroup&gt;&lt;tbody&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;&lt;td height=&quot;20&quot; style=&quot;height: 15.0pt; width: 91pt;&quot; width=&quot;121&quot;&gt;&lt;br /&gt;&lt;/td&gt;
  &lt;td style=&quot;width: 74pt;&quot; width=&quot;98&quot;&gt;&lt;b&gt;&lt;span style=&quot;background-color: white; color: white;&quot;&gt;12&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;&lt;span style=&quot;color: blue; font-size: large;&quot;&gt;&lt;b&gt;Facebook&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;&lt;span style=&quot;color: blue; font-size: large;&quot;&gt;&lt;b&gt;61.45 %&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;&lt;b&gt;Pinterest&lt;/b&gt;&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;&lt;b&gt;9.50 %&lt;/b&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;&lt;b&gt;YouTube&lt;/b&gt;&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;&lt;b&gt;9.17&lt;/b&gt;&lt;b&gt;&amp;nbsp;%&lt;/b&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;&lt;b&gt;StumbleUpon&lt;/b&gt;&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;&lt;b&gt;8.85&lt;/b&gt;&lt;b&gt;&amp;nbsp;%&lt;/b&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;Twitter&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;5.84 %&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;reddit&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;3.71&amp;nbsp;%&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;VKontakte&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;0.41&amp;nbsp;%&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;LinkedIn&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;0.33&amp;nbsp;%&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;,,,,&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;&lt;b&gt;Tuenti&lt;/b&gt;&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;&lt;b&gt;0.03&lt;/b&gt;&lt;b&gt;&amp;nbsp;%&lt;/b&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;….&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;Hi5&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;0&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;
  &lt;td height=&quot;20&quot; style=&quot;height: 15.0pt;&quot;&gt;Google+&lt;/td&gt;
  &lt;td class=&quot;xl65&quot;&gt;0&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Referencias&lt;/b&gt;:&amp;nbsp;&lt;a href=&quot;http://gs.statcounter.com/#social_media-ww-monthly-201207-201209-bar&quot;&gt;StatCounter&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Saludos,&lt;br /&gt;
&lt;br /&gt;</description><link>http://bizkaianet.blogspot.com/2012/10/social-media-en-internet.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhA1k6Q2Hy1m5n1iURqN7vJkX1wRgBnljCYZupTDS0oAiQetVrKts6o3tsEQtJdF2F5YUQ15695gJoALHqzALNuKcjo06FnUHcm-Flj5ZZy-hfN5alHHaKDqs5vY2rDmOCspxWeYoAXHGY/s72-c/StatCounter-social_media-ww-monthly-201207-201209-bar.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-7796187527325938620</guid><pubDate>Fri, 12 Oct 2012 17:26:00 +0000</pubDate><atom:updated>2012-10-13T05:38:23.472-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Sql Server</category><title>CHAR NCHAR VARCHAR NVARCHAR</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Siempre&amp;nbsp;había&amp;nbsp;leído&amp;nbsp;o escuchado a otros hablar sobre las diferencias entre estos tipos de datos en SQLServer, y aunque me he guiado siempre de esto para diseñar las tablas nunca sabia realmente lo que me estaba ahorrando. Pues bien, hoy he sacado un poco de tiempo para realizar, por fin, mis propias pruebas y ver los resultados en primera fila.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Tengo que decir que no me he llevado ninguna sorpresa, por supuesto, pero si el asombro de ver lo que se puede conseguir con unas buenas practicas de diseño de base de datos, y esto es solo un granito de arena.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;1º Prueba: Tamaño de almacenamiento entre un Char y un nChar.&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
La prueba parte de crear dos bases de datos&amp;nbsp;idénticas, pero con distinto tipo de dato:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2_dsK6wA4iu3RFv80c2C3SZRz0RridqNZvifsq90-hrZNXRkGtXIyBkcJ9AL-5REwj9tWli7cNPQNrJDlpGn8_Wb3DKRsu40XUWHiwoOPDzX0Fm_CWkzGGvgv1vErrAX1nZFREKwpRKE/s1600/bbdds.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;148&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2_dsK6wA4iu3RFv80c2C3SZRz0RridqNZvifsq90-hrZNXRkGtXIyBkcJ9AL-5REwj9tWli7cNPQNrJDlpGn8_Wb3DKRsu40XUWHiwoOPDzX0Fm_CWkzGGvgv1vErrAX1nZFREKwpRKE/s400/bbdds.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Como se puede comprobar son exactas&amp;nbsp;exceptuando&amp;nbsp;el tipo de dato, las dos bases de datos pesan&amp;nbsp;exactamente&amp;nbsp;en su fichero *.mdf &amp;nbsp;3.072 KB.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Después&amp;nbsp;de esto con una sencilla instrucción T-SQL he insertado dos millones de registros en cada una de las tablas con el mismo valor.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;declare &lt;/span&gt;@numero &lt;span style=&quot;color: blue;&quot;&gt;int&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;set &lt;/span&gt;@numero = 0&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;while &lt;/span&gt;(@numero &amp;lt; 2000000)&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;color: blue; font-size: xx-small;&quot;&gt;begin&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;INSERT INTO&lt;/span&gt; pruebasRendimientoCHAR.dbo.[tablachar]&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;([campo])&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;VALUES&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&#39;&lt;span style=&quot;color: red;&quot;&gt;1000000000&lt;/span&gt;&#39;)&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;INSERT INTO&lt;/span&gt; [tablanchar]&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;([campo])&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;VALUES&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&#39;&lt;span style=&quot;color: red;&quot;&gt;1000000000&lt;/span&gt;&#39;)&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: xx-small;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;set &lt;/span&gt;@numero = @numero + 1;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;color: blue; font-size: xx-small;&quot;&gt;end&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;color: blue; font-size: xx-small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Una vez insertadas compruebo el tamaño de ambas bases de datos y la que tiene&lt;b&gt; el campo nChar ocupa 22 megas más que la del campo Char&lt;/b&gt;.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEifeN7bOqtAeNVcf65_U6uqcXSWvM3sRPCf663_-r0NkTM_1wD9HrXp7re7Q0wLeoK71HsqFzD6ZfRGj0jDRVGXDjtk-pNe6XtUi7rFu7H1w2Qq94O4WHLCW0JxX0ZkzbmYuyTADt6GRxU/s1600/tamanios.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;43&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEifeN7bOqtAeNVcf65_U6uqcXSWvM3sRPCf663_-r0NkTM_1wD9HrXp7re7Q0wLeoK71HsqFzD6ZfRGj0jDRVGXDjtk-pNe6XtUi7rFu7H1w2Qq94O4WHLCW0JxX0ZkzbmYuyTADt6GRxU/s320/tamanios.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Efectivamente haciendo una&amp;nbsp;rápida&amp;nbsp;regla de tres ocupan 10 Bytes más por registro y campo, así que esto lo escalas a una base de datos con mucha mas complejidad e indudablemente la necesidad de disco será notoria entre ambos tipos.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b style=&quot;text-align: justify;&quot;&gt;2º Prueba:&amp;nbsp;Búsquedas&amp;nbsp;entre un Char y un nChar.&lt;/b&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Hilemos fino, respecto a la velocidad de&amp;nbsp;búsqueda&amp;nbsp;sobre esos dos millones de registros, he añadido un valor &#39;2000000000&#39; en ambas tablas y he lanzado un par de consultas:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Una&amp;nbsp;búsqueda&amp;nbsp;con el operador igual (=) :&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdSro0XbS45LT3wUZGRyiG86FLNKcPvHijDLQLVnC3hEYoLTeho4_Gsm9I0DU5YKIcoO7SjfJI6G1bLAnP7Jb3GnSSxGckckkPsJXXiTY7Jf4IwvG5rdhKc0VERaLeZ1S_Z_X800gnMz8/s1600/busqueda.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdSro0XbS45LT3wUZGRyiG86FLNKcPvHijDLQLVnC3hEYoLTeho4_Gsm9I0DU5YKIcoO7SjfJI6G1bLAnP7Jb3GnSSxGckckkPsJXXiTY7Jf4IwvG5rdhKc0VERaLeZ1S_Z_X800gnMz8/s1600/busqueda.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Por unas&amp;nbsp;milésimas&amp;nbsp;de segundo es mas&amp;nbsp;rápida&amp;nbsp;la&amp;nbsp;búsqueda&amp;nbsp;sobre el dato unicode, notandose en el uso de CPU, aunque esto cambia, considerablemente, cuando el operador que utilizamos es el &lt;b&gt;like:&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitBTEvSXtNkEybA9bmy43oh8Fq8Z-Jy-gNA_lRXuNtznD1zdVs6eR8K4KxtrZl_nvivjQuaZX27uTvcCN8wSY2FRNze_GxIlCD5vF4d-AXRNbG32WAI-eRHnHgiYpm8a-2i4CA4Wy-cSk/s1600/busqueda2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitBTEvSXtNkEybA9bmy43oh8Fq8Z-Jy-gNA_lRXuNtznD1zdVs6eR8K4KxtrZl_nvivjQuaZX27uTvcCN8wSY2FRNze_GxIlCD5vF4d-AXRNbG32WAI-eRHnHgiYpm8a-2i4CA4Wy-cSk/s1600/busqueda2.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Como observamos en la imagen, no solo se da la vuelta a la tortilla, si no que la diferencia de tiempo en la&amp;nbsp;búsqueda&amp;nbsp;del dato unicode esta cerca del doble, por no hablar del uso de CPU, otro dato a tener en cuenta.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
El operador &lt;b&gt;in &lt;/b&gt;no tienen apenas diferencia entre ambos datos.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b style=&quot;text-align: justify;&quot;&gt;3º Prueba: Tamaño&amp;nbsp;&lt;/b&gt;&lt;b style=&quot;text-align: justify;&quot;&gt;de almacenamiento&lt;/b&gt;&lt;b style=&quot;text-align: justify;&quot;&gt;&amp;nbsp;y velocidad entre un Char y un VarChar.&lt;/b&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Se han creado dos bases de datos iguales, pero al igual que en las pruebas anteriores, diferenciando el tipo de dato. Se han realizado cargas diferenciadas:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
- &lt;b&gt;Rellenando todo el espacio en ambos campos&lt;/b&gt; (resultados con medio&amp;nbsp;millón&amp;nbsp;de registros):&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmU3lWtsOKfinUpYZjyOH2uAWTK8aapZcrOQ86iyvkKLJCx0c5vH75LLxgKJbKM97n6Ga4k5jdC3XpkyzVY4O_cLNslJh48m6unim6uNBpvO71eC13s471C6os7v1r5Oi7gtxvXBIvS20/s1600/varchar.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmU3lWtsOKfinUpYZjyOH2uAWTK8aapZcrOQ86iyvkKLJCx0c5vH75LLxgKJbKM97n6Ga4k5jdC3XpkyzVY4O_cLNslJh48m6unim6uNBpvO71eC13s471C6os7v1r5Oi7gtxvXBIvS20/s1600/varchar.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
La base de datos con el tipo de dato Varchar ocupa 5 megas más y eso es porque ocupa la longitud real del dato + 2 byts extras.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
- Rendimiento en las select:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3ZlhspBdEdWoxBY_HK6wljy_pkjHV5ilaNjbrwdAgc1kEGdkowHFvoFiKgRnWzcFtrPaZ9n4hnBJZpYF2JcL5gK2u7U6WMUK0XEMbkC3HoyfQCi-WrIyZ8a6777cahTI75zH3HpgtFjE/s1600/tiempos.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3ZlhspBdEdWoxBY_HK6wljy_pkjHV5ilaNjbrwdAgc1kEGdkowHFvoFiKgRnWzcFtrPaZ9n4hnBJZpYF2JcL5gK2u7U6WMUK0XEMbkC3HoyfQCi-WrIyZ8a6777cahTI75zH3HpgtFjE/s1600/tiempos.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Sobre las&amp;nbsp;búsquedas&amp;nbsp;tenemos que decir que con el operador igual (=) es parecida la&amp;nbsp;búsqueda&amp;nbsp;pero con el operador like, el tipo de dato varchar es sensiblemente más lento y por consecuencia utiliza mucha mas CPU, esto se debe a que el motor&amp;nbsp;también&amp;nbsp;tiene que validar el tamaño del campo varchar antes de compararlo.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;-&amp;nbsp;Rellenando&amp;nbsp;el campo Varchar con 3 caracteres &lt;/b&gt;(resultados con medio&amp;nbsp;millón&amp;nbsp;de registros)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOrvCteZ52lIpNfE0a7Ju6KmrHZXIfrV2QieJ04NHmAa4geNCwkG3IuB5yG0swo5i_wIE4bwaherxfq15TRD3glzUr0rrUNCTJTgmJAeKLSCbeExfG8qo9FLsDe_SI0zTk_P6AuyeQdPo/s1600/tamannio.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOrvCteZ52lIpNfE0a7Ju6KmrHZXIfrV2QieJ04NHmAa4geNCwkG3IuB5yG0swo5i_wIE4bwaherxfq15TRD3glzUr0rrUNCTJTgmJAeKLSCbeExfG8qo9FLsDe_SI0zTk_P6AuyeQdPo/s1600/tamannio.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
Se puede comprobar que el tamaño ha descendido hasta por debajo del tamaño fijo que ocupa el char, pero hay que tener en cuenta que para esta prueba solo he insertado tres caracteres.&lt;br /&gt;
&lt;br /&gt;
El resultado en las&amp;nbsp;búsquedas&amp;nbsp;con los operadores es muy similar que en el caso anterior.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Espero que estas pruebas os ayuden a elegir un tipo de dato u otro en vuestras bases de datos.&lt;br /&gt;
&lt;br /&gt;
Un saludo a todos!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
</description><link>http://bizkaianet.blogspot.com/2012/10/char-nchar-varchar-nvarchar.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2_dsK6wA4iu3RFv80c2C3SZRz0RridqNZvifsq90-hrZNXRkGtXIyBkcJ9AL-5REwj9tWli7cNPQNrJDlpGn8_Wb3DKRsu40XUWHiwoOPDzX0Fm_CWkzGGvgv1vErrAX1nZFREKwpRKE/s72-c/bbdds.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-3613095755187223877</guid><pubDate>Mon, 26 Mar 2012 10:55:00 +0000</pubDate><atom:updated>2012-03-26T03:55:01.238-07:00</atom:updated><title>Codemotion.... -1</title><description>Muy a mi pesar tengo que decir que el evento fue un desastre y me fui descontento del mismo, creo que necesitan una mayor planificación y organización.&lt;br /&gt;
&lt;br /&gt;
Entre los puntos negativos y realmente que me molestaron, fue las instalaciones, muy pero MUY pequeñas para la dimensión que&amp;nbsp;había&amp;nbsp;adquirido, y es que&amp;nbsp;había&amp;nbsp;muchísima&amp;nbsp;gente en el evento y las salas de las charlas eran&amp;nbsp;realmente&amp;nbsp;pequeñas, la gente de pie, en las paredes, sentados en el suelo, entrando y saliendo de la sala sin ningún tipo de control... en fin.. un desastre.. yo me tuve que quedar fuera de una de las que&amp;nbsp;quería&amp;nbsp;ver y es que no se podía ni entrar ...&lt;br /&gt;
&lt;br /&gt;
Otra circunstancia negativa es que no se oía nada a los&amp;nbsp;ponentes&amp;nbsp;y es que alguno no tenia ni&amp;nbsp;micrófono... se oía mucho mas a la gente de fuera de la sala.&lt;br /&gt;
&lt;br /&gt;
Esto de forma general, vi que muchas charlas (en las que yo estuve) fueron a la carrera, es decir meter contenido de horas en 45 minutos, y es que no es mejor dar una idea?... mencionar que de las mejores charlas por la claridad y la programación fue la de WebRTC, perfecta.&lt;br /&gt;
&lt;br /&gt;
Deberían&amp;nbsp;haber limitado la entrada, ya que&amp;nbsp;cuando pagas la entrada y te desplazas 350&amp;nbsp;kilómetros&amp;nbsp;en coche, no puedes entrar en las charlas porque son&amp;nbsp;pequeñísimas, no oyes a los ponentes, no puedes caminar por los pasillos y pasas del&amp;nbsp;café&amp;nbsp;porque se forma mas cola que para pillar una entrada contra el Manchester molesta bastante.&lt;br /&gt;
&lt;br /&gt;
Espero que la&amp;nbsp;próxima&amp;nbsp;se aprenda de los errores y se organice mucho mejor.&lt;br /&gt;
&lt;br /&gt;
Saludos.&lt;br /&gt;
&lt;br /&gt;</description><link>http://bizkaianet.blogspot.com/2012/03/codemotion-1.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-6261084992187708869</guid><pubDate>Thu, 22 Mar 2012 20:49:00 +0000</pubDate><atom:updated>2012-03-22T14:07:57.516-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Eventos y jornadas</category><title>Codemotion</title><description>&lt;div style=&quot;font-family: Georgia, serif; font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; text-align: center; &quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwoOYOV6ZdUsmTY9a_fmAH_XoiXirGyLUsNiH7iPgg1B-0T8DGwhHfVXggVwihvl8K-C34hTg7Gg3BXBIYystyYJoFJkDtDuouZYAOLIKUt99vVfvtpdBwM24ejmyewu9IXtfl79QF-1M/s1600/codemotion.PNG&quot; style=&quot;font-size: 100%; &quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;width: 319px; height: 114px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwoOYOV6ZdUsmTY9a_fmAH_XoiXirGyLUsNiH7iPgg1B-0T8DGwhHfVXggVwihvl8K-C34hTg7Gg3BXBIYystyYJoFJkDtDuouZYAOLIKUt99vVfvtpdBwM24ejmyewu9IXtfl79QF-1M/s320/codemotion.PNG&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5722826970181936242&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;font-size: 100%; font-style: normal; font-variant: normal; line-height: normal; &quot;&gt;&lt;span&gt;&lt;span style=&quot;font-weight: normal; &quot;&gt;Este fin de semana bajaré a Madrid a un evento que se da por primera vez en España, &lt;/span&gt;&lt;b&gt;Codemotion&lt;/b&gt;, veremos que tal esta. De momento se presenta muy interesante con ponentes tan conocidos como Jeray o Luis Guerrero.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt;Un gran popurrí de charlas de lo más &lt;/span&gt;variopinto&lt;span style=&quot;font-size: 100%;&quot;&gt; durante la jornada del s&lt;/span&gt;ábado&lt;span style=&quot;font-size: 100%;&quot;&gt;, hará de este día un continuo movimiento entre las diferentes  plataformas y &lt;/span&gt;tecnologías que nos darán una idea del momento en el que nos encontramos.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt;Pasaros por la web para mirar la agenda y animaros a venir: &lt;a href=&quot;http://www.codemotion.es/&quot;&gt;Codemotion&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; &quot;&gt;&lt;span&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; &quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; &quot;&gt;&lt;span&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; &quot;&gt;&lt;span&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2012/03/codemotion.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwoOYOV6ZdUsmTY9a_fmAH_XoiXirGyLUsNiH7iPgg1B-0T8DGwhHfVXggVwihvl8K-C34hTg7Gg3BXBIYystyYJoFJkDtDuouZYAOLIKUt99vVfvtpdBwM24ejmyewu9IXtfl79QF-1M/s72-c/codemotion.PNG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-8724940147891329918</guid><pubDate>Wed, 14 Mar 2012 19:30:00 +0000</pubDate><atom:updated>2012-03-14T12:42:31.386-07:00</atom:updated><title>Visual Studio 11 Beta</title><description>&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; text-align: center; &quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjz2mPc-_qy0iyN9r4uQ5-KbVpPCQyoa899tQY_t2RVY5poQgdMUrXajYti__E5SbjZuI0K2e5TTH6-UiWRWlosTcOz3vkMznlFwBiy1YYk6jX-E3V-VZRxwrrRNPgm8evPRNXmMm2Y7SI/s1600/vsBeta11.png&quot;&gt;&lt;span &gt;&lt;img style=&quot;cursor:pointer; cursor:hand;width: 384px; height: 80px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjz2mPc-_qy0iyN9r4uQ5-KbVpPCQyoa899tQY_t2RVY5poQgdMUrXajYti__E5SbjZuI0K2e5TTH6-UiWRWlosTcOz3vkMznlFwBiy1YYk6jX-E3V-VZRxwrrRNPgm8evPRNXmMm2Y7SI/s400/vsBeta11.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5719837824227602354&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span &gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span &gt;&lt;span&gt;Esta vez os dejare los enlaces para descargaros las diferentes versiones de Visual Studio 11, bajar la que &lt;/span&gt;queráis&lt;span&gt; y empezar a darle caña:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span &gt;&lt;span&gt;&lt;span&gt;Entre las novedades que tenemos nos encontraremos con  todo lo necesario para desarrollar aplicaciones con estilo Metro, si &lt;/span&gt;queréis&lt;span&gt; entrar en profundidad pinchar &lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/bb386063(v=vs.110).aspx#BKMK_New&quot; style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;aquí&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span &gt;Descargas:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;a href=&quot;http://www.microsoft.com/visualstudio/11/en-us/downloads#ultimate&quot;&gt;&lt;span &gt;Visual Studio 11 Ultimate Beta&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;a href=&quot;http://www.microsoft.com/visualstudio/11/en-us/downloads#premium&quot;&gt;&lt;span &gt;Visual Studio 11 Premium Beta&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;a href=&quot;http://www.microsoft.com/visualstudio/11/en-us/downloads#professional&quot;&gt;&lt;span &gt;Visual Studio 11 Professional Beta&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;a href=&quot;http://www.microsoft.com/visualstudio/11/en-us/downloads#testpro&quot;&gt;&lt;span &gt;Visual Studio 11 Test Professional Beta&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span &gt;&lt;span&gt;Espero que os &lt;/span&gt;animéis&lt;span&gt; a probarlo!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2012/03/visual-studio-beta-11.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjz2mPc-_qy0iyN9r4uQ5-KbVpPCQyoa899tQY_t2RVY5poQgdMUrXajYti__E5SbjZuI0K2e5TTH6-UiWRWlosTcOz3vkMznlFwBiy1YYk6jX-E3V-VZRxwrrRNPgm8evPRNXmMm2Y7SI/s72-c/vsBeta11.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-9217753692474775320</guid><pubDate>Mon, 12 Mar 2012 20:47:00 +0000</pubDate><atom:updated>2012-03-12T14:02:56.891-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Visual Studio 2010</category><title>NuGet Package Manager</title><description>&lt;div style=&quot;font-family: Georgia, serif; font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; text-align: center; &quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhv0wJ-K4kIhxfsS4lui944NmDhjEE-_hLKsIVX3ZiLVveAXuSbitUrSVz7O9XSHpz43J3_HnMnmB6VAyYAxPBUEvVib9Rp-uKreRE1fPzfx2dqGF6Hl6GrWj9_80JEY3oQt0g_WH7Vt-s/s1600/nuget2.png&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;width: 236px; height: 79px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhv0wJ-K4kIhxfsS4lui944NmDhjEE-_hLKsIVX3ZiLVveAXuSbitUrSVz7O9XSHpz43J3_HnMnmB6VAyYAxPBUEvVib9Rp-uKreRE1fPzfx2dqGF6Hl6GrWj9_80JEY3oQt0g_WH7Vt-s/s400/nuget2.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5719118101608946210&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; text-align: center; &quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span  &gt;&lt;span&gt;Hoy quiero mostraros  este plugin de Visual Studio que os facilitará la vida a la hora de desarrollar proyectos en el que &lt;/span&gt;queráis&lt;span&gt; utilizar, por ejemplo, AjaxControlToolkit,  jQuery, EntityFramework y un largo etc.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span  &gt;&lt;span&gt;Lo que te permite es &lt;/span&gt;básicamente&lt;span&gt;&lt;span&gt; instalar, des instalar, actualizar y configurar paquetes desde tu Visual Studio, os lo recomiendo si no &lt;/span&gt;queréis&lt;span&gt; complicaros la vida &lt;/span&gt;instalando&lt;span&gt; vosotros mismos todo lo que pueda necesitar la &lt;/span&gt;tecnología&lt;span&gt; que querais utilizar.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span&gt;&lt;span&gt;&lt;span  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span&gt;&lt;span  &gt;Podéis&lt;span&gt; descargaros el plugin desde aquí: &lt;a href=&quot;http://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c&quot;&gt;Nagec&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span&gt;&lt;span&gt;&lt;span  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span&gt;&lt;span  &gt;Guía&lt;span&gt; de instalación y uso aquí: &lt;a href=&quot;http://docs.nuget.org/&quot;&gt;Nagec Docs&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;span  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span  &gt;&lt;span&gt;Sencillo y &lt;/span&gt;rápido&lt;span&gt; 100% &lt;/span&gt;recomendado&lt;span&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Georgia, serif; font-size: 100%; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; &quot;&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2012/03/nuget-package-manager.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhv0wJ-K4kIhxfsS4lui944NmDhjEE-_hLKsIVX3ZiLVveAXuSbitUrSVz7O9XSHpz43J3_HnMnmB6VAyYAxPBUEvVib9Rp-uKreRE1fPzfx2dqGF6Hl6GrWj9_80JEY3oQt0g_WH7Vt-s/s72-c/nuget2.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-2267812807730504283</guid><pubDate>Tue, 15 Nov 2011 21:48:00 +0000</pubDate><atom:updated>2012-03-12T14:03:07.341-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Windows Phone</category><title>POR FIN!!</title><description>Por fin logre desbloquear mi HTC Mozart, después de más de una semana de espera y numerosos errores en las versiones 0.2.0.0, 0.3.0.0, 0.4.0.0, reportes al equipo de chevronwp7, siguiendo sus tweets, mirar las actualizaciones en su blog &lt;a href=&quot;http://www.chevronwp7.com/&quot;&gt;http://www.chevronwp7.com/&lt;/a&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Finalmente la versión 0.5.0.0 ha funcionado.&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;center&quot;&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNkJrvGLEpA-b7B_Q0OcA5k3irI_e-6OIfXqQ7Vu7hkfd-E9a-vv6YYp3r2rvtmALA0N3P8AIAhEUXKABRqS3dAKhV-foEH2jgoNWgHaklBI5gjvzQTEArlgNAhiDv7gikQv5fH_JSGjA/s1600/Screenshot_1.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;br /&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNkJrvGLEpA-b7B_Q0OcA5k3irI_e-6OIfXqQ7Vu7hkfd-E9a-vv6YYp3r2rvtmALA0N3P8AIAhEUXKABRqS3dAKhV-foEH2jgoNWgHaklBI5gjvzQTEArlgNAhiDv7gikQv5fH_JSGjA/s320/Screenshot_1.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5675343805302978034&quot; style=&quot;cursor: pointer; width: 320px; height: 228px; &quot; /&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2011/11/por-fin.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNkJrvGLEpA-b7B_Q0OcA5k3irI_e-6OIfXqQ7Vu7hkfd-E9a-vv6YYp3r2rvtmALA0N3P8AIAhEUXKABRqS3dAKhV-foEH2jgoNWgHaklBI5gjvzQTEArlgNAhiDv7gikQv5fH_JSGjA/s72-c/Screenshot_1.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-97607842549966920</guid><pubDate>Sun, 06 Nov 2011 12:52:00 +0000</pubDate><atom:updated>2011-11-06T06:47:39.510-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Windows Phone</category><title>Chevron WP7</title><description>&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6XkSlB4GjUvE_vqjbASkVxrPzn_LWPevHnQDHrdumnqLWMCBzErMN1lmtYQNO6_g45mriaxo5IbCBD6I6VPmPzruVA1dH0JwniE1ICyBtxTv2Z-CYuHzozDowcRgrPmOiEmcQk8jy59s/s1600/chevronLogo.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img style=&quot;width: 320px; height: 55px; cursor: pointer;&quot; id=&quot;BLOGGER_PHOTO_ID_5671870178130858050&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6XkSlB4GjUvE_vqjbASkVxrPzn_LWPevHnQDHrdumnqLWMCBzErMN1lmtYQNO6_g45mriaxo5IbCBD6I6VPmPzruVA1dH0JwniE1ICyBtxTv2Z-CYuHzozDowcRgrPmOiEmcQk8jy59s/s320/chevronLogo.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6XkSlB4GjUvE_vqjbASkVxrPzn_LWPevHnQDHrdumnqLWMCBzErMN1lmtYQNO6_g45mriaxo5IbCBD6I6VPmPzruVA1dH0JwniE1ICyBtxTv2Z-CYuHzozDowcRgrPmOiEmcQk8jy59s/s1600/chevronLogo.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;div align=&quot;left&quot;&gt; &lt;/div&gt;&lt;/a&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;&lt;div&gt;Llevamos ya bastante tiempo esperando por ChevronWP7, la herramienta que desbloquea un dispositivo con Windows Phone 7, pues bien, su liberación fue este viernes 4 de noviembre. Inmediatamente después de su liberación, y sin perder un minuto me registre y di mis datos para pagar los 9 dólares que cuesta el token para desbloquear mi WP7, pero por desgracia, ha sido una liberación demasiado precipitada.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Después de la solución de separar la aplicación en 32 y 64 bits, en dos botones de descarga, se unió el problema de ejecución:&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;em&gt;&lt;span&gt;&lt;b&gt;&quot;No se puede animar la propiedad &#39;HorizontalScrollOffset&#39; en &#39;ChevronLabs.Unlock.controls.AnimatableListBox&#39; mediante &#39;System.Windows.Media.Animation.DoubleAnimation&#39;.&quot;&lt;/b&gt;&lt;/span&gt;&lt;/em&gt;&lt;/div&gt;&lt;div&gt;&lt;em&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;/span&gt; &lt;/div&gt;&lt;div&gt;Ayer mismo les notifique el problema y esta mañana lo primero que he hecho es intentar bajar la nueva versión, pero desgraciadamente, el sitio esta en mantenimiento, lo que me hace pensar que han debido de tener una noche movidita de trabajo...  &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbGh3SBNY680N79m6EDrOuKD2LaU-YHP_Sm4AVgZAbuxkqhsp0jNRwTly2AVBVA9SxFlwK6pZw3lCHG81O9CpgipPElS6CmR0fYe85HbZn3P_MJUCaUjv5I4y51QcCxczqc98tj2PCR7o/s1600/chevron.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img style=&quot;width: 320px; height: 148px; cursor: pointer;&quot; id=&quot;BLOGGER_PHOTO_ID_5671868490216118162&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbGh3SBNY680N79m6EDrOuKD2LaU-YHP_Sm4AVgZAbuxkqhsp0jNRwTly2AVBVA9SxFlwK6pZw3lCHG81O9CpgipPElS6CmR0fYe85HbZn3P_MJUCaUjv5I4y51QcCxczqc98tj2PCR7o/s320/chevron.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Tener en cuenta que esta herramienta no corre en un Windows XP y deberás tener instaladas las herramientas SDK de Windows Phone 7.1&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://www.microsoft.com/download/en/details.aspx?id=27570&quot;&gt;http://www.microsoft.com/download/en/details.aspx?id=27570&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;A ver si con un poco de suerte hoy lo tenemos operativo y puedo desbloquear mi WP7 sin problemas. Os seguiré informando.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2011/11/chevron-wp7.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6XkSlB4GjUvE_vqjbASkVxrPzn_LWPevHnQDHrdumnqLWMCBzErMN1lmtYQNO6_g45mriaxo5IbCBD6I6VPmPzruVA1dH0JwniE1ICyBtxTv2Z-CYuHzozDowcRgrPmOiEmcQk8jy59s/s72-c/chevronLogo.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-3976191428057946030</guid><pubDate>Mon, 01 Aug 2011 18:23:00 +0000</pubDate><atom:updated>2011-08-01T12:09:48.036-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Windows Phone</category><title>Windows Phone 7  (MediaLibrary)</title><description>&lt;div&gt;Jugando un poquito con MediaLibrary.&lt;br /&gt;&lt;br /&gt;Vamos a ver como sacar una lista de nuestra musica y reproducirla, tambien veremos como cargar nuestras imagenes en un objeto Image desde MediaLibrary.&lt;br /&gt;&lt;br /&gt;Lo primero que haremos es crear una sencilla aplicación con 4 botones, dos serviran para movernos entre las imagenes de nuestro WP7 y los otros dos, uno para cargar la lista de musica y el otro para reproducir la canción seleccionada, un listbox para las canciones y un objeto Image.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p align=&quot;center&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwPP66M6Vk6UiRnQtkAuHn7v-sNGXmRbDmvU9TOxGlwzNEKTYZzeyyjDR3B0AaHLJqDyVsGyX9fcwT5kqsh5Rfk_uIu8wBUEt23ddExr_y373lAyAaMS4b5XMhNH2A8M01MiZH9-6Cf7E/s1600/1.png&quot;&gt;&lt;img style=&quot;width: 170px; height: 320px; cursor: pointer;&quot; id=&quot;BLOGGER_PHOTO_ID_5635963669407907682&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwPP66M6Vk6UiRnQtkAuHn7v-sNGXmRbDmvU9TOxGlwzNEKTYZzeyyjDR3B0AaHLJqDyVsGyX9fcwT5kqsh5Rfk_uIu8wBUEt23ddExr_y373lAyAaMS4b5XMhNH2A8M01MiZH9-6Cf7E/s320/1.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwPP66M6Vk6UiRnQtkAuHn7v-sNGXmRbDmvU9TOxGlwzNEKTYZzeyyjDR3B0AaHLJqDyVsGyX9fcwT5kqsh5Rfk_uIu8wBUEt23ddExr_y373lAyAaMS4b5XMhNH2A8M01MiZH9-6Cf7E/s1600/1.png&quot;&gt;&lt;div align=&quot;left&quot;&gt; &lt;/div&gt;&lt;/a&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;&lt;br /&gt;Despues solo toca añadir funcionalidad, lo primero es agregarse la referencia siguiente:&lt;br /&gt;- Microsoft.Xna.Framework;&lt;br /&gt;&lt;br /&gt;Incluir en el proyecto:&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;using&lt;/span&gt; Microsoft.Xna.Framework;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;using&lt;/span&gt; Microsoft.Xna.Framework.Media;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;using&lt;/span&gt; System.Windows.Threading;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;using&lt;/span&gt; System.Windows.Media.Imaging;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Despues tenemos que ejecutar el update del dispacher y simular el game loop ya que es una aplicación Silverlight y lo tenemos que hacer nosotros.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:85%;&quot;&gt;DispatcherTimer dt = new DispatcherTimer();&lt;br /&gt;dt.Interval = TimeSpan.FromMilliseconds(33);&lt;br /&gt;dt.Tick += delegate { try { FrameworkDispatcher.Update(); } catch { } };&lt;br /&gt;dt.Start();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 153, 0);&quot;&gt;//nos suscribimos al evento de estado de reproducción&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;   style=&quot;font-family:arial;font-size:85%;&quot;&gt;MediaPlayer.MediaStateChanged += &lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;new&lt;/span&gt; &lt;/span&gt;EventHandler&lt;/span&gt;&lt;eventargs&gt;&lt;span class=&quot;Apple-style-span&quot;   style=&quot;font-family:arial;font-size:85%;&quot;&gt;(MediaPlayer_MediaStateChanged);&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 153, 0);&quot;&gt;//Podreis hacer lo que querais en el cambio de estado&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;void&lt;/span&gt; &lt;/span&gt;MediaPlayer_MediaStateChanged(&lt;span class=&quot;Apple-style-span&quot;&gt;object &lt;/span&gt;sender, EventArgs e)&lt;br /&gt;   {&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;           &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;switch&lt;/span&gt; &lt;/span&gt;(MediaPlayer.State)&lt;br /&gt;       {&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;               &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;case&lt;/span&gt; &lt;/span&gt;MediaState.Playing:&lt;br /&gt;    &lt;span class=&quot;Apple-style-span&quot;&gt;break&lt;/span&gt;;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;               &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;case&lt;/span&gt; &lt;/span&gt;MediaState.Stopped:&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;       break&lt;/span&gt;;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;               &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;case&lt;/span&gt; &lt;/span&gt;MediaState.Paused:&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;       break&lt;/span&gt;;&lt;br /&gt;       }&lt;br /&gt;   }&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 153, 0);&quot;&gt;//cargamos la lista&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;private void&lt;/span&gt; &lt;/span&gt;btnCargaLista_Click(&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;object&lt;/span&gt; &lt;/span&gt;sender, RoutedEventArgs e)&lt;br /&gt;{&lt;br /&gt;listBox1.ItemsSource = libreriaWP7.Songs.ToList();&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;    &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;if&lt;/span&gt; &lt;/span&gt;(listBox1.Items.Count &amp;gt; 0)&lt;br /&gt;   btnReproducir.IsEnabled = &lt;span class=&quot;Apple-style-span&quot;&gt;true&lt;/span&gt;;&lt;br /&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 153, 0);&quot;&gt;//reproducimos la seleccionada&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot; class=&quot;Apple-style-span&quot;&gt;private void&lt;/span&gt; btnReproducir_Click(&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;object&lt;/span&gt; &lt;/span&gt;sender, RoutedEventArgs e)&lt;br /&gt;{&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;     &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;int&lt;/span&gt; &lt;/span&gt;itemSeleccionad = listBox1.SelectedIndex;&lt;br /&gt; Song cancion =  libreriaWP7.Songs.Where(a=&amp;gt; a.Name == listBox1.SelectedValue.ToString()).First();&lt;br /&gt; MediaPlayer.Play(cancion);&lt;br /&gt; libreriaWP7.Pictures.Count();&lt;br /&gt;&lt;br /&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Ahora para mover las imagenes de nuestar galeria solo tenemos que implementar este sencillo código en cada uno de los botones.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot; class=&quot;Apple-style-span&quot;&gt;private void&lt;/span&gt; btnIzq_Click(&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;object&lt;/span&gt; &lt;/span&gt;sender, RoutedEventArgs e)&lt;br /&gt;   {&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;         &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;if&lt;/span&gt; &lt;/span&gt;(numImagen !=0)&lt;br /&gt;       {&lt;br /&gt;           BitmapImage img = &lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;new&lt;/span&gt; &lt;/span&gt;BitmapImage();&lt;br /&gt;           numImagen = numImagen - 1;&lt;br /&gt;           img.SetSource(libreriaWP7.Pictures[numImagen].GetImage());&lt;br /&gt;           image1.Source = img;&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;       &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;private void&lt;/span&gt;&lt;/span&gt; btnDer_Click(&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;object&lt;/span&gt; &lt;/span&gt;sender, RoutedEventArgs e)&lt;br /&gt;   {&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;           &lt;span style=&quot;color: rgb(51, 51, 255);&quot;&gt;if&lt;/span&gt; &lt;/span&gt;(numImagen &amp;lt; libreriaWP7.Pictures.Count-1)&lt;br /&gt;       {&lt;br /&gt;           BitmapImage img = &lt;span style=&quot;color: rgb(51, 51, 255);&quot; class=&quot;Apple-style-span&quot;&gt;new &lt;/span&gt;BitmapImage();&lt;br /&gt;           numImagen = numImagen + 1;&lt;br /&gt;           img.SetSource(libreriaWP7.Pictures[numImagen].GetImage());&lt;br /&gt;           image1.Source = img;&lt;br /&gt;       }&lt;br /&gt;   }&lt;/span&gt;&lt;/span&gt;&lt;/eventargs&gt;&lt;/div&gt;&lt;div&gt;&lt;eventargs&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/eventargs&gt; &lt;/div&gt;&lt;div&gt;&lt;eventargs&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Ahora a explotar al maxímo la MediaLibrary que da muchas posibilidades.&lt;/span&gt;&lt;/eventargs&gt;&lt;/div&gt;&lt;div&gt;&lt;eventargs&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/eventargs&gt; &lt;/div&gt;&lt;div&gt;&lt;eventargs&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Hasta la próxima.&lt;/span&gt;&lt;/eventargs&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2011/08/windows-phone-7-medialibrary.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwPP66M6Vk6UiRnQtkAuHn7v-sNGXmRbDmvU9TOxGlwzNEKTYZzeyyjDR3B0AaHLJqDyVsGyX9fcwT5kqsh5Rfk_uIu8wBUEt23ddExr_y373lAyAaMS4b5XMhNH2A8M01MiZH9-6Cf7E/s72-c/1.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-3821754019193318599</guid><pubDate>Sat, 30 Jul 2011 13:27:00 +0000</pubDate><atom:updated>2011-08-01T11:47:14.094-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Windows Phone</category><title>Windows Phone 7 Mango Beta</title><description>&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;Bueno por fin me atreví y le metí la Beta a mi WP7, después de informarme con experiencias de la gente en mi entorno, me lance, claro, no es lo mismo actualizar el WP de desarrollo de la empresa que el tuyo personal!&lt;/span&gt;&lt;div style=&quot;border-collapse: collapse; &quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;border-collapse: collapse; &quot;&gt;Es muy muy sencillo y no he tenido ningún problema, os detallo los pasos a seguir para aquellos que no tenéis cuenta de desarrollador y no podéis esperar a ver la primera entrega de lo que puede ser algo muy grande.&lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;Mirar si tenéis la versión en vuestros móviles: 7.0.7390.0 or 7.0.7392.0, si no deberéis conectaros al Zune y actualizaros el WP7. (Configuración/Información/mas información).&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;Desconectar el WP7.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;Desinstalar el Zune que tenéis actualmente.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;Instalar el Zune 4.8 (MangoB2-ZuneClient)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;Instalar el updateWP en la plataforma del S.O que tengáis (MangoB2-UpdateWP), lo instale directamente desde la carpeta donde se ha instalado el Zune 4.8, es decir copias el archivo al directorio raíz de la instalación Zune y lo ejecutáis.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;Instalar las herramientas SDK Beta (vm_web2)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;Ejecutar update.bat, si tenéis problemas mirar este link. &lt;/span&gt;&lt;a href=&quot;http://forums.create.msdn.com/forums/t/85897.aspx&quot;&gt;http://forums.create.msdn.com/forums/t/85897.aspx&lt;/a&gt; (yo borre los archivos UpdateWP.exe y wm7update.dll del raíz de instalación del Zune y ejecute otra vez el paso 5, pero esta vez tanto en el directorio raíz del Zune como en el escritorio, así me asegure)&lt;/li&gt;&lt;li&gt;Una vez hemos hecho la buckup, aseguraros bien donde la tenéis e incluso copiarla en otro sitio seguro.&lt;/li&gt;&lt;li&gt;Conectar el dispositivo móvil y el propio Zune os actualizara a la Beta Mango, como si fuera una actualización normal y corriente!&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;Tened un rato largo libre para hacer la update que lleva tiempo.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Lo primero que voy a hacer es una aplicación para ponerme el tono  de llamada que quiera... aunque no desarrolléis os lo aconsejo porque tienes muchas cositas que facilitan la vida, como un buscador de aplicaciones o distinción en el color  de los SMS.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;A disfrutar!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Saludos.&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;b&gt;Enlaces:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;&lt;a dir=&quot;ltr&quot; class=&quot;yt-uix-redirect-link&quot; title=&quot;http://www.megaupload.com/?d=7PY0SNNI&quot; href=&quot;http://www.megaupload.com/?d=7PY0SNNI&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;http://www.megaupload.com/?d=7PY0SNNI&lt;/a&gt;  (&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(255, 107, 0); font-family: Arial; font-size: 14px; font-weight: bold; line-height: 20px; &quot;&gt;mangoforall_0.2.zip&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;) - Programa para buckup.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;&lt;a href=&quot;http://www.megaupload.com/?d=PL7H6FKJ&quot;&gt;http://www.megaupload.COM/?d=PL7H6FKJ&lt;/a&gt; (&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(255, 107, 0); font-family: Arial; font-size: 14px; font-weight: bold; line-height: 20px; &quot;&gt;MangoB2-UpdateWP.zip&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;) - Programa paso 5&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;a href=&quot;http://www.megaupload.com/?d=9Q3LBQ4J&quot;&gt;http://&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;&lt;a href=&quot;http://www.megaupload.com/?d=9Q3LBQ4J&quot;&gt;www.megaupload.COM/?d=9Q3LBQ4J&lt;/a&gt; (&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(255, 107, 0); font-family: Arial; font-size: 14px; font-weight: bold; line-height: 20px; &quot;&gt;vm_web2.exe&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;) - Herramientas SDK&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;a href=&quot;http://www.megaupload.com/?d=KY8J8SIY&quot;&gt;http://&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;&lt;a href=&quot;http://www.megaupload.com/?d=KY8J8SIY&quot;&gt;www.megaupload.COM/?d=KY8J8SIY&lt;/a&gt; (&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(255, 107, 0); font-family: Arial; font-size: 14px; font-weight: bold; line-height: 20px; &quot;&gt;MangoB2-ZuneClient.zip&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;) - Zune 4.8&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;a href=&quot;http://www.megaupload.com/?d=WNKD3G9U&quot;&gt;http://&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse;&quot;&gt;&lt;a href=&quot;http://www.megaupload.com/?d=WNKD3G9U&quot;&gt;www.megaupload.COM/?d=WNKD3G9U &lt;/a&gt;(&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(255, 107, 0); font-family: Arial; font-size: 14px; font-weight: bold; line-height: 20px; &quot;&gt;Update Instructions - Mango Beta 2 for WPDevs.pdf&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;) Manual en ingles de instalación.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;a href=&quot;http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;amp;id=26648&quot;&gt;http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;amp;id=26648&lt;/a&gt; (De aquí tambien podes sacar el SDK 7.1 beta2)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; &quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2011/07/bueno-por-fin-me-atrevi-y-le-meti-la.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-6845045489748980859</guid><pubDate>Sat, 30 Jul 2011 11:47:00 +0000</pubDate><atom:updated>2011-07-30T05:23:12.697-07:00</atom:updated><title>Cambiar un inverter</title><description>En esta vida toca hacer de todo y como no podía ser de otra forma me toco cambiar el inverter. Evidentemente preguntar a los técnicos de HP fue obtener una respuesta de mas o menos 200 euros mas transportes... así que decidí buscar uno en internet y por 40 euros tenerlo en casa.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Os cuento brevemente lo que tenéis que hacer.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;El inverter es una pequeña pieza que se encuentra en el monitor del portátil para ello deberéis desmontar cuidadosamente el monitor, soltar todos los tornillos que se encuentren debajo de los protectores.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1- Soltar primeramente la parte delantera:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmt14WlEZgRC66yc7ChLg6_6oisPg7k3PghDK_47qhnUiWUkLk2zSF3peyKWjYsDFjHFrlire2RuizxJEvF3s4WYKpXrA8fmcBM_kpoJRxYUEFmVi2EjEf6bE_KSNWkF-7UqJpec7aaeY/s320/inverter1.PNG&quot; style=&quot;cursor:pointer; cursor:hand;width: 320px; height: 266px;&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5635117651186638930&quot; /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2- Después soltar la pantalla de la carcasa trasera ya que el inverter se sitúa detrás de esta, en mi caso tenia tornillos en la parte superior y laterales de la pantalla.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFwOQgKiWPpGk54Vx4WVXiZkcmS3RPWfRLgrjZIRaaOxjeaT6IwX7n_sBMbiiZ9y61Yxg_43U43knuLN5bfztTJ0OMvV-IdrQ1rPdCFwRHwE5VyEUmo3Er__kEvb9P0tLBBjpb5xfz5zI/s1600/inverter2.PNG&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFwOQgKiWPpGk54Vx4WVXiZkcmS3RPWfRLgrjZIRaaOxjeaT6IwX7n_sBMbiiZ9y61Yxg_43U43knuLN5bfztTJ0OMvV-IdrQ1rPdCFwRHwE5VyEUmo3Er__kEvb9P0tLBBjpb5xfz5zI/s320/inverter2.PNG&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5635117657451565730&quot; style=&quot;cursor: pointer; width: 320px; height: 241px; &quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3- Finalmente ya encontramos el el inverter y se puede cambiar fácilmente por el nuestro.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjicVJeTFhYkM9j_mcqg4S2d8d1lIM_Ef3zLzqpr-3rCIzQ9pedipl2nJhK65SsbGvlAYy7Qnf2mlIF-ICK7V-g-JxagKi2efee3RFQgbK_KyIfouvOKwLNe4ChGdDpJd-TkriwgQ3neGY/s1600/inverter3.PNG&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjicVJeTFhYkM9j_mcqg4S2d8d1lIM_Ef3zLzqpr-3rCIzQ9pedipl2nJhK65SsbGvlAYy7Qnf2mlIF-ICK7V-g-JxagKi2efee3RFQgbK_KyIfouvOKwLNe4ChGdDpJd-TkriwgQ3neGY/s320/inverter3.PNG&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5635117662947170066&quot; style=&quot;cursor: pointer; width: 320px; height: 259px; &quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ser muy cuidadosos y no dejéis ningún cable mal puesto o muy presionado si no el inverter os puede fallar. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Bueno espero que os ahorréis unas buenas pelas.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Saludos.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2011/07/cambiar-un-inverter.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmt14WlEZgRC66yc7ChLg6_6oisPg7k3PghDK_47qhnUiWUkLk2zSF3peyKWjYsDFjHFrlire2RuizxJEvF3s4WYKpXrA8fmcBM_kpoJRxYUEFmVi2EjEf6bE_KSNWkF-7UqJpec7aaeY/s72-c/inverter1.PNG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-1310879341124146424</guid><pubDate>Fri, 18 Feb 2011 11:40:00 +0000</pubDate><atom:updated>2011-02-18T04:03:14.909-08:00</atom:updated><title>CRM 2011 on-premise y partner-hosted!</title><description>Ya tenemos disponible la nueva versión de CRM 2011. &lt;a href=&quot;http://www.microsoft.com/downloads/es-es/details.aspx?FamilyID=c3f82c6f-c123-4e80-b9b2-ee422a16b91d&quot;&gt;Descarga&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Desde Redmond se dice que los tiempos de respuesta serán inferiores a un segundo!! incluso con 150.000 usuarios concurrentes... los resultados de estas pruebas verán la luz el próximo mes.&lt;br /&gt;&lt;br /&gt;Esta versión abre un nuevo campo de negocio siendo el propio socio de Microsoft quien pueda alojar y mantener el soporte de las aplicaciones de sus clientes. (partner-hosted).&lt;br /&gt;&lt;br /&gt;Toca probar.&lt;br /&gt;&lt;br /&gt;Saludos.</description><link>http://bizkaianet.blogspot.com/2011/02/on-premises-y-partner-hosted-crm-2011.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-6930538184514164385</guid><pubDate>Tue, 18 Jan 2011 18:10:00 +0000</pubDate><atom:updated>2011-01-18T11:41:14.359-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Otros</category><title>Crear discos duros virtuales (VHD) mantenidos con BCDedit.</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Hoy voy a dar unas pinceladas a crear discos duros VHD en Windows 7. En como crearlo me he guiado del post:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;http://geeks.ms/blogs/haarongonzalez/archive/2010/08/16/como-utilizar-el-mismo-hardware-para-windows-server-2008-r2-y-windows-7.aspx&quot;&gt;http://geeks.ms/blogs/haarongonzalez/archive/2010/08/16/como-utilizar-el-mismo-hardware-para-windows-server-2008-r2-y-windows-7.aspx &lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Mi caso encajaba perfectamente en el artículo de Haaron Gonzalez, instalar Windows Server 2008 R2 en un sistema Windows 7, con alguna pequeña salvedad siguiendo al pie de la letra se consigue sin problemas, lo que pretendo aquí es contar como me fue a mi y añadir ciertos mantenimientos con BCDEdit.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Empezamos, arrancamos nuestro equipo desde el DVD para la instalación de nuestro nuevo sistema operativo, al llegar al botón Install Now, lo presionamos, no hace falta dar a Repair Computer, esto me desconcertó un poco. Antes de elegir cualquier opción de versión, &lt;span style=&quot;font-weight:bold;&quot;&gt;Shift + F10&lt;/span&gt;. Esto abrirá una consola en la que debéis crear y configurar el VHD, siguiendo estos pasos.&lt;/div&gt;&lt;span style=&quot;color:#3366ff; font-size:14px&quot;&gt;&lt;ul&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;diskpart &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;create vdisk file=&quot;d:\win2008r2.vhd&quot; type=expandable maximum=60000 &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;select vdisk file=&quot;d:\win2008r2.vhd&quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;attach vdisk &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;exit&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Siempre procuro tener dos particiones, sistema operativo y datos. Así que en mi caso cree el disco en d:\.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Como comprobáis se expandera hasta un máximo de 60 gigas, lo que significa que no te reserva el total de lo seleccionado. Así que si arrancais el Windows 7 solo vereis el archivo con el peso utilizado hasta el momento.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Una vez ejecutados estos pasos, seguís con la instalación normal, seleccionamos personalizar y ahora aparecerá como una partición mas nuestro nuevo disco, y es ahí, donde deberemos instalar nuestro Win 2008.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Una vez instalado, y a partir de ese momento, os aparecerá un menú de selección en el cual podréis elegir entre Windows 7 y Windows Server.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Bien, ahora viene lo bonito de todo esto, y es la posibilidad de quitar y poner nuestros discos duros virtuales cuando queramos. Y esto lo gestionaremos desde el comando BCDEdit.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Si abrimos la consola de comandos cmd.exe (con permiso de administrador) y escribimos &lt;span class=&quot;Apple-style-span&quot;&gt;c:/&gt;bcdedit&lt;/span&gt;, veremos algo como esto.&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkBiRY6KvDBTSyWXM5fEg_-vppEGbSUkw_eTpp9DwZ6y3CIBdko6xvZsFniHzlz5_BzJprDOFVcy8ScyKteHRx1AdGkg9lKlUR8nRmyvUQnJ_hzbI1oFW2-jCEDaSSWFX7tsIandQ-g6M/s1600/uno.png&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;width: 320px; height: 302px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkBiRY6KvDBTSyWXM5fEg_-vppEGbSUkw_eTpp9DwZ6y3CIBdko6xvZsFniHzlz5_BzJprDOFVcy8ScyKteHRx1AdGkg9lKlUR8nRmyvUQnJ_hzbI1oFW2-jCEDaSSWFX7tsIandQ-g6M/s320/uno.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5563598525125572386&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Con el BCDEdit podemos configurar nuestro sistema de arranque, borrar, editar y añadir nuevos discos al arranque.&lt;br /&gt;&lt;br /&gt;Para hacer una prueba de ello, lo que haremos es entrar en Windows 7 y copiar el VHD recién creado, renombrándolo a Win2008CRM2011.vhd.&lt;br /&gt;&lt;br /&gt;Ahora configuraremos nuestra segundo disco virtual en de arranque:&lt;br /&gt;&lt;span style=&quot;color:#3366ff; font-size:14px&quot;&gt;&lt;ul&gt;&lt;li&gt;Inicio/Ejecutar = &lt;span class=&quot;Apple-style-span&quot;&gt;cmd.exe&lt;/span&gt; &lt;span style=&quot;font-style:italic;&quot;&gt;(aseguraros de abrirlo como administrador&lt;/span&gt;)&lt;/li&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;C:\&gt;bcdedit&lt;/span&gt;   &lt;span style=&quot;font-style:italic;&quot;&gt;(veremos nuestras entrada)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;Por ahora tenemos, Windows 7, Windows 2008 y la del boot de arranque, pero quiero crearme otra de Windows 2008 para nuestro vhd copiado. Para ello copio la entrada de arranque de mi windows 2008, fijaos bien en el identificador que tiene.&lt;br /&gt;&lt;span style=&quot;color:#3366ff; font-size:14px&quot;&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;C:\&gt;bcdedit /copy {default} /d &quot;Windows Server 2008 R2 CRM2011&quot;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;Copio el que tenia y le cambio la descripción para distinguirlo, comprobar que se ha hecho correctamente c:\&gt;bcdedit&lt;br /&gt;&lt;br /&gt;Una vez hecho este paso tenemos que cambiar las direcciones del devices y os device.&lt;span style=&quot;color:#3366ff; font-size:14px&quot;&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;C:\&gt;bcdedit /set {694b87c4-4d31-11df-9e37-e2af1a987a82} device vhd=[D:]\win2008CRM2011.vhd&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;C:\&gt;bcdedit /set {694b87c4-4d31-11df-9e37-e2af1a987a82} osdevice vhd=[D:]\win2008CRM2011.vhd&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;*&lt;span&gt;&lt;i&gt; Si fuera en una partición y no discos virtuales, deberías poner &lt;b&gt;partition &lt;/b&gt;y no vhd.&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Con esto ya estaría, la próxima vez que arranquéis vuestros equipos tendran otro disco más de arranque.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjF2X3cge-Soy-wnPgX-Qtcm7LmfpFWE9DYYrk-PcCc2E4o4SJ3_Z1baCSneGhQH3L-JnHyozIjsXvAXzBo1h2sGCu1FfPFgM3JHy0dYFnfxL7lzDAo9IeQebqlDIfS1us7v1KYG43RnQM/s1600/2.png&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;width: 298px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjF2X3cge-Soy-wnPgX-Qtcm7LmfpFWE9DYYrk-PcCc2E4o4SJ3_Z1baCSneGhQH3L-JnHyozIjsXvAXzBo1h2sGCu1FfPFgM3JHy0dYFnfxL7lzDAo9IeQebqlDIfS1us7v1KYG43RnQM/s320/2.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5563598525335211314&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;font-style:italic;&quot;&gt;Otros comandos:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff; font-size:14px&quot;&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;- Borrar entrada: &lt;span style=&quot;font-weight:bold;&quot;&gt;C:\&gt;bcdedit /delete {id}&lt;/span&gt;&lt;br /&gt;- Cambiar descripcion: &lt;span style=&quot;font-weight:bold;&quot;&gt;C:\&gt;bcdedit /set {current} description &quot;nueva descripción&quot;&lt;/span&gt;&lt;br /&gt;- Establecer por defecto: &lt;span style=&quot;font-weight:bold;&quot;&gt;C:\&gt;bcdedit /default {identificativo} &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Espero que os sirva de guía para dar vuestros primeros pasos.</description><link>http://bizkaianet.blogspot.com/2011/01/hoy-voy-dar-unas-pinceladas-crear.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkBiRY6KvDBTSyWXM5fEg_-vppEGbSUkw_eTpp9DwZ6y3CIBdko6xvZsFniHzlz5_BzJprDOFVcy8ScyKteHRx1AdGkg9lKlUR8nRmyvUQnJ_hzbI1oFW2-jCEDaSSWFX7tsIandQ-g6M/s72-c/uno.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-1258596060039928334</guid><pubDate>Tue, 28 Dec 2010 16:52:00 +0000</pubDate><atom:updated>2010-12-28T09:18:27.680-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Recursos</category><title>Toma de contacto: Internet Explorer 9 Beta</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;La primera impresión que he tenido es que esta nueva versión se “ha basado” en Google Chrome, yo que soy usuario de este navegador, me he dado cuenta de la cantidad de “coincidencias” que tiene con su competidor Chrome.&lt;br /&gt;Algunas de las novedades más notables:&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;u&gt;Diseño minimalista con solo lo justo y necesario para navegar en Internet.&lt;/u&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p align=&quot;center&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYD0P94eksi524gBs3nuNvs_mu05k5_GlmlLcueg23H1rzDq334TFlAxuylhXscYItJaXBjkURKyQQnGDfOlJb9C0EllZQJmh-ac6YnQblSw7XWu7Yl6LRRMDWH_2Muy9ioiaSwa5N0VU/s1600/IE9.png&quot;&gt;&lt;img style=&quot;width: 320px; height: 78px;&quot; id=&quot;BLOGGER_PHOTO_ID_5555780020050330690&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYD0P94eksi524gBs3nuNvs_mu05k5_GlmlLcueg23H1rzDq334TFlAxuylhXscYItJaXBjkURKyQQnGDfOlJb9C0EllZQJmh-ac6YnQblSw7XWu7Yl6LRRMDWH_2Muy9ioiaSwa5N0VU/s320/IE9.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;u&gt;Manejo de pestañas, se pueden incluir o segregar las pestañas entre las diferentes instancias de IE.&lt;/u&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;u&gt;En la página inicial se ven los sitios más visitados con una barrita que muestra la frecuencia de su uso.&lt;/u&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p align=&quot;center&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYZcfUw8ArticTYlUxy5y0pwB7fvCpsXf7jbuhXzopE3ZLaBZo8meaxL3PFmxfEJYN3ezl_hB4N3VZEkupZOpN9E9DH8jf8LRWpjx208dgWTykbrq35FrssBqyDdFTrnOy-9gMfZFmEAM/s1600/sitiospopulares.png&quot;&gt;&lt;img style=&quot;width: 320px; height: 167px;&quot; id=&quot;BLOGGER_PHOTO_ID_5555778341653461906&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYZcfUw8ArticTYlUxy5y0pwB7fvCpsXf7jbuhXzopE3ZLaBZo8meaxL3PFmxfEJYN3ezl_hB4N3VZEkupZOpN9E9DH8jf8LRWpjx208dgWTykbrq35FrssBqyDdFTrnOy-9gMfZFmEAM/s320/sitiospopulares.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;u&gt;Gestión de descargas directas.&lt;/u&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p align=&quot;center&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT3Yy9HSA1TmXqMr65UvoE1iBojX44_mKEuBt9O9817QD6szDZf5qlUwJVH789DzI1ErCwINy0Z5dtVOOsf0tLdpewUIn3ggo5d6i6z81ZG_Q5juRMJpxFnCx_IMM6IOelim88liPCBO0/s1600/gestionDescargas2.png&quot;&gt;&lt;img style=&quot;width: 320px; height: 240px;&quot; id=&quot;BLOGGER_PHOTO_ID_5555778472805822642&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT3Yy9HSA1TmXqMr65UvoE1iBojX44_mKEuBt9O9817QD6szDZf5qlUwJVH789DzI1ErCwINy0Z5dtVOOsf0tLdpewUIn3ggo5d6i6z81ZG_Q5juRMJpxFnCx_IMM6IOelim88liPCBO0/s320/gestionDescargas2.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Aún no lo he probado en portales o aplicaciones como CRM Dynamics, a ver cuál es su comportamiento, pero desde luego tiene muy buena pinta, ya que la tendencia es hacia la navegación de Internet y no, a esos navegadores pesados con multitud de opciónes y barras de herramientas.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Por cierto me ha sido imposible publicar la entrada desde Internet Explorer 9 :)</description><link>http://bizkaianet.blogspot.com/2010/12/toma-de-contacto-internet-explorer-9.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYD0P94eksi524gBs3nuNvs_mu05k5_GlmlLcueg23H1rzDq334TFlAxuylhXscYItJaXBjkURKyQQnGDfOlJb9C0EllZQJmh-ac6YnQblSw7XWu7Yl6LRRMDWH_2Muy9ioiaSwa5N0VU/s72-c/IE9.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-7048839885023264142</guid><pubDate>Fri, 17 Dec 2010 19:09:00 +0000</pubDate><atom:updated>2010-12-17T11:20:07.580-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">HTML5</category><title>HTML5 Reproducción de video y audio</title><description>En este caso voy a postear una novedad que me ha sorprendido mucho dentro de la nueva revisión del código HTML (HTML5), siempre regulado por W3C, por supuesto.&lt;br /&gt;&lt;br /&gt;El caso que la facilidad con la que se pueden reproducir archivos tanto de audio como de video en html sin necesidad de utilizar ningún plugin, es sorprendente. Por ahora nuestro amigo IE no soporta muchas de las novedades de la nueva revisión y esta  no es la excepción.&lt;br /&gt;&lt;br /&gt;Aquí os muestro un ejemplo de código que reproduce audio y video de manera muy simple y con diversas fuentes, ya que todos los navegadores no reproducen el mismo tipo. La versión express del Visual Web Developer me marca algunas validaciones, ya que no entiende todavía HTML5, mirar el combo superior de la izquierda.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPnNkdNSvMLT1Qyw6fAV4o3Vje-rPT6wDHnFjUhoM08YVVMRXght07fyQo06Bsr2A35Mjv_0ef-nqOMDuN5TpsilB6fwKiQfUUCHjPeefrdk4lnc3NP6U9Hcfv7cpr4bJo6szzf2WuA1o/s1600/audio.PNG&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;width: 320px; height: 210px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPnNkdNSvMLT1Qyw6fAV4o3Vje-rPT6wDHnFjUhoM08YVVMRXght07fyQo06Bsr2A35Mjv_0ef-nqOMDuN5TpsilB6fwKiQfUUCHjPeefrdk4lnc3NP6U9Hcfv7cpr4bJo6szzf2WuA1o/s320/audio.PNG&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5551731000010060546&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Aquí el resultado para IE y Google Chrome&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_pdnID2ndJ-RF6wYRbeCUXNJmvz4KHUQTsJfvdTFX6qCvOXakR4v6oEYEOR4QeZK3-JpTFo6sSn1b34PA9AItL4v5JNL_1rt3DWT2YaNXrjhfeqcFVoX3P3ZZF3yScvroFIE624nJ1Z8/s1600/aurioIECR.PNG&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;width: 320px; height: 216px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_pdnID2ndJ-RF6wYRbeCUXNJmvz4KHUQTsJfvdTFX6qCvOXakR4v6oEYEOR4QeZK3-JpTFo6sSn1b34PA9AItL4v5JNL_1rt3DWT2YaNXrjhfeqcFVoX3P3ZZF3yScvroFIE624nJ1Z8/s320/aurioIECR.PNG&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5551730738887551042&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Os pongo los atributos que permiten:&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;autobuffer:&lt;/span&gt; carga automática del archivo (“true” o “false”).&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;controls:&lt;/span&gt; muestra los controles de reproducción.&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;src:&lt;/span&gt; la ruta del archivo o dirección.&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;height: &lt;/span&gt;altura&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;width:&lt;/span&gt; ancho&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;loop:&lt;/span&gt; reproducción en bucle, continua.&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;type:&lt;/span&gt; tipo de archivo. (más abajo os pongo un link de ayuda)&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;autoplay:&lt;/span&gt; reproduce automáticamente el audio.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Links que os pueden servir de ayuda a empezar a conocer HTML5.&lt;br /&gt;&lt;br /&gt;Ejemplos: &lt;a href=&quot;http://html5demos.com/&quot;&gt;http://html5demos.com/&lt;/a&gt;&lt;br /&gt;Tipos:  &lt;a href=&quot;http://code.google.com/p/doctype/wiki/SourceTypeAttribute&quot;&gt;http://code.google.com/p/doctype/wiki/SourceTypeAttribute&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Bueno os toca probar ;-)</description><link>http://bizkaianet.blogspot.com/2010/12/html5-reproduccion-de-video-y-audio.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPnNkdNSvMLT1Qyw6fAV4o3Vje-rPT6wDHnFjUhoM08YVVMRXght07fyQo06Bsr2A35Mjv_0ef-nqOMDuN5TpsilB6fwKiQfUUCHjPeefrdk4lnc3NP6U9Hcfv7cpr4bJo6szzf2WuA1o/s72-c/audio.PNG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-694362377259129643</guid><pubDate>Thu, 16 Dec 2010 18:48:00 +0000</pubDate><atom:updated>2010-12-16T11:32:46.289-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CRM 4.0</category><title>Problemas en la instalación de CRM 4.0 - Win2008</title><description>&lt;p align=&quot;justify&quot;&gt;En este post voy a poner algunos de los problemas que siempre me encuentro a la hora de instalar un CRM 4.0 en un Windows Server 2008 (R2), y es que como no estoy continuamente instalando, pues se acaba dejando documentado en una hoja del tercer cajón del mueble, ¿me entendéis?, siempre me acaba sonando el error que me da en la instalación pero al final se recurre a Google. &lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;A veces también te encuentras sin internet y no puedes descargar las actualizaciones tanto del equipo como del propio CRM Server a la hora de instalarlo, que te solucionarían fix.&lt;br /&gt;El escenario en el que se basan estos errores es el siguiente:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Virtual PC 7&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Windows 7 (como maquina Host)&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Windows Server 2008 – CRM4.0&lt;/li&gt;&lt;br /&gt;&lt;li&gt;ISS7&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Sin conexión a internet&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;p&gt;También me han ocurrido en servers físicos con Windows Server 2008 R2 standard y Enterprise. &lt;/p&gt;&lt;div align=&quot;justify&quot;&gt;&lt;strong&gt;Error 1:&lt;br /&gt;&lt;/strong&gt;Al abrir CRM por primera vez, feliz hasta el =&gt; &quot;&lt;strong&gt;HTTP Error 401.2 – No autorizado&lt;/strong&gt;&quot;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTZsDdVivtFeF86-_vlIjvmVVM_TGlU8T5pzRaPsvCKSNuhPwJwTT1pRE_wt5DhiQ30f6M58vvH4dWhydmp-WMr9ayEfXi1g6sNKebQiwcD_f18pDajC2VtJXeFWEF3di720G1H2bhL0c/s1600/erro1.png&quot;&gt;&lt;img style=&quot;WIDTH: 320px; HEIGHT: 67px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5551356564736017650&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTZsDdVivtFeF86-_vlIjvmVVM_TGlU8T5pzRaPsvCKSNuhPwJwTT1pRE_wt5DhiQ30f6M58vvH4dWhydmp-WMr9ayEfXi1g6sNKebQiwcD_f18pDajC2VtJXeFWEF3di720G1H2bhL0c/s320/erro1.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;left&quot;&gt;La solución es ir al administrador de servidor, y en el servidor web IIS, agregar una nueva función de servicio dentro del apartado de seguridad “Autenticación de Windows” &lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5DcNsNXnSGGHZcBQwpBU3nlVWptWGhycC7I7K-jKPSbRQmPu1mMI4aqLX4e22oyYFR-qvdTaDLAnLq8YKU9zmOwqSPK47QOz7MEPD6bKLauM7jzUZB4ZCV-3-PvN0RWmxDoVLN-uAuYQ/s1600/4012.png&quot;&gt;&lt;img style=&quot;WIDTH: 320px; HEIGHT: 242px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5551357286771163122&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5DcNsNXnSGGHZcBQwpBU3nlVWptWGhycC7I7K-jKPSbRQmPu1mMI4aqLX4e22oyYFR-qvdTaDLAnLq8YKU9zmOwqSPK47QOz7MEPD6bKLauM7jzUZB4ZCV-3-PvN0RWmxDoVLN-uAuYQ/s320/4012.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;strong&gt;Error 2:&lt;br /&gt;&lt;/strong&gt;Antes de instalar el CRM en la validación del SQL Server: “&lt;strong&gt;Service msftesql was not found on the computer&lt;/strong&gt;”.&lt;br /&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUZQWTF4Sf9aciM49zTmDMxJcaN2x3HsfetLTxmT-XNzVPRYkOcKrLW2vqr8Uf6FFMeCNrjr53100NAMNjUptBpTmNb4qorCvHnJ-niF8vN3xKgVlxoQjgDunngp25osEbYeUSCFLkPwQ/s1600/on-sql-2008.jpg&quot;&gt;&lt;img style=&quot;WIDTH: 320px; HEIGHT: 278px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5551357553304959106&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUZQWTF4Sf9aciM49zTmDMxJcaN2x3HsfetLTxmT-XNzVPRYkOcKrLW2vqr8Uf6FFMeCNrjr53100NAMNjUptBpTmNb4qorCvHnJ-niF8vN3xKgVlxoQjgDunngp25osEbYeUSCFLkPwQ/s320/on-sql-2008.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Este error es salvable simplemente con actualizar el CRM antes de instalar, pero por si no podéis por lo que sea y queréis instalarlos se arregla de la siguiente manera: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;En ejecutar abrir el registro (Regedit) &lt;/li&gt;&lt;li&gt;Ir hasta la ruta HKEY_LOCAL_MACHINES\SYSTEM\CurrentControlSet\Services &lt;/li&gt;&lt;li&gt;La carpeta llamada &lt;strong&gt;MSSQLFDLauncher&lt;/strong&gt; tienes que renombrarla a &lt;strong&gt;msftesql&lt;/strong&gt; (sin miedo ;-)) &lt;/li&gt;&lt;li&gt;Reinicia el servidor &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Despues de hacer esto tienes que asegurar te de arrancar un servicio que estará parado…&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Herramientas administrativas / servicios / y cuando se desplieguen busca el servicio SQL Full-text Filter Daemon Launcher (MSSQLSERVER) y inícialo. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Este problema desaparecerá y deberás empezar a instalar otra vez CRM 4.0&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Error 3:&lt;/strong&gt;&lt;br /&gt;Este error también se detecta a la hora de instalar: Error en la acción Microsoft.Crm.Setup.Server.ConfigureAspNetAccountAction.&lt;br /&gt;System.ComponentModel.Win32Exception: No se ha encontrado el nombre de grupo.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg64_KXp0kffjt10n4DveVNDXX4_MH0NQ-GL19eYxUanebwiwpLVf27a2DwdaPZCESvorBBDx3sq_7yb-3yzSq9J7_JL-pHjKk2RHWEfPGRmZp0OHboglaZpl1uLs2Lt9kbvFbqJSZxw9c/s1600/IS2003.png&quot;&gt;&lt;img style=&quot;WIDTH: 320px; HEIGHT: 242px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5551357481448165826&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg64_KXp0kffjt10n4DveVNDXX4_MH0NQ-GL19eYxUanebwiwpLVf27a2DwdaPZCESvorBBDx3sq_7yb-3yzSq9J7_JL-pHjKk2RHWEfPGRmZp0OHboglaZpl1uLs2Lt9kbvFbqJSZxw9c/s320/IS2003.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;La solución es ir al Administrador de Servidor y añadir una nueva Funcion/Rol llamada Servicios de archivo, y dentro de él marcar la compatibilidad con Servicios de Index Server 2003.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Otros Errores:&lt;br /&gt;&lt;/strong&gt;Se pueden dar otros errores por qué no tienes arrancado el agente de SQL Server o el Reporting Server, deberías asegurarte que los tienes instalados.&lt;br /&gt;&lt;br /&gt;Estos son los errores más comunes a la hora de la instalación, espero que os sirva de ayuda. &lt;/p&gt;</description><link>http://bizkaianet.blogspot.com/2010/12/problemas-en-la-instalacion-de-crm-40.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTZsDdVivtFeF86-_vlIjvmVVM_TGlU8T5pzRaPsvCKSNuhPwJwTT1pRE_wt5DhiQ30f6M58vvH4dWhydmp-WMr9ayEfXi1g6sNKebQiwcD_f18pDajC2VtJXeFWEF3di720G1H2bhL0c/s72-c/erro1.png" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-5545441678676737286</guid><pubDate>Tue, 07 Dec 2010 14:22:00 +0000</pubDate><atom:updated>2010-12-16T11:30:36.554-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Visual Studio 2010</category><title>Visual Studio 2010 ¿A qué esperas?</title><description>Ya sé, ya sé... que en mi trabajo no migran de versión, no quieren, preguntan ¿para que? y de esta forma, aún, estamos con Visual &lt;span id=&quot;SPELLING_ERROR_0&quot; class=&quot;blsp-spelling-error&quot;&gt;Studio&lt;/span&gt; 2003!, Pues ahí, es donde vosotros mismos &lt;span id=&quot;SPELLING_ERROR_1&quot; class=&quot;blsp-spelling-corrected&quot;&gt;debéis&lt;/span&gt; &lt;span id=&quot;SPELLING_ERROR_2&quot; class=&quot;blsp-spelling-corrected&quot;&gt;reivindicar&lt;/span&gt; el &lt;span id=&quot;SPELLING_ERROR_3&quot; class=&quot;blsp-spelling-corrected&quot;&gt;poderío&lt;/span&gt; de las nuevas versiones, &lt;span id=&quot;SPELLING_ERROR_4&quot; class=&quot;blsp-spelling-corrected&quot;&gt;vuestra&lt;/span&gt; propia curiosidad, la pasión por la &lt;span id=&quot;SPELLING_ERROR_5&quot; class=&quot;blsp-spelling-corrected&quot;&gt;tecnología&lt;/span&gt;, y por supuesto la intranquilidad de &quot;&lt;span id=&quot;SPELLING_ERROR_6&quot; class=&quot;blsp-spelling-error&quot;&gt;anticuarse&lt;/span&gt;&quot;, ya &lt;span id=&quot;SPELLING_ERROR_7&quot; class=&quot;blsp-spelling-corrected&quot;&gt;sabéis&lt;/span&gt; que lo &lt;strong&gt;peor&lt;/strong&gt; que te puede pasar en el mundillo de la &lt;span id=&quot;SPELLING_ERROR_8&quot; class=&quot;blsp-spelling-corrected&quot;&gt;informática&lt;/span&gt; es quedarte atrás ... ¿Como hacer para forzar la evolución? fácil.. defendiendo ideas:&lt;br /&gt;&lt;br /&gt;- Ahorro en tiempo de &lt;span id=&quot;SPELLING_ERROR_9&quot; class=&quot;blsp-spelling-error&quot;&gt;programación&lt;/span&gt;.&lt;br /&gt;- Mejoras en experiencias de usuario.&lt;br /&gt;- Integración de nuevas &lt;span id=&quot;SPELLING_ERROR_10&quot; class=&quot;blsp-spelling-corrected&quot;&gt;tecnologías&lt;/span&gt; cada vez mas demandadas.&lt;br /&gt;- Vender innovación.&lt;br /&gt;- Versiones &lt;span id=&quot;SPELLING_ERROR_11&quot; class=&quot;blsp-spelling-error&quot;&gt;Express&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;etc.. etc..&lt;br /&gt;&lt;br /&gt;Desde luego, no tenemos excusa para poder entrar nosotros mismos a probar, la instalación de Visual &lt;span id=&quot;SPELLING_ERROR_12&quot; class=&quot;blsp-spelling-error&quot;&gt;Studio&lt;/span&gt; 2010 c# con &lt;span id=&quot;SPELLING_ERROR_13&quot; class=&quot;blsp-spelling-error&quot;&gt;SQLServer&lt;/span&gt; 2008 (&lt;span id=&quot;SPELLING_ERROR_14&quot; class=&quot;blsp-spelling-error&quot;&gt;SP&lt;/span&gt;1) &lt;span id=&quot;SPELLING_ERROR_15&quot; class=&quot;blsp-spelling-error&quot;&gt;Express&lt;/span&gt; &lt;span id=&quot;SPELLING_ERROR_16&quot; class=&quot;blsp-spelling-error&quot;&gt;Edition&lt;/span&gt;, son tan solo, 242 megas.&lt;br /&gt;&lt;br /&gt;&lt;span id=&quot;SPELLING_ERROR_17&quot; class=&quot;blsp-spelling-error&quot;&gt;Link&lt;/span&gt; de descarga para versiones &lt;span id=&quot;SPELLING_ERROR_18&quot; class=&quot;blsp-spelling-error&quot;&gt;express&lt;/span&gt;: &lt;a href=&quot;http://www.microsoft.com/express/Downloads/&quot;&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;http://www.microsoft.com/express/Downloads/&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtk1YGgD2ujse7TdelIaxug3hRF6FIHIPLa8d4sGLUp2hviTXxQkaRLlXj3X_9H9uHlZarNpjvVxGTAqlX2PvyLhAcddmDrFCq4X7j7watUVp7BR9uJiMDp8NLo6JMGngOu1KYNfVMYN4/s1600/Dibujo.PNG&quot;&gt;&lt;img style=&quot;WIDTH: 320px; HEIGHT: 290px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5547951970230171842&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtk1YGgD2ujse7TdelIaxug3hRF6FIHIPLa8d4sGLUp2hviTXxQkaRLlXj3X_9H9uHlZarNpjvVxGTAqlX2PvyLhAcddmDrFCq4X7j7watUVp7BR9uJiMDp8NLo6JMGngOu1KYNfVMYN4/s320/Dibujo.PNG&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Una vez que te lo &lt;span id=&quot;SPELLING_ERROR_19&quot; class=&quot;blsp-spelling-corrected&quot;&gt;descargues&lt;/span&gt; te aconsejo que te &lt;span id=&quot;SPELLING_ERROR_20&quot; class=&quot;blsp-spelling-corrected&quot;&gt;descargues&lt;/span&gt; &quot;&lt;strong&gt;Visual &lt;span id=&quot;SPELLING_ERROR_21&quot; class=&quot;blsp-spelling-error&quot;&gt;Studio&lt;/span&gt; 2010 &lt;span id=&quot;SPELLING_ERROR_22&quot; class=&quot;blsp-spelling-error&quot;&gt;and&lt;/span&gt; .&lt;span id=&quot;SPELLING_ERROR_23&quot; class=&quot;blsp-spelling-error&quot;&gt;NET&lt;/span&gt; &lt;span id=&quot;SPELLING_ERROR_24&quot; class=&quot;blsp-spelling-error&quot;&gt;Framework&lt;/span&gt; 4 &lt;span id=&quot;SPELLING_ERROR_25&quot; class=&quot;blsp-spelling-error&quot;&gt;Training&lt;/span&gt; &lt;span id=&quot;SPELLING_ERROR_26&quot; class=&quot;blsp-spelling-error&quot;&gt;Kit&lt;/span&gt;&lt;/strong&gt;&quot; de esta forma &lt;span id=&quot;SPELLING_ERROR_27&quot; class=&quot;blsp-spelling-corrected&quot;&gt;podrás&lt;/span&gt; estudiar y explotar todas las novedades que tienen incluidas estas nuevas versiones!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&amp;amp;FamilyID=752cb725-969b-4732-a383-ed5740f02e93&quot;&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&amp;amp;&lt;span id=&quot;SPELLING_ERROR_28&quot; class=&quot;blsp-spelling-error&quot;&gt;FamilyID&lt;/span&gt;=752&lt;span id=&quot;SPELLING_ERROR_29&quot; class=&quot;blsp-spelling-error&quot;&gt;cb&lt;/span&gt;725-969b-4732-a383-&lt;span id=&quot;SPELLING_ERROR_30&quot; class=&quot;blsp-spelling-error&quot;&gt;ed&lt;/span&gt;5740f02e93&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color:#cccccc;&quot;&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0Jk353q1tWx3H8jU5ck1JlDejhPvvwiexrJ_04FMe0a0FR5rigz0auxBSzd-KjlvDQPg6BFB7H1ZuPdmkgOFQVJvtCi8Du9NfM16wFeZYeQ2qM9QCvMQMoGIsYCz-ovKPE7jY3239tLQ/s1600/trainin.PNG&quot;&gt;&lt;img style=&quot;WIDTH: 320px; HEIGHT: 241px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5547951606015305970&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0Jk353q1tWx3H8jU5ck1JlDejhPvvwiexrJ_04FMe0a0FR5rigz0auxBSzd-KjlvDQPg6BFB7H1ZuPdmkgOFQVJvtCi8Du9NfM16wFeZYeQ2qM9QCvMQMoGIsYCz-ovKPE7jY3239tLQ/s320/trainin.PNG&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;span id=&quot;SPELLING_ERROR_31&quot; class=&quot;blsp-spelling-corrected&quot;&gt;Así&lt;/span&gt; que ya estas listo para empezar y no demorarte mas!!</description><link>http://bizkaianet.blogspot.com/2010/12/visual-studio-2010-que-esperas.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtk1YGgD2ujse7TdelIaxug3hRF6FIHIPLa8d4sGLUp2hviTXxQkaRLlXj3X_9H9uHlZarNpjvVxGTAqlX2PvyLhAcddmDrFCq4X7j7watUVp7BR9uJiMDp8NLo6JMGngOu1KYNfVMYN4/s72-c/Dibujo.PNG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-8451377703844633899</guid><pubDate>Wed, 24 Nov 2010 18:44:00 +0000</pubDate><atom:updated>2010-11-24T11:21:47.714-08:00</atom:updated><title>De vuelta!</title><description>Bueno después de mucho tiempo sin ponerme a compartir mis experiencias y conocimientos, ha llegado la hora de volver, muchas veces por causas que no sé pueden controlar o por simple agotamiento mental, ya que la gran parte del tiempo nos lo pasamos trabajando en proyectos de alto nivel con gran exigencia humana.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Eso si! después de tanto tiempo regreso con fuerza e ilusión de hacer buenos post que puedan serviros de ayuda en vuestras batallas personales con el código.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Así que lo dicho pronto empezare!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2010/11/de-vuelta.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-6797518241539385909</guid><pubDate>Tue, 16 Sep 2008 06:27:00 +0000</pubDate><atom:updated>2008-09-16T00:19:54.643-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Otros</category><category domain="http://www.blogger.com/atom/ns#">Recursos</category><title>Windows 7</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3_2B0xxfxeMgXMb2xg7X0GcxQrpJgq7Ad0HYnEIkVVRu06CwggrdtSwR-r3Qmreg_zmrY_ABY2XbMy8kmVAMSuGVdTb8-EEh5SCpMRuWrM693evZU5O1KfTdXvPNczbEyM-gg2acyPOw/s1600-h/7.JPG&quot;&gt;&lt;img style=&quot;float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3_2B0xxfxeMgXMb2xg7X0GcxQrpJgq7Ad0HYnEIkVVRu06CwggrdtSwR-r3Qmreg_zmrY_ABY2XbMy8kmVAMSuGVdTb8-EEh5SCpMRuWrM693evZU5O1KfTdXvPNczbEyM-gg2acyPOw/s400/7.JPG&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5246514410764532290&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_0&quot;&gt;Windows&lt;/span&gt; Vista, que salio el &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot; ;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt; 30 de enero de 2007, ya esta tocando su fin...&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt; y es que ya se &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_1&quot;&gt;conciertan&lt;/span&gt; fechas para la nueva versión del Sistema operativo &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_2&quot;&gt;Windows&lt;/span&gt;, particularmente me ha parecido uno de los mayores fracasos que han tenido en sistemas operativos desde el &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_3&quot;&gt;Windows&lt;/span&gt; Me (&lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_4&quot;&gt;Millenium&lt;/span&gt;),  lo han querido hacer tan &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_5&quot;&gt;fácil&lt;/span&gt; para el usuario que al final han terminado complicandolo &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_7&quot;&gt;muchísimo&lt;/span&gt;, mas aun, metiendo &lt;span class=&quot;Apple-style-span&quot;  style=&quot; white-space: pre; font-family:Arial;&quot;&gt;excesivas &lt;/span&gt;mejoras de seguridad, que al usuario corriente ni le interesan, y cambiando absolutamente todo de lugar... eso si...que bonito es! &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_9&quot;&gt;quizá,&lt;/span&gt; es que no me gusta mucho el cambio... todo sea dicho.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;Bueno, el caso es que ya se tienen fechas para la primera &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_10&quot;&gt;release&lt;/span&gt; que será en junio del 2009 y la primera beta publica se lanzara en octubre del mismo año.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;El lanzamiento se &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_11&quot;&gt;preve&lt;/span&gt; que llegara para principios del año 2010, &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_12&quot;&gt;después&lt;/span&gt; de tres años de vida del Vista &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_13&quot;&gt;aparecerá&lt;/span&gt; su sucesor... aunque ya &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_14&quot;&gt;sabéis&lt;/span&gt; que con esto de las fechas Microsoft no se lleva muy bien.... se supone que se vera un  cambio significativo tanto en la &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_15&quot;&gt;interface&lt;/span&gt; de usuarios como en el kernel ... se dice que lo &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_16&quot;&gt;moverá&lt;/span&gt; el &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_17&quot;&gt;MinWin&lt;/span&gt;, un &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_18&quot;&gt;mikrokernel&lt;/span&gt; que sera utilizado por otros sistemas que aparte del 7, a ver si se cumplen plazos y vemos pronto este nuevo desarrollo .&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;Para leer mas &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot; &quot;&gt;&lt;a href=&quot;http://www.internetnews.com/bus-news/print.php/3771391&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;http://www.internetnews.com/bus-news/print.php/3771391&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2008/09/windows-7.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3_2B0xxfxeMgXMb2xg7X0GcxQrpJgq7Ad0HYnEIkVVRu06CwggrdtSwR-r3Qmreg_zmrY_ABY2XbMy8kmVAMSuGVdTb8-EEh5SCpMRuWrM693evZU5O1KfTdXvPNczbEyM-gg2acyPOw/s72-c/7.JPG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-367585390579127305</guid><pubDate>Thu, 11 Sep 2008 18:24:00 +0000</pubDate><atom:updated>2008-09-11T13:43:33.565-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Eventos y jornadas</category><category domain="http://www.blogger.com/atom/ns#">LINQ</category><title>HOL´S de ADO .NET Entity Framework</title><description>&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqsgJC2t9mtr2UgCPODhFxVhC1R5rHWAnSEM0z40Vb6h0RmZCpnmGZUwgBy_AUojDJkhRP05TnfgwaqpBQ4cigGHN3FUKYZ5zIXoV5Q4TXNyOeZ3fxUGOueuC77bpOoWtHBEvugCKhUMg/s1600-h/figure2.jpg&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqsgJC2t9mtr2UgCPODhFxVhC1R5rHWAnSEM0z40Vb6h0RmZCpnmGZUwgBy_AUojDJkhRP05TnfgwaqpBQ4cigGHN3FUKYZ5zIXoV5Q4TXNyOeZ3fxUGOueuC77bpOoWtHBEvugCKhUMg/s400/figure2.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5244838536222177442&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;Hoy, he tenido el lujo de asistir a una jornada impartida por Unai Zorrilla sobre Entity Framework en Santander, y ciertamente, ha sido una de las mejores jornadas en las que he estado, y es que, cuando vas a muchas charlas, eventos o lo que sea, alguna que otra vez, te encuentras con que sales igual que como entras, es decir, que el que la imparte o no tiene ni idea o no sabe explicar. Bueno, el caso es que he de felicitar a Unai, y como no! comentar que muy prontito va a sacar un libro sobre este tema, el cual  me voy a comprar, y no porque lo repitiera mil veces jejejej sino, porque se que el que lo ha hecho, es un verdadero crack!&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;Bueno se me ha despertado la curiosidad sobre el Entity Framework un tema que me daba mucha pereza empezar ya que si me funciona ado.net para que voy a cambiar! Pues la respuesta esta en el libro de Unai!! el caso es que es muy potente y esta fuertemente tipado,  os invitaría a que empezarais con ello ...&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;Aun así, aun no estoy muy convencido de si podría aplicarlo a aplicaciones muy grandes ya que me da un poquito de miedo que el modelo pueda convertirse en un monstruo enorme! o afecte a mi rendimiento .. ahora toca hacer  pruebas y empezar a depurar ... &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:small;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2008/09/hols-de-ado-net-entity-framework.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqsgJC2t9mtr2UgCPODhFxVhC1R5rHWAnSEM0z40Vb6h0RmZCpnmGZUwgBy_AUojDJkhRP05TnfgwaqpBQ4cigGHN3FUKYZ5zIXoV5Q4TXNyOeZ3fxUGOueuC77bpOoWtHBEvugCKhUMg/s72-c/figure2.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-7543507613059856407</guid><pubDate>Thu, 14 Aug 2008 13:56:00 +0000</pubDate><atom:updated>2008-08-14T07:37:10.408-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Dynamics Mobile</category><title>Inicios Microsoft Dynamics Mobile</title><description>&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDdx1RMDqo4zik0S6JPyIBEDvcmGqYeSxZpbJiJ8_67sI-zj7n2Ql3fVc7PqQbw-NFCntK8Gx_O-GV9J5cNW05T0n7OFGdlzlZw12P0USjSR0HD_jvMjUfpwCxnY8cDoS1USu3tkJTmfc/s1600-h/Mnug_gif.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5234380156199689682&quot; style=&quot;CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDdx1RMDqo4zik0S6JPyIBEDvcmGqYeSxZpbJiJ8_67sI-zj7n2Ql3fVc7PqQbw-NFCntK8Gx_O-GV9J5cNW05T0n7OFGdlzlZw12P0USjSR0HD_jvMjUfpwCxnY8cDoS1USu3tkJTmfc/s400/Mnug_gif.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-r9rBGJQ51qKOJdQ_AEx_V34ugMrqH2L2mUVQgIy3lbx7IvE_h4ntye1tQQSd_Q_ccSrwd96E7VquydahMF1nBtoFG9PAFNl-gyagsR7UqKhQPzJ0dxU27f2N91XSFlwmhZSN4GQtQyQ/s1600-h/MDynamics.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5234380013864304418&quot; style=&quot;CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-r9rBGJQ51qKOJdQ_AEx_V34ugMrqH2L2mUVQgIy3lbx7IvE_h4ntye1tQQSd_Q_ccSrwd96E7VquydahMF1nBtoFG9PAFNl-gyagsR7UqKhQPzJ0dxU27f2N91XSFlwmhZSN4GQtQyQ/s400/MDynamics.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;He iniciado una nueva andadura en Microsoft &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_0&quot;&gt;Dynamics&lt;/span&gt; &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_1&quot;&gt;Mobile&lt;/span&gt;, una tecnología reciente en la que su versión 1.1 vio la luz el 31 de marzo del 2008. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;Esta soporta:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;&lt;strong&gt;Microsoft &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_2&quot;&gt;Dynamics&lt;/span&gt; &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_3&quot;&gt;NAV&lt;/span&gt; 4.0 &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_4&quot;&gt;SP&lt;/span&gt;3&lt;br /&gt;Microsoft &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_5&quot;&gt;Dynamics&lt;/span&gt; &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_6&quot;&gt;NAV&lt;/span&gt; 5.0 &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_7&quot;&gt;SP&lt;/span&gt;1&lt;br /&gt;Microsoft &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_8&quot;&gt;Dynamics&lt;/span&gt; &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_9&quot;&gt;AX&lt;/span&gt; 4.0 &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_10&quot;&gt;SP&lt;/span&gt;1&lt;br /&gt;Microsoft &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_11&quot;&gt;Dynamics&lt;/span&gt; &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_12&quot;&gt;AX&lt;/span&gt; 4.0 &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_13&quot;&gt;SP&lt;/span&gt;2&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;strong&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;Si &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_14&quot;&gt;queréis&lt;/span&gt; saber mas de esta &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_15&quot;&gt;tecnología&lt;/span&gt; no &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_16&quot;&gt;dudéis&lt;/span&gt; en pasar por esta &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_17&quot;&gt;web&lt;/span&gt;: &lt;/span&gt;&lt;a href=&quot;http://www.mobilenug.com/dynamics/default.aspx&quot;&gt;&lt;span style=&quot;font-family:arial;font-size:85%;color:#3366ff;&quot;&gt;http://www.mobilenug.com/dynamics/default.aspx&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt; en ella &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_18&quot;&gt;podréis&lt;/span&gt; encontrar información y recursos, es un sitio, que esta es sus primeros pasos, no &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_19&quot;&gt;dudéis&lt;/span&gt; en pasaros por ella.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;En ella se ha publicado mi primera gotita de agua &lt;strong&gt;&quot;&lt;a href=&quot;http://www.mobilenug.com/dynamics/Archivos/Aplicacion%20multiidioma%20en%20tiempo%20de%20ejecución.pdf&quot;&gt;&lt;span style=&quot;color:#3333ff;&quot;&gt;Como cambiar el idioma en tiempo de ejecución&lt;/span&gt;&lt;/a&gt;&quot;&lt;/strong&gt; con la ayuda indispensable de&lt;strong&gt; &lt;a href=&quot;http://www.mobilenug.com/&quot;&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_20&quot;&gt;Jose&lt;/span&gt; Antonio Gallego&lt;/span&gt;&lt;/a&gt; &lt;/strong&gt;miembro de &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_21&quot;&gt;mobilenug&lt;/span&gt;.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt; &lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;Saludos.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2008/08/inicios-microsoft-dynamics-mobile.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDdx1RMDqo4zik0S6JPyIBEDvcmGqYeSxZpbJiJ8_67sI-zj7n2Ql3fVc7PqQbw-NFCntK8Gx_O-GV9J5cNW05T0n7OFGdlzlZw12P0USjSR0HD_jvMjUfpwCxnY8cDoS1USu3tkJTmfc/s72-c/Mnug_gif.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-3135013179203026627</guid><pubDate>Wed, 16 Apr 2008 18:21:00 +0000</pubDate><atom:updated>2008-04-16T11:35:33.354-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Eventos y jornadas</category><category domain="http://www.blogger.com/atom/ns#">Otros</category><title>Evento Bilbao</title><description>&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2-aQPnZaaoGdukDjZS3WtMqoChB11lt9Q3GkmFJN0sW9odo0wn_7l_G4SFYPqFucZGzwx9zGJrmsBjC8-165tXHZn5a1G-BJXH8xAH6tIC4dfLISl7c6oLfHzCwUnvJyi_8-yvFCO6rs/s1600-h/3b00ae8c-6cf6-47a4-b533-6a5a70d25946.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5189913105053651938&quot; style=&quot;CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2-aQPnZaaoGdukDjZS3WtMqoChB11lt9Q3GkmFJN0sW9odo0wn_7l_G4SFYPqFucZGzwx9zGJrmsBjC8-165tXHZn5a1G-BJXH8xAH6tIC4dfLISl7c6oLfHzCwUnvJyi_8-yvFCO6rs/s400/3b00ae8c-6cf6-47a4-b533-6a5a70d25946.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt; &lt;span style=&quot;font-family:arial;&quot;&gt;Ha habido gente que me ha preguntado si me ha llegado el diploma 5 estrellas y si me llego este lunes, ha tardado como 6 semanas en llegar pero llega no os impacientéis.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgm7Qh7qQlUn8uh445rNRyPqC8nKunAyDgOxdrt9Y_ur7TfaJUzLzD4GuKtcxKED3arlmi8Qva9rr1jT_IyGyioxdk5QuHjtVUsk79sud45CXPLZfwl9VcJZpgy9BTckDRNW4e-fDUbUQI/s1600-h/Sin-titulo-1.gif&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5189912439333721026&quot; style=&quot;CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgm7Qh7qQlUn8uh445rNRyPqC8nKunAyDgOxdrt9Y_ur7TfaJUzLzD4GuKtcxKED3arlmi8Qva9rr1jT_IyGyioxdk5QuHjtVUsk79sud45CXPLZfwl9VcJZpgy9BTckDRNW4e-fDUbUQI/s320/Sin-titulo-1.gif&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;Para toda la gente de Bilbao y de fuera! que le apetezca ir a un evento que se antoja interesante, será el día 29 de abril a las 19:00 en la Universidad de Deusto&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;ASP.NET Extensions&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;19:00 Registro.&lt;br /&gt;19:15 ASP.NET Extensions.&lt;br /&gt;Introducción a ASP.NET Extensions&lt;br /&gt;ASP.NET MVC. Framework que permite el desarrollo de aplicaciones ASP.NET usando el patrón Modelo-Vista-Controlador que ofrece una separación entre las diferentes capas que contiene una aplicación. ( interfaz-lógica de negocio-datos ).&lt;br /&gt;ASP.NET Dymamic Data Support. Característica para la creación rápida de aplicaciones web dirigidas por datos. Permite generar webs orientadas a datos de una manera sencilla y personalizable.&lt;br /&gt;ADO.NET Data Services ( Astoria ). Permite la búsqueda y manipulación de datos a través de la web de una manera sencilla usando URLs. Esta funcionalidad expone la información usando REST.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Por &lt;/strong&gt;&lt;a href=&quot;http://geeks.ms/blogs/rcorral/&quot;&gt;&lt;strong&gt;Rodrigo Corral &lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;e &lt;/strong&gt;&lt;/span&gt;&lt;a href=&quot;http://www.artalde.net/blogs/ilanda/archive/2008/04/09/artalde-net-asp-net-extensions.aspx&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;strong&gt;Ibon Landa&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;br /&gt;Para registrarse pinchar &lt;a href=&quot;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032376411&amp;amp;Culture=es-ES&quot;&gt;aqui&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;br /&gt;Un saludo!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;</description><link>http://bizkaianet.blogspot.com/2008/04/evento-bilbao.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2-aQPnZaaoGdukDjZS3WtMqoChB11lt9Q3GkmFJN0sW9odo0wn_7l_G4SFYPqFucZGzwx9zGJrmsBjC8-165tXHZn5a1G-BJXH8xAH6tIC4dfLISl7c6oLfHzCwUnvJyi_8-yvFCO6rs/s72-c/3b00ae8c-6cf6-47a4-b533-6a5a70d25946.jpg" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-2610152292057929265</guid><pubDate>Fri, 28 Mar 2008 06:48:00 +0000</pubDate><atom:updated>2008-03-27T23:56:43.660-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ASP.NET</category><category domain="http://www.blogger.com/atom/ns#">Otros</category><title>Estadísticas de los navegadores Web.</title><description>&lt;p  style=&quot;text-align: justify;font-family:arial;&quot; class=&quot;MsoNormal&quot;&gt;Os muestro la utilización de los navegadores mas usados por los usuarios de internet hasta el momento, vemos que FireFox gana terreno frente a las versiones de IE, mientras que para desgracia de todos los programadores el IE6 sigue siendo de los mas utilizados... consecuencia?? &lt;span style=&quot;font-weight: bold;&quot;&gt;programar para cuatro o cinco navegadores&lt;/span&gt; con sus consiguientes &quot;peculiaridades&quot;. En fin habrá que resignarse...&lt;/p&gt;&lt;br /&gt;&lt;table class=&quot;ex&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot; width=&quot;20%&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;2008&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;IE7&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;IE6&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;IE5&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Fx&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Moz&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;S&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;O&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;February&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;22.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;30.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;36.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.1%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;2.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.4%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;January&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;21.2%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;32.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;36.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.9%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.4%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot; width=&quot;20%&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;2007&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;IE7&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;IE6&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;IE5&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Fx&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Moz&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;S&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-family:arial;&quot; bg=&quot;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;O&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;December&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;21.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;33.2%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;36.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.4%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;November&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;20.8%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;33.6%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;36.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.2%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.8%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;October&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;20.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;34.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;36.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;September&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;20.8%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;34.9%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;35.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.2%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;August&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;20.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;35.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;34.9%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;July&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;20.1%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;36.9%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;34.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.9%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;June&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;19.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;37.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;34.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.8%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;May&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;19.2%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;38.1%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;33.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;April&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;19.1%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;38.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;32.9%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;March&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;18.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;38.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;2.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;31.8%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.6%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;February&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;16.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;39.8%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;2.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;31.2%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.4%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;January&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;13.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;42.3%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;3.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;31.0%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.7%&lt;/span&gt;&lt;/td&gt;     &lt;td  style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;1.5%&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://bizkaianet.blogspot.com/2008/03/estadsticas-de-los-navegadores-web.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8796930443502419270.post-5895190345926416865</guid><pubDate>Thu, 06 Mar 2008 19:21:00 +0000</pubDate><atom:updated>2008-03-06T11:28:55.210-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Recursos</category><title>Internet Explorer 8 Beta 1</title><description>&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinhiZawQUS4sHYJ2yY-29S8L4MPZeSTM71ZZwRMI7eo5FR510WbOPRcVzj7LHsB2KgiCY1u_8n5NEHMtZvqXFBFJl-rmBFy4EaL87BcBhiQ_fA7QrFPCOYw9seKPfpK1YH5rWTUIV9cJU/s1600-h/IE8.bmp&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5174711417149896626&quot; style=&quot;CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinhiZawQUS4sHYJ2yY-29S8L4MPZeSTM71ZZwRMI7eo5FR510WbOPRcVzj7LHsB2KgiCY1u_8n5NEHMtZvqXFBFJl-rmBFy4EaL87BcBhiQ_fA7QrFPCOYw9seKPfpK1YH5rWTUIV9cJU/s400/IE8.bmp&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;Ya esta aquí al nueva versión del Internet Explorer, en este caso, la Beta 1 del IE 8. En mi opinión la versión 7 del Internet Explorer no fue mas que una burda imitación de las características mas destacadas del Mozilla Firefox, y que en lo que se refiere a navegadores, Microsoft necesita innovar y no copiar.&lt;br /&gt;&lt;br /&gt;Dicho esto, os invito a que os paseéis a ver la nueva versión de este famoso navegador, incluye cosas tan sorprendentes como las &lt;strong&gt;Activitis&lt;/strong&gt;: que son una serie de actividades, que puedes modificar a tu gusto, y te permiten hacer cosas como seleccionar una dirección y que te muestre en un plano donde esta:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtIuxzEsZMJCRC9p4cKQtL30MOtJjOVo-L9Rhy2PLQXIHIct8_NfUEy0ZBac3om3u59PJXbd5o70p_aE_HHiXrXqf2_QESvNJ-7b6psw_YnB4CuC3-g6iGiZmzca11ATInpBtPXFGIteE/s1600-h/mapa.bmp&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5174711636193228738&quot; style=&quot;CURSOR: hand&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtIuxzEsZMJCRC9p4cKQtL30MOtJjOVo-L9Rhy2PLQXIHIct8_NfUEy0ZBac3om3u59PJXbd5o70p_aE_HHiXrXqf2_QESvNJ-7b6psw_YnB4CuC3-g6iGiZmzca11ATInpBtPXFGIteE/s400/mapa.bmp&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;div align=&quot;justify&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;Otra característica que destacan son los &lt;strong&gt;WebSlices&lt;/strong&gt;, que tiene cosas interesantes, pero a mi, no me parece mas que otra forma de gestionar links.&lt;br /&gt;&lt;br /&gt;Lo que si me a parecido muy interesante, y ya era hora!, &lt;strong&gt;es&lt;/strong&gt; &lt;strong&gt;una herramienta para desarrolladores&lt;/strong&gt;, esta herramienta permite depurar, visionar capas, estilos y muchas cosas mas.... y si, en Firefox muchos de nosotros ya nos hemos topado con varias de estas herramientas para hacer webs accesibles del infierno! pero.....&lt;br /&gt;&lt;br /&gt;Os dejo un link para que le echéis un vistazo:&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;a href=&quot;http://www.microsoft.com/windows/ie/ie8/welcome/en/default.html&quot;&gt;&lt;span style=&quot;font-family:arial;font-size:85%;color:#3333ff;&quot;&gt;Inaternet Explorer 8 Beta 1&lt;/span&gt;&lt;/a&gt; &lt;/div&gt;</description><link>http://bizkaianet.blogspot.com/2008/03/internet-explorer-8-beta-1.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinhiZawQUS4sHYJ2yY-29S8L4MPZeSTM71ZZwRMI7eo5FR510WbOPRcVzj7LHsB2KgiCY1u_8n5NEHMtZvqXFBFJl-rmBFy4EaL87BcBhiQ_fA7QrFPCOYw9seKPfpK1YH5rWTUIV9cJU/s72-c/IE8.bmp" height="72" width="72"/><thr:total>0</thr:total></item></channel></rss>