<?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 &#187; coding</title>
	<atom:link href="http://www.g9e.net/category/coding/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>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>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>Tools for Windows developers</title>
		<link>http://www.g9e.net/2010/05/03/tools-for-windows-developers/</link>
		<comments>http://www.g9e.net/2010/05/03/tools-for-windows-developers/#comments</comments>
		<pubDate>Mon, 03 May 2010 19:33:15 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=20</guid>
		<description><![CDATA[This is more a hint for Windows developers coming originally from UNIX systems. If you&#8217;re missing tools like ps, top, pstree or strace you should have a look at the website www.sysinternals.com which offers a suite of advanced system utilities.
]]></description>
			<content:encoded><![CDATA[<p>This is more a hint for Windows developers coming originally from UNIX systems. If you&#8217;re missing tools like <em>ps</em>, <em>top</em>, <em>pstree</em> or <em>strace</em> you should have a look at the website <a href="http://www.sysinternals.com">www.sysinternals.com</a> which offers a suite of advanced system utilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/05/03/tools-for-windows-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tail -F filename</title>
		<link>http://www.g9e.net/2010/04/26/tail-f-filename/</link>
		<comments>http://www.g9e.net/2010/04/26/tail-f-filename/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 18:29:09 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=17</guid>
		<description><![CDATA[A very handy tool in the UNIX world is tail. In particular the option -F proves useful if you want to view log files. But what do you do if you&#8217;re working with Windows? Of course, you have to search the Internet for a Windows port and go through the compile-hell. I have to admit, [...]]]></description>
			<content:encoded><![CDATA[<p>A very handy tool in the UNIX world is <strong>tail</strong>. In particular the option <strong>-F</strong> proves useful if you want to view log files. But what do you do if you&#8217;re working with Windows? Of course, you have to search the Internet for a Windows port and go through the compile-hell. I have to admit, compiling tail wouldn&#8217;t be such a pain in the ass as compiler bigger programs. Nonetheless, I wasn&#8217;t willing to spend time searching and installing a Windows port of tail and thus I coded it within a couple of minutes. The following Python script only implements <strong>tail -F filename</strong>, but that was sufficient for my purposes.</p>
<pre class="prettyprint">
import sys, time

lastLine = 0
f = 0

def dumpFile(f, start):
  f.seek(start)
  cur = start

  for line in f:
    print line,
    cur = f.tell()

  return cur

while True:
  try:
    f = open(sys.argv[1], 'rU')
    lastLine = dumpFile(f, lastLine)
    time.sleep(1.5)
  except IOError:
    print 'no such file' + sys.argv[1]
  finally:
    if f:
      f.close
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/04/26/tail-f-filename/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blog series: WPF in Visual Studio 2010</title>
		<link>http://www.g9e.net/2010/04/18/blog-series-wpf-in-visual-studio-2010/</link>
		<comments>http://www.g9e.net/2010/04/18/blog-series-wpf-in-visual-studio-2010/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 08:09:56 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=13</guid>
		<description><![CDATA[I&#8217;ve advertised Paul Harrington&#8217;s blog post on WPF in Visual Studio 2010. Here&#8217;s a list of all parts:

Introduction
Performance tuning
Focus and Activation
Direct Hosting of WPF content
Window management
Automated UI Testing
Wrap up

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve advertised Paul Harrington&#8217;s blog post on WPF in Visual Studio 2010. Here&#8217;s a list of all parts:</p>
<ol>
<li><a href="http://blogs.msdn.com/visualstudio/archive/2010/02/16/wpf-in-visual-studio-2010-part-1.aspx">Introduction</a></li>
<li><a href="http://blogs.msdn.com/visualstudio/archive/2010/03/02/wpf-in-visual-studio-2010-part-2-performance-tuning.aspx">Performance tuning</a></li>
<li><a href="http://blogs.msdn.com/visualstudio/archive/2010/03/09/wpf-in-visual-studio-2010-part-3-focus-and-activation.aspx">Focus and Activation</a></li>
<li><a href="http://blogs.msdn.com/visualstudio/archive/2010/03/16/wpf-in-visual-studio-2010-part-4-direct-hosting-of-wpf-content.aspx">Direct Hosting of WPF content</a></li>
<li><a href="http://blogs.msdn.com/visualstudio/archive/2010/03/23/wpf-in-visual-studio-part-5-window-management.aspx">Window management</a></li>
<li><a href="http://blogs.msdn.com/visualstudio/archive/2010/03/30/wpf-in-visual-studio-2010-part-6-automated-ui-testing.aspx">Automated UI Testing</a></li>
<li><a href="http://blogs.msdn.com/visualstudio/archive/2010/04/06/wpf-in-visual-studio-2010-part-7-wrap-up.aspx">Wrap up</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/04/18/blog-series-wpf-in-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF in Visual Studio 2010</title>
		<link>http://www.g9e.net/2010/04/08/wpf-in-visual-studio-2010/</link>
		<comments>http://www.g9e.net/2010/04/08/wpf-in-visual-studio-2010/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 18:50:12 +0000</pubDate>
		<dc:creator>Gerrit</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.g9e.net/?p=7</guid>
		<description><![CDATA[Are you interested in GUI programming on the Windows platform? Then you should know about WPF: Windows Presentation Forms, the next generation of GUI toolkits on Windows. Paul Harrington discusses WPF in Visual Studio 2010.
]]></description>
			<content:encoded><![CDATA[<p>Are you interested in GUI programming on the Windows platform? Then you should know about WPF: Windows Presentation Forms, the next generation of GUI toolkits on Windows. Paul Harrington discusses <a href="http://blogs.msdn.com/visualstudio/archive/2010/02/16/wpf-in-visual-studio-2010-part-1.aspx">WPF in Visual Studio 2010</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.g9e.net/2010/04/08/wpf-in-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

