<?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>Rhonda Tipton's WebLog</title>
	<atom:link href="http://rtipton.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rtipton.wordpress.com</link>
	<description>Random Subject Matters</description>
	<lastBuildDate>Sat, 28 Nov 2009 03:03:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='rtipton.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d362262df17f5b2fdda2092a8af4df53?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Rhonda Tipton's WebLog</title>
		<link>http://rtipton.wordpress.com</link>
	</image>
			<item>
		<title>Method Overloading</title>
		<link>http://rtipton.wordpress.com/2009/11/27/method-overloading/</link>
		<comments>http://rtipton.wordpress.com/2009/11/27/method-overloading/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 02:12:33 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[.NET General]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/27/method-overloading/</guid>
		<description><![CDATA[Polymorphism is one of the main characteristics of Object Oriented Programming (OOP). Put simply, it allows an object to behave in various ways depending on the manner in which it is used. For example, you could have a method execute differently based on the type and/or number of parameters passed to it. Method Overloading is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1275&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming">Polymorphism</a> is one of the main characteristics of <a href="http://en.wikipedia.org/wiki/Object_Oriented_Programming">Object Oriented Programming (OOP)</a>. Put simply, it allows an object to behave in various ways depending on the manner in which it is used. For example, you could have a method execute differently based on the type and/or number of parameters passed to it. <a href="http://en.wikipedia.org/wiki/Method_overloading">Method Overloading</a> is what makes this example possible.&nbsp; To accomplish <a href="http://en.wikipedia.org/wiki/Method_overloading">Method Overloading</a>, a developer can define two or more methods with the same name. Each method will take a different set of parameters.&nbsp; The parameter combination or signature, is what the compiler uses to determine which method to use.</p>
<p><img style="border-width:0;" border="0" alt="image" src="http://rtipton.files.wordpress.com/2009/11/image5.png?w=300&#038;h=200" width="300" height="200"> </p>
<p>Good examples of <a href="http://en.wikipedia.org/wiki/Method_overloading">Method Overloading</a> in the .NET Framework include (but are not limited to) the <a href="http://msdn.microsoft.com/en-us/library/system.console.writeline.aspx">Console.WriteLine()</a> and <a href="http://msdn.microsoft.com/en-us/library/system.string.substring.aspx">Substring()</a> methods.&nbsp; You can pass different types to the <a href="http://msdn.microsoft.com/en-us/library/system.console.writeline.aspx">Console.WriteLine()</a> method and it will work because there are variations of the methods that will accept the different types.</p>
<p><img style="border-width:0;" border="0" alt="image" src="http://rtipton.files.wordpress.com/2009/11/image6.png?w=223&#038;h=72" width="223" height="72"> </p>
<p>&#8211;</p>
<p><strong>Example Program (click icon below)</strong></p>
<p><a href="http://snipplr.com/view/23841/method-overloading/" target="_blank"><img style="border-width:0;" border="0" alt="csharp2" src="http://rtipton.files.wordpress.com/2009/11/csharp25.jpg?w=43&#038;h=50" width="43" height="50"></a> </p>
<p>&#8211;</p>
<p><strong>Result</strong></p>
<p><img style="border-width:0;" border="0" alt="method-overloading_result" src="http://rtipton.files.wordpress.com/2009/11/method-overloading_result.jpg?w=444&#038;h=177" width="444" height="177"> </p>
<p>&#8211;</p>
<p>The main advantage of <a href="http://en.wikipedia.org/wiki/Method_overloading">Method Overloading</a> is code readability. Programming languages that do not allow <a href="http://en.wikipedia.org/wiki/Method_overloading">Method Overloading</a> require the developer to create totally separate methods for each variation of the input.&nbsp; <a href="http://www.blackwasp.co.uk/CSharpMethodOverloading.aspx" target="_blank">Blackwasp Consulting states</a> the following example:<em> in the ANSI C programming language to truncate a value you would use trunc, truncf or truncl according to the data type being rounded.&nbsp; In C#, method overloading allows you to always call Math.Truncate.</em></p>
<p>&#8211;</p>
<p><strong>Additional Information</strong></p>
<ul>
<li><a href="http://www.blackwasp.co.uk/CSharpMethodOverloading.aspx">C# Method Overloading &#8211; BlackWasp Consulting</a>
<li><a href="http://arcware.net/guidelines-for-method-overloading/">Guidelines for Method Overloading &#8211; Dave Donaldson</a>
<li><a href="http://csharp.net-tutorials.com/classes/method-overloading/">Method overloading &#8211; CSharp .Net-tutorials</a>
<li><a href="http://www.codersource.net/csharp_method_overloading_ed.html">Method overloading in C# .Net &#8211; Coder Source</a></li>
</ul>
<p>&#8211;</p>
<p>^..^</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1275/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1275&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/27/method-overloading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/image5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/image6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/csharp25.jpg" medium="image">
			<media:title type="html">csharp2</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/method-overloading_result.jpg" medium="image">
			<media:title type="html">method-overloading_result</media:title>
		</media:content>
	</item>
		<item>
		<title>Awesome Blogs of the Month &#8211; NOV &#8216;09</title>
		<link>http://rtipton.wordpress.com/2009/11/27/awesome-blogs-of-the-month-nov-09/</link>
		<comments>http://rtipton.wordpress.com/2009/11/27/awesome-blogs-of-the-month-nov-09/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 13:52:28 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Awesome-Blogs]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/27/awesome-blogs-of-the-month-nov-09/</guid>
		<description><![CDATA[
There are tons of great blogs out there. Each month I will shine a spotlight on blogs that I access often and find useful. Hopefully, you will find something of use too.
I pick one blog from each category. The categories include Application Development, Database Development, Science/Technology, Productivity and Health.
Application Development &#8211; Claudio Lassala &#124; Great [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1264&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rtipton.files.wordpress.com/2009/11/blogging_101.jpg"><img style="border-width:0;" height="125" alt="blogging_101" src="http://rtipton.files.wordpress.com/2009/11/blogging_101_thumb.jpg?w=244&#038;h=125" width="244" border="0"></a></p>
<p>There are tons of great blogs out there. Each month I will shine a spotlight on blogs that I access often and find useful. Hopefully, you will find something of use too.</p>
<p>I pick one blog from each category. The categories include <u>Application Development</u>, <u>Database Development</u>,<strong><em> </em></strong><u>Science/Technology</u>, <u>Productivity</u> and <u>Health</u>.</p>
<p><strong>Application Development</strong> &#8211; <a href="http://claudiolassala.spaces.live.com/" target="_blank">Claudio Lassala</a> | Great blog for application development information. Claudio is an excellent speaker and he always posts the materials from his presentations.</p>
<p><strong>Database Development</strong> &#8211; <a href="http://blogs.msdn.com/buckwoody/" target="_blank">Buck Woody</a> | Buck is a Program Manager at Microsoft and provides some very useful SQL Server information.</p>
<p><strong>Science/Technology</strong> &#8211; <a href="http://www.howtogeek.com/" target="_blank">How-To Geek</a> | Computer help site that provides how-to articles on everything from operating systems to software to browsers.</p>
<p><strong>Productivity/LifeHacks</strong> &#8211; <a href="http://lifehacker.com/" target="_blank">Lifehacker</a> | Lots of productivity tips that help you get things done.</p>
<p><strong>Health/Fitness</strong> &#8211; <a href="http://www.webmd.com/fitness-exercise/default.htm" target="_blank">Web MD Health and Fitness</a> | Good resource for everyday health.</p>
<p>&#8211;</p>
<p>Until next month&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1264/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1264&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/27/awesome-blogs-of-the-month-nov-09/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/blogging_101_thumb.jpg" medium="image">
			<media:title type="html">blogging_101</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekly Link Post 120</title>
		<link>http://rtipton.wordpress.com/2009/11/22/weekly-link-post-120/</link>
		<comments>http://rtipton.wordpress.com/2009/11/22/weekly-link-post-120/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 23:37:56 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/22/weekly-link-post-120/</guid>
		<description><![CDATA[Application Development/Design

Reading Code is Key to Writing Good Code &#8211; &#8220;I realize it’s probably obvious, but I’m going to say it anyhow – a great way to start reading other’s code is to pull down an Open Source project and dive in.&#8221;
Announcing: Reflector Addin Toolkit on CodePlex &#8211; Looks like some useful tools.
PDC09 Session Downloader [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1261&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><u>Application Development/Design</u></strong></p>
<ul>
<li><a href="http://stevenharman.net/blog/archive/2009/11/18/reading-code-is-key-to-writing-good-code.aspx" target="_blank">Reading Code is Key to Writing Good Code</a> &#8211; <em>&#8220;I realize it’s probably obvious, but I’m going to say it anyhow – a great way to start reading other’s code is to pull down an Open Source project and dive in.&#8221;</em>
<li><a href="http://jasonhaley.com/blog/post/2009/11/22/Announcing-Reflector-Addin-Toolkit-on-Codeplex.aspx" target="_blank">Announcing: Reflector Addin Toolkit on CodePlex</a> &#8211; Looks like some useful tools.
<li><a href="http://franksworld.com/blog/archive/2009/11/20/11780.aspx" target="_blank">PDC09 Session Downloader</a> &#8211; If you were like me and not able to attend PDC, Frank La Vigne provides a way to download session videos.
<li><a href="http://coolthingoftheday.blogspot.com/2009/11/pdc09-rss-feed-file-for-your-podcast.html" target="_blank">PDC09 RSS feed file for your podcast catcher of choice</a> &#8211; Another great way to obtain PDC content.
<li>Tutorial Video(s): <a href="http://dnrtv.com/default.aspx?ShowID=158%26utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+DnrtvWmv+%28dnrTV+%28wmv+Video%29%29%26utm_content=Google+Reader" target="_blank">MS Build Part 2</a>&nbsp;
<li>Article(s) from <a href="http://www.codeproject.com" target="_blank">Code project</a>:&nbsp; <a href="http://www.codeproject.com/KB/cs/combinationsiterator.aspx" target="_blank">A C# Combinations Iterator</a> </li>
</ul>
<dt>
<p><strong><u><strong><u><strong><u>SQL Server, Compliance and PowerShell</u></strong></u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://blog.sqlauthority.com/2009/11/18/sql-server-size-of-index-table-a-puzzle-to-find-index-size-for-each-index-on-table/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+SQLAuthority+%28Journey+to+SQL+Authority+with+Pinal+Dave%29%26utm_content=Google+Reader" target="_blank">A Puzzle to Find Index Size for Each Index on Table</a> &#8211; Pinal Dave provides a Stored Procedure that lets us find out some basic details of any table.
<li><a href="http://facility9.com/2009/11/19/guids-not-necessarily-unique?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+facility9+%28facility9%29%26utm_content=Google+Reader" target="_blank">GUIDS: Not Necessarily Unique</a>&nbsp; &#8211; <em>&#8220;So, you thought that GUIDs were supposed to be unique, eh? You aren’t alone.&#8221;</em> </li>
</ul>
<p><strong><u><strong><u>Community/Technology Events &amp; Training</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/houston-user-groups/" target="_blank">Houston Area User Group Meetings</a> &#8211; This is my monthly listing of Houston area user group meetings.&nbsp;
<li><a href="http://west-wind.com/weblog/posts/77040.aspx?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+RickStrahl+%28Rick+Strahl%27s+WebLog%29%26utm_content=Google+Reader" target="_blank">DevConnections Slides and Samples Posted</a> &#8211; Rick Strahl posts demos from DevConnections&nbsp;&nbsp;
<li><a href="http://coolthingoftheday.blogspot.com/2009/11/pdc09-session-video-list-okay-so-i-lied.html" target="_blank">PDC09 Session Video List</a>&nbsp; &#8211; Greg Duncan has listed the PDC09 session videos. Thanks Greg!</li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://webworkerdaily.com/2009/11/17/your-office-in-the-clouds-the-best-online-virtual-desktops/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+Webworkerdaily+%28WebWorkerDaily%29%26utm_content=Google+Reader" target="_blank">Your Office in the Clouds: The Best Online Virtual Desktops</a> &#8211; I&#8217;m not sure I have a need for this, but the concept is pretty slick.
<li><a href="http://lifehacker.com/5407557/sumatra-10-is-a-blazing-fast-replacement-for-adobe-reader?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+lifehacker%2Ffull+%28Lifehacker%29%26utm_content=Google+Reader" target="_blank">Sumatra 1.0 is a Blazing Fast Replacement for Adobe Reader</a> &#8211; I think both Foxit and Sumatra work pretty well as an Adobe Reader substitute.</li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<p>
<ul>
<li><a href="http://www.lifehack.org/articles/productivity/10-best-productivity-books-of-2009.html?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+LifeHack+%28lifehack.org%29%26utm_content=Google+Reader" target="_blank">10 Best Productivity Books of 2009</a> &#8211; <em>&#8220;These are 10 books I read this year that made a powerful impression.&#8221; </em>
<li><a href="http://www.dumblittleman.com/2009/11/seven-ways-to-create-more-time-in-your.html?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+DumbLittleMan+%28Dumb+Little+Man+-+tips+for+life%29%26utm_content=Google+Reader" target="_blank">Seven Ways to Create More Time In Your Day</a> &#8211; <em>&#8220;Do you ever feel like you have way too much time on your hands, and far too little work and life to fit into it? Unless you&#8217;re a teen on summer break, I reckon it&#8217;s unlikely!&#8221; </em>
<li><a href="http://www.positivityblog.com/index.php/2009/11/18/5-things-you-can-do-today-to-change-your-life/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+ThePositivityblog-PutSomePersonalDevelopmentAndPositivityIntoYourLife+%28The+PositivityBlog+-+Put+some+personal+development+and+positivity+into+your+life%29%26utm_content=Google+Reader" target="_blank">5 Things You Can Start Doing Today to Change Your Life</a> &#8211; <em>&#8220;Perhaps the most important thing you can do to improve your life is simply to do things. To take action and learn along the way.&#8221; </em>
<li><a href="http://www.thesimpledollar.com/2009/11/19/the-403030-rule/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+thesimpledollar+%28The+Simple+Dollar%29%26utm_content=Google+Reader">The 40/30/30 Rule</a> &#8211; <em>&#8220;When you prepare for anything in life, only 40% of the preparation is physical – the rest is mental. Thirty percent of preparation is technical skill and experience, and the second thirty percent is the willingness to take risks.&#8221;</em></li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<p>
<ul>
<li><a href="http://antwrp.gsfc.nasa.gov/apod/astropix.html" target="_blank">Leonid over Mono Lake</a>&nbsp; &#8211; Awesome Astronomy Picture of the Day.
<li><a href="http://www.aintitcool.com/node/43135" target="_blank">Starting February, LOST Will Air Tuesdays!!</a> &#8211; Last season of Lost&#8230;
<li><a href="http://www.traileraddict.com/trailer/star-trek-xi/gag-reel" target="_blank">Star Trek Gag Reel</a> &#8211; Funny stuff
<li>Dilberts I Found Funny: <a href="http://dilbert.com/strips/comic/2009-11-16/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+DilbertDailyStrip+%28Dilbert+Daily+Strip%29&amp;utm_content=Google+Reader" target="_blank">11-16</a> | <a href="http://dilbert.com/strips/comic/2009-11-18/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+DilbertDailyStrip+%28Dilbert+Daily+Strip%29&amp;utm_content=Google+Reader" target="_blank">11-18</a> | <a href="http://dilbert.com/strips/comic/2009-11-22/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+DilbertDailyStrip+%28Dilbert+Daily+Strip%29&amp;utm_content=Google+Reader" target="_blank">11-22</a>
<li>Movie Trailers:&nbsp; <a href="http://www.traileraddict.com/trailer/daybreakers/tv-spot-farm-them" target="_blank">Daybreakers</a> | <a href="http://movies.yahoo.com/movie/1809795078/video/14947125/" target="_blank">The Lovely Bones</a></li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://www.thesimpledollar.com/2009/11/18/the-simple-dollar-weekly-roundup-home-movies-edition/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+thesimpledollar+%28The+Simple+Dollar%29&amp;utm_content=Google+Reader" target="_blank">The Simple Dollar &#8211; Weekly Roundup</a>
<li><a href="http://facility9.com/2009/11/20/links-for-the-week-2009-11-20?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+facility9+%28facility9%29&amp;utm_content=Google+Reader" target="_blank">Jeremiah Peschka &#8211; Links for the Week</a>
<li><a href="http://codemonkeylabs.com/weekly-web-nuggets/" target="_blank">John Clayton &#8211; Weekly Web Nuggets</a>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley &#8211; Interesting Finds</a>
<li><a href="http://www.alvinashcraft.com/" target="_blank">Alvin Ashcraft &#8211; Morning Dew</a>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek &#8211; Links</a>
<li><a href="http://www.arjansworld.com/" target="_blank">Arjan Zuidhof &#8211; LinkBlog</a>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy &#8211; Double-Shot</a>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar &#8211; Links of the week</a>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile &#8211; New and Notable</a>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey &#8211; On Microsoft</a>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock &#8211; Morning Brew</a>
<li><a href="http://coolthingoftheday.blogspot.com/search/label/AFeedYouShouldRead" target="_blank">Greg Duncan &#8211; A Feed You Should Read</a></li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
</dt>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1261&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/22/weekly-link-post-120/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekly Link Post 119</title>
		<link>http://rtipton.wordpress.com/2009/11/15/weekly-link-post-119/</link>
		<comments>http://rtipton.wordpress.com/2009/11/15/weekly-link-post-119/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 15:08:18 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/15/weekly-link-post-119/</guid>
		<description><![CDATA[Application Development/Design


Pluralsight Training Videos on .Net Reflector &#124;&#160; Query Editor: Writing Queries, Part 1 &#8211; More Reflector goodness from Jason Haley. 
45+ Excellent Code Snippet Resources and Repositories &#8211; Great list of online snippet libraries. 
WorldOnWindows &#124; .Net Developer Cheat Sheets &#8211; &#8220;A .net developer should never be left without a helpful arsenal of cheat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1240&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><u>Application Development/Design</u></strong></p>
<p>
<ul>
<li><a href="http://jasonhaley.com/blog/post/2009/11/09/Pluralsight-Training-Videos-on-Net-Reflector.aspx" target="_blank">Pluralsight Training Videos on .Net Reflector</a> |&nbsp; <a href="http://jasonhaley.com/blog/post/2009/11/09/Query-Editor-Writing-Queries-Part-1.aspx" target="_blank">Query Editor: Writing Queries, Part 1</a> &#8211; More Reflector goodness from Jason Haley. </li>
<li><a href="http://www.smashingmagazine.com/2009/07/21/45-excellent-code-snippet-resources-and-repositories/#comments" target="_blank">45+ Excellent Code Snippet Resources and Repositories</a> &#8211; Great list of online snippet libraries. </li>
<li><a href="http://worldonwindows.com/post/Developer-Cheat-Sheets.aspx" target="_blank">WorldOnWindows | .Net Developer Cheat Sheets</a> &#8211; <em>&#8220;A .net developer should never be left without a helpful arsenal of cheat Sheets at his/her disposal, so here&#8217;s a helpful collection to help you along, adorn the walls of your power-cubicles, and get you started on the way to world domination!&#8221; </em></li>
<li><a href="http://blogs.zdnet.com/microsoft/?p=4491%26utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+zdnet%2Fmicrosoft+%28ZDNet+All+About+Microsoft%29%26utm_content=Google+Reader" target="_blank">New tool aids .Net developers in writing Linux, Mac OS X apps</a> &#8211; <em>&#8220;Not all .Net developers are writing Windows apps. Some (besides Miguel de Icaza and his merry band of Mono folks) may be interested in writing Linux, Unix and Mac OS X apps, too.&#8221; </em></li>
<li><a href="http://lifehacker.com/5401954/programmer-101-teach-yourself-how-to-code?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+lifehacker%2Ffull+%28Lifehacker%29%26utm_content=Google+Reader" target="_blank">Programmer 101: Teach Yourself How to Code</a> &#8211; <em>&#8220;&#8230;the web is full of free resources that can turn you into a programmer in no time.&#8221; </em></li>
<li>Tutorial Video(s):&nbsp; <a href="http://dnrtv.com/default.aspx?ShowID=157%26utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+DnrtvWmv+%28dnrTV+%28wmv+Video%29%29%26utm_content=Google+Reader" target="_blank">Debugging in .NET</a> | <a href="http://www.asp.net/learn/vs2010-quick-hit-videos/#" target="_blank">Visual Studio 2010 Videos</a> | <a href="http://www.asp.net/learn/aspnet-4-quick-hit-videos/" target="_blank">ASPNET 4 Videos</a></li>
<li>Article(s) from <a href="http://www.codeproject.com" target="_blank">Code project</a>:&nbsp; <a href="http://www.codeproject.com/KB/cs/AF_FileAssociation.aspx" target="_blank">C# FileAssociation Class</a></li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server, Compliance and PowerShell</u></strong></u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://www.simple-talk.com/community/blogs/tony_davis/archive/2009/11/13/76413.aspx" target="_blank">Do Scalar UDFs give SQL Server a Bad Name?</a> &#8211; <em>&#8220;[SQL Server] continues to ignore issues such as the performance of scalar UDFs. The problem is essentially that the optimizer deals with them very inefficiently.&#8221;</em></li>
</ul>
<p>&nbsp;<strong><u><strong><u>Community/Technology Events &amp; Training</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/houston-user-groups/" target="_blank">Houston Area User Group Meetings</a> &#8211; This is my monthly listing of Houston area user group meetings.&nbsp; </li>
<li><a href="http://wizardsofsmart.net/news/ann-houston-dynamic-languages-user-group/" target="_blank">Houston Dynamic Languages User Group</a> &#8211; Looks like a new tech user group for Houston. Very nice! </li>
<li><a href="http://wizardsofsmart.net/resources/practical-f/#" target="_blank">Practical F#</a> &#8211; Ryan Riley&#8217;s presentation from the 2009 Houston TechFest.</li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://coolthingoftheday.blogspot.com/2009/11/cool-command-line-utility-of-day-clip.html" target="_blank">Cool Command line utility of the day: clip</a> &#8211; <em>&#8220;This is a pretty cool Windows Vista/Win7 (and probably post Vista server OS’s too) utility that pipes into the clipboard.&#8221; </em></li>
<li><a href="http://lifehacker.com/5401263/panda-cloud-antivirus-available-for-download?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+lifehacker%2Ffull+%28Lifehacker%29%26utm_content=Google+Reader" target="_blank">Panda Cloud Antivirus Available for Download</a> -<em> &#8220;Panda Cloud, the constantly updated, cloud-run antivirus app that promises almost real-time protection from burgeoning web threats, is out of beta and available for a free download.&#8221;</em></li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<p>
<ul>
<li><a href="http://webworkerdaily.com/2009/11/12/low-tech-love-the-sketchbook/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+Webworkerdaily+%28WebWorkerDaily%29%26utm_content=Google+Reader" target="_blank">Low-tech Love: The Sketchbook</a> &#8211; <em>&#8220;The sketchbook is a free space for your ideas to play, unbound by lines and ruled margins.&#8221; </em></li>
<li><a href="http://webworkerdaily.com/2009/11/09/the-importance-of-a-weekly-review/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+Webworkerdaily+%28WebWorkerDaily%29%26utm_content=Google+Reader" target="_blank">The Importance of a Weekly Review</a> &#8211; <em>&#8220;Even though the impulse is to run as fast as you can to keep up, sometimes the best thing you can do is stop, see where you are, and adjust the course of a runaway train.&#8221; </em></li>
<li><a href="http://www.happiness-project.com/happiness_project/2009/11/eleven-myths-of-decluttering.html" target="_blank">Eleven Myths of De-Cluttering </a>- <em>&#8220;Here’s a list of some myths of de-cluttering that make it harder to get rid of stuff.&#8221;</em></li>
</ul>
<p><strong><u>Health, Fitness and Recipes</u></strong></p>
<p>
<ul>
<li><a href="http://www.dumblittleman.com/2009/11/7-healthy-foods-that-will-fill-you-up.html?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+DumbLittleMan+%28Dumb+Little+Man+-+tips+for+life%29%26utm_content=Google+Reader" target="_blank">7 Healthy Foods That Will Fill You Up and Prevent Overeating</a> &#8211; <em>&#8220;There are nutrient-filled foods that will keep you full for a long time and quite easy to find at any local grocery store. If you eat these better quality foods, you won’t need to overeat and frankly, you may not be as tempted by the glazed donuts that Marcy brought into the office.&#8221;</em></li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<p>
<ul>
<li><a href="http://www.space.com/scienceastronomy/091113-lcross-moon-crash-water-discovery.html?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+spaceheadlines+%28SPACE.com+Headline+Feed%29%26utm_content=Google+Reader" target="_blank">&#8216;Significant Amount&#8217; of Water Found on Moon</a> &#8211; Very big news in the Space Exploration sector. </li>
<li>Dilberts I Found Funny: <a href="http://dilbert.com/strips/comic/2009-11-12/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+DilbertDailyStrip+%28Dilbert+Daily+Strip%29%26utm_content=Google+Reader" target="_blank">11-12</a> | <a href="http://dilbert.com/strips/comic/2009-11-13/?utm_source=feedburner%26utm_medium=feed%26utm_campaign=Feed%3A+DilbertDailyStrip+%28Dilbert+Daily+Strip%29%26utm_content=Google+Reader" target="_blank">11-13</a></li>
<li>Movie Trailers:&nbsp; <a href="http://www.themoviebox.net/movies/2010/Clash-Of-The-Titans/trailer.php" target="_blank">Clash of the Titans</a></li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://www.thesimpledollar.com/2009/11/11/the-simple-dollar-weekly-roundup-post-book-lull-edition/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+thesimpledollar+%28The+Simple+Dollar%29&amp;utm_content=Google+Reader">The Simple Dollar &#8211; Weekly Roundup</a>
<li><a href="http://codemonkeylabs.com/weekly-web-nuggets/" target="_blank">John Clayton &#8211; Weekly Web Nuggets</a>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley &#8211; Interesting Finds</a>
<li><a href="http://www.alvinashcraft.com/" target="_blank">Alvin Ashcraft &#8211; Morning Dew</a>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek &#8211; Links</a>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof &#8211; LinkBlog</a>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby &#8211; Daily Links</a>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy &#8211; Double-Shot</a>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar &#8211; Links of the week</a>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile &#8211; New and Notable</a>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey &#8211; On Microsoft</a>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock &#8211; Morning Brew</a>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes &#8211; Visual Studio Links</a>
<li><a href="http://coolthingoftheday.blogspot.com/search/label/AFeedYouShouldRead" target="_blank">Greg Duncan &#8211; A Feed You Should Read</a></li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1240/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1240&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/15/weekly-link-post-119/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekly Link Post 118</title>
		<link>http://rtipton.wordpress.com/2009/11/08/weekly-link-post-118/</link>
		<comments>http://rtipton.wordpress.com/2009/11/08/weekly-link-post-118/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 00:32:38 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/08/weekly-link-post-118/</guid>
		<description><![CDATA[Application Development/Design


ReSharper 5.0 and Visual Studio 2010 &#8211; .NET Developer Tools &#8211; David Hayden highly recommends using the Resharper nightly builds with VS 2010 Beta.
Recommended books &#8211; Part 1 &#124; Part 2 &#124; Part 3 &#8211; Roy Osherove goes over books he likes.
Visual Studio 2010 Power +25 with PowerCommands 10.0 &#8211; Nice tools.
XAML: Gradients &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1233&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><u>Application Development/Design</u></strong></p>
<p>
<ul>
<li><a href="http://davidhayden.com/blog/dave/archive/2009/11/02/ReSharper5VisualStudio2010.aspx">ReSharper 5.0 and Visual Studio 2010 &#8211; .NET Developer Tools</a> &#8211; David Hayden highly recommends using the Resharper nightly builds with VS 2010 Beta.
<li>Recommended books &#8211; <a href="http://weblogs.asp.net/rosherove/archive/2009/10/29/recommended-books-part-1.aspx" target="_blank">Part 1</a> | <a href="http://weblogs.asp.net/rosherove/archive/2009/11/01/recommended-books-part-ii.aspx" target="_blank">Part 2</a> | <a href="http://weblogs.asp.net/rosherove/archive/2009/11/05/recommended-books-part-iii.aspx">Part 3</a> &#8211; Roy Osherove goes over books he likes.
<li><a href="http://coolthingoftheday.blogspot.com/2009/11/visual-studio-2010-power-25-with.html">Visual Studio 2010 Power +25 with PowerCommands 10.0</a> &#8211; Nice tools.
<li><a href="http://msmvps.com/blogs/deborahk/archive/2009/11/03/xaml-gradients.aspx">XAML: Gradients</a> &#8211; <em>&#8220;Gradients are a good way to make your application more visually interesting. They turn a flat solid color into something more natural and appealing to the eye by creating an illusion of light and shadow.&#8221;</em>
<li><a href="http://www.codinghorror.com/blog/archives/001308.html">Stack Overflow Careers: Amplifying Your Awesome</a> &#8211; Interesting new service from Stack Overflow.
<li><a href="http://scottonwriting.net/sowblog/posts/14022.aspx">November&#8217;s Toolbox Column Now Online</a> &#8211; I always look forward to Scott Mitchell&#8217;s toolbox column each month.
<li>Tutorial Video(s): <a href="http://dnrtv.com/default.aspx?ShowID=156">IronRuby</a>&nbsp;&nbsp; </li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server, Compliance and PowerShell</u></strong></u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://glennberrysqlperformance.spaces.live.com/Blog/cns%2145041418ECCAA960%212015.entry">SQL Server 2008 Diagnostic Information Queries</a> &#8211; <em>&#8220;&#8230;a set of pretty heavily commented queries that are very useful for detecting and diagnosing many common performance issues with SQL Server 2008.&#8221;</em></li>
</ul>
<p>&nbsp;<strong><u><strong><u>Community/Technology Events &amp; Training</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/houston-user-groups/" target="_blank">Houston Area User Group Meetings</a> &#8211; This is my monthly listing of Houston area user group meetings.&nbsp; </li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://www.boygeniusreport.com/2009/11/03/motorola-droid-review/">Motorola DROID review</a> &#8211; Nice long review of the new device.
<li><a href="http://www.engadget.com/2009/11/05/iphone-vs-droid-multitouch-keyboard-showdown-video/">iPhone vs DROID multitouch keyboard showdown (video)</a> &#8211; <em>&#8220;&#8230;while Android 2.0 and the DROID&#8217;s hardware support multitouch, the device itself doesn&#8217;t do multitouch out-of-the-box, and the soft keyboard suffers mightily for it.&#8221;</em></li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<p>
<ul>
<li><a href="http://www.lifehack.org/articles/productivity/11-ways-to-think-outside-the-box.html">11 Ways to Think Outside the Box</a> &#8211; This is a great list. I need to take some of these pointers.
<li><a href="http://www.dumblittleman.com/2009/11/2-tricks-that-help-overcome.html">2 Tricks That Help Overcome Procrastination</a> &#8211; Fear is my biggest reason of procrastination, so I really need to pay attention to #1.
<li><a href="http://www.happiness-project.com/happiness_project/2009/11/eight-tips-for-feeling-more-energetic.html">Eight Tips for Feeling More Energetic</a> &#8211; <em>&#8220;Feeling energetic is a key to feeling happy.&#8221;</em>
<li><a href="http://facility9.com/2009/11/03/livemeeting-tips-and-tricks">LiveMeeting Tips and Tricks</a> &#8211; Great tips for people that use LiveMeeting.
<li><a href="http://www.dumblittleman.com/2009/10/7-must-read-productivity-steps-to.html">7 Must Read Productivity Steps to Finally Getting Things Done</a> &#8211; <em>&#8220;&#8230;nothing changes until you change.&#8221;</em>
<li><a href="http://www.lifehack.org/articles/productivity/12-lists-that-help-you-get-things-done.html">12 Lists That Help You Get Things Done</a> &#8211; <em>&#8220;There are a lot of different kinds of lists besides your task or to-do list that can help you be more productive.&#8221;</em></li>
</ul>
<p><strong><u>Health, Fitness and Recipes</u></strong></p>
<ul>
<li>Recipes:&nbsp; <a href="http://www.myrecipes.com/recipes/dinnertonight/video/0,29865,1855610,00.html">Oatmeal-Crusted Chicken Tenders</a> | <a href="http://www.myrecipes.com/recipes/dinnertonight/video/0,29865,1857203,00.html">Black Bean Burrito Bake</a></li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<ul>
<li><a href="http://www.space.com/scienceastronomy/091103-galaxies-cosmic-web.html">Huge Galaxy Cluster Hints at Universe&#8217;s Skeleton</a> &#8211; <em>&#8220;A gigantic, previously unknown set of galaxies has been found in the distant universe, shedding light on the underlying skeleton of the cosmos.&#8221;</em>
<li><a href="http://www.planetary.org/news/2009/1105_MESSENGER_Rewrites_Mercury_Textbooks.html">MESSENGER Rewrites Mercury Textbooks Even Before Entering Orbit</a> &#8211; <em>&#8220;As MESSENGER zoomed toward Mercury for its third flyby, it was commanded to rotate in a maneuver that would help it test a surprising result from the second flyby.&#8221;</em>
<li><a href="http://www.space.com/scienceastronomy/091105-new-supernova.html">SPACE.com &#8212; New Type of Supernova Discovered</a> &#8211; <em>&#8220;A new type of supernova has been discovered in which helium detonates on the surface of a white dwarf star.&#8221;</em>
<li><a href="http://www.realtvaddict.com/2009/11/06/top-cult-shows-firefly/">Top Cult Shows: Firefly</a> &#8211; I totally agree&#8230;
<li>Dilberts I Found Funny:&nbsp; <a href="http://dilbert.com/strips/comic/2009-11-02/">11-02</a>
<li>Movie Trailers: <a href="http://www.traileraddict.com/trailer/planet-51/tv-spot-aliens">Planet 51</a> | <a href="http://www.traileraddict.com/trailer/avatar/tv-spot-next-generatioin-of-3d">Avatar</a></li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://www.thesimpledollar.com/2009/11/04/the-simple-dollar-weekly-roundup-next-project-edition/" target="_blank">The Simple Dollar &#8211; Weekly Roundup</a>
<li><a href="http://codemonkeylabs.com/weekly-web-nuggets/" target="_blank">John Clayton &#8211; Weekly Web Nuggets</a>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley &#8211; Interesting Finds</a>
<li><a href="http://www.alvinashcraft.com/" target="_blank">Alvin Ashcraft &#8211; Morning Dew</a>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek &#8211; Links</a>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof &#8211; LinkBlog</a>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby &#8211; Daily Links</a>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy &#8211; Double-Shot</a>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar &#8211; Links of the week</a>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile &#8211; New and Notable</a>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey &#8211; On Microsoft</a>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock &#8211; Morning Brew</a>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes &#8211; Visual Studio Links</a>
<li><a href="http://coolthingoftheday.blogspot.com/search/label/AFeedYouShouldRead" target="_blank">Greg Duncan &#8211; A Feed You Should Read</a></li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1233&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/08/weekly-link-post-118/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Pass 2009 Recaps and Live Blogs</title>
		<link>http://rtipton.wordpress.com/2009/11/08/sql-pass-2009-recaps-and-live-blogs/</link>
		<comments>http://rtipton.wordpress.com/2009/11/08/sql-pass-2009-recaps-and-live-blogs/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 16:58:45 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/08/sql-pass-2009-recaps-and-live-blogs/</guid>
		<description><![CDATA[
For people (like myself) who could not be present at SQL Pass 2009, I have listed some great recaps and live blogs below.
Michelle Ufford &#8211; Live Blog Posts

Live Blogging: Keynote at PASS, Day 1
Live Blogging: Keynote at PASS, Day 2
Live Blogging: Keynote at PASS, Day 3 

Pinal Dave &#8211; Recaps

SQL PASS Summit, Seattle 2009 – [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1231&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://summit2009.sqlpass.org/" target="_blank"><img style="border-width:0;" height="134" alt="sqlpass" src="http://rtipton.files.wordpress.com/2009/11/sqlpass.jpg?w=344&#038;h=134" width="344" border="0"></a></p>
<p>For people (like myself) who could not be present at <a href="http://summit2009.sqlpass.org/" target="_blank">SQL Pass 2009</a>, I have listed some great recaps and live blogs below.</p>
<p><a href="http://sqlfool.com" target="_blank">Michelle Ufford</a> &#8211; Live Blog Posts</p>
<ul>
<li><a href="http://sqlfool.com/2009/11/live-blogging-keynote-at-pass/" target="_blank">Live Blogging: Keynote at PASS, Day 1</a>
<li><a href="http://sqlfool.com/2009/11/live-blogging-keynote-at-pass-day-2/" target="_blank">Live Blogging: Keynote at PASS, Day 2</a>
<li><a href="http://sqlfool.com/2009/11/live-blogging-keynote-at-pass-day-3" target="_blank">Live Blogging: Keynote at PASS, Day 3</a> </li>
</ul>
<p><a href="http://blog.sqlauthority.com" target="_blank">Pinal Dave</a> &#8211; Recaps</p>
<ul>
<li><a href="http://blog.sqlauthority.com/2009/11/03/sqlauthority-news-sql-pass-summit-seattle-2009-day-1/" target="_blank">SQL PASS Summit, Seattle 2009 – Day 1</a>
<li><a href="http://blog.sqlauthority.com/2009/11/04/sqlauthority-news-sql-pass-summit-seattle-2009-day-2/" target="_blank">SQL PASS Summit, Seattle 2009 – Day 2</a>
<li><a href="http://blog.sqlauthority.com/2009/11/05/sqlauthority-news-sql-pass-summit-seattle-2009-day-3/" target="_blank">SQL PASS Summit, Seattle 2009 – Day 3</a>
<li><a href="http://blog.sqlauthority.com/2009/11/06/sqlauthority-news-sql-pass-summit-seattle-2009-day-4/" target="_blank">SQL PASS Summit, Seattle 2009 – Day 4</a> </li>
</ul>
<p><a href="http://www.brentozar.com" target="_blank">Brent Ozar</a> &#8211; Live Blog posts</p>
<ul>
<li><a href="http://www.brentozar.com/archive/2009/11/sqlpass-keynote-day-1-liveblog/" target="_blank">#SQLPASS Keynote Day 1 Liveblog</a>
<li><a href="http://www.brentozar.com/archive/2009/11/sqlpass-keynote-day-2/" target="_blank">#SQLPASS Keynote Day 2</a>
<li><a href="http://www.brentozar.com/archive/2009/11/sqlpass-keynote-day-3-liveblog/" target="_blank">#SQLPASS Keynote Day 3 Liveblog</a> </li>
</ul>
<p><a href="http://wiseman-wiseguy.blogspot.com" target="_blank">Jack Corbett</a> &#8211; Daily Recaps</p>
<ul>
<li><a href="http://wiseman-wiseguy.blogspot.com/2009/11/my-first-pass-experiences.html" target="_blank">My First PASS Experiences</a></li>
<li><a href="http://wiseman-wiseguy.blogspot.com/2009/11/let-learning-begin.html" target="_blank">Let the Learning Begin</a></li>
<li><a href="http://wiseman-wiseguy.blogspot.com/2009/11/pass-summit-day-2-what-more-can-i-learn.html" target="_blank">PASS Summit Day 2 – What More Can I Learn</a></li>
<li><a href="http://wiseman-wiseguy.blogspot.com/2009/11/pass-summit-day-3-brain-on-overload.html" target="_blank">PASS Summit Day 3 – Brain on Overload</a></li>
<li><a href="http://wiseman-wiseguy.blogspot.com/2009/11/pass-summit-2009-wrap-up-whats-value.html" target="_blank">PASS Summit 2009 – Wrap-up – What’s the Value?</a> </li>
</ul>
<p>Denny Cherry &#8211; Recap</p>
<ul>
<li><a href="http://itknowledgeexchange.techtarget.com/sql-server/sharp-sqlpass-is-over-some-thought-comments-and-reviews/#" target="_blank">#sqlpass is over. Some thought, comments, and reviews</a></li>
</ul>
<p>&#8211;</p>
<p>Until next time&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1231&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/08/sql-pass-2009-recaps-and-live-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/sqlpass.jpg" medium="image">
			<media:title type="html">sqlpass</media:title>
		</media:content>
	</item>
		<item>
		<title>Timers in .NET</title>
		<link>http://rtipton.wordpress.com/2009/11/06/timers-in-net/</link>
		<comments>http://rtipton.wordpress.com/2009/11/06/timers-in-net/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 13:50:36 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[.NET General]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/06/timers-in-net/</guid>
		<description><![CDATA[
I was researching timers the other day and realized that there are three variations in the .NET Framework. 

The three types of timers are explained below.
1 &#8211; System.Timers.Timer
The System.Timers.Timer class timer is considered a server-based timer that was designed and optimized for use in multithreaded environments. It can be accessed safely from multiple threads. 
Source [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1229&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /></p>
<p>I was researching timers the other day and realized that there are three variations in the .NET Framework. </p>
<p><img border="0" alt="stopwatch" src="http://rtipton.files.wordpress.com/2009/11/stopwatch.jpg?w=125&#038;h=168" width="125" height="168"></p>
<p>The three types of timers are explained below.</p>
<p><strong>1 &#8211; System.Timers.Timer</strong></p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.timers.timer.aspx" target="_blank">System.Timers.Timer</a> class timer is considered a server-based timer that was designed and optimized for use in multithreaded environments. It can be accessed safely from multiple threads. </p>
<p><font size="2"><strong><em>Source Code</em></strong></font></p>
<p><a href="http://snipplr.com/view/22248/systemtimerstimer-example/" target="_blank"><img style="border-width:0;" border="0" alt="csharp2" src="http://rtipton.files.wordpress.com/2009/11/csharp23.jpg?w=43&#038;h=50" width="43" height="50"></a>&nbsp; </p>
<p><strong><em>Output</em></strong></p>
<p><img style="border-width:0;" border="0" alt="image" src="http://rtipton.files.wordpress.com/2009/11/image.png?w=334&#038;h=167" width="334" height="167"> </p>
<p>&#8211;</p>
<p><strong>2 &#8211; System.Threading.Timer</strong></p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.threading.timer%28VS.71%29.aspx" target="_blank">System.Threading.Timer</a> class timer uses a TimerCallBack Delegate to specify the associated methods. The methods do not execute in the thread that created the timer; they execute in a separate thread that is automatically allocated by the system.</p>
<p><font size="2"><strong><em>Source Code</em></strong></font></p>
<p><strong><a href="http://snipplr.com/view/22249/systemthreadingtimer-example/" target="_blank"><img style="border-width:0;" border="0" alt="csharp2" src="http://rtipton.files.wordpress.com/2009/11/csharp21.jpg?w=43&#038;h=50" width="43" height="50"></a>&nbsp;</strong></p>
<p><strong><em>Output</em></strong></p>
<p><img style="border-width:0;" border="0" alt="image" src="http://rtipton.files.wordpress.com/2009/11/image1.png?w=304&#038;h=259" width="304" height="259"> </p>
<p>&#8211;</p>
<p><strong>3 &#8211; Windows.Forms.Timer</strong></p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.timer.aspx" target="_blank">Windows.Forms.Timer</a> class works synchronously with the Windows Form, so that it will not interrupt any operations. It initializes on the UI thread. </p>
<p><font size="2"><strong><em>Source Code</em></strong></font></p>
<p><a href="http://snipplr.com/view/22250/systemwindowsformstimer-example/" target="_blank"><img style="border-width:0;" border="0" alt="csharp2" src="http://rtipton.files.wordpress.com/2009/11/csharp22.jpg?w=43&#038;h=50" width="43" height="50"></a>&nbsp;</p>
<p><em><strong>Output</strong></em></p>
<p><img style="border-width:0;" border="0" alt="image" src="http://rtipton.files.wordpress.com/2009/11/image2.png?w=154&#038;h=95" width="154" height="95">&nbsp; <img style="border-width:0;" border="0" alt="image" src="http://rtipton.files.wordpress.com/2009/11/image3.png?w=154&#038;h=95" width="154" height="95">&nbsp; <img style="border-width:0;" border="0" alt="image" src="http://rtipton.files.wordpress.com/2009/11/image4.png?w=154&#038;h=94" width="154" height="94"> </p>
<p>&#8211;</p>
<p>There are three choices for timers in .NET.&nbsp; It just depends on what you want to do.</p>
<p>&#8211;</p>
<p><strong>More Information</strong></p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/magazine/cc164015.aspx" target="_blank">Comparing the Timer Classes in the .NET Framework Class Library</a>
<li><a href="http://stackoverflow.com/questions/1416803/system-timers-timer-vs-system-threading-timer" target="_blank">System.Timers.Timer vs System.Threading.Timer</a>
<li><a href="http://www.vbdotnetheaven.com/UploadFile/mahesh/TimerControl04262005033148AM/TimerControl.aspx#" target="_blank">Working with Timer Control in VB.NET</a> </li>
</ul>
<p>&#8211;</p>
<p>Until next time&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1229&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/06/timers-in-net/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/stopwatch.jpg" medium="image">
			<media:title type="html">stopwatch</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/csharp23.jpg" medium="image">
			<media:title type="html">csharp2</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/image.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/csharp21.jpg" medium="image">
			<media:title type="html">csharp2</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/image1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/csharp22.jpg" medium="image">
			<media:title type="html">csharp2</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/image2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/image3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/11/image4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekly Link Post 117</title>
		<link>http://rtipton.wordpress.com/2009/11/01/weekly-link-post-117/</link>
		<comments>http://rtipton.wordpress.com/2009/11/01/weekly-link-post-117/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 01:38:38 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/11/01/weekly-link-post-117/</guid>
		<description><![CDATA[Application Development/Design


Unit Testing: An Introduction &#8211; Great TDD overview from Deborah Kurata. 
14 Microsoft Expression Web 3 Articles and Tips you should read &#8211; Good list of resources. 
VS 2010 Intellisense Improvements &#8211; Intellisense rocks! 
A Better Developer &#8211; &#34;There&#8217;s a peer-pressure that comes with this (or any) industry to be noticed, but ultimately, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1222&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><u>Application Development/Design</u></strong></p>
</p>
<ul>
<li><a href="http://msmvps.com/blogs/deborahk/archive/2009/10/25/unit-testing-an-introduction.aspx" target="_blank">Unit Testing: An Introduction</a> &#8211; Great TDD overview from Deborah Kurata. </li>
<li><a href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=405%26AspxAutoDetectCookieSupport=1" target="_blank">14 Microsoft Expression Web 3 Articles and Tips you should read</a> &#8211; Good list of resources. </li>
<li><a href="http://www.codecapers.com/2009/10/vs-2010-intellisense-improvements.html" target="_blank">VS 2010 Intellisense Improvements</a> &#8211; Intellisense rocks! </li>
<li><a href="http://blog.codinglight.com/2009/10/better-developer.html" target="_blank">A Better Developer</a> &#8211; <em>&quot;There&#8217;s a peer-pressure that comes with this (or any) industry to be noticed, but ultimately, the question we, as developers, should all be asking is &#8216;does this make me a better developer?&#8217; Answer that question, and you&#8217;ll know what&#8217;s worth giving your time to.&quot; </em></li>
<li><a href="http://coolthingoftheday.blogspot.com/2009/10/feed-you-should-read-9-10-4.html" target="_blank">A Feed You Should Read #9 &#8211; 10-4 </a>- <em>&quot;Today&#8217;s &#8216;feed you should read&#8217; is another one of those &#8216;a feed you should watch&#8217; feeds and is in honor of this past week&#8217;s release of Visual Studio 2010 and /Net 4.0 Beta 2.&quot;</em> </li>
<li><a href="http://blogs.msdn.com/innov8showcase/archive/2009/10/26/channel-9-learning-center-just-launched.aspx" target="_blank">Channel 9 Learning Center &#8211; Just Launched!</a> &#8211; Looks like a good resource. </li>
<li><a href="http://www.hanselman.com/blog/TheWeeklySourceCode46JeffKeyRocksTaskbarMetersThatMonitorYourWindows7CPUAndMemoryAndDiskInTheTaskbar.aspx" target="_blank">The Weekly Source Code 46</a> &#8211; Jeff Key rocks Taskbar Meters that Monitor your Windows 7 CPU and Memory and Disk in the Taskbar </li>
<li><a href="http://repeatgeek.com/technical/17-websites-for-sharing-programming-knowledge/" target="_blank">17 Websites for Sharing Programming Knowledge</a> &#8211; Great list! </li>
<li><a href="http://elijahmanor.com/webdevdotnet/post/New-Official-jQuery-Podcast-Announced.aspx" target="_blank">New Official jQuery Podcast Announced</a> &#8211; Very cool! </li>
<li><a href="http://www.pseale.com/blog/SharePoint2007PostsRecap.aspx" target="_blank">SharePoint 2007 Posts: Recap</a> &#8211; Good Sharepoint content. </li>
<li>Tutorial Video(s):&#160; <a href="http://dnrtv.com/default.aspx?ShowID=155" target="_blank">AutoMapper</a> | <a href="http://www.asp.net/learn/security-videos/video-8718.aspx" target="_blank">SQL Injection Defense</a> </li>
<li>Article(s) from <a href="http://www.codeproject.com" target="_blank">Code project</a>: <a href="http://www.codeproject.com/KB/cs/Classes.aspx" target="_blank">C# Language Essentials for the Beginner</a> </li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server, Compliance and PowerShell</u></strong></u></strong></u></strong></p>
<ul>
<li><a href="http://www.youdidwhatwithtsql.com/get-database-size-with-t-sql-and-mysql/414" target="_blank">Get database size With T-SQL and MySQL</a> &#8211; Nice to know. </li>
<li>Snippet(s): <a href="http://sqlhelp.wordpress.com/2009/10/29/table-row-in-string/" target="_blank">Table Row in String</a> </li>
</ul>
<p>&#160;<strong><u><strong><u>Community/Technology Events &amp; Training</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/houston-user-groups/" target="_blank">Houston Area User Group Meetings</a> &#8211; This is my monthly listing of Houston area user group meetings.&#160; </li>
<li><a href="http://chriskoenig.net/index.php/2009/10/25/tulsa-techfest-is-almost-here/" target="_blank">Tulsa TechFest is almost here!</a> &#8211; Sounds like a great dev event. </li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
</p>
<ul>
<li><a href="http://webworkerdaily.com/2009/10/25/tips-and-tricks-making-the-most-of-google-calendar/" target="_blank">Tips and Tricks: Making the Most of Google Calendar</a> &#8211; Good tips for GCal users. </li>
</ul>
<p><u><strong>Blogging and Social Networking</strong></u></p>
</p>
<ul>
<li><a href="http://www.brentozar.com/archive/2009/10/how-to-use-twitter-lists/" target="_blank">How to Use Twitter Lists</a> &#8211; Brent Ozar gives a great explanation of Twitter lists. </li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<ul>
<li><a href="http://www.thesimpledollar.com/2009/10/27/14-ways-a-notebook-in-your-pocket-can-save-you-money/" target="_blank">14 Ways a Notebook in Your Pocket Can Save You Money</a> &#8211; <em>&quot;Here are fourteen ways I use that notebook to directly save money.&quot;</em> </li>
<li><a href="http://www.dumblittleman.com/2009/10/7-must-read-productivity-steps-to.html" target="_blank">7 Must Read Productivity Steps to Finally Getting Things Done</a> &#8211; <em>&quot;&#8230;implementing these steps will help you increase your output if you implement them towards the tasks that you&#8217;re passionate about.&quot;</em> </li>
<li><a href="http://www.thesimpledollar.com/2009/11/01/ten-tricks-for-staying-warm-this-winter-without-huge-energy-bills/" target="_blank">Ten Tricks for Staying Warm This Winter Without Huge Energy Bills</a> &#8211; <em>&quot;&#8230;since I work from home, I have to utilize lots of different tricks to ensure that we&#8217;re not burning too much energy just to keep the house warm.&quot;</em> </li>
</ul>
<p><strong><u>Health, Fitness and Recipes</u></strong></p>
</p>
<ul>
<li><a href="http://zenhabits.net/2009/10/the-anti-fast-food-diet/" target="_blank">The Anti-Fast Food Diet</a> &#8211; <em>&quot;This is the Anti-Fast Food Diet &#8212; a way to not only lose weight and get healthier, but to change your life to one of simplicity, moderation, and joy.&quot;</em> </li>
<li><a href="http://www.diylife.com/2009/10/30/daily-diy-onion-tears-no-more/" target="_blank">Onion Tears No More</a> &#8211; I need to try this next time I chop onions. </li>
</ul>
<dt>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
</p>
<ul>
<li><a href="http://www.thedogfiles.com/2009/10/26/oldest-dog-otto-nearly-21/" target="_blank">Oldest Dog, Nearly 21, Still Jumps On Sofa</a> &#8211; I love this story. </li>
<li><a href="http://www.examiner.com/examiner/x-25470-Tucson-TV-Examiner%7Ey2009m10d26-Top-5-underdog-shows-on-TV" target="_blank">Top 5 underdog shows on TV</a> &#8211; I like 3 out of the 5. </li>
<li>Dilberts I Found Funny: <a href="http://dilbert.com/strips/comic/2009-10-28/" target="_blank">10/28</a> | <a href="http://dilbert.com/strips/comic/2009-10-31/" target="_blank">10/31</a> | <a href="http://dilbert.com/strips/comic/2009-11-01/" target="_blank">11/01</a> </li>
<li>Movie Trailers:&#160; <a href="http://www.themoviebox.net/movies/2009/STUVWXYZ/Sherlock-Holmes/trailer.php" target="_blank">Sherlock Holmes</a> | <a href="http://www.themoviebox.net/movies/2009/0-9ABC/2012/trailer.php" target="_blank">2012</a>&#160; </li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://www.brentozar.com/archive/2009/10/my-weekly-bookmarks-for-october-30th/" target="_blank">Brent Ozar &#8211; Weekly Links Recap</a> </li>
<li><a href="http://www.thesimpledollar.com/2009/10/28/the-simple-dollar-weekly-roundup-third-child-edition/" target="_blank">The Simple Dollar &#8211; Weekly Roundup</a> </li>
<li><a href="http://facility9.com/2009/10/31/links-for-the-week-of-2009-10-30" target="_blank">Jeremiah Peschka &#8211; Links for the Week</a> </li>
<li><a href="http://codemonkeylabs.com/weekly-web-nuggets/" target="_blank">John Clayton &#8211; Weekly Web Nuggets</a> </li>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley &#8211; Interesting Finds</a> </li>
<li><a href="http://www.alvinashcraft.com/" target="_blank">Alvin Ashcraft &#8211; Morning Dew</a> </li>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek &#8211; Links</a> </li>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof &#8211; LinkBlog</a> </li>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby &#8211; Daily Links</a> </li>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy &#8211; Double-Shot</a> </li>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar &#8211; Links of the week</a> </li>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile &#8211; New and Notable</a> </li>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey &#8211; On Microsoft</a> </li>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock &#8211; Morning Brew</a> </li>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes &#8211; Visual Studio Links</a> </li>
<li><a href="http://coolthingoftheday.blogspot.com/search/label/AFeedYouShouldRead" target="_blank">Greg Duncan &#8211; A Feed You Should Read</a> </li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
</dt>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1222/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1222&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/11/01/weekly-link-post-117/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>
	</item>
		<item>
		<title>Awesome Blogs of the Month &#8211; OCT &#8216;09</title>
		<link>http://rtipton.wordpress.com/2009/10/29/awesome-blogs-of-the-month-oct-09/</link>
		<comments>http://rtipton.wordpress.com/2009/10/29/awesome-blogs-of-the-month-oct-09/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 01:04:31 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Awesome-Blogs]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/10/29/awesome-blogs-of-the-month-oct-09/</guid>
		<description><![CDATA[
There are tons of great blogs out there. Each month I will shine a spotlight on blogs that I access often and find useful. Hopefully, you will find something of use too.
I pick one blog from each category. The categories include Application Development, Database Development, Science/Technology, Productivity and Health.
Application Development &#8211; StackOverflow &#124; Great site [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1219&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img style="border-width:0;" border="0" alt="blogging_101" src="http://rtipton.files.wordpress.com/2009/10/blogging_101.jpg?w=244&#038;h=125" width="244" height="125">
<p>There are tons of great blogs out there. Each month I will shine a spotlight on blogs that I access often and find useful. Hopefully, you will find something of use too.
<p>I pick one blog from each category. The categories include <u>Application Development</u>, <u>Database Development</u>,<strong><em> </em></strong><u>Science/Technology</u>, <u>Productivity</u> and <u>Health</u>.
<p><strong>Application Development</strong> &#8211; <a href="http://stackoverflow.com/" target="_blank">StackOverflow</a> | Great site for Application Developers to ask questions and get answers. This site has been a lifesaver for me more than once&#8230;
<p><strong>Database Development</strong> &#8211; <a href="http://sqlserverpedia.com/" target="_blank">SQLServerPedia</a> | All things SQL Server. Copious amounts of informative articles as well as podcasts.
<p><strong>General Science/Technology</strong> &#8211; <a href="http://blogs.chron.com/sciguy/" target="_blank">ChronSciGuy</a> | I enjoy reading Eric&#8217;s posts each day. He provides overall Science content from hurricanes to space travel to what it takes to grow tomatoes fast.
<p><strong>Productivity/LifeHacks</strong> &#8211; <a href="http://www.lifehack.org/" target="_blank">Lifehack Stepcase</a> | This is a site that produces top-notch productivity articles.
<p><strong>Health/Fitness</strong> &#8211; <a href="http://dailyburn.com/" target="_blank">Daily Burn</a> | Good fitness/food log that is accessible via the internet as well as an iPhone app. The iPhone barcode scanner application is pretty cool.
<p>&#8211;
<p>Until next month&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1219/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1219&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/10/29/awesome-blogs-of-the-month-oct-09/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/10/blogging_101.jpg" medium="image">
			<media:title type="html">blogging_101</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekly Link Post 116</title>
		<link>http://rtipton.wordpress.com/2009/10/25/weekly-link-post-116/</link>
		<comments>http://rtipton.wordpress.com/2009/10/25/weekly-link-post-116/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 00:18:16 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/10/25/weekly-link-post-116/</guid>
		<description><![CDATA[Application Development/Design


Getting Started with Query Editor &#8211; Another great post related to Jason Haley&#8217;s PowerCommands for Reflector 1.3.
The Interview With The Programmer &#8211; Great review of the book &#8220;Coders at Work&#8221; from Jeff Atwood.
Learn to Program and Build Websites using Microsoft&#8217;s Beginner Developer Learning Center &#8211; David Hayden recommends MSDN&#8217;s Beginner Dev Center.
Writing Extension Methods [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1217&subd=rtipton&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><u>Application Development/Design</u></strong></p>
<p>
<ul>
<li><a href="http://jasonhaley.com/blog/post/2009/10/18/Getting-Started-with-Query-Editor.aspx" target="_blank">Getting Started with Query Editor</a> &#8211; Another great post related to Jason Haley&#8217;s PowerCommands for Reflector 1.3.
<li><a href="http://www.codinghorror.com/blog/archives/001305.html" target="_blank">The Interview With The Programmer</a> &#8211; Great review of the book &#8220;Coders at Work&#8221; from Jeff Atwood.
<li><a href="http://davidhayden.com/blog/dave/archive/2009/10/19/LearnToProgramBuildWebsites.aspx" target="_blank">Learn to Program and Build Websites using Microsoft&#8217;s Beginner Developer Learning Center</a> &#8211; David Hayden recommends MSDN&#8217;s Beginner Dev Center.
<li><a href="http://blog.codinglight.com/2009/10/writing-extension-methods-in-f-to-use.html" target="_blank">Writing Extension Methods in F# to Use in C#</a> &#8211; <em>&#8220;&#8230;This makes F# the ideal language for writing extension methods and other methods that perform operations that are frequently repeated.&#8221;</em>
<li><a href="http://www.lostechies.com/blogs/sean_chambers/archive/2009/10/20/31-days-of-refactoring-ebook.aspx" target="_blank">31 Days of Refactoring eBook</a> &#8211; Very nice!
<li><a href="http://jack-fx.com/net/2009/10/20/vs-2010-and-net-improvements/" target="_blank">VS 2010 and .NET Improvements</a> &#8211; <em>&#8220;VS 2010 and .NET 4 bring a huge number of improvements and additions.&#8221;</em>
<li><a href="http://john-sheehan.com/blog/new-visual-studio-2010-built-in-c-snippets-cheat-sheet/" target="_blank">New Visual Studio 2010 Built-in C# Snippets Cheat Sheet</a> &#8211; John Sheehan kindly informs us that he has updated the C# snippets cheat sheet.
<li>Tutorial Video(s): <a href="http://www.brianhprince.com/2009/10/arcasttv-caleb-jenkins-on-dependency.html" target="_blank">Dependency Injection</a> | <a href="http://dnrtv.com/default.aspx?ShowID=154" target="_blank">Using Native Code in .NET</a> | <a href="http://www.dimecasts.net/Casts/CastFeedDetails/148" target="_blank">Validating your XML Documents w/ XSD Schema</a> </li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server, Compliance and PowerShell</u></strong></u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://facility9.com/2009/10/19/an-introduction-to-sql-server-system-databases" target="_blank">An introduction to SQL Server system databases</a> &#8211; Jeremiah Peschka provides great information on the system DB&#8217;s in SQL Server.
<li><a href="http://sqlblog.com/blogs/adam_machanic/archive/2009/10/20/what-happened-today-date-and-date-ranges-over-datetime.aspx" target="_blank">What Happened Today? DATE and Date Ranges Over DATETIME</a> &#8211; Great article on using date ranges in SQL Server.
<li><a href="http://blog.sqlauthority.com/2009/10/22/sql-server-difference-between-candidate-keys-and-primary-key-2/" target="_blank">Difference Between Candidate Keys and Primary Key</a> &#8211; Great post outlining the difference between the two types of keys in SQL Server.
<li><a href="http://www.sqlskills.com/BLOGS/PAUL/post/Which-index-will-SQL-Server-use-to-count-all-rows.aspx" target="_blank">Which index will SQL Server use to count all rows</a> &#8211; Paul Randal provides a detailed and concise explanation. </li>
</ul>
<p>&nbsp;<strong><u><strong><u>Community/Technology Events &amp; Training</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/houston-user-groups/" target="_blank">Houston Area User Group Meetings</a> &#8211; This is my monthly listing of Houston area user group meetings.&nbsp;
<li><a href="http://webbtechsolutions.com/2009/10/19/sql-saturday-21-orlando-presentation-materials/" target="_blank">SQL Saturday #21 Orlando Presentation Materials</a> &#8211; Joe Webb is nice enough to share his demos <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
<li><a href="http://www.theabsentmindedcoder.com/2009/10/virtual-brown-bag-102209.html" target="_blank">Virtual Brown Bag 10/22/09</a> &#8211; Jonathan Birkholz gives a great overview of the VBB from this passed week&#8230;that I missed <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<p>
<ul>
<li><a href="http://www.boygeniusreport.com/2009/10/21/google-said-to-be-launcing-google-audio-soon/" target="_blank">Google said to be launching Google Audio soon</a> &#8211; Google Google everywhere. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />
<li><a href="http://blog.wolframalpha.com/2009/10/21/wolframalpha-for-astronomy/" target="_blank">Wolfram|Alpha for Astronomy</a> &#8211; Nice use of this knowledge engine.
<li><a href="http://lifehacker.com/5386953/lifehackers-complete-guide-to-windows-7" target="_blank">Lifehacker&#8217;s Complete Guide to Windows 7</a> &#8211; Very detailed post!
<li><a href="http://www.engadget.com/2009/10/23/barnes-and-noble-nook-lend-me-feature-is-severely-limited-assumes/" target="_blank">Barnes &amp; Noble nook LendMe feature is severely limited, assumes you have friends</a> &#8211; A co-worker mentioned the LendMe feature to me the other day. May not be quite as good as it sounds.</li>
</ul>
<p><u><strong>Blogging and Social Networking</strong></u></p>
<p>
<ul>
<li><a href="http://www.howtogeek.com/howto/5032/how-to-lock-down-your-facebook-account/" target="_blank">How to Lock Down Your Facebook Account</a> &#8211; Good post on how to keep your FB profile more private.</li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<p>
<ul>
<li><a href="http://webworkerdaily.com/2009/10/21/mobile-tip-turn-your-iphone-or-ipod-touch-into-an-offline-mobile-reference-library/" target="_blank">Mobile Tip: Turn Your iPhone or iPod Touch Into an Offline Mobile Reference Library</a> &#8211; <em>&#8220;This is a tip for anyone who wants to get any web working done while you’re traveling and/or in transit for any reason.&#8221;</em>
<li><a href="http://www.dumblittleman.com/2009/10/how-to-make-great-impression-on-people.html" target="_blank">How to Make a Great Impression on People at Work</a> &#8211; Great list!</li>
</ul>
<p><strong><u>Health, Fitness and Recipes</u></strong></p>
<p>
<ul>
<li><a href="http://www.dumblittleman.com/2009/10/learn-to-eat-less-and-feel-more.html" target="_blank">Learn To Eat Less And Feel More Satisfied</a> &#8211; <em>&#8220;&#8230;there are a several very particular types of food that are actually designed to satisfy with just a small amount.&#8221;</em>
<li>Recipes: <a href="http://www.myrecipes.com/recipes/dinnertonight/video/0,29865,1666133,00.html" target="_blank">Tomato-Basil Soup</a></li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<p>
<ul>
<li><a href="http://antwrp.gsfc.nasa.gov/apod/astropix.html" target="_blank">Moon and Planets in the Morning</a> &#8211; Beautiful photo on the Astronomy Picture of the Day (10/22).
<li><a href="http://www.space.com/scienceastronomy/091019-exoplanet-harps.html" target="_blank">SPACE.com &#8212; Nearly 3 Dozen Planets Found</a> &#8211; <em>&#8220;Astronomers announced today the discovery of 32 extrasolar planets, some just five times the mass of Earth and others five times heftier than giant Jupiter.&#8221;</em>
<li><a href="http://cs.astronomy.com/asycs/blogs/astronomy/2009/10/21/behind-the-scenes-of-hubble-3d-imax-movie.aspx" target="_blank">Behind the scenes of Hubble 3D IMAX movie</a> &#8211; I think I&#8217;ll probably be seeing this IMAX movie.
<li>Dilberts I Found Funny &#8211; <a href="http://dilbert.com/strips/comic/2009-10-25/" target="_blank">10.25</a>
<li>Movie Trailers:&nbsp; <a href="http://movies.ign.com/dor/objects/14282653/season-of-the-witch/videos/season_witch_102109.html" target="_blank">Season of the Witch</a> | <a href="http://www.themoviebox.net/movies/2010/Edge-Of-Darkness/trailer.php" target="_blank">Edge of Darkness</a> | <a href="http://www.themoviebox.net/movies/2009/STUVWXYZ/Shutter-Island/trailer.php" target="_blank">Shutter Island</a></li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://www.brentozar.com/archive/2009/10/my-weekly-bookmarks-for-october-23rd/" target="_blank">Brent Ozar &#8211; Weekly Links Recap</a>
<li><a href="http://www.thesimpledollar.com/2009/10/21/the-simple-dollar-weekly-roundup-bookshelf-edition/" target="_blank">The Simple Dollar &#8211; Weekly Roundup</a>
<li><a href="http://facility9.com/2009/10/23/links-for-the-week-of-2009-10-23" target="_blank">Jeremiah Peschka &#8211; Links for the Week</a>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley &#8211; Interesting Finds</a>
<li><a href="http://www.alvinashcraft.com/" target="_blank">Alvin Ashcraft &#8211; Morning Dew</a>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek &#8211; Links</a>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof &#8211; LinkBlog</a>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby &#8211; Daily Links</a>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy &#8211; Double-Shot</a>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar &#8211; Links of the week</a>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile &#8211; New and Notable</a>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey &#8211; On Microsoft</a>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock &#8211; Morning Brew</a>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes &#8211; Visual Studio Links</a>
<li><a href="http://coolthingoftheday.blogspot.com/search/label/AFeedYouShouldRead" target="_blank">Greg Duncan &#8211; A Feed You Should Read</a></li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=1217&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2009/10/25/weekly-link-post-116/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rtipton</media:title>
		</media:content>
	</item>
	</channel>
</rss>