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

<channel>
	<title>Niels R. &#187; Uncategorized</title>
	<atom:link href="http://lxit.be/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://lxit.be</link>
	<description>... LXIT.be ...</description>
	<lastBuildDate>Tue, 17 Aug 2010 19:04:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Add an sitemap to your web site easily</title>
		<link>http://lxit.be/uncategorized/add-an-sitemap-to-your-web-site-easily/</link>
		<comments>http://lxit.be/uncategorized/add-an-sitemap-to-your-web-site-easily/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 10:27:36 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=91</guid>
		<description><![CDATA[Surf to XML-Sitemaps.com, fill out your web site&#8217;s URL and let it generate your sitemap automatically.]]></description>
			<content:encoded><![CDATA[<p>Surf to <a title="Create a Google sitemap easily." href="http://www.xml-sitemaps.com/">XML-Sitemaps.com</a>, fill out your web site&#8217;s URL and let it generate your sitemap automatically.</p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/add-an-sitemap-to-your-web-site-easily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GameSeat.be (finally) launched</title>
		<link>http://lxit.be/uncategorized/gameseat-be-finally-launched/</link>
		<comments>http://lxit.be/uncategorized/gameseat-be-finally-launched/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 19:40:07 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[game seat]]></category>
		<category><![CDATA[gaming seat]]></category>
		<category><![CDATA[race seat]]></category>
		<category><![CDATA[race simulator]]></category>
		<category><![CDATA[rFactor]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=89</guid>
		<description><![CDATA[GameSeat.be gives everyone the opportunity to enjoy virtual rides with his/her dream cars. You can rent a steering wheel, a racing seat, a monitor, &#8230; or everything as a whole for one day or more. Ideally for the car enthousiast or console racer who normally doesn&#8217;t have the place to store such racing seat and [...]]]></description>
			<content:encoded><![CDATA[<p>GameSeat.be gives everyone the opportunity to enjoy virtual rides with his/her dream cars. You can rent a steering wheel, a racing seat, a monitor, &#8230; or everything as a whole for one day or more.</p>
<p>Ideally for the car enthousiast or console racer who normally doesn&#8217;t have the place to store such racing seat and occasionally wants to enjoy the ride of his life in his living room. Top: check out <a title="A race simulator" href="http://www.rfactor.net/">rFactor</a>!</p>
<p>The website is built using <a title="Vici MVC - A open-source alternative for ASP.NET MVC" href="http://viciproject.com/wiki/projects/mvc/home">Vici MVC</a>, a open-source lightweight and powerful ASP.NET MVC framework (part of the <a title="A coordinated and well-supported collection of free tools for building next-generation online applications for .NET." href="http://viciproject.com/">Vici Project</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/gameseat-be-finally-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GetHashCode() in .NET 1.1 vs .NET 2.0</title>
		<link>http://lxit.be/uncategorized/gethashcode-in-net-11-vs-net-20/</link>
		<comments>http://lxit.be/uncategorized/gethashcode-in-net-11-vs-net-20/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 12:42:15 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET 1.1]]></category>
		<category><![CDATA[.NET 2.0]]></category>
		<category><![CDATA[GetHashCode]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=64</guid>
		<description><![CDATA[notepadd When migrating GarageTV from .NET 1.1 to .NET 3.5 I ran in a &#8220;strange&#8221; problem. It seems that there is a SearchBarrel table containing the links between keywords and posts (and some other info like keyword weight etc), so when a search is made you simply do a select using this table. But&#8230; the [...]]]></description>
			<content:encoded><![CDATA[<p>notepadd</p>
<p>When migrating GarageTV from .NET 1.1 to .NET 3.5 I ran in a &#8220;strange&#8221; problem.</p>
<p>It seems that there is a SearchBarrel table containing the links between keywords and posts (and some other info like keyword weight etc), so when a search is made you simply do a select using this table.</p>
<p>But&#8230; the keyword is hashed using String.GetHashCode() and that&#8217;s stored in the DB. Not clever it seems, because the GetHashCode() in .NET 2.0+ differs from the .NET 1.1 version.</p>
<blockquote><p>Quote from <a title="MSDN Library - Object.GetHashCode Method" href="http://msdn.microsoft.com/en-us/library/system.object.gethashcode.aspx">MSDN</a>: <em>&#8220;<strong>Prior to the .NET Framework version 2.0</strong>, the hash code provider was based on the <strong>System.Collections.IHashCodeProvider</strong> interface. <strong>Starting with version 2.0</strong>, the hash code provider is based on the <strong>System.Collections.IEqualityComparer</strong> interface.&#8221;</em></p></blockquote>
<p>And for your information I&#8217;ve found an implementation of the GetHashCode() of the .NET 1.1 version, so you can use this method in .NET 2.0 projects.</p>
<p><code lang="csharp"><br />
Int32 HashString(String szStr)<br />
{<br />
ulong hash = 5381;</p>
<p>foreach (int ch in szStr)<br />
{<br />
hash = ((hash &lt;&lt; 5) + hash) ^ (ulong)ch;<br />
}</p>
<p>return (Int32)hash;<br />
}</code></p>
<p>So&#8230; enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/gethashcode-in-net-11-vs-net-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moonlight 1.0 released: brings Silverlight to Linux</title>
		<link>http://lxit.be/uncategorized/moonlight-10-released-brings-silverlight-to-linux/</link>
		<comments>http://lxit.be/uncategorized/moonlight-10-released-brings-silverlight-to-linux/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 14:04:48 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[Mono Project]]></category>
		<category><![CDATA[Moonlight]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=61</guid>
		<description><![CDATA[You can download the Mozilla Firefox plugin at the official Moonlight website. Enjoy!]]></description>
			<content:encoded><![CDATA[<p>You can download the Mozilla Firefox plugin at the <a title="Download Moonlight plugin for Mozilla Firefox" href="http://www.go-mono.com/moonlight/">official Moonlight website</a>. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/moonlight-10-released-brings-silverlight-to-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Songbird 1.0 finally released</title>
		<link>http://lxit.be/uncategorized/songbird-10-finally-released/</link>
		<comments>http://lxit.be/uncategorized/songbird-10-finally-released/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 09:09:56 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Apple/Mac & iPhone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Songbird]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=52</guid>
		<description><![CDATA[After about 2 years of development, we can finally embrace the first major release of Songbird. It&#8217;s an open-source media player using the Mozilla Application Framework that has the capability to surf the web and is able to play, queue or subscribe to embedded media from a web page. Video support isn&#8217;t all that super, [...]]]></description>
			<content:encoded><![CDATA[<p>After about 2 years of development, we can finally embrace the first major release of <a href="http://getsongbird.com/" title="Songbird - The Open Music Player">Songbird</a>. It&#8217;s an open-source media player using the <a href="https://developer.mozilla.org/En/Mozilla_Application_Framework_in_Detail" title="The Mozilla Application Framework in detail">Mozilla Application Framework</a> that has the capability to surf the web and is able to play, queue or subscribe to embedded media from a web page. Video support isn&#8217;t all that super, <strong>yet</strong>!</p>
<p>There is support of portable media devices, although the <a href="http://wiki.songbirdnest.com/Docs/Device_Support/IPod_Device_Support" title="Songbird - iPod Device Support">support of iPod devices is limited</a>. As a (might-be-maybe-we-will-see) future owner of an <a href="http://www.apple.com/iphone/" title="Apple iPhone">iPhone</a>, I would love to see Songbird supporting it. I do not like <a href="http://www.apple.com/itunes/overview/" title="Apple - iTunes - The entertainment capital of your world">iTunes</a> at all.</p>
<p>And of course&#8230; it&#8217;s cross platform! So your Mac, Linux box or Windows PC will happy to run it for you.</p>
<ul>
<li><a href="http://blog.songbirdnest.com/2008/12/02/songbird-10-is-here/" title="Songbird Blog - Songbird 1.0 is Here!">Official announcement</a> on Songbird Blog.</li>
<li>Mozilla Links has a nice overview of the release <a href="http://mozillalinks.org/wp/2008/12/a-media-player-for-the-times-songbird/" title="Mozilla Links - A media player for the times: Songbird">here</a>.</li>
</ul>
<p><em>UPDATE:</em> After writing this post I searched around a little and came upon this page: <a href="http://www.simplehelp.net/2007/07/08/10-alternatives-to-itunes-for-managing-your-ipod/" title="Simple Help - 10 Alternatives to iTunes for managing your iPod">10 Alternatives to iTunes for managing your iPod</a>. Enjoy :o)</p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/songbird-10-finally-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My &#8220;porn&#8221; contribution scores 5th in Google</title>
		<link>http://lxit.be/uncategorized/my-porn-contribution-scores-5th-in-google/</link>
		<comments>http://lxit.be/uncategorized/my-porn-contribution-scores-5th-in-google/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 09:16:10 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GarageTV]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[porn]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=46</guid>
		<description><![CDATA[Searching on the keyword &#8220;porn&#8221; in Google makes a contribution of mine to GarageTV shown on the 5th (or 6th) place&#8230; Strangely, the traffic of this video clip skyrocketed this weekend :) I hope a lot of people clicked the ads&#8230; PS: Funny sidenote&#8230; The AdWords under the video clip contained an ad for job [...]]]></description>
			<content:encoded><![CDATA[<p>Searching on the keyword <a href="http://www.google.com/search?q=porn" title="Search Google on the keyword 'porn'">&#8220;porn&#8221;</a> in Google makes <a href="http://www.garagetv.be/video-galerij/nielsr/PG_Porn_Nailing_your_wife.aspx" title="GarageTV - PG Porn: Nailing Your Wife">a contribution of mine</a> to <a href="http://www.garagetv.be" title="GarageTV - Flemish movie sharing platform">GarageTV</a> shown on the 5th (or 6th) place&#8230; Strangely, the traffic of this video clip skyrocketed this weekend :)</p>
<p> I hope a lot of people clicked the ads&#8230;</p>
<p>PS: Funny sidenote&#8230; The AdWords under the video clip contained an ad for job vacancies at the National Railway Company of Belgium (<a href="http://www.nmbs.be" title="NMBS/SNCB- National Railway Company of Belgium">NMBS/SNCB</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/my-porn-contribution-scores-5th-in-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Belgian ISP Scarlet vs Copyright law: 1-0</title>
		<link>http://lxit.be/uncategorized/belgian-isp-scarlet-vs-copyright-law-1-0/</link>
		<comments>http://lxit.be/uncategorized/belgian-isp-scarlet-vs-copyright-law-1-0/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 07:14:21 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=42</guid>
		<description><![CDATA[Belgian ISP Scarlet has scored its first victory in an important case that has been dragging on for years. This case is the first real test of how European copyright law can be applied to peer-to-peer networks. More info: Article (with links to related stuff) on Security and the Net]]></description>
			<content:encoded><![CDATA[<p>Belgian ISP Scarlet has scored its first victory in an important case that has been dragging on for years. This case is the first real test of how European copyright law can be applied to peer-to-peer networks.</p>
<p>More info: <a href="http://securityandthe.net/2008/10/25/belgian-isp-scores-first-victory-in-p2p-case/" title="Security and the Net - Belgian ISP scores first victory in P2P case">Article (with links to related stuff) on Security and the Net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/belgian-isp-scarlet-vs-copyright-law-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux 2.6.27 is out&#8230;</title>
		<link>http://lxit.be/uncategorized/linux-2627-is-out/</link>
		<comments>http://lxit.be/uncategorized/linux-2627-is-out/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 05:50:21 +0000</pubDate>
		<dc:creator>Niels R.</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lxit.be/?p=17</guid>
		<description><![CDATA[The whole shebang of changes, improvements and new drivers can be found on Linux Kernel Newbies. Linux 2.6.27 Changelog]]></description>
			<content:encoded><![CDATA[<p>The whole shebang of changes, improvements and new drivers can be found on <a href="http://kernelnewbies.org/" title="Linux Kernel Newbies">Linux Kernel Newbies</a>.</p>
<p><a href="http://kernelnewbies.org/Linux_2_6_27" title="Linux 2.6.27 changelog">Linux 2.6.27 Changelog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lxit.be/uncategorized/linux-2627-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
