<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>martinnets.wordpress.com</title>
	<atom:link href="http://martinnets.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://martinnets.wordpress.com</link>
	<description>by martinnets</description>
	<lastBuildDate>Tue, 26 Apr 2011 18:43:57 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='martinnets.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>martinnets.wordpress.com</title>
		<link>http://martinnets.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://martinnets.wordpress.com/osd.xml" title="martinnets.wordpress.com" />
	<atom:link rel='hub' href='http://martinnets.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Como instalar una soluci&#243;n (.wsp) de SharePoint 2010 via PowerShell</title>
		<link>http://martinnets.wordpress.com/2011/04/26/como-instalar-una-solucin-wsp-de-sharepoint-2010-via-powershell/</link>
		<comments>http://martinnets.wordpress.com/2011/04/26/como-instalar-una-solucin-wsp-de-sharepoint-2010-via-powershell/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 18:43:56 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://martinnets.wordpress.com/2011/04/26/como-instalar-una-solucin-wsp-de-sharepoint-2010-via-powershell/</guid>
		<description><![CDATA[http://geeks.ms/blogs/juank/archive/2011/04/24/como-instalar-una-soluci-243-n-wsp-de-sharepoint-2010-via-powershell.aspx Hola, dado la poca documentación que existe en la web al respecto de este tema he decidido escribir este artículo que estoy seguro le será de mucha utilidad a todos ustedes. Una vez generado el paquete desde Visual Studio 2010, abrimos una consola de administración de SharePoint, sobra decir que la debemos abrir con [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=81&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://geeks.ms/blogs/juank/archive/2011/04/24/como-instalar-una-soluci-243-n-wsp-de-sharepoint-2010-via-powershell.aspx" href="http://geeks.ms/blogs/juank/archive/2011/04/24/como-instalar-una-soluci-243-n-wsp-de-sharepoint-2010-via-powershell.aspx">http://geeks.ms/blogs/juank/archive/2011/04/24/como-instalar-una-soluci-243-n-wsp-de-sharepoint-2010-via-powershell.aspx</a></p>
<p>Hola, dado la poca documentación que existe en la web al respecto de este tema he decidido escribir este artículo que estoy seguro le será de mucha utilidad a todos ustedes.</p>
<p>Una vez generado el paquete desde Visual Studio 2010, abrimos una consola de administración de SharePoint, sobra decir que la debemos abrir con privilegios de administrador ( clic derecho, ejecutar como administrator ).</p>
<p>Inicia el trabajo, revisaremos primero la forma de realizar la instalación, seguidamente como hacer la desinstalación y finalmente un tip que les será útil a todos.</p>
<p>&#160;</p>
<p>Instalación de la solución</p>
<p>&#160;</p>
<p>La instalación se divide en 3 partes   <br />Subir la solución     <br />Instalarla    <br />Activar las características</p>
<p>&#160;</p>
<p>Procedemos a ejecutar los siguientes pasos en la consola de administración de SharePoint 2010, como la instalación puede ser un proceso ‘incomodo’ entonces lo primero que realizaremos será crear tres variables, una de ellas para la ubicación del sitio, otra para el nombre de la solución y una última para el nombre de la característica.</p>
<p>En este ejemplo los valores para esas variables son:   <br />url del sitio esta en <a href="http://localhost">http://localhost</a>    <br />nombre de la solución TestWebPart.wsp    <br />nombre de la única característica de la solución “TestWebPart Feature1″ o su id = “64C2C32C-064D-4216-BB63-6A67EFE828D1″</p>
<p>&#160;</p>
<p>Así que los primeros comandos a ejecutar son para inicializar las variables   <br />?1    <br />2    <br />3&#160;&#160;&#160; $SiteURL=&quot;<a href="http://localhost&quot;">http://localhost&quot;</a>    <br />$SolName=&quot;TestWebPart.wsp&quot;    <br />$FeaName=&quot;TestWebPart_Feature1&quot;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>1. Subir la solución</p>
<p>Cambiamos al directorio donde esta el archivo .wsp</p>
<p>seguidamente ejecutamos el siguiente comando, -LiteralPath nos pide el path completo del archivo .wsp, no importa si ya estamos en el directorio en todo caso debemos poner la ruta completa.   <br />?1&#160;&#160;&#160; Add-SPSolution -LiteralPath &quot;C:\TestWebPart.wsp&quot;</p>
<p>&#160;</p>
<p>Esto nos debe generar la siguiente salida   <br />?1    <br />2    <br />3&#160;&#160;&#160; Name SolutionId Deployed    <br />&#8212;- &#8212;&#8212;&#8212;- &#8212;&#8212;&#8211;    <br />testwebpart.wsp 2361bfd2-d113-4f4d-8941-cfdb66edb891 False</p>
<p>&#160;</p>
<p>&#160;</p>
<p>2. Instalar la solución</p>
<p>Una vez hemos subido la solución al servidor procedemos a instalarla así   <br />?1&#160;&#160;&#160; Install-SPSolution -Identity $SolName -WebApplication $SiteUrl -GACDeployment</p>
<p>&#160;</p>
<p>Si el comando fue exitoso no hay ningún feedback por consola.</p>
<p>&#160;</p>
<p>3. Activación de las características de la solución</p>
<p>La solución ya está instalada así que ahora debemos activar las características que hemos incluido. Si hemos desarrollado un Webpart desde Visual Studio 2010 este crea automáticamente una característica, podemos instalarla haciendo uso de su nombre o de is en caso de que lo hayas generado</p>
<p>Tip: si el nombre de la característica tiene espacios, deberás reemplazarlos por el carácter ‘_’ (línea al piso)   <br />?1&#160;&#160;&#160; Install-SPSolution -Identity $SolName -WebApplication $SiteUrl -GACDeployment</p>
<p>&#160;</p>
<p>Si el comando fue exitoso no hay ningún feedback por consola.</p>
<p>&#160;</p>
<p>Con eso finalizamos la parte de la instalación, así que vamos a SharePoint y verificamos. </p>
<p>En este caso estamos instalando un webpart así que vamos a Acciones del sitio, Configuración, Elementos web y allí debes encontrar el webpart que acabamos de instalar.</p>
<p>&#160;</p>
<p>&#160;</p>
<p>Desinstalación de la solución</p>
<p>Esta parte es básicamente lo mismo pero al revez, si, así de fácil.   <br />Desactivar las características    <br />Desinstalar la solución    <br />Remover la solución</p>
<p>&#160;</p>
<p>1. Desactivar las características   <br />?1&#160;&#160;&#160; Disable-SPFeature -Identity $FeaName -Url $SiteURL -Confirm:$false</p>
<p>&#160;</p>
<p>Si es exitoso no hay respuesta</p>
<p>3. Remover la solución</p>
<p>Este comando no sirve pada nada. Así es lo tenemos que ejecutar pero no hace lo que se supone que debe hacer, o mejor, lo hace a medias…   <br />?1&#160;&#160;&#160; Remove-SPSolution -Identity $SolName -Confirm:$false</p>
<p>&#160;</p>
<p>Si es exitoso no hay respuesta.</p>
<p>Sin embargo si revisamos nuestro webpart aún aparece solo que no se puede usar para nada. Se supone que precisamente este comando lo remueve, pero realmente remueve la solución pero no todos sus componentes, de seguro un bug.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=81&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2011/04/26/como-instalar-una-solucin-wsp-de-sharepoint-2010-via-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>
	</item>
		<item>
		<title>Project Server 2010: Disponible la m&#225;quina virtual de integraci&#243;n con TFS!</title>
		<link>http://martinnets.wordpress.com/2011/04/26/project-server-2010-disponible-la-mquina-virtual-de-integracin-con-tfs/</link>
		<comments>http://martinnets.wordpress.com/2011/04/26/project-server-2010-disponible-la-mquina-virtual-de-integracin-con-tfs/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 18:41:27 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://martinnets.wordpress.com/2011/04/26/project-server-2010-disponible-la-mquina-virtual-de-integracin-con-tfs/</guid>
		<description><![CDATA[Una de las características más destacables de la nueva versión de Project Server (2010), aparte de su mayor integración si cabe dentro de la plataforma SharePoint, es la alta integración con Team Foundation Server (TFS). Para ver las características de esta integración, Microsoft acaba de liberar una nueva máquina virtual en la que ya tenemos [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=80&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Una de las características más destacables de la nueva versión de Project Server (2010), aparte de su mayor integración si cabe dentro de la plataforma SharePoint, es la alta integración con Team Foundation Server (TFS). Para ver las características de esta integración, Microsoft acaba de liberar una nueva máquina virtual en la que ya tenemos todo configurado y listo para comenzar a jugar con ambos productos: Visual Studio Team Foundation Server 2010 and Project Server 2010 Demo Virtual Machine.</p>
<p><a title="http://blogs.msdn.com/b/briankel/archive/2011/04/15/getting-started-with-the-team-foundation-server-2010-and-project-server-2010-integration-virtual-machine.aspx" href="http://blogs.msdn.com/b/briankel/archive/2011/04/15/getting-started-with-the-team-foundation-server-2010-and-project-server-2010-integration-virtual-machine.aspx">http://blogs.msdn.com/b/briankel/archive/2011/04/15/getting-started-with-the-team-foundation-server-2010-and-project-server-2010-integration-virtual-machine.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=80&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2011/04/26/project-server-2010-disponible-la-mquina-virtual-de-integracin-con-tfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Wonder Wheel &#8211; Nuevo Experimento</title>
		<link>http://martinnets.wordpress.com/2009/06/12/google-wonder-wheel-nuevo-experimento/</link>
		<comments>http://martinnets.wordpress.com/2009/06/12/google-wonder-wheel-nuevo-experimento/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:11:16 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[News Google]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2009/06/12/google-wonder-wheel-nuevo-experimento/</guid>
		<description><![CDATA[Google está realizando un experimento en sus resultados de búsqueda, que sólo se muestra  en la versión de google en Ingles. Al realizar la búsqueda en esta versión, se agregar un enlace que dice show options Al hacer click en este enlace, tendremos al lado izquierdo un panel con varias funciones, interesantes que no hacen [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=59&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Google está realizando un experimento en sus resultados de búsqueda, que sólo se muestra  en la versión de google en Ingles.</p>
<p>Al realizar la búsqueda en esta versión, se agregar un enlace que dice <strong><span style="color:#0080ff;"><span style="text-decoration:underline;">show options</span></span></strong></p>
<p><a href="http://martinnets.files.wordpress.com/2009/06/image.png"><img style="display:inline;border-width:0;" title="image" src="http://martinnets.files.wordpress.com/2009/06/image_thumb.png?w=437&#038;h=257" border="0" alt="image" width="437" height="257" /></a></p>
<p>Al hacer click en este enlace, tendremos al lado izquierdo un panel con varias funciones, interesantes que no hacen mas que filtrar la búsqueda, una de estas opciones es una nueva de nombre Wonder Wheel.</p>
<p><a href="http://martinnets.files.wordpress.com/2009/06/image1.png"><img style="display:inline;border-width:0;" title="image" src="http://martinnets.files.wordpress.com/2009/06/image_thumb1.png?w=454&#038;h=257" border="0" alt="image" width="454" height="257" /></a></p>
<p>Las características más interesantes es el experimento &#8220;Wonder Wheel”. Este mostrará un flash interactivo basado en una mini-aplicación que empieza con la palabra clave en el centro, y términos relacionados a su alrededor Al hacer clic en un término relacionado crea uno nuevo, conectando con el círculo más términos relacionados.</p>
<p><a href="http://martinnets.files.wordpress.com/2009/06/image2.png"><img style="display:inline;border-width:0;" title="image" src="http://martinnets.files.wordpress.com/2009/06/image_thumb2.png?w=455&#038;h=255" border="0" alt="image" width="455" height="255" /></a></p>
<p><strong>Si desean probar este experimento de google, sigan estos pases.</strong></p>
<p>1. Ingresar al enlace de google en ingles  <a href="http://www.google.com/ncr">Google in English</a></p>
<p>2.Copia y pega el siguiente código en la barra del navegador (cuando pulses “intro” no pasará, aparentemente nada)</p>
<p>javascript:void(document.cookie=”PREF=ID=4a609673baf685b5:TB=2:LD=en:CR=2:TM=1227543998:LM=1233568652:DV=AA:GM=1:IG=3:S=yFGqYec2D7L0wgxW;path=/; domain=.google.com”);</p>
<p>3.Haz una búsqueda, por ejemplo, [<a href="http://www.google.com/search?q=car&amp;hl=en&amp;output=search&amp;tbs=ww:1&amp;tbo=1">car</a>]. En la parte bajo la búsqueda tienes la opción <strong>Show options…</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=59&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2009/06/12/google-wonder-wheel-nuevo-experimento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2009/06/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2009/06/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2009/06/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 Release Candidate</title>
		<link>http://martinnets.wordpress.com/2009/05/14/windows-7-release-candidate/</link>
		<comments>http://martinnets.wordpress.com/2009/05/14/windows-7-release-candidate/#comments</comments>
		<pubDate>Thu, 14 May 2009 16:02:06 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2009/05/14/windows-7-release-candidate/</guid>
		<description><![CDATA[Ya puede descargarse la candidata a versión comercial de Windows 7. Sí, la RC ya está disponible y ofrece varios cambios y mejoras respecto de la versión beta de enero. Incluyen un mejor rendimiento en el arranque, compatibilidad con FAT32 y cambios de diseño de control de cuentas de usuario. A continuación le mostramos algunos [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=52&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://martinnets.files.wordpress.com/2009/05/090514.jpg"><img title="090514" style="display:inline;margin-left:0;margin-right:0;border-width:0;" height="147" alt="090514" src="http://martinnets.files.wordpress.com/2009/05/090514_thumb.jpg?w=207&#038;h=147" width="207" align="right" border="0" /></a> Ya puede descargarse la candidata a versión comercial de Windows 7. Sí, la RC ya está disponible y ofrece varios cambios y mejoras respecto de la versión beta de enero. Incluyen un mejor rendimiento en el arranque, compatibilidad con FAT32 y cambios de diseño de control de cuentas de usuario. A continuación le mostramos algunos recursos clave que le pueden ayudar en la evaluación del producto:     <br />&#160;&#160; . <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908207&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Vídeo: Novedades de Windows 7 RC</a>     <br />&#160;&#160; . <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908208&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Definir un programa piloto para la demostración de Windows 7</a>     <br />&#160;&#160; . <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908209&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Vídeo: Migración de Windows XP a Windows 7</a>     <br />&#160;&#160; . <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908210&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Información general sobre la facilidad de administración de Windows 7</a>     <br />&#160;&#160; . <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908211&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Preguntas frecuentes de implementación de Windows 7</a>     <br />Para mantenerse informado sobre las últimas guías y herramientas disponibles para evaluar Windows 7 visite con frecuencia la página de <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908212&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Springboard Series para Windows 7</a>. Para ver cómo utilizar la última herramienta de planeación de Windows 7 y los proyectos de virtualización y migración de Windows Server 2008 R2, se ha abierto el programa beta de <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908213&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Microsoft Assessment and Planning Toolkit 4.0</a>. Recuerde también <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908214&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">marcar su calendario para el 1 de julio de 2009, fecha de expiración de la versión beta de Windows 7</a>.     <br />Sólo un apunte más, <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908215&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Windows 7 RC está disponible para los suscriptores de MSDN y TechNet</a>.     <br />Coincidiendo con el lanzamiento de Windows 7 RC, puede descargarse ahora la <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908216&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">candidata a versión comercial Windows Server 2008 R2</a>. Revise las nuevas incorporaciones de la R2 a las tecnologías de <a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908217&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Windows Server 2008</a></p>
<p>&#160;</p>
<p><a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11908219&amp;s1=fc4643bd-3cd1-33f5-0c3d-efe00a0bd2b6">Más información</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=52&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2009/05/14/windows-7-release-candidate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2009/05/090514_thumb.jpg" medium="image">
			<media:title type="html">090514</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Lively Mundo en 3D</title>
		<link>http://martinnets.wordpress.com/2008/07/11/google-lively-mundo-en-3d/</link>
		<comments>http://martinnets.wordpress.com/2008/07/11/google-lively-mundo-en-3d/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 20:33:17 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[News Google]]></category>
		<category><![CDATA[Google Lively]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2008/07/11/google-lively-mundo-en-3d/</guid>
		<description><![CDATA[Google crea un mundo de apartamentos virtuales para comunicar a los internautas Los internautas pueden crear sus representaciones digitales y charlar con otros usuarios de sus páginas web favoritas. Cada usuario de Lively crea una habitación para recibir a otros. El líder de las búsquedas entra en los mundos virtuales. Google ha presentado hoy Lively, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=49&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Google crea un mundo de apartamentos virtuales para comunicar a los internautas</p>
<p><a href="http://martinnets.files.wordpress.com/2008/07/googlelively.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="123" alt="googlelively" src="http://martinnets.files.wordpress.com/2008/07/googlelively-thumb.jpg?w=489&#038;h=123" width="489" border="0"></a> </p>
<p>Los internautas pueden crear sus representaciones digitales y charlar con otros usuarios de sus páginas web favoritas. </p>
<li>Cada usuario de Lively crea una habitación para recibir a otros.</li>
<p>El líder de las búsquedas entra en los mundos virtuales. <a href="http://googleblog.blogspot.com/2008/07/be-who-you-want-on-web-pages-you-visit.html">Google ha presentado hoy Lively</a>, <strong>un entorno en tres dimensiones en el que los internautas pueden crear un avatar</strong>, un personaje digital que los represente y con el que podrán participar en charlas online junto a otros usuarios de sus páginas favoritas. </p>
<p>En la página de Lively hay una lista con las estancias más populares
<p>Quienes quieran utilizar <a href="http://www.lively.com/popular">Lively</a> , un servicio gratuito y que se encuentra aún en pruebas, deben crear <strong>una habitación virtual en la que podrán encontrarse con otros internautas</strong>. Para que todo el mundo pueda acceder a ellas, estas estancias en tres dimensiones pueden insertarse en cualquier página web.<br />Una vez que el usuario se registra con su nombre y contreña, el internauta puede acceder a todas las salas de Lively que desee. <strong>Funcionan ya en páginas webs convencionales, en blogs y en la red social Facebook</strong>. Google está trabajando aún en una versión insertable en los perfiles de MySpace.<br />Los avatares de Lively pueden ser seres humanos (masculinos y femeninos) o de diferentes especies, y durante su vida pueden cambiar de ropa o <strong>mostrar estados de ánimo diferentes</strong> con solo unos clics.<br />Además de crear su avatar, los usuarios de Lively deben cnfigurar una habitación propia, que es la que se insertará en sus páginas web para que los visitantes puedan entrar y charlar entre ellos. Entre los múltiples objetos que pueden usarse para la configuración del apartamento virtual hay <strong>un reproductor de vídeo capaz de mostrar clips de Youtube</strong>. En la página del servicio hay una lista con las estancias más populares.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/martinnets.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/martinnets.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=49&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2008/07/11/google-lively-mundo-en-3d/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/07/googlelively-thumb.jpg" medium="image">
			<media:title type="html">googlelively</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 (Seven)</title>
		<link>http://martinnets.wordpress.com/2008/05/28/windows-7-seven/</link>
		<comments>http://martinnets.wordpress.com/2008/05/28/windows-7-seven/#comments</comments>
		<pubDate>Wed, 28 May 2008 14:25:23 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2008/05/28/windows-7-seven/</guid>
		<description><![CDATA[Windows 7 (anteriormente conocido como Blackcomb y Viena) es el nombre de trabajo para la próxima gran versión de Microsoft Windows como el sucesor de Windows Vista. Microsoft ha anunciado que se &#8220;alcance el desarrollo de Windows 7 a un período de tres años de tiempo&#8221; y que &#8220;la fecha de lanzamiento específicos en última [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=46&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Windows 7 (anteriormente conocido como Blackcomb y Viena) es el nombre de trabajo para la próxima gran versión de Microsoft Windows como el sucesor de Windows Vista. <a href="http://www.microsoft.com">Microsoft</a> ha anunciado que se &#8220;alcance el desarrollo de Windows 7 a un período de tres años de tiempo&#8221; y que &#8220;la fecha de lanzamiento específicos en última instancia, se determinarán mediante el cumplimiento de la barra de calidad&#8221;. Windows 7 se espera que sea puesto en libertad en algún momento de 2010. El cliente de Windows versiones 7 se enviarán a ambos de 32 bits y 64 bits versiones. Un servidor variante, código es Windows Server 7, es también en fase de desarrollo.</p>
<p><a href="http://martinnets.files.wordpress.com/2008/05/2.jpg"><img style="border-width:0;" height="334" alt="2" src="http://martinnets.files.wordpress.com/2008/05/2-thumb.jpg?w=429&#038;h=334" width="429" border="0"></a>&nbsp;<a href="http://martinnets.files.wordpress.com/2008/05/3.jpg"><img style="border-width:0;" height="333" alt="3" src="http://martinnets.files.wordpress.com/2008/05/3-thumb.jpg?w=435&#038;h=333" width="435" border="0"></a> <a href="http://martinnets.files.wordpress.com/2008/05/4.jpg"><img style="border-width:0;" height="339" alt="4" src="http://martinnets.files.wordpress.com/2008/05/4-thumb.jpg?w=443&#038;h=339" width="443" border="0"></a> <a href="http://martinnets.files.wordpress.com/2008/05/6.jpg"><img style="border-width:0;" height="289" alt="6" src="http://martinnets.files.wordpress.com/2008/05/6-thumb.jpg?w=447&#038;h=289" width="447" border="0"></a><a href="http://martinnets.files.wordpress.com/2008/05/7.jpg"><img style="border-width:0;" height="363" alt="7" src="http://martinnets.files.wordpress.com/2008/05/7-thumb.jpg?w=449&#038;h=363" width="449" border="0"></a>&nbsp; <a href="http://martinnets.files.wordpress.com/2008/05/8.jpg"><img style="border-width:0;" height="349" alt="8" src="http://martinnets.files.wordpress.com/2008/05/8-thumb.jpg?w=451&#038;h=349" width="451" border="0"></a><a href="http://martinnets.files.wordpress.com/2008/05/9.jpg"><img style="border-width:0;" height="292" alt="9" src="http://martinnets.files.wordpress.com/2008/05/9-thumb.jpg?w=459&#038;h=292" width="459" border="0"></a> <a href="http://martinnets.files.wordpress.com/2008/05/11.jpg"><img style="border-width:0;" height="353" alt="11" src="http://martinnets.files.wordpress.com/2008/05/11-thumb.jpg?w=460&#038;h=353" width="460" border="0"></a> <a href="http://martinnets.files.wordpress.com/2008/05/10.jpg"><img style="border-width:0;" height="303" alt="10" src="http://martinnets.files.wordpress.com/2008/05/10-thumb.jpg?w=460&#038;h=303" width="460" border="0"></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/martinnets.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/martinnets.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=46&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2008/05/28/windows-7-seven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/2-thumb.jpg" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/3-thumb.jpg" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/4-thumb.jpg" medium="image">
			<media:title type="html">4</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/6-thumb.jpg" medium="image">
			<media:title type="html">6</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/7-thumb.jpg" medium="image">
			<media:title type="html">7</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/8-thumb.jpg" medium="image">
			<media:title type="html">8</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/9-thumb.jpg" medium="image">
			<media:title type="html">9</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/11-thumb.jpg" medium="image">
			<media:title type="html">11</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/10-thumb.jpg" medium="image">
			<media:title type="html">10</media:title>
		</media:content>
	</item>
		<item>
		<title>Google en Windows Live Writer</title>
		<link>http://martinnets.wordpress.com/2008/05/12/google-en-windows-live-writer/</link>
		<comments>http://martinnets.wordpress.com/2008/05/12/google-en-windows-live-writer/#comments</comments>
		<pubDate>Mon, 12 May 2008 22:30:40 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[News Google]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[writer]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2008/05/12/google-en-windows-live-writer/</guid>
		<description><![CDATA[Al publicar este blog, use windows live writer 2008, un buen programa para publicar artículos, y revisando encontré el uso de complementos, uno muy bueno entre ellos es la Extensión de Traducción que tiene Google y trabaja muy bien con windows live writer Con esta extensión puedes insertar una traducción del Traductor de Google desde [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=26&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Al publicar este blog, use windows live writer 2008, un buen programa para publicar artículos, y revisando encontré el uso de complementos, uno muy bueno entre ellos es la Extensión de Traducción que tiene Google y trabaja muy bien con windows live writer</p>
<p><a href="http://martinnets.files.wordpress.com/2008/05/image.png"><img style="border-width:0;" height="314" alt="image" src="http://martinnets.files.wordpress.com/2008/05/image-thumb.png?w=319&#038;h=314" width="319" border="0"></a> </p>
<p>Con esta extensión puedes insertar una traducción del Traductor de Google desde Windows Live Writer, sin necesidad de tener que abrir webs externas al programa de edición de blogs. Es rápido, sencillo, fácil y eficaz</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/martinnets.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/martinnets.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=26&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2008/05/12/google-en-windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2008/05/image-thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Live Writer Beta 2 disponible para descargar-martinnets</title>
		<link>http://martinnets.wordpress.com/2007/05/31/windows-live-writer-beta-2-disponible-para-descargar-martinnets/</link>
		<comments>http://martinnets.wordpress.com/2007/05/31/windows-live-writer-beta-2-disponible-para-descargar-martinnets/#comments</comments>
		<pubDate>Thu, 31 May 2007 21:24:59 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows live]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2007/05/31/windows-live-writer-beta-2-disponible-para-descargar-martinnets/</guid>
		<description><![CDATA[Leyendo como siempre www.genbeta.com, me sorprendio un articulo posteado por Javier Penaulva, sobre algop genial sobre el uso de Blogs Personalmente tengo blog en blogger, wordpress y ambos son online muy buenos Y el escribir un blog offline no era algo asiduo por mi y&#160;por lo mismo, me&#160;sorprendo con &#160;Windows Live Writer que es la [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=23&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://g.msn.com/4SAWLWENUS/WriterMSI"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="266" alt="livewriter" src="http://martinnets.files.wordpress.com/2007/05/livewriter.png?w=312&#038;h=266" width="312" border="0"></a> </p>
<p>Leyendo como siempre <a href="http://www.genbeta.com">www.genbeta.com</a>, me sorprendio un articulo posteado por Javier Penaulva, sobre algop genial sobre el uso de Blogs
<p>Personalmente tengo blog en blogger, wordpress y ambos son online muy buenos
<p>Y el escribir un blog offline no era algo asiduo por mi y&nbsp;por lo mismo, me&nbsp;sorprendo con &nbsp;<strong>Windows Live Writer</strong> que es la herramienta de Microsoft para esta tarea. Ahora llega la <strong>Beta 2</strong> para descargar, y me ha gustado mucho. <a></a><a></a>
<p>Las opciones se han aumentado mucho y la primera que salta a la vista es que ha habido rediseo total para hacer que su apariencia vaya ms acorde con los servicios Live y Windows Vista.
<p>Luego ya podramos hablar de la posibilidad de aadir y manejar categoras, la facilidad de configuracin de cuentas nuevas, compatibilidad con SharePoint 2007, que estar disponible en seis idiomas, integracin con Windows Live Gallery, soporte para Blogger Labels, nuevas APIs para que los servicios de blogs personalicen la herramienta, creacin de pginas, mejoras en la creacin de enlaces, subida de imgenes y creacin de entradas extendidas, y un buen nmero de mejoras que han completado una importante aplicacin que en breve te presentaremos ms detenidamente. </p>
<p>ir a: <a href="http://g.msn.com/4SAWLWENUS/WriterMSI" target="_blank">Windows Live Writer</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/martinnets.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/martinnets.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=23&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2007/05/31/windows-live-writer-beta-2-disponible-para-descargar-martinnets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://martinnets.files.wordpress.com/2007/05/livewriter.png" medium="image">
			<media:title type="html">livewriter</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Image con tecnología de detección de caras</title>
		<link>http://martinnets.wordpress.com/2007/05/28/google-image-con-tecnologia-de-deteccion-de-caras/</link>
		<comments>http://martinnets.wordpress.com/2007/05/28/google-image-con-tecnologia-de-deteccion-de-caras/#comments</comments>
		<pubDate>Mon, 28 May 2007 14:19:45 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[News Google]]></category>
		<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Google Image]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2007/05/28/google-image-con-tecnologia-de-deteccion-de-caras/</guid>
		<description><![CDATA[Cuando Cyberfrancis nos comentaba la adquisición de Neven Vision por parte de Google, una de las peticiones era que integrasen la tecnología de reconocimiento de objetos en Google Image Search. Pues ya están en pruebas con esa tecnología y la primera de las implementaciones es la que nos permite seleccionar solamente fotos en las que [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=21&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.genbeta.com/images/2007/05/elsapataky.png" alt="Elsa Pataky" class="centro" /></p>
<p>Cuando Cyberfrancis nos comentaba la adquisición de <a href="http://www.genbeta.com/2006/08/16-google-adquiere-neven-vision-especialista-en-analisis-y-reconocimiento-biometrico-en-imagenes">Neven Vision por parte de Google</a>, una de las peticiones era que integrasen la tecnología de reconocimiento de objetos en <strong>Google Image Search</strong>.</p>
<p>Pues ya están en pruebas con esa tecnología y la primera de las implementaciones es la que nos permite seleccionar solamente <strong>fotos en las que aparezcan caras</strong>. Para ello, hay que añadir el parámetro <em>&amp;imgtype=face</em> a la URL de la búsqueda. Como ejemplo, utilizaremos a la famosa actriz <strong>Elsa Pataky</strong>. Si realizamos la búsqueda <a href="http://images.google.com/images?q=elsa+pataky&amp;imgtype=face">elsa pataky</a> con ese parametro, veremos que los resultados son los que aparecen en la imagen superior, con la mayoría de fotografías siendo primeros planos de la cara de la conocida actriz.</p>
<p>En cambio, si no añadimos ese parámetro, <a href="http://images.google.com/images?q=elsa+pataky">los resultados</a> son bastante diferentes encontrándonos muchas fotos de cuerpo entero o, por lo menos, más generalistas, aunque los resultados variarán bastante dependiendo de si tenemos el <em>SafeSearch</em> activado o no.</p>
<p>Vía | <a href="http://www.arturogoga.com/2007/05/26/restringiendo-bsquedas-en-google-images-a-caras-o-noticias/">Arturo Goga</a>.</p>
<p>Sacha Fuentes &#8211; <a href="http://www.genbeta.com/">www.Genbeta.com</a></p>
<p><!-- google_ad_section_end --></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/martinnets.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/martinnets.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=21&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2007/05/28/google-image-con-tecnologia-de-deteccion-de-caras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://www.genbeta.com/images/2007/05/elsapataky.png" medium="image">
			<media:title type="html">Elsa Pataky</media:title>
		</media:content>
	</item>
		<item>
		<title>Demofuse, guiando a los usuarios por nuestra web mediante tours</title>
		<link>http://martinnets.wordpress.com/2007/05/28/demofuse-guiando-a-los-usuarios-por-nuestra-web-mediante-tours/</link>
		<comments>http://martinnets.wordpress.com/2007/05/28/demofuse-guiando-a-los-usuarios-por-nuestra-web-mediante-tours/#comments</comments>
		<pubDate>Mon, 28 May 2007 14:17:03 +0000</pubDate>
		<dc:creator>martinnets</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Demofuse]]></category>

		<guid isPermaLink="false">http://martinnets.wordpress.com/2007/05/28/demofuse-guiando-a-los-usuarios-por-nuestra-web-mediante-tours/</guid>
		<description><![CDATA[Demofuse es una nueva herramienta, de momento en fase cerrada y donde por el momento podemos pedir nuestra invitación, cuyo objetivo es hacer más interactiva nuestra web ya que nos permitirá crear el tour en nuestra propia web guiando a los usuarios sobre funciones, instrucciones y todo cuando les queramos resaltar de forma interactiva sobre [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=20&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="seccion"><strong><img src="http://www.genbeta.com/images/2007/05/demofuse.gif" alt="Demofuse" class="derecha_sinmarco" /></strong></p>
<p class="seccion">Demofuse es una nueva herramienta, de momento en fase cerrada y donde por el momento podemos pedir nuestra invitación, cuyo objetivo es hacer más interactiva nuestra web ya que nos permitirá crear el tour en nuestra propia web guiando a los usuarios sobre funciones, instrucciones y todo cuando les queramos resaltar de forma interactiva sobre nuestra propia web.</p>
<p class="seccion">Se trata de un servicio que sobre nuestra web nos permitirá mostrar mensajes, simulación de ratón, señalar zonas concretas incluso de forma animada, información mediante popup y otras funciones interesantes que, de momento, podemos ver el tour que nos tienen preparado desde su web oficial y que es una muestra de lo que podremos hacer el día que esté accesible.</p>
<p>Sin duda, una nueva herramienta interesante tanto para guiar a los nuevos usuarios sobre nuestra web como a los usuarios veteranos mostrarles las nuevas funciones o cualquier otro elemento que les queramos resaltar.</p>
<p><a href="http://www.go2web20.net/"><font color="#003399"><br />
</font></a>Enlace | <a href="http://www.demofuse.com/"><font color="#003399">Sitio oficial de Demofuse</font></a></p>
<p><!-- google_ad_section_end --></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/martinnets.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/martinnets.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/martinnets.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/martinnets.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/martinnets.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/martinnets.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/martinnets.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/martinnets.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/martinnets.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/martinnets.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/martinnets.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/martinnets.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/martinnets.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/martinnets.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/martinnets.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/martinnets.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=martinnets.wordpress.com&amp;blog=755313&amp;post=20&amp;subd=martinnets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://martinnets.wordpress.com/2007/05/28/demofuse-guiando-a-los-usuarios-por-nuestra-web-mediante-tours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b5e9fd28aa279443c159a9612e60a9c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">martinnets</media:title>
		</media:content>

		<media:content url="http://www.genbeta.com/images/2007/05/demofuse.gif" medium="image">
			<media:title type="html">Demofuse</media:title>
		</media:content>
	</item>
	</channel>
</rss>
