<?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>Shin&#039;s Blog !</title>
	<atom:link href="http://shinsblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shinsblog.wordpress.com</link>
	<description>Par un Geek, pour les Geeks!</description>
	<lastBuildDate>Wed, 26 Oct 2011 02:28:20 +0000</lastBuildDate>
	<language>fr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='shinsblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Shin&#039;s Blog !</title>
		<link>http://shinsblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shinsblog.wordpress.com/osd.xml" title="Shin&#039;s Blog !" />
	<atom:link rel='hub' href='http://shinsblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>CCC &#8211; C# Constructor Chaining</title>
		<link>http://shinsblog.wordpress.com/2011/10/25/ccc-c-constructor-chaining/</link>
		<comments>http://shinsblog.wordpress.com/2011/10/25/ccc-c-constructor-chaining/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 02:20:50 +0000</pubDate>
		<dc:creator>小川 心</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Programmation]]></category>

		<guid isPermaLink="false">http://shinsblog.wordpress.com/?p=118</guid>
		<description><![CDATA[Vous savez que vous pouvez économiser des lignes de code lorsque vous avez plusieurs constructeur en C#? Au lieu de faire : public class ClHéro { public ClHéro(string p_nom) { m_nom = p_nom; Vie = 100; } public ClHéro() { Vie = 100; } string m_nom; public int Vie { get; set; } } Vous [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=118&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vous savez que vous pouvez économiser des lignes de code lorsque<br />
vous avez plusieurs constructeur en C#?</p>
<p>Au lieu de faire :</p>
<pre>
public class ClHéro
{
	public ClHéro(string p_nom)
	{
		m_nom = p_nom;
		Vie = 100;
	}

	public ClHéro()
	{
		Vie = 100;
	}

	string m_nom;

	public int Vie
	{
		get;
		set;
	}
}</pre>
<p>Vous pouvez tout simplement faire :</p>
<pre>
public class ClHéro
{

	public ClHéro(string p_nom)
		: this()
	{
		m_nom = p_nom;
	}

	public ClHéro()
	{
		Vie = 100;
	}

	string m_nom;

	public int Vie
	{
		get;
		set;
	}
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shinsblog.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shinsblog.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shinsblog.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shinsblog.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shinsblog.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shinsblog.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shinsblog.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shinsblog.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shinsblog.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shinsblog.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shinsblog.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shinsblog.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shinsblog.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shinsblog.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=118&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shinsblog.wordpress.com/2011/10/25/ccc-c-constructor-chaining/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0afe92ff738242f386dc11da44079f23?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ｓｈｉｎ</media:title>
		</media:content>
	</item>
		<item>
		<title>Crackmes.de</title>
		<link>http://shinsblog.wordpress.com/2009/02/19/crackmesde/</link>
		<comments>http://shinsblog.wordpress.com/2009/02/19/crackmesde/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 16:28:29 +0000</pubDate>
		<dc:creator>小川 心</dc:creator>
				<category><![CDATA[Français]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Reverse Engineering]]></category>

		<guid isPermaLink="false">http://shinsblog.wordpress.com/2009/02/19/crackmesde/</guid>
		<description><![CDATA[Pour ceux et celle qui chercherait un bon site ou trouver des crackme, en voila un bon!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=107&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.crackmes.de">Pour ceux et celle qui chercherait un bon site ou trouver des crackme, en voila un bon!</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shinsblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shinsblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shinsblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shinsblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shinsblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shinsblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shinsblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shinsblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shinsblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shinsblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shinsblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shinsblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shinsblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shinsblog.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=107&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shinsblog.wordpress.com/2009/02/19/crackmesde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0afe92ff738242f386dc11da44079f23?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ｓｈｉｎ</media:title>
		</media:content>
	</item>
		<item>
		<title>Can you run it?</title>
		<link>http://shinsblog.wordpress.com/2008/12/27/can-you-run-it/</link>
		<comments>http://shinsblog.wordpress.com/2008/12/27/can-you-run-it/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 20:19:17 +0000</pubDate>
		<dc:creator>小川 心</dc:creator>
				<category><![CDATA[Français]]></category>
		<category><![CDATA[Jeux]]></category>
		<category><![CDATA[Quotidien]]></category>

		<guid isPermaLink="false">http://shinsblog.wordpress.com/?p=76</guid>
		<description><![CDATA[Vous êtes vous déjà demander &#171;&#160;Vais-je pouvoir jouer a ce jeux avec ma configuration?&#160;&#187; et bien moi si, souvent a vraie dire. Il existe depuis bien longtemps un site où l&#8217;on peut &#171;&#160;tester&#160;&#187; plusieur configuration de jeux et par conséquent vous n&#8217;aurez plus a retourner les jeux que vous venez d&#8217;Acheter par faute de matériel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=76&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vous êtes vous déjà demander &laquo;&nbsp;Vais-je pouvoir jouer a ce jeux avec ma configuration?&nbsp;&raquo; et bien moi si, souvent a vraie dire. Il existe depuis bien longtemps un site où l&#8217;on peut &laquo;&nbsp;tester&nbsp;&raquo; plusieur configuration de jeux et par conséquent vous n&#8217;aurez plus a retourner les jeux que vous venez d&#8217;Acheter par faute de matériel non compabile ou désuets; <a href="http://www.systemrequirementslab.com/referrer/srtest" target="_blank">Voici le lien.</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shinsblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shinsblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shinsblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shinsblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shinsblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shinsblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shinsblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shinsblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shinsblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shinsblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shinsblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shinsblog.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shinsblog.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shinsblog.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=76&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shinsblog.wordpress.com/2008/12/27/can-you-run-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0afe92ff738242f386dc11da44079f23?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ｓｈｉｎ</media:title>
		</media:content>
	</item>
		<item>
		<title>Bonjour !</title>
		<link>http://shinsblog.wordpress.com/2008/11/25/bonjour/</link>
		<comments>http://shinsblog.wordpress.com/2008/11/25/bonjour/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 01:07:52 +0000</pubDate>
		<dc:creator>小川 心</dc:creator>
				<category><![CDATA[Français]]></category>
		<category><![CDATA[Memory Editing]]></category>

		<guid isPermaLink="false">http://shinsblog.wordpress.com/?p=35</guid>
		<description><![CDATA[Salut a tous, Je suis de retour avec de nouveaux tutoriels de hacking. ;P Je vais commencer par vous démontrer un peu comment les programmes fonctionnes après avoir été compiler avec un petit programme qui s&#8217;appelle &#171;&#160;Cheat Engine&#160;&#187; que vous pouvez trouvez à l&#8217;adresse du même nom (http://www.cheatengine.org/) où pour ceux qui ne comprenderais pas [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=35&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Salut a tous,</p>
<p>Je suis de retour avec de nouveaux tutoriels de hacking. ;P</p>
<p>Je vais commencer par vous démontrer un peu comment les programmes fonctionnes après avoir été compiler avec un petit programme qui s&#8217;appelle &laquo;&nbsp;Cheat Engine&nbsp;&raquo; que vous pouvez trouvez à l&#8217;adresse du même nom (http://www.cheatengine.org/) où pour ceux qui ne comprenderais pas l&#8217;anglais (http://www.heijnen1.demon.nl/CheatEngine54.exe).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shinsblog.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shinsblog.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shinsblog.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shinsblog.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shinsblog.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shinsblog.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shinsblog.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shinsblog.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shinsblog.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shinsblog.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shinsblog.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shinsblog.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shinsblog.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shinsblog.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinsblog.wordpress.com&amp;blog=1330229&amp;post=35&amp;subd=shinsblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shinsblog.wordpress.com/2008/11/25/bonjour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0afe92ff738242f386dc11da44079f23?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ｓｈｉｎ</media:title>
		</media:content>
	</item>
	</channel>
</rss>
