<?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"
	>

<channel>
	<title>Blog de JuanK</title>
	<atom:link href="http://juank.black-byte.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://juank.black-byte.com</link>
	<description>C#, videojuegos, PL/SQL, Win32 y más</description>
	<pubDate>Tue, 04 Nov 2008 03:12:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Resumen Windows 7 en el PDC (Professional Developers Conference)</title>
		<link>http://juank.black-byte.com/windows-resumen-windows-7-en-el-pdc-professional-developers-conference/</link>
		<comments>http://juank.black-byte.com/windows-resumen-windows-7-en-el-pdc-professional-developers-conference/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 01:07:41 +0000</pubDate>
		<dc:creator>JuanK</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[evento]]></category>

		<guid isPermaLink="false">http://juank.black-byte.com/?p=39</guid>
		<description><![CDATA[Saludos a todos, les dejo el compendio de artículos generados en el PD relacionados con Windows 7: 




Presentación


URL



KYN02 Day Two #1 - Ray Ozzie, Steven Sinofsky, Scott Guthrie and David Treadwell (Windows 7 starts +17:00 minutes)
http://channel9.msdn.com/pdc2008/KYN02/


PC01 Windows 7: Web Services in Native Code
http://channel9.msdn.com/pdc2008/PC01/


PC02 Windows 7: Extending Battery Life with Energy Efficient Applications
http://channel9.msdn.com/pdc2008/PC02/


PC03 Windows 7: Developing [...]]]></description>
		<wfw:commentRss>http://juank.black-byte.com/windows-resumen-windows-7-en-el-pdc-professional-developers-conference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Optimizaci&#243;n de C&#243;digo - C&#243;mo Convertir un Entero en Binario</title>
		<link>http://juank.black-byte.com/c-entero-a-binario/</link>
		<comments>http://juank.black-byte.com/c-entero-a-binario/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 18:30:23 +0000</pubDate>
		<dc:creator>JuanK</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[binario]]></category>

		<category><![CDATA[codigo]]></category>

		<category><![CDATA[inseguro]]></category>

		<category><![CDATA[rendimiento]]></category>

		<category><![CDATA[unsafe]]></category>

		<category><![CDATA[velocidad]]></category>

		<guid isPermaLink="false">http://juank.black-byte.com/?p=34</guid>
		<description><![CDATA[El título de este post debería ser realmente: &#8220;Cómo formatear una cadena para mostrar un entero en formato binario&#8221;&#8230; pero creanme que nadie lo buscaría así en un buscador :P.
Bien esto parece ser un problema recurrente alrededor de los foros en internet, existen muchas soluciones diferentes a este problema, incluso hay algunos lenguajes que ya [...]]]></description>
		<wfw:commentRss>http://juank.black-byte.com/c-entero-a-binario/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Caracter de Salto de linea</title>
		<link>http://juank.black-byte.com/c-caracter-salto-linea/</link>
		<comments>http://juank.black-byte.com/c-caracter-salto-linea/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 21:20:37 +0000</pubDate>
		<dc:creator>JuanK</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://juank.black-byte.com/?p=32</guid>
		<description><![CDATA[Un salto de linea en windows no es es realmente un caracter sino que realmente son dos caracteres el 13 y luego el caracter 10.&#160; En detalle:
\r = 13 = CR = Carriage return = Retorno de carro
\n = 10 = LF = Line Feed&#160;&#160;&#160;&#160;&#160;&#160; = Avance de linea

Mientras que en unix podria ser igual [...]]]></description>
		<wfw:commentRss>http://juank.black-byte.com/c-caracter-salto-linea/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cómo obtener el SID de un usuario local?</title>
		<link>http://juank.black-byte.com/c-obtener-sid-usuario-local/</link>
		<comments>http://juank.black-byte.com/c-obtener-sid-usuario-local/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 19:35:15 +0000</pubDate>
		<dc:creator>JuanK</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[wmi]]></category>

		<guid isPermaLink="false">http://juank.black-byte.com/?p=31</guid>
		<description><![CDATA[Obtener el SID del usuario que se encuentra ejecutando la aplicación es bastante sencillo:

Adicionar using a System.Security.Principal  
Instanciar un objeto WindowsIdentity  
Construirlo a partir de WindowsIdentity.GetCurret()  
Usar la propiedad Value

using System;using System.Security.Principal;&#160;class Program&#123;    static void Main&#40;string&#91;&#93; args&#41;    &#123;        WindowsIdentity [...]]]></description>
		<wfw:commentRss>http://juank.black-byte.com/c-obtener-sid-usuario-local/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cómo encontrar los archivos pst de outlook?</title>
		<link>http://juank.black-byte.com/c-pst-outlook/</link>
		<comments>http://juank.black-byte.com/c-pst-outlook/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 03:41:51 +0000</pubDate>
		<dc:creator>JuanK</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Office]]></category>

		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://juank.black-byte.com/?p=30</guid>
		<description><![CDATA[Con ayuda de las facilidades de interoperabilidad que ofrece .Net Framework y desde luego con ayuda de Visual Studio este proceso es bastante sencillo.
&#160;
El primer paso es desde luego agregar una referencia al objeto COM de Outlook para que Visual Studio nos importe el componente y esto nos permita acceder al objeto COM como lo [...]]]></description>
		<wfw:commentRss>http://juank.black-byte.com/c-pst-outlook/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
