<?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>my notepad</title>
	<atom:link href="http://thehumblecoder.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thehumblecoder.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 11 Nov 2009 18:28:35 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='thehumblecoder.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b191a09a6efafb25932be3470a8a6378?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>my notepad</title>
		<link>http://thehumblecoder.wordpress.com</link>
	</image>
			<item>
		<title>Google Closure API</title>
		<link>http://thehumblecoder.wordpress.com/2009/11/11/google-closure-api/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/11/11/google-closure-api/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 18:28:35 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/?p=82</guid>
		<description><![CDATA[Google recently released Closure. A JavaScript optimizer, template engine, and comprehensive library. If you want to test out the optimizer or a learn a little bit more about the API I found this site that just lets you cut and paste the code in. It&#8217;s taking advantage of the Closure API.
&#160;
&#160;
 ClosureAPI.com 
   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=82&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Google recently released Closure. A JavaScript optimizer, template engine, and comprehensive library. If you want to test out the optimizer or a learn a little bit more about the API I found this site that just lets you cut and paste the code in. It&#8217;s taking advantage of the Closure API.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://closureapi.com"> ClosureAPI.com </a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=82&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/11/11/google-closure-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>Sending extra parameters to JavaScript Events</title>
		<link>http://thehumblecoder.wordpress.com/2009/07/13/sending-extra-parameters-to-javascript-events/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/07/13/sending-extra-parameters-to-javascript-events/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 16:50:26 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/?p=80</guid>
		<description><![CDATA[Let&#8217;s say you want to use something like :
$.GetJson(url,printResults,textStatus);
Well what if you need to send additional information to printResults() ? I&#8217;ve been coding C# to long. I vaguely remember events before delegates and I haven&#8217;t made a function pointer since freshmen year in college. I&#8217;m not actually sure if there is a way of sending [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=80&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Let&#8217;s say you want to use something like :</p>
<p>$.GetJson(url,printResults,textStatus);</p>
<p>Well what if you need to send additional information to printResults() ? I&#8217;ve been coding C# to long. I vaguely remember events before delegates and I haven&#8217;t made a function pointer since freshmen year in college. I&#8217;m not actually sure if there is a way of sending extra parameters to an event like this, but my solution was just to use an anonymous function before hand.</p>
<p>So something like this:</p>
<p>$.getJSON(request, ajaxData,<br />
function(data, textStatus) {<br />
printResults(extraDataToSend, data, textStatus);<br />
}<br />
);</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=80&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/07/13/sending-extra-parameters-to-javascript-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>filamentgroup Date Range Picker onClose Error</title>
		<link>http://thehumblecoder.wordpress.com/2009/07/01/filamentgroup-date-range-picker-onclose-error/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/07/01/filamentgroup-date-range-picker-onclose-error/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 20:12:39 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/?p=78</guid>
		<description><![CDATA[There is an error in the filamentgroup Date Range Picker onClose event. If you select a date that has the same start and end date, the end date does not get updated but is still set to the previous value. After digging through the code I came up with this solution. In the OnClose event, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=78&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There is an error in the filamentgroup Date Range Picker onClose event. If you select a date that has the same start and end date, the end date does not get updated but is still set to the previous value. After digging through the code I came up with this solution. In the OnClose event, just get the start and end values like this:<br />
$(&#8216;.range-end&#8217;).val()<br />
$(&#8216;.range-start&#8217;).val()</p>
<p>You probably are only getting this problem if you are doing some ajax stuff, so anyone else wont&#8217; be affected. The inputs still get updated with correct values, just not at the time this event is fired.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=78&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/07/01/filamentgroup-date-range-picker-onclose-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>JQuery &#8211; where is my onload in my body?</title>
		<link>http://thehumblecoder.wordpress.com/2009/06/23/jquery-where-is-my-onload-in-my-body/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/06/23/jquery-where-is-my-onload-in-my-body/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 18:46:40 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/?p=76</guid>
		<description><![CDATA[Understanding whe JavaScript is executed is crucial in creating the web 2.0 look and feel. JQuery greatly simplifies this. I think that people that started out there JavaScript with JQuery won&#8217;t appreciate how nice the library handles this.
Traditionally JavaScript programmer would hook most of their code in an onload event in the &#60;body&#62; tag of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=76&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Understanding whe JavaScript is executed is crucial in creating the web 2.0 look and feel. JQuery greatly simplifies this. I think that people that started out there JavaScript with JQuery won&#8217;t appreciate how nice the library handles this.</p>
<p>Traditionally JavaScript programmer would hook most of their code in an onload event in the &lt;body&gt; tag of the HTML document. This would insure a way to hold off executing of the script until the DOM was finished loading. Unfortuntely this also waited for all the exeternal media on the page too load also. This resulted in not so smooth page loading, as you have to download all the images before the script and start executing.</p>
<p>JQuery solves this by executing the JavaScript after the DOM is finished but before the media has finished downloading, resulting in a smooth gradual evolvation of the page.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=76&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/06/23/jquery-where-is-my-onload-in-my-body/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple iPhone 3G S Activation trick / fix</title>
		<link>http://thehumblecoder.wordpress.com/2009/06/20/apple-iphone-3g-s-activiation-trick-fix/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/06/20/apple-iphone-3g-s-activiation-trick-fix/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 04:26:20 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone 3G S Activation Hack Fix Apple]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/2009/06/20/apple-iphone-3g-s-activiation-trick-fix/</guid>
		<description><![CDATA[After hours of waiting for activation and much frustration I found out what my trick was too get my iPhone 3GS activated.
I used my old SIM card. It had &#8220;3G&#8221; written on it. So if you have an older phone or a different provider, this may not work for you. I&#8217;m thinking maybe if your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=71&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After hours of waiting for activation and much frustration I found out what my trick was too get my iPhone 3GS activated.</p>
<p>I used my old SIM card. It had &#8220;3G&#8221; written on it. So if you have an older phone or a different provider, this may not work for you. I&#8217;m thinking maybe if your sim CARD works AT&amp;T doesn&#8217;t actually expect you to use the one that shipped with the phone?</p>
<p>Other tricks I found while trying to solve my solution were people are popping their sim in and out, and some are doing a hard reset. I guess with millions of people it goes to show that there are a lot of different things that can go wrong.</p>
<p>Good luck!</p>
<p>Also people have been having luck going to <a rel="nofollow" href="http://www.att.com/activations">http://www.att.com/activations</a> and activating.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=71&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/06/20/apple-iphone-3g-s-activiation-trick-fix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>www.adnetworks.net</title>
		<link>http://thehumblecoder.wordpress.com/2009/06/18/www-adnetworks-net/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/06/18/www-adnetworks-net/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 02:41:51 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/2009/06/18/www-adnetworks-net/</guid>
		<description><![CDATA[AdNetworks.net got a new look and started brand new with posts. This is probably a good idea since so much of the information on there is outdated. The AdNetwork scene has evolved a lot in the last few years. Here is a link:
http://www.adnetworks.net
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=70&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>AdNetworks.net got a new look and started brand new with posts. This is probably a good idea since so much of the information on there is outdated. The AdNetwork scene has evolved a lot in the last few years. Here is a link:</p>
<p><a title="www.adnetworks.net" href="http://www.adnetworks.net">http://www.adnetworks.net</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=70&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/06/18/www-adnetworks-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>MVC.NET</title>
		<link>http://thehumblecoder.wordpress.com/2009/05/20/mvc-net/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/05/20/mvc-net/#comments</comments>
		<pubDate>Wed, 20 May 2009 14:23:12 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/?p=68</guid>
		<description><![CDATA[I’ve about six weeks into an MVC.NET project. Previous to that I created a RESTful web service using some of the MVC.NET routing components, which were still in beta. This project has been a great experience. I feel like I’m doing real web development. The ASP.NET Forms even model was too detached from the real [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=68&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I’ve about six weeks into an MVC.NET project. Previous to that I created a RESTful web service using some of the MVC.NET routing components, which were still in beta. This project has been a great experience. I feel like I’m doing real web development. The ASP.NET Forms even model was too detached from the real HTTP model (I realize this was by design). I still feel that there is a place for model, but it’s not for me. I try to keep this blog technical, but this change is a big milestone in my career that I wanted noted.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=68&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/05/20/mvc-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>Comma seperated lists in C#</title>
		<link>http://thehumblecoder.wordpress.com/2009/04/20/comma-seperated-lists-in-c/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/04/20/comma-seperated-lists-in-c/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 17:04:07 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/?p=65</guid>
		<description><![CDATA[String.Join only works on strings. I initally thought I&#8217;d create an extension method for List&#60;T&#62; that would use string builder to return a built string for any type of list. I don&#8217;t think StringBuilder would help much here after thinking about it. We would still have to call ToString on all the non String objects. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=65&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>String.Join only works on strings. I initally thought I&#8217;d create an extension method for List&lt;T&gt; that would use string builder to return a built string for any type of list. I don&#8217;t think StringBuilder would help much here after thinking about it. We would still have to call ToString on all the non String objects. Here is what I think is a good solution. I don&#8217;t know if it&#8217;s the best.</p>
<p>var result = string.Join(&#8220;,&#8221;, myList.Select(x =&gt; x.ToString()).ToArray());</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=65&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/04/20/comma-seperated-lists-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>.Net Exception performance</title>
		<link>http://thehumblecoder.wordpress.com/2009/01/26/net-exception-performance/</link>
		<comments>http://thehumblecoder.wordpress.com/2009/01/26/net-exception-performance/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 22:27:23 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/?p=60</guid>
		<description><![CDATA[I encourage you to run a test similar to the one I pasted below. In this example, using exception handling in my casting takes hundreds of milliseconds seconds to perform 10,000 cast operations (that fail). While my other code takes a few milliseconds.
Summary: Don&#8217;t use exceptions for logic. No really, don&#8217;t.
static void Main(string[] args)
{
TimeSpan span [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=60&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I encourage you to run a test similar to the one I pasted below. In this example, using exception handling in my casting takes hundreds of milliseconds seconds to perform 10,000 cast operations (that fail). While my other code takes a few milliseconds.</p>
<p>Summary: Don&#8217;t use exceptions for logic. No really, don&#8217;t.</p>
<p>static void Main(string[] args)<br />
{<br />
TimeSpan span = TimeSpan.MinValue;<br />
DateTime now = DateTime.Now;</p>
<p>object num = null;</p>
<p>for (int x = 0; x &lt; 1000; x++)<br />
{<br />
for (int y = 0; y &lt; 10; y++)<br />
{<br />
int myNum;<br />
if (num != null &amp;&amp; num != DBNull.Value)<br />
{<br />
int.TryParse(num.ToString(), out myNum);<br />
}</p>
<p>//try { int myNum = (int)num; } // 24 seconds<br />
//catch { }<br />
}<br />
}<br />
span = DateTime.Now &#8211; now;</p>
<p>Console.Write(span);<br />
Console.Read();<br />
}</p>
<p>Also, if we are in debug, this would take about 25 seconds.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=60&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2009/01/26/net-exception-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
		<item>
		<title>reset identity counter in MS SQL Server</title>
		<link>http://thehumblecoder.wordpress.com/2008/12/29/reset-identity-counter-in-ms-sql-server/</link>
		<comments>http://thehumblecoder.wordpress.com/2008/12/29/reset-identity-counter-in-ms-sql-server/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 16:30:37 +0000</pubDate>
		<dc:creator>thehumblecoder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Reset Identity MS SQL Server]]></category>

		<guid isPermaLink="false">http://thehumblecoder.wordpress.com/2008/12/29/reset-identity-counter-in-ms-sql-server/</guid>
		<description><![CDATA[In testing in a data warehouse environment, you often need to have large complicated slow tedious scripts to get you back into the exact same state for each test. I was using a large script a colleague of mine made when I noticed a very large part of the script was deleting and creating tables [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=59&subd=thehumblecoder&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In testing in a data warehouse environment, you often need to have large complicated slow tedious scripts to get you back into the exact same state for each test. I was using a large script a colleague of mine made when I noticed a very large part of the script was deleting and creating tables just for the purpose of setting the identity column back to the initial counter. Well MS SQL has a funtion to do just this:</p>
<p>Snytax:<br />
DBCC CHECKIDENT (&#8216;TABLE_NAME&#8217;, RESEED, NEW_SEED_NUMBER)</p>
<p>Example to set the idenity seed of table MikesDB.MikesSchema.MikesTable back to 1</p>
<p>DBCC CHECKIDENT (&#8216;MikesDB.MikesSchema.MikesTable &#8216;, RESEED, 1)</p>
<p>MS SQL OUTPUT:</p>
<p>Checking identity information: current identity value &#8216;19844&#8242;, current column value &#8216;1&#8242;.<br />
DBCC execution completed. If DBCC printed error messages, contact your system administrator.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thehumblecoder.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thehumblecoder.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thehumblecoder.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thehumblecoder.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thehumblecoder.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thehumblecoder.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thehumblecoder.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thehumblecoder.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thehumblecoder.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thehumblecoder.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thehumblecoder.wordpress.com&blog=337036&post=59&subd=thehumblecoder&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thehumblecoder.wordpress.com/2008/12/29/reset-identity-counter-in-ms-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e6dd15c49aff2a6a201a189dd19e69b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thehumblecoder</media:title>
		</media:content>
	</item>
	</channel>
</rss>