<?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>//g9e.net</title>
	<atom:link href="http://www.g9e.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.g9e.net</link>
	<description></description>
	<lastBuildDate>Thu, 28 Apr 2011 11:15:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VsVim</title>
		<link>http://www.g9e.net/2011/04/28/vsvim/</link>
		<comments>http://www.g9e.net/2011/04/28/vsvim/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 11:15:40 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=63</guid>
		<description><![CDATA[This is a good day, because I discovered VsVim , a Vim emulation for Visual Studio 2010. The project page on GitHub features a Wiki and a section issues with feature requests and bug reports.
]]></description>
			<content:encoded><![CDATA[<p>This is a good day, because I discovered <a href="http://blogs.msdn.com/b/jaredpar/archive/2011/03/14/vsvim-update-released-version-0-9-5.aspx">VsVim</a> , a Vim emulation for Visual Studio 2010. The <a href="https://github.com/jaredpar/VsVim">project page</a> on GitHub features a Wiki and a section issues with feature requests and bug reports.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2011/04/28/vsvim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows PowerShell</title>
		<link>http://www.g9e.net/2011/04/19/windows-powershell/</link>
		<comments>http://www.g9e.net/2011/04/19/windows-powershell/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 11:18:56 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=61</guid>
		<description><![CDATA[Interested in Windows&#8217; PowerShell? Then the Windows PowerShell Language Specification Version 2.0 might be worth reading.
]]></description>
			<content:encoded><![CDATA[<p>Interested in Windows&#8217; PowerShell? Then the <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=509B77D0-5E5F-4194-A2D0-61648ABFD093&#038;displaylang=en">Windows PowerShell Language Specification Version 2.0</a> might be worth reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2011/04/19/windows-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Privacy on the internet</title>
		<link>http://www.g9e.net/2010/12/28/privacy-on-the-internet/</link>
		<comments>http://www.g9e.net/2010/12/28/privacy-on-the-internet/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 12:06:26 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=59</guid>
		<description><![CDATA[LWN&#8217;s article Storm Clouds warns about cloud based services.
]]></description>
			<content:encoded><![CDATA[<p>LWN&#8217;s article <a href="http://lwn.net/Articles/419842/">Storm Clouds</a> warns about cloud based services.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/12/28/privacy-on-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System.Net.WebClient</title>
		<link>http://www.g9e.net/2010/07/05/system-net-webclient/</link>
		<comments>http://www.g9e.net/2010/07/05/system-net-webclient/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 07:38:27 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=48</guid>
		<description><![CDATA[In one of my applications I&#8217;m using the WebClient class (from namespace System.Net) to download a file from the internet. The syntax is pretty easy:

var client : WebClient := new WebClient();
client.DownloadFile(src, dst);

With src and dst being strings. This worked always fine for me until recently after I&#8217;ve installed a proxy. To have WebClient automatically use [...]]]></description>
			<content:encoded><![CDATA[<p>In one of my applications I&#8217;m using the <a href="http://msdn.microsoft.com/de-de/library/system.net.webclient.aspx">WebClient class</a> (from namespace System.Net) to download a file from the internet. The syntax is pretty easy:</p>
<pre class="prettyprint">
var client : WebClient := new WebClient();
client.DownloadFile(src, dst);
</pre>
<p>With src and dst being strings. This worked always fine for me until recently after I&#8217;ve installed a proxy. To have WebClient automatically use your proxy-settings (e.g. taken from the Internet Explorer) simply add the following line after instantiating WebClient:</p>
<pre class="prettyprint">
client.Proxy := new WebProxy;
</pre>
<p>To learn more about automatic proxy detection read on <a href="http://msdn.microsoft.com/en-us/library/fze2ytx2(VS.90).aspx">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/07/05/system-net-webclient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 on Acer Aspire 5741G</title>
		<link>http://www.g9e.net/2010/06/17/ubuntu-10-04-on-acer-aspire-5741g/</link>
		<comments>http://www.g9e.net/2010/06/17/ubuntu-10-04-on-acer-aspire-5741g/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 11:07:56 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=35</guid>
		<description><![CDATA[Recently I&#8217;ve purchased an Acer Aspire 5741G. It ships with Windows 7 pre-installed. Nowadays most manufacturers consider it a good idea to equip their notebooks with an extra partition which holds all data necessary to recover your Windows installation. So if your installation is screwed up (think of a virus or something) you can put [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve purchased an <strong>Acer Aspire 5741G</strong>. It ships with Windows 7 pre-installed. Nowadays most manufacturers consider it a good idea to equip their notebooks with an extra partition which holds all data necessary to recover your Windows installation. So if your installation is screwed up (think of a virus or something) you can put your notebook back into factory default. Of course the operating system of my choice is <strong>Ubuntu </strong>rather than Windows 7. However, I wished to keep a functional Windows partition and recovery partition just in case I plan to sell the notebook in a few years. Thus I wanted my Windows partition to be repartitioned in order to install Ubuntu alongside Windows. Ubuntu&#8217;s installation guide explains <a href="https://help.ubuntu.com/10.04/installation-guide/amd64/module-details.html#di-partition">here</a> that this could be done as part of the installation procedure. And indeed this was dead easy. I just needed to to configure via a slider how big I wished the Windows partition to be. Installation succeeded without any problems.</p>
<p>After booting Ubuntu the Hardware Drivers application asked me if it should install and activate drivers for the Wifi card and the graphics card. Of course I accepted and within seconds my graphics card was configured and access to my WLAN was set up. A quick test of the keyboards function keys and he SD-card reader (I expected both to be problematic) revealed that everything works fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/06/17/ubuntu-10-04-on-acer-aspire-5741g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 and CSS3</title>
		<link>http://www.g9e.net/2010/06/02/html5-and-css3/</link>
		<comments>http://www.g9e.net/2010/06/02/html5-and-css3/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 18:52:54 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=41</guid>
		<description><![CDATA[It seems we&#8217;re ultimately getting rid of Flash, thanks to HTML5 and
CSS3. The web sports interesting sites demonstrating the power of the
new technologies. The following demos are worth a look:

Polaroid photo alblum
Mac OS X mockup
Our solar system in CSS3

If you intend on jumping the train you might find the following
tutorials/books useful:

CSS3 exciting functions and features, [...]]]></description>
			<content:encoded><![CDATA[<p>It seems we&#8217;re ultimately getting rid of Flash, thanks to HTML5 and<br />
CSS3. The web sports interesting sites demonstrating the power of the<br />
new technologies. The following demos are worth a look:</p>
<ul>
<li><a href="http://www.marcofolio.net/webdesign/creating_a_polaroid_photo_viewer_with_css3_and_jquery.html">Polaroid photo alblum</a></li>
<li><a href="http://www.css3.info/wp-content/uploads/2007/08/colormoduletest.html">Mac OS X mockup</a></li>
<li><a href="http://neography.com/journal/our-solar-system-in-css3/">Our solar system in CSS3</a></li>
</ul>
<p>If you intend on jumping the train you might find the following<br />
tutorials/books useful:</p>
<ul>
<li><a href="http://www.noupe.com/css3/css3-exciting-functions-and-features-30-useful-tutorials.html">CSS3 exciting functions and features, 30 useful tutorials</a></li>
<li><a href="https://developer.mozilla.org/en/Canvas_tutorial">Mozdev&#8217;s canvas tutorial</a></li>
<li><a href="http://diveintohtml5.org/">Dive into HTML5</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/06/02/html5-and-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DiffPDF</title>
		<link>http://www.g9e.net/2010/05/27/diffpdf/</link>
		<comments>http://www.g9e.net/2010/05/27/diffpdf/#comments</comments>
		<pubDate>Thu, 27 May 2010 11:01:27 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=33</guid>
		<description><![CDATA[I&#8217;ve just come across DiffPDF, which is a tool helping you to compare PDF files. It provides two modes: textural comparison of the documents and comparison of the files&#8217; appearance (for instance figures or moved items).
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just come across <a href="http://www.qtrac.eu/diffpdf.html">DiffPDF</a>, which is a tool helping you to compare PDF files. It provides two modes: textural comparison of the documents and comparison of the files&#8217; appearance (for instance figures or moved items).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/05/27/diffpdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of news feeds</title>
		<link>http://www.g9e.net/2010/05/24/list-of-news-feeds/</link>
		<comments>http://www.g9e.net/2010/05/24/list-of-news-feeds/#comments</comments>
		<pubDate>Mon, 24 May 2010 09:08:33 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=29</guid>
		<description><![CDATA[And here&#8217;s a list of news feeds.

Python News
LWN.net
heise Security
OSnews
pyMOTW: Python Module of the Week
digitalPHOTO
fotocommunity blog
comp.lang.python.announce

]]></description>
			<content:encoded><![CDATA[<p>And here&#8217;s a list of news feeds.</p>
<ul>
<li><a href="http://www.python.org/channews.rdf">Python News</a></li>
<li><a href="http://lwn.net/headlines/rss">LWN.net</a></li>
<li><a href="http://www.heise.de/security/news/news.rdf">heise Security</a></li>
<li><a href="http://www.osnews.com/files/recent.xml">OSnews</a></li>
<li><a href="http://feeds.feedburner.com/PyMOTW">pyMOTW: Python Module of the Week</a></li>
<li><a href="http://www.digitalphoto.de/backend.php">digitalPHOTO</a></li>
<li><a href="http://blog.fotocommunity.net/de/atom.xml">fotocommunity blog</a></li>
<li><a href="http://groups.google.de/group/comp.lang.python.announce/feed/atom_v1_0_msgs.xml">comp.lang.python.announce</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/05/24/list-of-news-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of podcasts</title>
		<link>http://www.g9e.net/2010/05/24/list-of-podcasts/</link>
		<comments>http://www.g9e.net/2010/05/24/list-of-podcasts/#comments</comments>
		<pubDate>Mon, 24 May 2010 08:56:21 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=27</guid>
		<description><![CDATA[Here&#8217;s a list of podcasts I&#8217;m regularly listening to.

Chaosradio Express
The Economist: The week ahead
Hacker Medley
The Lunatic Fringe
mobileMacs
Tagesschau
TWIT: this week in tech
Zwölfzweiundzwanzig: zu Gast bei Ingo Kahle

]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of podcasts I&#8217;m regularly listening to.</p>
<ul>
<li><a href="http://chaosradio.ccc.de/chaosradio_express.html">Chaosradio Express</a></li>
<li><a href="http://public-xml.feedroom.com/public_rss/economist_podcast_rss.xml?channel_id=157a3251a697e23eab5b3766efed94162aedc245&#038;hvar=http://audiovideo.economist.com/">The Economist: The week ahead</a></li>
<li><a href="http://feeds.feedburner.com/HackerMedley">Hacker Medley</a></li>
<li><a href="http://feeds.feedburner.com/TheLunaticFringe">The Lunatic Fringe</a></li>
<li><a href="http://feeds.feedburner.com/mobile-macs-podcast">mobileMacs</a></li>
<li><a href="http://www.tagesschau.de/export/video-podcast/tagesschau">Tagesschau</a></li>
<li><a href="http://leo.am/podcasts/twit/">TWIT: this week in tech</a></li>
<li><a href="http://www.inforadio.de/podcast.php?601">Zwölfzweiundzwanzig: zu Gast bei Ingo Kahle</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/05/24/list-of-podcasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 2010 &amp; SharePoint 2010 available</title>
		<link>http://www.g9e.net/2010/05/20/office-2010-sharepoint-2010-available/</link>
		<comments>http://www.g9e.net/2010/05/20/office-2010-sharepoint-2010-available/#comments</comments>
		<pubDate>Thu, 20 May 2010 19:36:09 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://www.g9e.net/2010/05/20/office-2010-sharepoint-2010-available/</guid>
		<description><![CDATA[Office 2010 and SharePoint 2010 have been released. If you live in Germany you can try your luck in Microsoft&#8217;s lottery and win a Nokia E72 smartphone. Browse to http://www.microsoft.com/de/de/dynamicit/microsoft-virtual-launch-event-gewinnspiel.aspx and read how to participate.
]]></description>
			<content:encoded><![CDATA[<p>Office 2010 and SharePoint 2010 have been released. If you live in Germany you can try your luck in Microsoft&#8217;s lottery and win a Nokia E72 smartphone. Browse to http://www.microsoft.com/de/de/dynamicit/microsoft-virtual-launch-event-gewinnspiel.aspx and read how to participate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/05/20/office-2010-sharepoint-2010-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

