<?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>Becoming a .NET Ninja</title>
	<atom:link href="http://blogs.smarthosts.de/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blogs.smarthosts.de</link>
	<description>All about programming FU.</description>
	<lastBuildDate>Wed, 14 Jan 2009 10:43:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Note to me: Hotspot access via iPhone</title>
		<link>http://blogs.smarthosts.de/?p=111</link>
		<comments>http://blogs.smarthosts.de/?p=111#comments</comments>
		<pubDate>Wed, 14 Jan 2009 10:43:50 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2009/01/14/111/</guid>
		<description><![CDATA[A (german) info on how to activate hotspot access via iPhone with T-Mobile germany: http://www.familie-splett.de/t-mobile-hotspot-aktivieren-bei-iphone-vertrag/]]></description>
			<content:encoded><![CDATA[<p>A (german) info on how to activate hotspot access via iPhone with T-Mobile germany:</p>
<p>http://www.familie-splett.de/t-mobile-hotspot-aktivieren-bei-iphone-vertrag/</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=111</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Curly braces and String.Format() in C#</title>
		<link>http://blogs.smarthosts.de/?p=110</link>
		<comments>http://blogs.smarthosts.de/?p=110#comments</comments>
		<pubDate>Thu, 23 Oct 2008 12:08:15 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/10/23/110/</guid>
		<description><![CDATA[Ever wanted to use String.Format on, say, a javascript function? Those include curly braces ( { or } ), but those curly braces are reserved as placeholder marker in String.Format() (i.e. for {0}). Escaping the braces with a backslash does not work. The solution is pretty simple: You need to double those curly braces to]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to use String.Format on, say, a javascript function? Those include curly braces ( { or } ), but those curly braces are reserved as placeholder marker in String.Format() (i.e. for {0}).  Escaping the braces with a backslash does not work.</p>
<p>The solution is pretty simple: You need to double those curly braces to escape them.<br />
<code>String.Format("function test() {{ return calcSomething({0}); }}", "123");</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=110</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Ajax and validators</title>
		<link>http://blogs.smarthosts.de/?p=109</link>
		<comments>http://blogs.smarthosts.de/?p=109#comments</comments>
		<pubDate>Wed, 11 Jun 2008 15:13:29 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/06/11/109/</guid>
		<description><![CDATA[Just a sidenote for myself, because I had to struggle with this today: You need additional assembly for making asp validators work with ajax. The solution and it&#8217;s explanation of it.]]></description>
			<content:encoded><![CDATA[<p>Just a sidenote for myself, because I had to struggle with this today:</p>
<p>You need additional assembly for making asp validators work with ajax.</p>
<p>The <a href="http://blogs.msdn.com/mattgi/archive/2007/01/23/asp-net-ajax-validators.aspx">solution</a> and it&#8217;s <a href="http://smarx.com/posts/what-happened-to-the-validators-in-asp-net-ajax-1-0-rtm.aspx">explanation</a> of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=109</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Searching &amp; stacking vs. ordering</title>
		<link>http://blogs.smarthosts.de/?p=108</link>
		<comments>http://blogs.smarthosts.de/?p=108#comments</comments>
		<pubDate>Thu, 10 Apr 2008 06:40:02 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/04/10/108/</guid>
		<description><![CDATA[Frank Fischer explained in his blog that he&#8217;s a searching guy. It was in a article about taking the common &#8220;desktop environment&#8221; to the web and whether it&#8217;s a good idea. But then he said something about common ways to organize your work. Talking about files on your computer you could sort everything in thousands]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.msdn.com/frankfi/archive/2008/04/09/taking-the-desktop-metaphor-to-the-web.aspx">Frank Fischer explained in his blog</a> that he&#8217;s a searching guy. It was in a article about taking the common &#8220;desktop environment&#8221; to the web and whether it&#8217;s a good idea.</p>
<p>But then he said something about common ways to organize your work. Talking about files on your computer you could sort everything in thousands of different folders. You also could put everything in one folder and let the environment search for you.</p>
<p>What is the flipside of letting the computer search for you? Perhaps it does not find everything. That&#8217;s the main reason why I don&#8217;t like sharepoint portal server. During my training on the job I had to write a document about the project I worked on. It was a ZVT 700 cash card terminal interface. I put that document in a sharepoint portal server and forgot about it.</p>
<p>About one and a half year later someone needed that document. Well, I knew about the auther of that document (obviously I checked it in), I knew the title of that document and well &#8211; the worst thing happened: Even as I tried to list ALL documents checked in by me (and that was not a lot) exactly THAT document I looked for was not listet. I looked through the whole structure of the sharepoint server for about 4 hours to find that document. Guess what? I never used that server again.</p>
<p>So what if you are searching for something special and it is not listed when your computer searches?<br />
If you have a rough structure of folders and stick to a naming scheme of your documents that will make things easier. There is nothing that hinders you to let your mashine do the search work for you, but if it fails, then you helped yourself to find it by yourself a lot faster.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=108</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pre-Fill password fields in ASP.NET</title>
		<link>http://blogs.smarthosts.de/?p=106</link>
		<comments>http://blogs.smarthosts.de/?p=106#comments</comments>
		<pubDate>Mon, 17 Mar 2008 13:12:10 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/03/17/106/</guid>
		<description><![CDATA[Via .NET Student Blog: You can pre-fill password fields using the .AddAttribute(&#8220;value&#8221;, password); method on the control. However, you should try to avoid this. But in some cases (i.e. display password strength / weakness during initial password entry on a &#8220;new user&#8221; page) this totally makes sense.]]></description>
			<content:encoded><![CDATA[<p>Via <a href="http://aspadvice.com/blogs/kumarr/archive/2005/06/26/2687.aspx">.NET Student Blog</a>:<br />
You can pre-fill password fields using the .AddAttribute(&#8220;value&#8221;, password); method on the control.</p>
<p>However, you should try to avoid this. But in some cases (i.e. display password strength / weakness during initial password entry on a &#8220;new user&#8221; page) this totally makes sense.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=106</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 1.0 for the win!</title>
		<link>http://blogs.smarthosts.de/?p=105</link>
		<comments>http://blogs.smarthosts.de/?p=105#comments</comments>
		<pubDate>Sun, 09 Mar 2008 15:35:10 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/03/09/105/</guid>
		<description><![CDATA[Trackback to FrankFi&#8217;s wiew of the world: With Dynamic Silverlight dynamic languages like Ruby and Python make their way into Silverlight 2. Not a very stylish start indeed, but that project page is a total winner on usability: No Screenreader problems, no navigation problems, no problems at all. I like pages that are accessible. I]]></description>
			<content:encoded><![CDATA[<p>Trackback to <a href="http://blogs.msdn.com/frankfi/archive/2008/03/09/dynamic-silverlight.aspx">FrankFi&#8217;s wiew of the world</a>:</p>
<p>With <a href="http://dynamicsilverlight.net/">Dynamic Silverlight</a> dynamic languages like Ruby and Python make their way into Silverlight 2. Not a very stylish start indeed, but that project page is a total winner on usability: No Screenreader problems, no navigation problems, no problems at all. I like pages that are accessible. I like that page. That is User Experience at its best <img src='http://blogs.smarthosts.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=105</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopping &#8220;tour&#8221;</title>
		<link>http://blogs.smarthosts.de/?p=104</link>
		<comments>http://blogs.smarthosts.de/?p=104#comments</comments>
		<pubDate>Sat, 08 Mar 2008 23:58:28 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Privates]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/03/09/104/</guid>
		<description><![CDATA[I was shopping today. But not on a shopping tour, but I shopped tours First one is two tickets for the &#8220;farewell &#038; goodbye&#8221; tour of &#8220;Fury in the Slaugtherhouse&#8221; in Munich in April. I love this band, especially the older songs. I saw them live two or three times and I&#8217;m glad to be]]></description>
			<content:encoded><![CDATA[<p>I was shopping today. But not on a shopping tour, but I shopped tours <img src='http://blogs.smarthosts.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>First one is two tickets for the &#8220;farewell &#038; goodbye&#8221; tour of &#8220;<a href="http://www.fury.de">Fury in the Slaugtherhouse</a>&#8221; in Munich in April. I love this band, especially the older songs. I saw them live two or three times and I&#8217;m glad to be able to see them once again.</p>
<p>Second one is the 10 year tour of the original &#8220;<a href="http://www.lordofthedance.com/">Lord of the Dance</a>&#8221; show, when they come to Ulm in october.</p>
<p>Third is two tickets for <a href="http://www.bap.de/">BAP</a> on their &#8220;Radio Pandora&#8221; album tour at the end of the year, also in Munich.</p>
<p>You see, I like live events <img src='http://blogs.smarthosts.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=104</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE8 and Tooling available</title>
		<link>http://blogs.smarthosts.de/?p=103</link>
		<comments>http://blogs.smarthosts.de/?p=103#comments</comments>
		<pubDate>Thu, 06 Mar 2008 11:17:29 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/03/06/103/</guid>
		<description><![CDATA[Yesterday I upgraded my private working system to the freshly released Internet Explorer 8 Beta1. Today there also is a Internet Explorer 8 Readiness Toolkit with some tooling for developing standard conform web sites. I&#8217;ll have a look at this in the next days.]]></description>
			<content:encoded><![CDATA[<p>Yesterday I upgraded my private working system to the freshly released <a href="http://www.microsoft.com/windows/products/winfamily/ie/ie8/readiness/Install.htm">Internet Explorer 8 Beta1</a>.<br />
Today there also is a <a href="http://www.microsoft.com/windows/products/winfamily/ie/ie8/readiness/default.htm">Internet Explorer 8 Readiness Toolkit</a> with some tooling for developing standard conform web sites.</p>
<p>I&#8217;ll have a look at this in the next days.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=103</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Updated</title>
		<link>http://blogs.smarthosts.de/?p=102</link>
		<comments>http://blogs.smarthosts.de/?p=102#comments</comments>
		<pubDate>Mon, 03 Mar 2008 21:07:39 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/03/03/102/</guid>
		<description><![CDATA[I just updated my blog alltogether with the theme. Actually it&#8217;s quite some work to put that spam protection plugin into the template again. And one plugin went bananas and so I had to disable the WoW Item plugin. But thats no problem, since I don&#8217;t play WoW anymore.]]></description>
			<content:encoded><![CDATA[<p>I just updated my blog alltogether with the theme. Actually it&#8217;s quite some work to put that spam protection plugin into the template again.</p>
<p>And one plugin went bananas and so I had to disable the WoW Item plugin. But thats no problem, since I don&#8217;t play WoW anymore. <img src='http://blogs.smarthosts.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=102</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EKON Spring 2008 &#8211; WMI Track</title>
		<link>http://blogs.smarthosts.de/?p=100</link>
		<comments>http://blogs.smarthosts.de/?p=100#comments</comments>
		<pubDate>Thu, 28 Feb 2008 16:53:29 +0000</pubDate>
		<dc:creator>Sebastian P.R. Gingter</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Delphi]]></category>

		<guid isPermaLink="false">http://thespicemustflow.de/post/2008/02/28/100/</guid>
		<description><![CDATA[I just finished my track about the Windows Management Instrumentation. It was a very funny track indeed: We just had community members of the Delphi-PRAXiS in the audience. How cool is that? Here are the slides and code samples: WMI Slides and code samples]]></description>
			<content:encoded><![CDATA[<p>I just finished my track about the Windows Management Instrumentation. It was a very funny track indeed: We just had community members of the Delphi-PRAXiS in the audience. How cool is that? <img src='http://blogs.smarthosts.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Here are the slides and code samples: <a href='http://blogs.smarthosts.de/wp-content/uploads/2008/02/wmi.zip' title='WMI Slides and code samples'>WMI Slides and code samples</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smarthosts.de/?feed=rss2&amp;p=100</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
