<?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>Der Lanwirt &#187; English</title>
	<atom:link href="http://www.lanwirt.de/category/english/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lanwirt.de</link>
	<description>manchmal auch wanwirt oder sanwirt</description>
	<lastBuildDate>Thu, 04 Aug 2011 08:51:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19827</generator>
		<item>
		<title>C#: System.DayOfWeek output localized Weekday name</title>
		<link>http://www.lanwirt.de/2009/09/18/c-system-dayofweek-output-localized-weekday-name/</link>
		<comments>http://www.lanwirt.de/2009/09/18/c-system-dayofweek-output-localized-weekday-name/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 16:32:29 +0000</pubDate>
		<dc:creator>Markus</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://www.lanwirt.de/?p=138</guid>
		<description><![CDATA[I have a plain DayOfWeek value and want to output the corresponding localized weekday name. Since it is an enum, there is no localization, says Microsoft. This is by design and will not be implemented in any way. I shall use DateTime&#8217;s .ToString(&#8220;dddd&#8221;). Alright, but I have no DateTime object from which I get the [...]]]></description>
			<content:encoded><![CDATA[<p>I have a plain DayOfWeek value and want to output the corresponding localized weekday name. Since it is an enum, there is no localization, says Microsoft. This is by design and will not be implemented in any way. I shall use DateTime&#8217;s .ToString(&#8220;dddd&#8221;). Alright, but I have no DateTime object from which I get the DayOfWeek. No problem. Here&#8217;s a workaround:</p>
<pre>
    private string GetLocalizedWeekdayName(DayOfWeek d)
    {
        DateTime dt = DateTime.Today;
        while (dt.DayOfWeek != d)
        {
            dt = dt.AddDays(1);
        }
        return dt.ToString("dddd");
    }
</pre>
<p>In the comments Chris suggested a more straightforward approach. Though I never tried it I believe that it will do exactly the same:</p>
<pre>
   private static string GetLocalizedWeekdayName(DayOfWeek weekday)
   {
      return CultureInfo.CurrentCulture.DateTimeFormat.DayNames[(int)weekday];
   }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lanwirt.de/2009/09/18/c-system-dayofweek-output-localized-weekday-name/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OTRS on CentOS 5</title>
		<link>http://www.lanwirt.de/2008/06/19/otrs-on-centos-5/</link>
		<comments>http://www.lanwirt.de/2008/06/19/otrs-on-centos-5/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 13:45:55 +0000</pubDate>
		<dc:creator>Markus</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[otrs]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://markus.renschler.net/?p=97</guid>
		<description><![CDATA[Today I started installing OTRS on CentOS. First barrier: Installing all the needed Perl modules. Luckily, there is a script calles bin/otrs.checkModules After trying around a bit, I found out, that the following command installs at least the required stuff: yum install perl-Compress-Zlib perl-HTML-Parser perl-HTML-Tagset perl-URI perl-libwww-perl perl-Net-DNS The GD module can be downloaded/installed from [...]]]></description>
			<content:encoded><![CDATA[<p>Today I started installing OTRS on CentOS. First barrier: Installing all the needed Perl modules. Luckily, there is a script calles bin/otrs.checkModules</p>
<p>After trying around a bit, I found out, that the following command installs at least the required stuff:</p>
<p><code>yum install perl-Compress-Zlib perl-HTML-Parser perl-HTML-Tagset perl-URI perl-libwww-perl perl-Net-DNS</code></p>
<p>The GD module can be downloaded/installed from <a href="http://dag.wieers.com/rpm/">Dag&#8217;s repository</a>:<br />
<a href="http://dag.wieers.com/rpm/packages/perl-GD/">http://dag.wieers.com/rpm/packages/perl-GD/</a></p>
<p><strong>[Update 2008-07-16]</strong> Today, I continued installing and it showed that installing works without a problem if you just follow the documentation, in my case especially in README.webserver.</p>
<p>OTRS works!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lanwirt.de/2008/06/19/otrs-on-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE7 does not display Google Maps under W2K3</title>
		<link>http://www.lanwirt.de/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/</link>
		<comments>http://www.lanwirt.de/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 15:55:55 +0000</pubDate>
		<dc:creator>Markus</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Win]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[w2k3]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://markus.renschler.net/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/</guid>
		<description><![CDATA[After I installed Internet Explorer 7 on a Windows Server 2003 machine, Google Maps did not work anymore. The page loaded partly but there maps did not load. After playing around with security zones which did not help anything I discovered that there are special security settings for Internet Explorer which can be disabled easily [...]]]></description>
			<content:encoded><![CDATA[<p>After I installed Internet Explorer 7 on a Windows Server 2003 machine, Google Maps did not work anymore. The page loaded partly but there maps did not load. After playing around with security zones which did not help anything I discovered that there are special security settings for Internet Explorer which can be disabled easily &#8211; if neccessary (believe me, I had a reason):</p>
<ul>
<li>Go to Control Panel</li>
<li>Add or Remove Programs</li>
<li>Add/Remove Windows Components</li>
<li>Disable the entry <strong>Internet Explorer Enhanced Security Configuration</strong></li>
</ul>
<p>Here&#8217;s a screenshot:<br />
<a href='http://markus.renschler.net/wp-content/uploads/2007/11/w2k3-ie7-sec.gif' title='Disable Enhanced Sec for IE7'><img src='http://markus.renschler.net/wp-content/uploads/2007/11/w2k3-ie7-sec.thumbnail.gif' alt='Disable Enhanced Sec for IE7' /></a></p>
<p>After that (re)start IE7 and Google Maps should load.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lanwirt.de/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clavister: How to add an additional IP address to an interface?</title>
		<link>http://www.lanwirt.de/2007/08/22/clavister-how-to-add-an-additional-ip-address-to-an-interface/</link>
		<comments>http://www.lanwirt.de/2007/08/22/clavister-how-to-add-an-additional-ip-address-to-an-interface/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 14:16:53 +0000</pubDate>
		<dc:creator>Markus</dc:creator>
				<category><![CDATA[Clavister]]></category>
		<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://markus.renschler.net/2007/08/22/clavister-how-to-add-an-additional-ip-address-to-an-interface/</guid>
		<description><![CDATA[What if you need an additional IP address on one of the security gateway&#8217;s interfaces? After searching the cfw-users mailing list&#8217;s archive I found a solution: Under Interfaces -> ARP I had to add an entry have the security gateway publish its arp address for the IP address on the desired interface: Mode: Publish Interface: [...]]]></description>
			<content:encoded><![CDATA[<p>What if you need an additional IP address on one of the security gateway&#8217;s interfaces?</p>
<p>After searching the cfw-users mailing list&#8217;s archive I found a solution:<br />
Under Interfaces -> ARP I had to add an entry have the security gateway publish its arp address for the IP address on the desired interface:</p>
<p>Mode: Publish<br />
Interface: Interface with the IP Address<br />
IP Address: The IP Address to be published<br />
MAC Address: 00:00:00:00:00:00</p>
<p>Source:<br />
<a href="http://archive.netbsd.se/?ml=cfw-users&#038;a=2006-12&#038;m=2703752">http://archive.netbsd.se/?ml=cfw-users&#038;a=2006-12&#038;m=2703752</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lanwirt.de/2007/08/22/clavister-how-to-add-an-additional-ip-address-to-an-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

