<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>BRuud - Blog by Ruud</title>
	<atom:link href="http://zaagmans.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://zaagmans.wordpress.com</link>
	<description>always in development</description>
	<lastBuildDate>Mon, 31 Oct 2011 19:36:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='zaagmans.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>BRuud - Blog by Ruud</title>
		<link>http://zaagmans.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://zaagmans.wordpress.com/osd.xml" title="BRuud - Blog by Ruud" />
	<atom:link rel='hub' href='http://zaagmans.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Prevent multiple form submits in ASP.NET</title>
		<link>http://zaagmans.wordpress.com/2011/02/04/prevent-multiple-form-submits-in-asp-net/</link>
		<comments>http://zaagmans.wordpress.com/2011/02/04/prevent-multiple-form-submits-in-asp-net/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 15:13:43 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=70</guid>
		<description><![CDATA[Preventing people from submitting a form multiple times by repeatedly clicking the submit button can be done with a few settings. First you need to set the attribute &#8220;UseSubmitBehavior&#8221; to &#8220;false&#8221; and then add the following to the &#8220;OnClientClick&#8221; attribute: &#8220;this.disabled=true;&#8221;. Example: &#60;asp:Button runat=&#8221;server&#8221; ID=&#8221;ButtonSave&#8221; Text=&#8221;Save&#8221; CausesValidation=&#8221;true&#8221; Enabled=&#8221;true&#8221;  OnClick=&#8221;ButtonSave_Click&#8221; OnClientClick=&#8221;this.disabled=true;&#8221; UseSubmitBehavior=&#8221;false&#8221; /&#62; I was experiencing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=70&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Preventing people from submitting a form multiple times by repeatedly clicking the submit button can be done with a few settings. First you need to set the attribute &#8220;UseSubmitBehavior&#8221; to &#8220;false&#8221; and then add the following to the &#8220;OnClientClick&#8221; attribute: &#8220;this.disabled=true;&#8221;.</p>
<blockquote><p>Example:<br />
<span style="font-family:monospace;"><br />
&lt;asp:Button runat=&#8221;server&#8221; ID=&#8221;ButtonSave&#8221; Text=&#8221;Save&#8221; CausesValidation=&#8221;true&#8221; Enabled=&#8221;true&#8221;  OnClick=&#8221;ButtonSave_Click&#8221; <span style="text-decoration:underline;">OnClientClick=&#8221;this.disabled=true;&#8221;</span> <span style="text-decoration:underline;">UseSubmitBehavior=&#8221;false&#8221;</span> /&gt;</span></p></blockquote>
<p>I was experiencing issues with the postback event not firing when  disabling the button via the &#8220;OnClientClick&#8221; attribute. This could be  fixed by setting the &#8220;UseSubmitBehaviour&#8221; attribute to <strong>false</strong>. After that the postback event was fired and the &#8220;ButtonSave_Click&#8221; function could do it&#8217;s magic.</p>
<p>Thanks to <a title="Disable a button control during postback" href="http://encosia.com/2007/04/17/disable-a-button-control-during-postback/" target="_blank">this</a> blog I was able to make it work.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=70&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2011/02/04/prevent-multiple-form-submits-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
		<item>
		<title>Don&#8217;t open a page. Wait for a request from an external application.</title>
		<link>http://zaagmans.wordpress.com/2011/01/14/dont-open-a-page-wait-for-a-request-from-an-external-application/</link>
		<comments>http://zaagmans.wordpress.com/2011/01/14/dont-open-a-page-wait-for-a-request-from-an-external-application/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 09:02:54 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=66</guid>
		<description><![CDATA[When you&#8217;re working on a web application the normal way of debugging is pressing F5, wait for the browser window to pop-up, test stuff and close the browser. By closing the browser you will stop debugging in Visual Studio. I cannot remember the amount of times I accidentally closed the browser window and thereby stopped [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=66&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">When you&#8217;re working on a web application the normal way of debugging is pressing F5, wait for the browser window to pop-up, test stuff and close the browser. By closing the browser you will stop debugging in Visual Studio.</p>
<p style="text-align:left;">I cannot remember the amount of times I accidentally closed the browser window and thereby stopped debugging the application. To prevent further irritation I&#8217;ve gotten the golden tip from one of my colleagues.</p>
<p style="text-align:left;">Go the the properties page of your web application. Click the &#8216;Web&#8217; tab (as displayed in the image) and set the &#8216;Start Action&#8217; to: <span style="text-decoration:underline;">Don&#8217;t open a page. Wait for a request from an external application.</span></p>
<p style="text-align:left;"><a href="http://zaagmans.files.wordpress.com/2011/01/dont_open_a_page_wait_for_request_external_app.png"><img class="aligncenter size-full wp-image-67" title="Wait for external application" src="http://zaagmans.files.wordpress.com/2011/01/dont_open_a_page_wait_for_request_external_app.png?w=500&#038;h=181" alt="" width="500" height="181" /></a></p>
<p style="text-align:left;">When you  start debugging from within Visual Studio, no browser will be started but instead of that Visual Studio will automatically attach itself to the &#8216;aspnet_wp.exe&#8217; worker process (CTRL + ALT + P is the manual way to attach the debugger to a process).</p>
<p style="text-align:left;">So open a browser window (if you haven&#8217;t got one open yet), browse to the local address of the web application you want to debug and you will notice it will hit the breakpoints just as intended.</p>
<p style="text-align:left;">That&#8217;s it!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=66&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2011/01/14/dont-open-a-page-wait-for-a-request-from-an-external-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>

		<media:content url="http://zaagmans.files.wordpress.com/2011/01/dont_open_a_page_wait_for_request_external_app.png" medium="image">
			<media:title type="html">Wait for external application</media:title>
		</media:content>
	</item>
		<item>
		<title>Show Output window when build starts</title>
		<link>http://zaagmans.wordpress.com/2010/11/24/show-output-window-when-build-starts/</link>
		<comments>http://zaagmans.wordpress.com/2010/11/24/show-output-window-when-build-starts/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 10:07:59 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=64</guid>
		<description><![CDATA[I noticed last week I had to manually open the Output window in Visual Studio when building my solutions. This has been irritating me a lot lately so I decided to figure out why it isn&#8217;t showing when building. The only thing you need to do is to tick the check box in Tools -&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=64&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I noticed last week I had to manually open the Output window in Visual Studio when building my solutions. This has been irritating me a lot lately so I decided to figure out why it isn&#8217;t showing when building.</p>
<p>The only thing you need to do is to tick the check box in Tools -&gt; Options -&gt; Projects and Solutions -&gt; &#8216;Show Output window when build starts&#8217; and it should pop-up the next time you press CTRL + SHIFT + B or F6 in Visual Studio.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=64&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2010/11/24/show-output-window-when-build-starts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
		<item>
		<title>Track Active Item in Visual Studio</title>
		<link>http://zaagmans.wordpress.com/2010/09/08/track-active-item-in-visual-studio/</link>
		<comments>http://zaagmans.wordpress.com/2010/09/08/track-active-item-in-visual-studio/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 11:01:37 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=56</guid>
		<description><![CDATA[A handy feature in Visual Studio, which is not enabled by default, is to track the current open item in the Solution Explorer. You can enable that feature by going to Tools -&#62; Options -&#62; Projects and Solutions -&#62; Track Active Item in Solution Explorer. This is a handy feature, especially when you have many [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=56&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A handy feature in Visual Studio, which is not enabled by default, is to track the current open item in the Solution Explorer.</p>
<p>You can enable that feature by going to Tools -&gt; Options -&gt; Projects and Solutions -&gt; Track Active Item in Solution Explorer.</p>
<p><a href="http://zaagmans.files.wordpress.com/2010/09/track_active_item_insolution_explorer.png"><img class="alignnone size-full wp-image-57" title="Track Active Item" src="http://zaagmans.files.wordpress.com/2010/09/track_active_item_insolution_explorer.png?w=500&#038;h=296" alt="" width="500" height="296" /></a></p>
<p>This is a handy feature, especially when you have many open files and you need to locate the file in the Solution Explorer.</p>
<p>If you activate the document via the tab, the Solution Explorer will jump to the file and highlight it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=56&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2010/09/08/track-active-item-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>

		<media:content url="http://zaagmans.files.wordpress.com/2010/09/track_active_item_insolution_explorer.png" medium="image">
			<media:title type="html">Track Active Item</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Comments off&#8221;</title>
		<link>http://zaagmans.wordpress.com/2010/04/13/comments-off/</link>
		<comments>http://zaagmans.wordpress.com/2010/04/13/comments-off/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 18:00:26 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=51</guid>
		<description><![CDATA[Due to a setting, all comments on posts older than 2 weeks were automatically disabled. My bad, I fixed it. Please feel free to leave a comment on any post I&#8217;ve made<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=51&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Due to a setting, all comments on posts older than 2 weeks were automatically disabled.<br />
<strong>My bad</strong>,<em> I fixed it.</em></p>
<p>Please feel free to leave a comment on any post I&#8217;ve made <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=51&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2010/04/13/comments-off/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Text was truncated or one or more characters had no match in the target code page.&#8221;</title>
		<link>http://zaagmans.wordpress.com/2010/02/10/text-was-truncated-or-one-or-more-characters-had-no-match-in-the-target-code-page/</link>
		<comments>http://zaagmans.wordpress.com/2010/02/10/text-was-truncated-or-one-or-more-characters-had-no-match-in-the-target-code-page/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 15:23:46 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/2010/02/10/text-was-truncated-or-one-or-more-characters-had-no-match-in-the-target-code-page/</guid>
		<description><![CDATA[This error was shown to me when I tried to import an Excel Spreadsheet into a Microsoft SQL Server 2005 database using the SQL Server Integration Services (SSIS) wizard. After trying to fix the issue by copying the data from one Excel sheet to a new one and all other kind of tricks I found [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=44&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This error was shown to me when I tried to import an Excel Spreadsheet into a Microsoft SQL Server 2005 database using the SQL Server Integration Services (SSIS) wizard.</p>
<p>After trying to fix the issue by copying the data from one Excel sheet to a new one and all other kind of tricks I found <a href="http://waxtadpole.wordpress.com/2008/04/28/hello-world/" target="_blank">this</a> blog post about this on the <a href="http://waxtadpole.wordpress.com/" target="_blank">Bite The Wax Tadpole</a> blog.</p>
<p>There I found the following paragraph:</p>
<blockquote><p>The data types of the Excel Source External Columns are automatically determined by SSIS based on sampling of the spreadsheet rows. For string columns if the sample does not reveal cells with greater than 255 characters, the data type is always DT_WSTR (Unicode string) which has maximum length 255. If the sample reveals cells with greater than 255 chars then the datatype will be DT_NTEXT (Unicode text stream).</p>
</blockquote>
<p>So SSIS scans a few rows of the file and decides if a string column should be of the datatype DT_WSTR instead of DT_NTEXT. </p>
<p>Aha!! *<a href="http://icanhascheezburger.com/2009/07/11/funny-pictures-idea-kitteh/" target="_blank">lightbulb</a>*</p>
<p>After reading through the rest of that post I decided to take the advice of <u>converting the Excel spreadsheet to a flat file</u>.</p>
<p>Importing the flat file made it a breeze and all of my data in the Excel spreadsheet was now also in SQL Server.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=44&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2010/02/10/text-was-truncated-or-one-or-more-characters-had-no-match-in-the-target-code-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
		<item>
		<title>SWFObject and CSS-based menu&#8217;s</title>
		<link>http://zaagmans.wordpress.com/2009/12/15/swfobject-and-css-based-menus/</link>
		<comments>http://zaagmans.wordpress.com/2009/12/15/swfobject-and-css-based-menus/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 16:35:43 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[SWFObject]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/2009/12/15/opaque/</guid>
		<description><![CDATA[Today I tried to solve a issue with a CSS based menu. When hovering the top-menu a sub-menu would be shown as a drop-down. Right underneath the menu a nice looking flash movie was implemented on the page using SWFObject. The code looks like this: 7 &#60;div id=&#8221;flash&#8221;&#62; 8 &#60;h4&#62;A new version of Adobe Flash [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=40&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I tried to solve a issue with a CSS based menu. When hovering the top-menu a sub-menu would be shown as a drop-down. Right underneath the menu a nice looking flash movie was implemented on the page using <a href="http://code.google.com/p/swfobject" target="_blank">SWFObject</a>.</p>
<p>The code looks like this:</p>
<div style="font-family:consolas;background:white;color:black;font-size:8pt;">
<p style="margin:0;"><span style="color:#2b91af;"> 7</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">div</span> <span style="color:red;">id</span><span style="color:blue;">=&#8221;flash&#8221;&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 8</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">h4</span><span style="color:blue;">&gt;</span>A new version of Adobe Flash Player is required.<span style="color:blue;">&lt;/</span><span style="color:#a31515;">h4</span><span style="color:blue;">&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 9</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">p</span><span style="color:blue;">&gt;download</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">p</span><span style="color:blue;">&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 10</span> <span style="color:blue;">&lt;/</span><span style="color:#a31515;">div</span><span style="color:blue;">&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 11</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">script</span> <span style="color:red;">type</span><span style="color:blue;">=&#8221;text/javascript&#8221;&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 12</span> <span style="color:blue;">var</span> s1 = <span style="color:blue;">new</span> SWFObject(<span style="color:#a31515;">&#8216;movie.swf&#8217;</span>,<span style="color:#a31515;">&#8216;movie&#8217;</span>,<span style="color:#a31515;">&#8217;960&#8242;</span>,<span style="color:#a31515;">&#8217;224&#8242;</span>,<span style="color:#a31515;">&#8217;6&#8242;</span>,<span style="color:#a31515;">&#8216;#FFFFFF&#8217;</span>);</p>
<p style="margin:0;"><span style="color:#2b91af;"> 13</span> s1.write(<span style="color:#a31515;">&#8216;flash&#8217;</span>);</p>
<p style="margin:0;"><span style="color:#2b91af;"> 14</span> <span style="color:blue;">&lt;/</span><span style="color:#a31515;">script</span><span style="color:blue;">&gt;</span></p>
</div>
<p>The above code will overwrite the div with the “flash” id, if the correct Flash Player has been installed.</p>
<p>The Flash Player always writes the flash movie to the topmost layer of the page. This means menu’s will be shown ‘underneath’ the flash movie and therefore be invisible. Even z-index changes in the CSS file of your page will <strong>not</strong> be of any influence.</p>
<p>A simple solution to solve this is by passing a parameter to the SWFObject before writing it to the div. By passing the ‘wmode’ parameter with the ‘opaque’ value to the object, the flash object won’t be shown ‘on top of’ the CSS-based menu. Instead the menu will be visible again.</p>
<p>The new code:</p>
<div style="font-family:consolas;background:white;color:black;font-size:8pt;">
<p style="margin:0;"><span style="color:#2b91af;"> 7</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">div</span> <span style="color:red;">id</span><span style="color:blue;">=&#8221;flash&#8221;&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 8</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">h4</span><span style="color:blue;">&gt;</span>A new version of Adobe Flash Player is required.<span style="color:blue;">&lt;/</span><span style="color:#a31515;">h4</span><span style="color:blue;">&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 9</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">p</span><span style="color:blue;">&gt;download</span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">p</span><span style="color:blue;">&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 10</span> <span style="color:blue;">&lt;/</span><span style="color:#a31515;">div</span><span style="color:blue;">&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 11</span> <span style="color:blue;">&lt;</span><span style="color:#a31515;">script</span> <span style="color:red;">type</span><span style="color:blue;">=&#8221;text/javascript&#8221;&gt;</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 12</span> <span style="color:blue;">var</span> s1 = <span style="color:blue;">new</span> SWFObject(<span style="color:#a31515;">&#8216;movie.swf&#8217;</span>,<span style="color:#a31515;">&#8216;movie&#8217;</span>,<span style="color:#a31515;">&#8217;960&#8242;</span>,<span style="color:#a31515;">&#8217;224&#8242;</span>,<span style="color:#a31515;">&#8217;6&#8242;</span>,<span style="color:#a31515;">&#8216;#FFFFFF&#8217;</span>);</p>
<p style="margin:0;"><span style="color:#2b91af;"> 13</span> s1.addParam(<span style="color:#a31515;">&#8216;wmode&#8217;</span>,<span style="color:#a31515;">&#8216;opaque&#8217;</span>); <span style="color:#008000;">//this parameter is needed to show the sub-menu</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 14</span> s1.write(<span style="color:#a31515;">&#8216;flash&#8217;</span>);</p>
<p style="margin:0;"><span style="color:#2b91af;"> 15</span> <span style="color:blue;">&lt;/</span><span style="color:#a31515;">script</span><span style="color:blue;">&gt;</span></p>
</div>
<p>So next time when you encounter issues using CSS based menu’s, SWFObject and  flash movies, be sure to check if you’ve set the ‘wmode’ to ‘opaque’.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=40&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2009/12/15/swfobject-and-css-based-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
		<item>
		<title>Book – Code Complete 2nd Edition</title>
		<link>http://zaagmans.wordpress.com/2009/07/15/book-code-complete-2nd-edition/</link>
		<comments>http://zaagmans.wordpress.com/2009/07/15/book-code-complete-2nd-edition/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 09:31:00 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Personal development]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[books]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=28</guid>
		<description><![CDATA[In the last few month’s I’ve bought some books to help me improve as a developer. One of them is Code Complete 2nd Edition by Steve McConnell. It is full of best practices, practical suggestions and methods for either a new developer or a veteran in software development. I’ve not yet completed reading the entire [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=28&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the last few month’s I’ve bought some books to help me <a href="http://zaagmans.wordpress.com/2009/05/08/improving-as-a-developer/" target="_blank">improve as a developer</a>. One of them is <a href="http://www.cc2e.com/" target="_blank">Code Complete 2nd Edition</a> by <a href="http://www.stevemcconnell.com/" target="_blank">Steve McConnell</a>. It is full of best practices, practical suggestions and methods for either a new developer or a veteran in software development.</p>
<p>I’ve not yet completed reading the entire book (it’s quite a thick book) so I will review the book in the near future.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=28&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2009/07/15/book-code-complete-2nd-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
		<item>
		<title>Learning</title>
		<link>http://zaagmans.wordpress.com/2009/07/13/learning/</link>
		<comments>http://zaagmans.wordpress.com/2009/07/13/learning/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 09:29:03 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Microsoft Certification]]></category>
		<category><![CDATA[Personal development]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=29</guid>
		<description><![CDATA[I’ve decided to pick up my quest for certification and try to get a Microsoft certificate for ASP.NET 3.5 Application Development. I already have an certificate for Microsoft .NET Framework – Application Development Foundation (70-536). So the upcoming months I will focus my spare time to studying for the Microsoft .NET Framework 3.5, ASP.NET Application [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=29&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve decided to pick up my quest for certification and try to get a Microsoft certificate for ASP.NET 3.5 Application Development. I already have an certificate for <a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-536&amp;locale=en-us" target="_blank">Microsoft .NET Framework – Application Development Foundation</a> (70-536). So the upcoming months I will focus my spare time to studying for the Microsoft .NET Framework 3.5, ASP.NET Application Development (70-562) <a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-562&amp;locale=en-us" target="_blank">exam</a>.</p>
<p>I already have the <a href="http://www.microsoft.com/learning/en/us/Books/12489.aspx" target="_blank">book</a> so it’s just a matter of time before I’ve worked through all the exercises. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=29&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2009/07/13/learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
		<item>
		<title>Improving as a developer</title>
		<link>http://zaagmans.wordpress.com/2009/05/08/improving-as-a-developer/</link>
		<comments>http://zaagmans.wordpress.com/2009/05/08/improving-as-a-developer/#comments</comments>
		<pubDate>Fri, 08 May 2009 09:00:35 +0000</pubDate>
		<dc:creator>Ruud</dc:creator>
				<category><![CDATA[Personal development]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[podcast]]></category>

		<guid isPermaLink="false">http://zaagmans.wordpress.com/?p=20</guid>
		<description><![CDATA[The IT business is changing and developing rapidly. As a developer, it requires a lot of effort to keep up with the latest technology. When I look at my own situation, being an ASP.NET developer, I often think about becoming a ‘better’ developer and what steps I need to take to keep up with the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=20&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The IT business is changing and developing rapidly. As a developer, it requires a lot of effort to keep up with the latest technology. When I look at my own situation, being an ASP.NET developer, I often think about becoming a ‘better’ developer and <span style="text-decoration:underline;">what steps</span> I need to take to keep up with the constantly changing and evolving IT business.</p>
<h2>Step 1: Start listening to Podcasts</h2>
<p>Since 2 years I’ve started listening to technology podcasts (<a href="http://www.dotnetrocks.com" target="_blank">.NET Rocks</a>, <a href="http://www.hanselminutes.com/" target="_blank">Hanselminutes</a>, <a href="http://herdingcode.com/" target="_blank">Herding Code</a>, <a href="http://www.grc.com/securitynow" target="_blank">Security Now!</a> and <a href="http://blog.stackoverflow.com/index.php?feed=podcast" target="_blank">The Stackoverflow Podcast</a>). I have quite a long commute (2,5 hours per day, depending on the traffic it might be up to 4 hours) so listening to podcasts is a nice distraction when being stuck in a traffic jam.</p>
<h2>Step 2: Start reading Blogs</h2>
<p>About the same time I started listening to podcasts, I’ve subscribed to several blogs using <a href="http://reader.google.com" target="_blank">Google Reader</a>. My normal working day starts with reading some blog posts. By doing this I learn a lot about new technologies, and what people are working on.</p>
<h2>Step 3: ‘Adopt’ a open source project</h2>
<p>By taking the two steps I’ve described above, I feel much more up-to-date with what’s going on in the world of technology. Still I feel something is missing.</p>
<p>After reading an inspiring <a href="http://haacked.com/archive/2009/05/07/18616.aspx" target="_blank">blog post</a> by Phil Haack, I came to the conclusion that I am ready to take the ‘next step’. In this post, Phil talks about a person who contacted him and asked how he [Phil] became such a successful developer and what steps he had taken to become who he is now. A quote from his blog post:</p>
<blockquote><p>If one thing in my career has paid dividends, it was getting involved with open source projects. It exposed me to such a diverse set of problems and technologies that I wouldn’t normally get a chance to work on at work.</p>
</blockquote>
<h2>What’s next?</h2>
<p>Ok so I’ve decided to get involved with a open source project. <a href="http://www.haacked.com" target="_blank">Phil</a> hints to <a href="http://www.subtextproject.com/" target="_blank">his own project</a> in his blog post.</p>
<p>Perhaps it is a good idea to look around and see what there is and what seems interesting to me.</p>
<p>In the following blog posts I will be discussing several open source project which of one I will probably adopt.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zaagmans.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zaagmans.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zaagmans.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zaagmans.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zaagmans.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zaagmans.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zaagmans.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zaagmans.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zaagmans.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zaagmans.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zaagmans.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zaagmans.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zaagmans.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zaagmans.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zaagmans.wordpress.com&amp;blog=7474492&amp;post=20&amp;subd=zaagmans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zaagmans.wordpress.com/2009/05/08/improving-as-a-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11be6102c3ef126470cc9da0f6f35dca?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zaagmans</media:title>
		</media:content>
	</item>
	</channel>
</rss>
