<?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: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>
	<pubDate>Wed, 02 Jul 2008 13:32:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>SQL Join Resources</title>
		<link>http://rtipton.wordpress.com/2008/07/01/sql-join-resources/</link>
		<comments>http://rtipton.wordpress.com/2008/07/01/sql-join-resources/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 01:30:31 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/07/01/sql-join-resources/</guid>
		<description><![CDATA[A Join combines records from two (or more) tables to create a new data set.&#160; There are several ways to join SQL tables.&#160; Below are the most common Joins.


INNER Join – Result will contain matching records from both tables
LEFT Join – Result will contain all records from the “left” table even if the join-condition does [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A Join combines records from two (or more) tables to create a new data set.&nbsp; There are several ways to join SQL tables.&nbsp; Below are the most common Joins.</p>
<p><a href="http://www.halfgaar.net/sql-joins-are-easy" target="_blank"><img height="106" src="http://farm4.static.flickr.com/3071/2629108045_01166dacd1.jpg?v=0" width="500"></a></p>
<ul>
<li><strong>INNER Join</strong> – Result will contain matching records from both tables
<li><strong>LEFT Join</strong> – Result will contain all records from the “left” table even if the join-condition does not find any matching record in the &#8220;right&#8221; table
<li><strong>RIGHT Join</strong> - Result will contain all records from the “right” table even if the join-condition does not find any matching record in the &#8220;left&#8221; table
<li><strong>FULL Join</strong> – Result will contain all records from both tables, and fill in NULLs for missing matches on either side
<li><strong>CROSS Join</strong> – Result will contain returns the cartesian product of the sets of records from the two joined tables (Dangerous with large tables) </li>
</ul>
<p>Instead of including all the normal code snippets illustrating each type of join, I am listing links to others who have done that job very well. </p>
<ul>
<li><a href="http://www.codinghorror.com" target="_blank">Jeff Atwood</a> gives a wonderful <a href="http://www.codinghorror.com/blog/archives/000976.html" target="_blank">Visual Explanation of SQL Joins</a>.&nbsp; He describes each join in detail.
<li><a href="http://www.sqlteam.com/author/kathi-kellenberger" target="_blank">Kathi Kellenberger</a> posted a great article on <a href="http://www.sqlteam.com/article/writing-outer-joins-in-t-sql" target="_blank">Writing Outer Joins in T-SQL</a>.&nbsp; She gives a brief review of the INNER Join, then goes on to a much more detailed description of OUTER Joins.
<li><a href="http://weblogs.sqlteam.com/jeffs/" target="_blank">Jeff Smith</a> gives us a warning to <a href="http://weblogs.sqlteam.com/jeffs/archive/2007/10/11/mixing-inner-outer-joins-sql.aspx" target="_blank">Be Careful When Mixing INNER and OUTER Joins</a>.&nbsp; Warnings are always a great way to learn from other people’s experiences.
<li><a href="http://database-programmer.blogspot.com" target="_blank">Kenneth Downs</a> created a very informative post about Joins titled <a href="http://database-programmer.blogspot.com/2008/03/join-is-cornerstone-of-powerful-queries.html" target="_blank">The JOIN is the Cornerstone of Powerful Queries</a>.&nbsp; This article too, provides an abundance of information about Joins.
<li><a href="http://statisticsio.com/" target="_blank">Jason Massie</a> suggested a great <a href="http://blogs.msdn.com/craigfr/archive/tags/Joins/default.aspx" target="_blank">set of articles on joins</a> from <a href="http://blogs.msdn.com/craigfr/default.aspx" target="_blank">Craig Freedman</a>.&nbsp; There looks to be some in-depth information on joins here. </li>
</ul>
<p>The above articles are ones the I will likely reference over and over again.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/674/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/674/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/674/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=674&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/07/01/sql-join-resources/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3071/2629108045_01166dacd1.jpg?v=0" medium="image" />
	</item>
		<item>
		<title>Weekly Link Post 48</title>
		<link>http://rtipton.wordpress.com/2008/06/29/weekly-link-post-48/</link>
		<comments>http://rtipton.wordpress.com/2008/06/29/weekly-link-post-48/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 22:17:22 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/29/weekly-link-post-48/</guid>
		<description><![CDATA[This is is my weekly link post.&#160; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.
Application Development/Design

Scott Hanselman continues his great link series with The Weekly Source Code 29. 
Ken Egozi talks about FTP operations in [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is is my weekly link post.&#160; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.</p>
<p><strong><u>Application Development/Design</u></strong></p>
<ul>
<li><a href="http://www.hanselman.com" target="_blank">Scott Hanselman</a> continues his great link series with <a href="http://www.hanselman.com/blog/TheWeeklySourceCode29RubyAndShoesAndTheFirstRubyVirus.aspx" target="_blank">The Weekly Source Code 29</a>. </li>
<li><a href="http://www.kenegozi.com/Blog" target="_blank">Ken Egozi</a> talks about FTP operations in his post <a href="http://www.kenegozi.com/Blog/2008/06/28/ftp-upload-in--dot-net-you-aint-need-no-libraries.aspx" target="_blank">FTP Upload in .NET - You ain&#8217;t need no libraries</a>. </li>
<li><a href="http://blog.cumps.be" target="_blank">David Cumps</a> has started a detailed series on the subject of Design Patterns: <a href="http://blog.cumps.be/design-patterns-strategy-pattern/" target="_blank">Strategy Pattern</a> ~ <a href="http://blog.cumps.be/design-patterns-observer-pattern/" target="_blank">Observer Pattern</a> ~ <a href="http://blog.cumps.be/design-patterns-observer-event-pattern/" target="_blank">Observer/Event Pattern</a>&#160; </li>
<li><a href="http://coolthingoftheday.blogspot.com" target="_blank">Greg Duncan</a> has posted an article on <a href="http://coolthingoftheday.blogspot.com/2008/06/vslab-interactive-f-in-visual-studio.html" target="_blank">Interactive F# in Visual Studio</a>. </li>
<li><a href="http://www.hanselman.com" target="_blank">Scott Hanselman</a> talks about the var keyword in the post <a href="http://www.hanselman.com/blog/BackToBasicsVarDim.aspx" target="_blank">Back to Basics: var != Dim</a>. </li>
<li><a href="http://blog.madskristensen.dk" target="_blank">Mads Kristensen</a> explains <a href="http://blog.madskristensen.dk/post/How-to-use-the-IHttpAsyncHandler-in-ASPNET.aspx" target="_blank">How to use the IHttpAsyncHandler in ASP.NET</a>.</li>
<li>Found a good article on <a href="http://digcode.com" target="_blank">DigCode</a> titled <a href="http://digcode.com/default.aspx?page=ed51cde3-d979-4daf-afae-fa6192562ea9&amp;article=1f1a132a-1277-4912-a338-965a7429c6ac" target="_blank">Understanding Structs in C#</a>. </li>
<li><a href="http://codebetter.com/blogs/karlseguin" target="_blank">Karl Seguin</a> has released a free ebook titled <a href="http://codebetter.com/blogs/karlseguin/archive/2008/06/24/foundations-of-programming-ebook.aspx" target="_blank">Foundations of Programming</a>. Sweet!! </li>
<li>Tutorial Video(s): <a href="http://www.dimecasts.net/Casts/CastDetails/13" target="_blank">Querying XML Data using XLinq</a> ~ <a href="http://www.dimecasts.net/Casts/CastDetails/14" target="_blank">Exploring Extension Methods in C# 3.0</a> ~ <a href="http://www.asp.net/learn/videos/video-370.aspx" target="_blank">Pass Info From 1 Pg to Another Using a Query String</a> </li>
<li>Article(s) from <a href="http://www.codeproject.com" target="_blank">Code project</a>:&#160; <a href="http://www.codeproject.com/KB/cs/DemystifyLINQ.aspx" target="_blank">Demystify LINQ in 10 minutes</a> </li>
<li>Snippet(s): <a href="http://www.codekeep.net/snippets/fbdaa254-1727-4421-92c4-f1656a0d9360.aspx" target="_blank">Events and Delegates</a> </li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server &amp; PowerShell</u></strong></u></strong></u></strong></p>
<ul>
<li>Great SQL Server posts from <a href="http://statisticsio.com" target="_blank">Jason Massie</a>. <a href="http://statisticsio.com/Home/tabid/36/articleType/ArticleView/articleId/164/Default.aspx" target="_blank">SQL Server 2008 to increase slacking off at work by at least 15%</a> ~ <a href="http://statisticsio.com/Home/tabid/36/articleType/ArticleView/articleId/162/Open-Source-SQL-Server-projects-on-CodePlex.aspx" target="_blank">Open Source SQL Server projects on CodePlex</a> </li>
<li><a href="http://weblogs.sqlteam.com/joew" target="_blank">Joe Webb</a> explains how to <a href="http://weblogs.sqlteam.com/joew/archive/2008/06/27/60641.aspx" target="_blank">find IDENTITY columns</a> in SQL Server. Great tip. </li>
</ul>
<p>&#160;<strong><u><strong><u>Houston Area &amp; Regional Technology Events</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/area-user-groups/" target="_blank">Houston Area User Group Meetings</a> - This is my monthly listing of Houston area user group meetings. </li>
<li><a href="http://keithelder.net/blog" target="_blank">Keith Elder</a> has posted his <a href="http://keithelder.net/blog/archive/2008/06/22/Slide-Deck-for-Lansing-Day-of-.Net.aspx" target="_blank">Slide Deck for Lansing DODN</a>. </li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<ul>
<li><a href="http://www.alvinashcraft.com" target="_blank">Alvin Ashcraft</a> shares a list of his <a href="http://www.alvinashcraft.com/2008/06/24/recommendations-from-my-developer-toolbox-june-2008/" target="_blank">essential developement tools</a>. </li>
<li>Looks like <a href="http://preview.evernote.com/" target="_blank">Evernote</a> is now in <a href="http://blog.evernote.com/2008/06/24/evernote-public-launch/#" target="_blank">Open Beta</a>. </li>
<li>Good <a href="http://www.labnol.org/software/download/rss-bandit-desktop-client-google-reader/3656/" target="_blank">review of RSS Bandit</a>. Maybe I&#8217;ll give it a try. </li>
<li><a href="http://maggieplusplus.com" target="_blank">Maggie Longshore</a> has posted a great <a href="http://maggieplusplus.com/2008/06/29/Trying+Out+The+Flock+Web+Browser.aspx" target="_blank">review of the Flock Web Browser</a>.&#160; Looks like a useful tool for social networks.</li>
</ul>
<p><u><strong>Blogging and Social Networking</strong></u></p>
<ul>
<li>Cool. <a href="http://failwhale.com/" target="_blank">Fail Whale accessories</a>. </li>
<li><a href="http://www.markusegger.com/" target="_blank">Markus Egger</a> tells us <a href="http://www.markusegger.com/Blog/Blog.aspx?blogid=6a0addce-851e-4579-9306-0297254a1473&amp;messageid=e06e99fc-a8b6-41f1-84b9-39ed3c7a0b26" target="_blank">why he uses Twitter</a>.</li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<ul>
<li><a href="http://thebuffgeek.com/blog/" target="_blank">Jamie Nischan</a> has guest posted on <a href="http://www.lifehack.org" target="_blank">Lifehack</a>&#160; about <a href="http://www.lifehack.org/articles/lifestyle/three-ways-to-hack-your-fitness-routine.html" target="_blank">3 Ways to Hack Your Fitness Routine</a>. </li>
<li><a href="http://www.craigbailey.net" target="_blank">Craig Bailey</a> talks about what he believes makes <a href="http://www.craigbailey.net/live/post/2008/06/Great-developers.aspx" target="_blank">Great Developers</a>. </li>
<li>A couple of co-workers turned me on to a Tech salary site called <a href="http://www.glassdoor.com/index.htm" target="_blank">Glassdoor.com</a>. </li>
<li><a href="http://www.dumblittleman.com" target="_blank">Dumb Little Man</a> has posted a great list of <a href="http://www.dumblittleman.com/2008/06/14-simple-ways-to-super-charge-your.html" target="_blank">14 Simple Ways to Super Charge Your Brain</a>. </li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<ul>
<li><a href="http://myastonomyandphysics.wordpress.com" target="_blank">Steve Muth</a> talks about <a href="http://myastonomyandphysics.wordpress.com/2008/06/28/magnificent-jupiter/" target="_blank">Magnificent Jupiter</a>. </li>
<li>This is an interesting study that compares a very low carb diet to the <a href="http://www.diet-blog.com/archives/2008/06/26/big_breakfast_diet_a_diet_that_works.php" target="_blank">Big Breakfast Diet</a>. </li>
<li>Interesting little site that tells you <a href="http://www.howmanyofme.com/" target="_blank">how many people in the US have your name</a>. </li>
<li><a href="http://www.barkability.com/" target="_blank">Barkability</a> has discovered a nice pet artwork site called <a href="http://www.healgooddog.com/" target="_blank">Heal! Good Dog</a>. I&#8217;m thinking about buying the Coffee with Lulu shirt.&#160; </li>
<li>Movie Trailers:&#160; <a href="http://movies.yahoo.com/movie/1809801452/video" target="_blank">Hancock</a> ~ <a href="http://www.robcohenthemummy.com/video.php" target="_blank">The Mummy – Tomb of the Dragon Emperor</a> ~ <a href="http://movies.yahoo.com/movie/1809963548/video/8190919/standardformat/" target="_blank">Madagascar: Escape 2 Africa</a> </li>
<li>Funny Dilberts this week:&#160; <a href="http://www.dilbert.com/2008-06-24/" target="_blank">6/24</a> ~ <a href="http://www.dilbert.com/2008-06-26/" target="_blank">6/26</a> ~ <a href="http://www.dilbert.com/2008-06-29/" target="_blank">6/29</a></li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley - Interesting Finds</a> </li>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek - Links</a> </li>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof - LinkBlog</a> </li>
<li><a href="http://dotnetjunkies.com/WebLog/csteen/default.aspx" target="_blank">Christopher Steen - Link Listing</a> </li>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy - Double-Shot</a> </li>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar - Links of the week</a> </li>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile - New and Notable</a> </li>
<li><a href="http://www.chinhdo.com/" target="_blank">Chihn Do - Finds of the Week</a> </li>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey - On Microsoft</a> </li>
<li><a href="http://www.alvinashcraft.com/category/development/daily-links/" target="_blank">Alvin Ashcraft - Daily Links</a> </li>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock - Morning Brew</a> </li>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes - Visual Studio Links</a> </li>
<li><a href="http://professionalaspnet.com/archive/tags/Links+of+the+Week/default.aspx" target="_blank">Chris Love - Links of the Week</a> </li>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby - Daily Links</a> </li>
<li><a href="http://itknowledgeexchange.techtarget.com/serviceendpoint" target="_blank">Dilip Krishnan - Weekly SOA/MS Crumbs</a> </li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/673/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/673/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/673/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/673/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/673/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/673/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/673/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/673/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/673/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/673/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/673/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/673/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=673&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/29/weekly-link-post-48/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>
	</item>
		<item>
		<title>Dime Casts - Great Ten Minute Development Tutorials</title>
		<link>http://rtipton.wordpress.com/2008/06/24/dimecasts-great-ten-minute-development-tutorials/</link>
		<comments>http://rtipton.wordpress.com/2008/06/24/dimecasts-great-ten-minute-development-tutorials/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 14:38:03 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[.NET General]]></category>

		<category><![CDATA[Recommendations]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/24/dimecasts-great-ten-minute-development-tutorials/</guid>
		<description><![CDATA[Derik Whittaker has started a great video tutorial site called Dime Casts.&#160; The tutorials are just the right length to fit into a busy day.&#160;

There are videos on LINQ2SQL, Extension Methods and Visual Studio just to name a few and more are being added often.&#160;&#160; The videos are also downloadable in two resolutions or you [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://devlicio.us/blogs/derik_whittaker/" target="_blank">Derik Whittaker</a> has started a great video tutorial site called <a href="http://www.dimecasts.net/Home" target="_blank">Dime Casts</a>.&nbsp; The tutorials are just the right length to fit into a busy day.&nbsp;
<p><a href="http://www.dimecasts.net/Home" target="_blank"><img height="60" src="http://farm4.static.flickr.com/3231/2606971209_45db6c0b22.jpg?v=0" width="391"></a>
<p>There are videos on <a href="http://www.dimecasts.net/Casts/CastDetails/9" target="_blank">LINQ2SQL</a>, <a href="http://www.dimecasts.net/Casts/CastDetails/14" target="_blank">Extension Methods</a> and <a href="http://www.dimecasts.net/Casts/CastDetails/9" target="_blank">Visual Studio</a> just to name a few and more are being added often.&nbsp;&nbsp; The videos are also downloadable in two resolutions or you can just watch them online.
<p><img src="http://farm4.static.flickr.com/3063/2606998351_b41bf453f8.jpg?v=0">
<p><a href="http://www.dimecasts.net/Home" target="_blank">Dime Casts</a> are a great way to learn new technology ten minutes at a time.</p>
<p>If you use <a href="https://twitter.com" target="_blank">Twitter</a>, don&#8217;t forget to follow <a href="http://twitter.com/DimeCastsDotNet" target="_blank">DimeCastsDotNet</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/666/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/666/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/666/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=666&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/24/dimecasts-great-ten-minute-development-tutorials/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3231/2606971209_45db6c0b22.jpg?v=0" medium="image" />

		<media:content url="http://farm4.static.flickr.com/3063/2606998351_b41bf453f8.jpg?v=0" medium="image" />
	</item>
		<item>
		<title>Weekly Link Post 47</title>
		<link>http://rtipton.wordpress.com/2008/06/22/weekly-link-post-47/</link>
		<comments>http://rtipton.wordpress.com/2008/06/22/weekly-link-post-47/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 21:14:06 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/22/weekly-link-post-47/</guid>
		<description><![CDATA[This is is my weekly link post.&#160; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.
Application Development/Design

Jeff Atwood talks about a great C# compiler trick in his post Department of Declaration Redundancy Department. 
Richard Dingwall talks [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is is my weekly link post.&#160; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.</p>
<p><strong><u>Application Development/Design</u></strong></p>
<ul>
<li><a href="http://www.codinghorror.com" target="_blank">Jeff Atwood</a> talks about a great C# compiler trick in his post <a href="http://www.codinghorror.com/blog/archives/001136.html" target="_blank">Department of Declaration Redundancy Department</a>. </li>
<li><a href="http://richarddingwall.name" target="_blank">Richard Dingwall</a> talks about the C# var keyword in his post <a href="http://richarddingwall.name/2008/06/21/csharps-var-keyword-jeff-atwood-gets-it-all-wrong/" target="_blank">C# 3.0’s var keyword: Jeff Atwood gets it all wrong</a>. </li>
<li><a href="http://sqlblog.com/blogs/marco_russo" target="_blank">Marco Russo</a> provides some great information on LINQ joins in the article <a href="http://sqlblog.com/blogs/marco_russo/archive/2008/06/18/to-join-or-not-to-join-that-is-the-question-in-linq.aspx" target="_blank">To join or not to join: that is the question (in LINQ)</a>. </li>
<li><a href="http://www.jphamilton.net" target="_blank">JP Hamilton</a> explains how to compile code dynamically using the .NET Framework in his post <a href="http://www.jphamilton.net/post/Dynamic-Compilation.aspx" target="_blank">Dynamic Compilation</a>. </li>
<li><a href="http://vidmar.net/weblog" target="_blank">David Vidmar</a> explains an issue he ran into in his article <a href="http://vidmar.net/weblog/archive/2008/06/17/linq-detecting-if-entity-is-already-pending-insert.aspx" target="_blank">LINQ: Detecting if entity is already pending insert</a>. </li>
<li><a href="http://www.blackwasp.co.uk" target="_blank">BlackWasp</a> has posted a couple of informative articles. <a href="http://www.blackwasp.co.uk/ConvertArray.aspx" target="_blank">Converting an Entire Array to a New Type</a> ~ <a href="http://www.blackwasp.co.uk/SpeedTestTryCatch.aspx" target="_blank">Speed Test: Try / Catch Block</a> </li>
<li><a href="http://west-wind.com/weblog" target="_blank">Rick Strahl</a> asks the question <a href="http://west-wind.com/weblog/posts/395778.aspx" target="_blank">What makes a Guru?</a>. Great post. </li>
<li><a href="http://www.ytechie.com" target="_blank">Jason Young</a> gives a great <a href="http://www.ytechie.com/2008/06/agile-patterns-practices-and-the-developer-divide.html" target="_blank">review of the book Agile Principles, Patterns and Practices in C#</a>. </li>
<li>Tutorial Video(s):&#160; <a href="http://www.asp.net/learn/videos/video-367.aspx" target="_blank">How Do I: Work with Nested Master Pages to Create Standard Content Layouts</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/DelegatesAndEventsHowToo.aspx" target="_blank">Delegates, Events, Event Arguments &amp; How They Fit Together</a> ~ <a href="http://www.codeproject.com/KB/cs/Convert-To-TryParse.aspx" target="_blank">Convert to TryParse</a> ~ <a href="http://www.codeproject.com/KB/cs/csharpstyle.aspx" target="_blank">C# Coding Practicies Guide</a> </li>
<li>Tip(s): <a href="http://blogs.msdn.com/saraford/archive/2008/06/19/did-you-know-you-can-use-the-immediate-window-as-a-glorified-calculator-or-side-debugger-within-your-debugger-241.aspx" target="_blank">Use the immediate window as a glorified calculator or side-debugger within your debugger</a> </li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server &amp; PowerShell</u></strong></u></strong></u></strong></p>
<ul>
<li><a href="http://www.craigbailey.net" target="_blank">Craig Baily</a> has posted some great information on <a href="http://www.craigbailey.net/live/post/2008/06/CLARITY-SQL-Server-2008.aspx" target="_blank">SQL Server 2008</a>. </li>
<li><a href="http://sqlblogcasts.com/blogs/simons" target="_blank">Simon Sabin</a> has posted some great information on the new features of <a href="http://sqlblogcasts.com/blogs/simons/archive/2008/06/18/SQL-Server-2008---MERGE-and-optimistic-concurrency.aspx" target="_blank">SQL Server 2008. MERGE and optimistic concurrency</a> ~ <a href="http://sqlblogcasts.com/blogs/simons/archive/2008/06/18/SQL-Server-2008---The-MERGE-and-TVP-data-access-pattern-with-DataAdapters.aspx" target="_blank">MERGE/TVP data access pattern w/ DataAdapters</a> ~ <a href="http://sqlblogcasts.com/blogs/simons/archive/2008/06/17/SQL-Server-2008---Killer-features---MERGE-and-Table-Valued-Parameters.aspx" target="_blank">MERGE and Table Valued Parameters</a> </li>
<li><a href="http://mgarner.wordpress.com" target="_blank">Mark Garner</a> has posted about a list of <a href="http://mgarner.wordpress.com/2008/06/19/very-cool-sql-utilities/" target="_blank">Very Cool SQL Utilities</a>. </li>
<li>Found this article on <a href="http://www.infoq.com" target="_blank">InfoQ</a> about <a href="http://www.infoq.com/news/2008/06/PowerShell-SQL-Server" target="_blank">SQL Server PowerShell Extensions</a>. </li>
</ul>
<p>&#160;<strong><u><strong><u>Houston Area &amp; Regional Technology Events</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/area-user-groups/" target="_blank">Houston Area User Group Meetings</a> - This is my monthly listing of Houston area user group meetings. </li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<ul>
<li><a href="http://professionalaspnet.com" target="_blank">Chris Love</a> reviews a <a href="http://professionalaspnet.com/archive/2008/06/18/Regular-Expression-Visualizer.aspx" target="_blank">Regular Expression Visualizer - A Must Have Tool</a>. </li>
<li><a href="http://www.codesqueeze.com" target="_blank">Max Poole</a> reviews <a href="http://www.codesqueeze.com/tool-review-slickedit-tools/" target="_blank">SlickEdit Tools</a>.&#160; </li>
<li><a href="http://jaysmith.us/" target="_blank">Jay Smith</a> has posted on a couple of software releases. <a href="http://jaysmith.us/index.php/2008/06/20/windows-live-writer-ctp-released/" target="_blank">Windows Live Writer CTP Released</a> ~ <a href="http://jaysmith.us/index.php/2008/06/21/resharper-40-gone-gold/" target="_blank">ReSharper 4.0 Gone Gold!</a> </li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<ul>
<li><a href="http://arrow-tips.com" target="_blank">Misty Kahn</a> talks about <a href="http://arrow-tips.com/archives/321" target="_blank">Using Outlook to Get Back on Track</a>. Welcome back Misty. </li>
<li>The <a href="http://www.positivityblog.com" target="_blank">Positivity Blog</a> gives us <a href="http://www.positivityblog.com/index.php/2008/06/16/7-ways-to-reduce-stress-with-a-to-dont-list/" target="_blank">7 Ways to Reduce Stress With a To-Don’t List</a>. </li>
<li>I&#8217;m always looking for ways to eat healthier (even though I don&#8217;t like veggies). I ran across a post from <a href="http://techiewife.spaces.live.com/blog" target="_blank">TechieMom</a> on what <a href="http://techiewife.spaces.live.com/blog/cns!3DAECC033B88329C!2380.entry" target="_blank">Plan of Action</a> (with eating) to take depending on your mood. If you are an emotional eater, as I am, there is some good information here. </li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<ul>
<li><a href="http://antwrp.gsfc.nasa.gov/apod/astropix.html" target="_blank">Pictures of the ice on Mars</a> from the <a href="http://antwrp.gsfc.nasa.gov/apod" target="_blank">Astronomy Picture of the Day</a>. </li>
<li>News came this week (from the <a href="http://en.wikipedia.org/wiki/Phoenix_Lander" target="_blank">Phoenix Lander</a>) of <a href="http://www.nytimes.com/2008/06/20/science/space/20mars.html?_r=2&amp;bl&amp;ex=1214107200&amp;en=134c08e42a96e342&amp;ei=5087%0A&amp;oref=slogin&amp;oref=slogin" target="_blank">water on Mars</a>. Very cool stuff&#8230; </li>
<li><a href="http://www.timbuk2.com/tb2/products/home" target="_blank">Timbuk2</a> is an interesting messenger bag manufacturer that allows you to totally customize your bag. It&#8217;s a little pricey, but I had fun customizing. </li>
<li><a href="http://myastonomyandphysics.wordpress.com" target="_blank">Steve Muth</a> has posted an interesting article on his very cool Astronomy blog that talks about a <a href="http://myastonomyandphysics.wordpress.com/2008/06/14/moon-asteroid-or-mars/" target="_blank">Quest for a new home: Moon, asteroid or Mars</a>. </li>
<li><a href="http://io9.com/5016671/battlestar-galactica-goes-planet-of-the-apes" target="_blank">Review of the mid-season finale of Battlestar Galactica</a>. If you have not seen the episode, you might not want to read the review. </li>
<li>Ran into a <a href="http://www.aintitcool.com/node/37164" target="_blank">review of the new series Fringe</a> on <a href="http://www.aintitcool.com" target="_blank">Ain&#8217;t it Cool News</a>. </li>
<li>Movie Trailers:&#160; <a href="http://movies.yahoo.com/movie/1809902253/video" target="_blank">Wall-E</a> ~ <a href="http://movies.yahoo.com/movie/1809878244/video" target="_blank">Wanted</a> ~ <a href="http://movies.yahoo.com/movie/1809874826/video/8273388/standardformat/" target="_blank">Mirrors</a> </li>
<li>Funny Dilberts this week:&#160; <a href="http://dilbert.com/strips/comic/2008-06-16/" target="_blank">6/16</a> ~ <a href="http://dilbert.com/strips/comic/2008-06-21/" target="_blank">6/21</a> ~ <a href="http://dilbert.com/strips/comic/2008-06-22/" target="_blank">6/22</a> </li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley - Interesting Finds</a> </li>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek - Links</a> </li>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof - LinkBlog</a> </li>
<li><a href="http://dotnetjunkies.com/WebLog/csteen/default.aspx" target="_blank">Christopher Steen - Link Listing</a> </li>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy - Double-Shot</a> </li>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar - Links of the week</a> </li>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile - New and Notable</a> </li>
<li><a href="http://www.chinhdo.com/" target="_blank">Chihn Do - Finds of the Week</a> </li>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey - On Microsoft</a> </li>
<li><a href="http://www.alvinashcraft.com/category/development/daily-links/" target="_blank">Alvin Ashcraft - Daily Links</a> </li>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock - Morning Brew</a> </li>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes - Visual Studio Links</a> </li>
<li><a href="http://professionalaspnet.com/archive/tags/Links+of+the+Week/default.aspx" target="_blank">Chris Love - Links of the Week</a> </li>
<li><a href="http://www.lazycoder.com/weblog/index.php/archives/category/links/" target="_blank">Scott Koon - Links</a> </li>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby - Daily Links</a> </li>
<li><a href="http://itknowledgeexchange.techtarget.com/serviceendpoint" target="_blank">Dilip Krishnan - Weekly SOA/MS Crumbs</a> </li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/665/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/665/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/665/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/665/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/665/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=665&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/22/weekly-link-post-47/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekly Link Post 46</title>
		<link>http://rtipton.wordpress.com/2008/06/15/weekly-link-post-46/</link>
		<comments>http://rtipton.wordpress.com/2008/06/15/weekly-link-post-46/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 20:48:21 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/15/weekly-link-post-46/</guid>
		<description><![CDATA[This is is my weekly link post.&#160; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.
Application Development/Design

Scott Hanselman has posted a great article titled Back to Basics - Life After If, For and Switch - Like, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is is my weekly link post.&#160; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.</p>
<p><strong><u>Application Development/Design</u></strong></p>
<ul>
<li><a href="http://www.hanselman.com" target="_blank">Scott Hanselman</a> has posted a great article titled <a href="http://www.hanselman.com/blog/BackToBasicsLifeAfterIfForAndSwitchLikeADataStructuresReminder.aspx" target="_blank">Back to Basics - Life After If, For and Switch - Like, a Data Structures Reminder</a>. </li>
<li><a href="http://www.csharp411.com" target="_blank">Timm Martin</a> talks in depth about the <a href="http://www.csharp411.com/c-empty-enumerator/" target="_blank">C# Empty Enumerator</a>. </li>
<li><a href="http://geekswithblogs.net/AzamSharp" target="_blank">Mohammad Azam</a> shows us how to <a href="http://www.azamsharp.com/Posts/41_Dynamically_Assign_Parameters_to_SQLDataSource.aspx" target="_blank">Dynamically Assign Parameters to SQLDataSource</a>. </li>
<li><a href="http://mattberseth.com/blog" target="_blank">Matt Berseth</a> has created an outstanding site for his <a href="http://mattberseth.com/blog/2008/05/my_aspnet_demo_gallery_mattber.html" target="_blank">ASP.NET Demo Gallery</a>. I agree with <a href="http://spietrek.blogspot.com/2008/06/links-6102008.html" target="_blank">Steve Pietrek</a>, there is some awesome stuff here. </li>
<li><a href="http://www.blackwasp.co.uk" target="_blank"></a><a href="http://startbigthinksmall.wordpress.com" target="_blank">Lars Corneliussen</a> has posted a great article on the yield keyword titled <a href="http://startbigthinksmall.wordpress.com/2008/06/09/behind-the-scenes-of-the-c-yield-keyword/" target="_blank">Behind the scenes of the C# yield keyword</a>. </li>
<li><a href="http://www.hanselman.com" target="_blank">Scott Hanselman</a> continues his great link series with <a href="http://www.hanselman.com/blog/TheWeeklySourceCode28IPhoneWithASPNETMVCEdition.aspx" target="_blank">The Weekly Source Code 28</a>. </li>
<li><a href="http://geekswithblogs.net/AzamSharp" target="_blank">Mohammad Azam</a> has posted a great article on <a href="http://www.azamsharp.com/Posts/39_Creating_Code_Documentation_Using_XML_Comments_and__XSLT.aspx" target="_blank">Creating Code Documentation Using XML Comments and XSLT</a>. </li>
<li><a href="http://geekswithblogs.net/shahed" target="_blank">Shahed Khan</a> talks about the automatic property in the post <a href="http://geekswithblogs.net/shahed/archive/2008/06/11/122791.aspx" target="_blank">C# 3.0 tips, Automatic Property</a>. </li>
<li><a href="http://scottonwriting.net" target="_blank">Scott Mitchell</a> has published <a href="http://scottonwriting.net/sowblog/posts/13311.aspx" target="_blank">Two New Master Page Tutorials</a>. </li>
<li>Tutorial Video(s): <a href="http://www.danrigsby.com/blog/index.php/2008/06/09/new-webcast-creating-snippets-in-visual-studio/" target="_blank">Creating Snippets in Visual Studio</a>.&#160; </li>
<li>Article(s) from <a href="http://www.codeproject.com" target="_blank">Code project</a>: <a href="http://www.codeproject.com/KB/cs/NETDelegatesAndEvents.aspx" target="_blank">Understanding .NET Delegates and Events, By Practice</a> ~&#160; </li>
<li>Snippet(s): none&#160;&#160; </li>
<li>Tip(s): <a href="http://blogs.msdn.com/saraford/archive/2008/06/09/did-you-know-how-to-increase-your-visual-studio-environment-fonts-for-presentations-233.aspx" target="_blank">Increase your VS environment fonts for presentations</a> ~ <a href="http://blogs.msdn.com/saraford/archive/2008/06/12/did-you-know-vs-has-a-file-window-layout-mode-that-you-can-customize-236.aspx" target="_blank">VS has a file window layout mode that you can customize</a> ~ <a href="http://blogs.msdn.com/saraford/archive/2008/06/11/did-you-know-you-can-set-a-breakpoint-on-a-function-from-the-find-combo-box-235.aspx" target="_blank">Set a breakpoint on a function from the Find Combo Box</a> ~ <a href="http://blogs.msdn.com/saraford/archive/2008/06/10/did-you-know-you-can-insert-a-snippet-via-tab-tab-234.aspx" target="_blank">Insert a snippet via “tab tab”</a> </li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server &amp; PowerShell</u></strong></u></strong></u></strong></p>
<ul>
<li><a href="http://database-programmer.blogspot.com" target="_blank">Kenneth Downs</a> talks about the numerous uses of the data dictionary in his post <a href="http://database-programmer.blogspot.com/2008/06/using-data-dictionary.html" target="_blank">Using a Data Dictionary</a>. </li>
<li><a href="http://statisticsio.com" target="_blank">Jason Massie</a> gives a great <a href="http://statisticsio.com/Home/tabid/36/articleType/ArticleView/articleId/158/Quest-PowerGUI-Review.aspx" target="_blank">review of Quest PowerGUI</a>. </li>
<li><a href="http://www.brentozar.com" target="_blank">Brent Ozar</a> talks about his <a href="http://www.brentozar.com/archive/2008/06/webcasts-on-clustered-indexes-defrags-sql-consolidation/" target="_blank">Webcasts on clustered indexes, defrags, SQL consolidation</a>. </li>
<li>Snippet(s):&#160; <a href="http://www.codekeep.net/snippets/e31a8eb9-b0a0-4e41-8646-17a466a3a739.aspx" target="_blank">Get days in a month</a> </li>
</ul>
<p>&#160;<strong><u><strong><u>Houston Area &amp; Regional Technology Events</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/area-user-groups/" target="_blank">Houston Area User Group Meetings</a> - This is my monthly listing of Houston area user group meetings. </li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<ul>
<li>Found a great article on <a href="http://freelanceswitch.com" target="_blank">FreelanceSwitch</a> that lists some <a href="http://freelanceswitch.com/productivity/killer-tools-to-get-the-most-out-of-your-usb-thumb-drive/" target="_blank">Killer Tools to Get The Most Out of Your USB Thumb Drive</a>. </li>
<li><a href="http://blogs.jetbrains.com" target="_blank">Jet Brains</a> has released <a href="http://blogs.jetbrains.com/dotnet/2008/06/resharper-40-ga/" target="_blank">ReSharper 4.0 GA</a>. </li>
<li><a href="http://googledocs.blogspot.com" target="_blank">The Google Docs Blog</a> announces PDF support in Google Docs in the article <a href="http://googledocs.blogspot.com/2008/06/upload-your-pdfs.html" target="_blank">Upload your PDFs!</a>. </li>
<li><a href="http://blogs.tech-recipes.com/shamanstears" target="_blank">Digital Streets</a> shows us <a href="http://blogs.tech-recipes.com/shamanstears/2008/06/10/how-to-concatenate-text-in-a-spreadsheet/" target="_blank">How to Concatenate Text in a Spreadsheet</a>. </li>
</ul>
<p><u><strong>Blogging and Social Networking</strong></u></p>
<ul>
<li><a href="http://www.dwax.org/" target="_blank">Dustin Wax</a> gives advice on <a href="http://www.lifehack.org/articles/communication/how-to-write-in-140-characters-or-less.html" target="_blank">How to Write in 140 Characters or Less</a>.&#160;&#160;&#160; </li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<ul>
<li><a href="http://www.ytechie.com" target="_blank">Jason Young</a> has posted a wonderful article titled <a href="http://www.ytechie.com/2008/06/what-a-developer-needs-from-their-manager.html" target="_blank">What a developer needs from their manager</a>. I agree with each and every point.</li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<ul>
<li>Good <a href="http://www.space.com/missionlaunches/080611-new-horizons.html" target="_blank">update on New Horizons</a> from <a href="http://www.space.com" target="_blank">Space.com</a>.&#160;&#160; </li>
<li>Movie Trailers:&#160; <a href="http://movies.yahoo.com/movie/1809936373/video/8306623/standardformat/" target="_blank">Death Race</a> ~ <a href="http://movies.yahoo.com/movie/1809953361/video/8135025/standardformat/" target="_blank">The X-Files: I Want To Believe</a> ~ <a href="http://www.babylonadmovie.com/" target="_blank">Babylon AD</a>&#160;&#160;&#160; </li>
<li>Funny Dilberts this week: <a href="http://dilbert.com/strips/comic/2008-06-15/" target="_blank">6/15</a>&#160; </li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley - Interesting Finds</a> </li>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek - Links</a> </li>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof - LinkBlog</a> </li>
<li><a href="http://dotnetjunkies.com/WebLog/csteen/default.aspx" target="_blank">Christopher Steen - Link Listing</a> </li>
<li><a href="http://mhinze.com/" target="_blank">Matt Hinze - Links Today</a> </li>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy - Double-Shot</a> </li>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar - Links of the week</a> </li>
<li><a href="http://blog.mattgoyer.com/archives/category/links/" target="_blank">Matt Goyer - Links</a> </li>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile - New and Notable</a> </li>
<li><a href="http://www.chinhdo.com/" target="_blank">Chihn Do - Finds of the Week</a> </li>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey - On Microsoft</a> </li>
<li><a href="http://www.alvinashcraft.com/category/development/daily-links/" target="_blank">Alvin Ashcraft - Daily Links</a> </li>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock - Morning Brew</a> </li>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes - Visual Studio Links</a> </li>
<li><a href="http://professionalaspnet.com/archive/tags/Links+of+the+Week/default.aspx" target="_blank">Chris Love - Links of the Week</a> </li>
<li><a href="http://www.lazycoder.com/weblog/index.php/archives/category/links/" target="_blank">Scott Koon - Links</a> </li>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby - Daily Links</a> </li>
<li><a href="http://itknowledgeexchange.techtarget.com/serviceendpoint" target="_blank">Dilip Krishnan - Weekly SOA/MS Crumbs</a> </li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/662/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/662/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/662/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=662&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/15/weekly-link-post-46/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>
	</item>
		<item>
		<title>Enthusiasm &#38; Passion for Programming</title>
		<link>http://rtipton.wordpress.com/2008/06/13/enthusiasm-passion-for-programming/</link>
		<comments>http://rtipton.wordpress.com/2008/06/13/enthusiasm-passion-for-programming/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 00:09:36 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[.NET General]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Self-Improvement]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/13/enthusiasm-passion-for-programming/</guid>
		<description><![CDATA[I am currently working in a large company as a Developer/Analyst.&#160; I work primarily with Visual FoxPro (Mid-Senior Level), but am striving to learn .NET (Beginner).&#160;&#160; 
We are migrating our legacy software which is written in DOS FoxPro 2.5, VFP 3.0 and VFP 7.0 to .NET.&#160; The new Windows application includes a WPF/C# front end [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am currently working in a large company as a Developer/Analyst.&#160; I work primarily with Visual FoxPro (Mid-Senior Level), but am striving to learn .NET (Beginner).&#160;&#160; </p>
<p>We are migrating our legacy software which is written in DOS FoxPro 2.5, VFP 3.0 and VFP 7.0 to .NET.&#160; The new Windows application includes a WPF/C# front end and SQL Server back end.&#160; We have a team that maintains the legacy applications (which is the one that I am on) and a team that is building the new application.&#160; Sometimes, the lines cross and I do get to work on the new software. Because the lines do not cross as much as I would like, I find myself having to find ways to keep my enthusiasm at a decent level. </p>
<p>Every now and then I run across blogs and podcasts that help me with my enthusiasm and passion for development.&#160; Last week&#8217;s <a href="http://www.hanselminutes.com/default.aspx?showID=133" target="_blank">Hanselminutes on the subject of Finding Passion for Software</a> is a great example of the kind of content that really turns my thinking around - &quot;maybe there is a light at the end of the tunnel&quot;. </p>
<p>Below are some things that I do to keep myself enthusiastic: </p>
<ul>
<li>Attend <a href="http://rtipton.wordpress.com/houston-user-groups/" target="_blank">User Group meetings</a> and Code Camps/Tech Fests - I cannot afford to go to big conventions like TechEd and VSLive, so free local area events are the next best thing. </li>
<li>Read <a href="http://rtipton.wordpress.com/reading-list/" target="_blank">development books</a> and publications - There is so much content online, but I still feel that a hard copy every now and then is needed.&#160; I subscribe to <a href="http://www.code-magazine.com/" target="_blank">CoDe Magazine</a>, <a href="http://msdn.microsoft.com/en-us/magazine/default.aspx?PHPSESSID=d97d205bee39fad256fdd41ba1e2b69f" target="_blank">MSDN Magazine</a> and <a href="http://www.sqlmag.com/" target="_blank">SQL Server Magazine</a> as well as try to keep a book with me at all times.&#160; That way even if I don&#8217;t have access to the internet, I can keep my learning in motion. </li>
<li>Listen to <a href="http://rtipton.wordpress.com/podcasts/" target="_blank">Podcasts</a> on Development and general technology - there is a plethora of podcasts out there and new ones starting up constantly. </li>
<li>Watch online videos - Again, there is a ton of online tutorials. (<a href="http://www.dimecasts.net/" target="_blank">Dime Casts</a>, <a href="http://rtipton.wordpress.com/2007/12/30/how-do-i-videos/" target="_blank">How Do I Videos</a>, <a href="http://www.asp.net/learn/" target="_blank">ASP.NET Tutorials</a>, <a href="http://www.gridviewguy.com/" target="_blank">GridView Guy Video Tutorials</a>) </li>
<li>Subscribe to blogs (<a href="http://www.rtipton.com/blog_listings/main/RTipton_OPML.xml" target="_blank">XML</a>) </li>
<li>Social Networking - There are a lot of Developers on <a href="https://twitter.com" target="_blank">Twitter</a> and <a href="http://friendfeed.com/" target="_blank">FriendFeed</a>.&#160; You really pick up a lot of information following other people in the Development Community. </li>
</ul>
<p>In closing, my current work situation sometimes makes it difficult to stay interested in my chosen profession, but thanks to the abundant amount of resources, I seem to stay interested and enthused. </p>
<p>&#8211;</p>
<p><strong>Related Content</strong></p>
<ul>
<li><a href="http://www.hanselminutes.com/default.aspx?showID=133" target="_blank">Finding Passion for Software</a> </li>
<li><a href="http://www.hanselminutes.com/default.aspx?showID=90" target="_blank">Be a Better Developer in Six Months</a> </li>
<li><a href="http://www.polymorphicpodcast.com/shows/developpassion/" target="_blank">Develop with Passion like Jean Paul Boodhoo</a> </li>
<li><a href="http://www.dotnetrocks.com/default.aspx?showNum=320" target="_blank">John Bristowe on Advancing Your Career</a> </li>
<li><a href="http://creating.passionate-developers.org/tiki-index.php" target="_blank">Creating Passionate Developers</a> </li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/661/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/661/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/661/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=661&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/13/enthusiasm-passion-for-programming/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>
	</item>
		<item>
		<title>HDNUG Meeting - 06/12/08 - Recap</title>
		<link>http://rtipton.wordpress.com/2008/06/12/hdnug-meeting-061208-recap/</link>
		<comments>http://rtipton.wordpress.com/2008/06/12/hdnug-meeting-061208-recap/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 02:10:36 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[.NET General]]></category>

		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/12/hdnug-meeting-061208-recap/</guid>
		<description><![CDATA[I attended the June Houston .NET User Group meeting tonight.  There were about 55 people in attendance which is a pretty good turnout.  Still enough people to keep me from winning any door prizes.  
 
The sponsor was Pariveda Solutions, an information services technology company.
Michael Steinberg , the HDNUG President, gave a [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I attended the June <a href="http://www.hdnug.org/" target="_blank">Houston .NET User Group</a> meeting tonight.  There were about 55 people in attendance which is a pretty good turnout.  Still enough people to keep me from winning any door prizes. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.hdnug.org" target="_blank"><img src="http://rtipton.files.wordpress.com/2008/06/hdnugsmall.gif?w=111&h=83" border="0" alt="hdnugsmall" width="111" height="83" /></a> <a href="http://www.parivedasolutions.com/" target="_blank"><img style="border-width:0;" src="http://rtipton.files.wordpress.com/2008/06/image.png?w=179&h=52" border="0" alt="image" width="179" height="52" /></a></p>
<p>The sponsor was <a href="http://www.parivedasolutions.com/" target="_blank">Pariveda Solutions</a>, an information services technology company.</p>
<p>Michael Steinberg , the <a href="http://www.hdnug.org" target="_blank">HDNUG</a> President, gave a high-level talk on the new features SQL Sever 2008.  His talk was followed by an overview of Windows Server 2008 and IIS 7, given by John Hellman, the <a href="http://www.hdnug.org" target="_blank">HDNUG</a> Vice President.</p>
<p><a href="http://rtipton.files.wordpress.com/2008/06/dscf0032small.jpg"><img style="border-width:0;" src="http://rtipton.files.wordpress.com/2008/06/dscf0032small-thumb.jpg?w=244&h=184" border="0" alt="DSCF0032 (Small)" width="244" height="184" /></a></p>
<p><strong>Other information provided</strong></p>
<ul>
<li>In July, <a href="http://www.markusegger.com/Blog/" target="_blank">Marcus Egger</a> will be speaking on the subject of Silverlight</li>
<li>The 2008 <a href="http://www.houstontechfest.com/dotnetnuke/default.aspx" target="_blank">Houston TechFest</a> will be held September 13th at University of Houston</li>
</ul>
<p>All in all, it was an evening of great information.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/659/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/659/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/659/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=659&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/12/hdnug-meeting-061208-recap/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2008/06/hdnugsmall.gif" medium="image">
			<media:title type="html">hdnugsmall</media:title>
		</media:content>

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

		<media:content url="http://rtipton.files.wordpress.com/2008/06/dscf0032small-thumb.jpg" medium="image">
			<media:title type="html">DSCF0032 (Small)</media:title>
		</media:content>
	</item>
		<item>
		<title>Book Review: C# In Depth</title>
		<link>http://rtipton.wordpress.com/2008/06/10/book-review-c-in-depth/</link>
		<comments>http://rtipton.wordpress.com/2008/06/10/book-review-c-in-depth/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 01:20:28 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/10/book-review-c-in-depth/</guid>
		<description><![CDATA[C# In Depth     Author: Jon Skeet     Publisher: Manning     No. Pages: 392 
&#160; 
Jon Skeet does a great job of demonstrating the differences between the features of C# 1, 2 and 3.&#160; An abundant amount of detail is provided on the history of the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.amazon.com/C-Depth-What-need-master/dp/1933988363/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1209303853&amp;sr=8-1" target="_blank">C# In Depth</a>     <br />Author: <a href="http://msmvps.com/blogs/jon.skeet" target="_blank">Jon Skeet</a>     <br />Publisher: Manning     <br />No. Pages: 392 </p>
<p><a href="http://www.amazon.com/C-Depth-What-need-master/dp/1933988363/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1209303853&amp;sr=8-1" target="_blank"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="218" alt="CSharpInDepth" src="http://rtipton.files.wordpress.com/2008/06/csharpindepth.jpg?w=175&h=218" width="175" border="0" /></a>&#160; </p>
<p><a href="http://msmvps.com/blogs/jon.skeet" target="_blank">Jon Skeet</a> does a great job of demonstrating the differences between the features of C# 1, 2 and 3.&#160; An abundant amount of detail is provided on the history of the features and how they evolved into C# 3.&#160; There are also some great analogies used throughout the book. </p>
<p>In my opinion this book is a perfect size.&#160; It is 392 pages, but really seems like more due to the amount of detail. </p>
<p>Some of the major items this book covers - </p>
<ul>
<li>Generics </li>
<li>Delegates </li>
<li>Anonymous Methods </li>
<li>Partial Types </li>
<li>Expression Trees </li>
</ul>
<p>In closing, this is a great book for intermediate to advanced developers.&#160; I believe even beginners will pick up some great concepts.</p>
<p>Happy reading…</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/654/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/654/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/654/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=654&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/10/book-review-c-in-depth/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2008/06/csharpindepth.jpg" medium="image">
			<media:title type="html">CSharpInDepth</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekly Link Post 45</title>
		<link>http://rtipton.wordpress.com/2008/06/08/weekly-link-post-45/</link>
		<comments>http://rtipton.wordpress.com/2008/06/08/weekly-link-post-45/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 21:10:15 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/08/weekly-link-post-45/</guid>
		<description><![CDATA[This is is my weekly link post.&#160; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.
Application Development/Design

BlackWasp has published an article that explains C# Implicitly Typed Variables. They talk about the var keyword (new to C# [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is is my weekly link post.&nbsp; It is here that I note the web sites and posts that I have run across that interest me - whether it be related to work or play.</p>
<p><strong><u>Application Development/Design</u></strong></p>
<ul>
<li><a href="http://www.blackwasp.co.uk" target="_blank">BlackWasp</a> has published an article that explains <a href="http://www.blackwasp.co.uk/CSharpImplicitlyTyped.aspx" target="_blank">C# Implicitly Typed Variables</a>. They talk about the var keyword (new to C# 3) which can be used to implicitly type a variable. Before C# 3, variables were only explicitly typed.
<li>In her post <a href="http://www.pandamonial.com/2008/04/f-mutable-vs-redefine.html" target="_blank">F# Mutable vs Redefine</a>, <a href="http://www.pandamonial.com" target="_blank">Amanda Laucher</a> talks about how to change an identifier&#8217;s value in F# even though all values are immutable.
<li>I ran across a good article on <a href="http://www.objectreference.net" target="_blank">Object Reference .NET</a> that demonstrates how to give enums more readable names: <a href="http://www.objectreference.net/post/enum-to-friendly-string-extension-method.aspx" target="_blank">Enum to Friendly String Extension Method</a>
<li>Great article on <a href="http://www.gridviewguy.com" target="_blank">GridViewGuy</a> titled <a href="http://www.gridviewguy.com/Articles/410_Creating_Rounded_Corners_Using_Only_CSS.aspx" target="_blank">Creating Rounded Corners Using Only CSS</a>.
<li><a href="http://www.blackwasp.co.uk" target="_blank">BlackWasp</a> has posted a good article explaining <a href="http://www.blackwasp.co.uk/CSharpAnonTypes.aspx" target="_blank">C# Anonymous Types</a>.
<li><a href="http://blogs.dovetailsoftware.com/blogs/kmiller" target="_blank">Kevin Miller</a> has posted a great article on <a href="http://blogs.dovetailsoftware.com/blogs/kmiller/archive/2008/06/04/cleanly-handling-ctrl-c-in-console-applications.aspx" target="_blank">Cleanly Handling Ctrl-C In Console Applications</a>.
<li><a href="http://geekswithblogs.net/AzamSharp" target="_blank">Mohammad Azam</a> provides his take on the <a href="http://www.azamsharp.com/Posts/29_Future_of_.NET.aspx" target="_blank">Future of .NET</a>.
<li><a href="http://www.lostechies.com/blogs/jimmy_bogard/" target="_blank">Jimmy Bogard</a> provides great detail on <a href="http://www.lostechies.com/blogs/jimmy_bogard/archive/2008/06/07/some-improved-linq-operators.aspx" target="_blank">Some improved LINQ operators</a>. The improvements make for cleaner implementations.
<li><a href="http://blog.excastle.com/" target="_blank">Joe White</a> has posted very detailed notes from TechEd 2008:&nbsp; <a href="http://blog.excastle.com/2008/06/02/teched-2008-notes-visual-studio-team-system-seminar/" target="_blank">#1</a> ~ <a href="http://blog.excastle.com/2008/06/03/teched-2008-notes-bill-gates-keynote/" target="_blank">#2</a> ~ <a href="http://blog.excastle.com/2008/06/03/teched-2008-notes-design-patterns-in-dynamic-languages/" target="_blank">#3</a> ~ <a href="http://blog.excastle.com/2008/06/03/teched-2008-notes-why-software-sucks/" target="_blank">#4</a> ~ <a href="http://blog.excastle.com/2008/06/03/teched-notes-10-ways-to-improve-your-code/" target="_blank">#5</a> ~ <a href="http://blog.excastle.com/2008/06/03/teched-2008-notes-microsoft-software-licensing-and-protection-services/" target="_blank">#6</a> ~ <a href="http://blog.excastle.com/2008/06/04/teched-2008-notes-the-gentle-art-of-pair-programming/" target="_blank">#7</a> ~ <a href="http://blog.excastle.com/2008/06/04/teched-2008-notes-design-and-testability/" target="_blank">#8</a> ~ <a href="http://blog.excastle.com/2008/06/04/teched-2008-notes-implementing-objects-for-data-binding/" target="_blank">#9</a> ~ <a href="http://blog.excastle.com/2008/06/04/teched-2008-notes-managed-add-in-framework/" target="_blank">#10</a>
<li>Article(s) from <a href="http://www.codeproject.com" target="_blank">Code project</a>: <a href="http://www.codeproject.com/KB/cs/SimpleWebBrowser.aspx" target="_blank">Basic C# Web Browser in Visual Studio 2008</a> ~ <a href="http://www.codeproject.com/KB/linq/LINQSQLCS.aspx" target="_blank">Simple LINQ to SQL in C#</a> ~ <a href="http://www.codeproject.com/KB/aspnet/PTCacheSessionViewState.aspx" target="_blank">The differences between Cache, Session &amp; ViewState</a>
<li>Snippet(s): <a href="http://www.codekeep.net/snippets/a630ce70-b87e-4cdf-9cd2-1013b5e48d48.aspx" target="_blank">ZipCode Struct With Parser</a> ~&nbsp;&nbsp;&nbsp;
<li>Tip(s):&nbsp; &#8212; </li>
</ul>
<p><strong><u><strong><u><strong><u>SQL Server &amp; PowerShell</u></strong></u></strong></u></strong></p>
<ul>
<li>Good article on <a href="http://sqlserverpedia.com" target="_blank">SQLServerPedia</a> that talks about the use of <a href="http://sqlserverpedia.com/blog/?p=270" target="_blank">SQLCMD to detach a DB, move the trans log and reattache the DB</a>.
<li><a href="http://sqlblog.com/blogs/denis_gobo" target="_blank">Denis Gobo</a> has posted an article on <a href="http://blogs.lessthandot.com" target="_blank">Less Than Dot</a> listing some <a href="http://blogs.lessthandot.com/index.php/DataMgmt/DataDesign/good-sql-articles-to-read-if-you-can-t-a" target="_blank">Good SQL Articles To Read If You Can&#8217;t Afford Books</a>.
<li><a href="http://blogs.msdn.com/jjameson" target="_blank">Jeremy Jamison</a> provides a way to <a href="http://blogs.msdn.com/jjameson/archive/2008/05/30/counting-rows-in-all-database-tables.aspx" target="_blank">Count Rows in All Databases</a>.
<li><a href="http://www.sqlskills.com/blogs/kimberly" target="_blank">Kimberly Tripp</a> continues her explanation of <a href="http://www.sqlskills.com/blogs/kimberly/2008/06/08/IndexesInSQLServer20052008Part2Internals.aspx" target="_blank">Indexes in SQL Server 2005/2008 - Part 2 - Internals</a>.
<li>Snippet(s):&nbsp; <a href="http://www.codekeep.net/snippets/e31a8eb9-b0a0-4e41-8646-17a466a3a739.aspx" target="_blank">Get days in a month</a> </li>
</ul>
<p><strong><u><strong><u></u></strong></u></strong>&nbsp;<strong><u><strong><u>Houston Area &amp; Regional Technology Events</u></strong></u></strong></p>
<ul>
<li><a href="http://rtipton.wordpress.com/area-user-groups/" target="_blank">Houston Area User Group Meetings</a> - This is my monthly listing of Houston area user group meetings. </li>
</ul>
<p><strong><u><strong><u>Internet, Software and General Technology</u></strong></u></strong></p>
<ul>
<li><a href="http://goosh.org/" target="_blank">Goosh.Org</a> is a pretty cool shell environment for Google. I am not sure how much I would use it, but it is cool.
<li><a href="http://adoguy.com/" target="_blank">Shawn Wildermuth</a> linked (via <a href="https://twitter.com" target="_blank">Twitter</a>) to this cool <a href="http://www.stripegenerator.com/" target="_blank">AJAX Diagonal Stripes Background Designer</a>. </li>
</ul>
<p><u><strong>Blogging and Social Networking</strong></u></p>
<ul>
<li><a href="http://www.mkoby.com" target="_blank">Michael Koby</a> gives his take on the different social networks in his post <a href="http://www.mkoby.com/2008/06/02/twitter-vs-friendfeed-vs-jaiku/" target="_blank">Twitter vs. FriendFeed vs. Jaiku</a>.
<li><a href="http://www.codinghorror.com" target="_blank">Jeff Atwood</a> talks about a service called Yelp and ethics in the post <a href="http://www.codinghorror.com/blog/archives/001128.html" target="_blank">Please Give Us Your Email Password</a>. </li>
</ul>
<p><u><strong>Self-Improvement, Productivity and Career</strong></u></p>
<ul>
<li><a href="http://jarkkolaine.com" target="_blank">Jarkko Laine</a> provides some great advice on eliminating distractions: <a href="http://jarkkolaine.com/2008/06/02/eliminate-distraction-the-8-things-to-let-go-first/" target="_blank">Eliminate Distraction: The 8 Things to Let Go First</a>.
<li><a href="http://www.codinggeekette.com" target="_blank">Sarah Dutkiewicz</a> gives her opinions on the Deep Fried Bytes podcast as well as some of her adventures in interviewing: <a href="http://www.codinggeekette.com/2008/06/deep-fried-bytes-interview-war-stories.aspx" target="_blank">Deep Fried Bytes : Interview War Stories</a>
<li><a href="http://www.dumblittleman.com" target="_blank">Dumb Little Man</a> posted a couple of good articles this week: <a href="http://www.dumblittleman.com/2008/06/7-websites-you-must-check-before-you-go.html" target="_blank">7 Websites You MUST Check Before You Go On A Vacation</a> ~ <a href="http://www.dumblittleman.com/2008/06/8-useful-tips-to-manage-and-avoid-rss.html" target="_blank">8 Useful Tips To Manage And Avoid RSS Overload</a>.
<li><a href="http://www.happiness-project.com" target="_blank">Gretchen Rubin</a> lists <a href="http://www.happiness-project.com/happiness_project/2008/06/eight-tips-for.html" target="_blank">8 Tips for Making Yourself Happier in the Next Hour</a>. Some pretty good tips.
<li><a href="http://west-wind.com/weblog" target="_blank">Rick Strahl</a> talks about his <a href="http://west-wind.com/weblog/posts/377676.aspx" target="_blank">Levels of Enthusiasm</a>.
<li><a href="http://www.stationstops.com" target="_blank">StationStops</a> provides us with the <a href="http://www.stationstops.com/2008/06/04/top-10-tips-for-working-from-home/" target="_blank">Top 10 Tips for Working From Home</a>. Tip #3 is important to me whether I work at home or in a cubicle at the office. </li>
</ul>
<p><strong><u>Sports, Entertainment and Everything Else</u></strong></p>
<ul>
<li><a href="http://www.diet-blog.com" target="_blank">The Diet blog</a> lists <a href="http://www.diet-blog.com/archives/2008/06/02/7_gym_exercises_you_need_to_avoid.php" target="_blank">7 Gym Exercises You Need to Avoid</a>.
<li><a href="http://blogs.chron.com/techblog" target="_blank">Dwight Silverman</a> has started a series reviews of Houston-area coffee shops that offer Wi-Fi. The first review is for <a href="http://blogs.chron.com/techblog/archives/2008/06/caffeinated_wifi_review_catalina_coffee_1.html" target="_blank">Catalina Coffee</a>.&nbsp;
<li>Movie Trailers:&nbsp; <a href="http://movies.yahoo.com/movie/1809921595/video/7698090/20080506/144/7698090-700-flash-s.63782650-,7698090-1000-flash-s.63782667-,7698090-100-flash-s.63782643-,7698090-1000-wmv-s.63782637-,7698090-300-wmv-s.63782629-,7698090-100-wmv-s.63782621-,7698090-300-flash-s.63782647-,7698090-700-wmv-s.63782633-,7698089-10300-qtv-s.63783153-,7698089-2700-qtv-s.63783147-,7698089-6800-qtv-s.63783151-" target="_blank">The Happening</a>&nbsp;&nbsp;
<li>Funny Dilberts this week:&nbsp; <a href="http://dilbert.com/strips/comic/2008-06-02/" target="_blank">6/2</a> ~ <a href="http://dilbert.com/strips/comic/2008-06-04/" target="_blank">6/4</a> ~ <a href="http://dilbert.com/strips/comic/2008-06-05/" target="_blank">6/5</a> </li>
</ul>
<p>&#8211;</p>
<p><strong><u>Great Link Blog Sources</u></strong></p>
<ul>
<li><a href="http://jasonhaley.com/blog/default.aspx" target="_blank">Jason Haley - Interesting Finds</a>
<li><a href="http://spietrek.blogspot.com/" target="_blank">Steve Pietrek - Links</a>
<li><a href="http://arjansworld.blogspot.com/" target="_blank">Arjan Zuidhof - LinkBlog</a>
<li><a href="http://dotnetjunkies.com/WebLog/csteen/default.aspx" target="_blank">Christopher Steen - Link Listing</a>
<li><a href="http://mhinze.com/" target="_blank">Matt Hinze - Links Today</a>
<li><a href="http://afreshcup.com/" target="_blank">Mike Gunderloy - Double-Shot</a>
<li><a href="http://vidmar.net/weblog/category/27.aspx" target="_blank">David Vidmar - Links of the week</a>
<li><a href="http://blog.mattgoyer.com/archives/category/links/" target="_blank">Matt Goyer - Links</a>
<li><a href="http://samgentile.com/blogs/samgentile/default.aspx" target="_blank">Sam Gentile - New and Notable</a>
<li><a href="http://www.chinhdo.com/" target="_blank">Chihn Do - Finds of the Week</a>
<li><a href="http://www.craigbailey.net/default.aspx" target="_blank">Craig Bailey - On Microsoft</a>
<li><a href="http://www.alvinashcraft.com/category/development/daily-links/" target="_blank">Alvin Ashcraft - Daily Links</a>
<li><a href="http://blog.cwa.me.uk/tags/morning-brew/" target="_blank">Chris Alcock - Morning Brew</a>
<li><a href="http://visualstudiohacks.com/" target="_blank">Darren Stokes - Visual Studio Links</a>
<li><a href="http://professionalaspnet.com/archive/tags/Links+of+the+Week/default.aspx" target="_blank">Chris Love - Links of the Week</a>
<li><a href="http://www.lazycoder.com/weblog/index.php/archives/category/links/" target="_blank">Scott Koon - Links</a>
<li><a href="http://www.mkoby.com/category/links/dailylinks/" target="_blank">Michael Koby - Daily Links</a>
<li><a href="http://itknowledgeexchange.techtarget.com/serviceendpoint" target="_blank">Dilip Krishnan - Weekly SOA/MS Crumbs</a> </li>
</ul>
<p>&#8211;</p>
<p>Happy Surfing.</p>
<div class="wlWriterHeaderFooter" style="text-align:left;margin:0;padding:4px;">&nbsp;</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/650/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/650/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/650/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=650&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/08/weekly-link-post-45/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>
	</item>
		<item>
		<title>File Compression Using the .NET GZipStream Class</title>
		<link>http://rtipton.wordpress.com/2008/06/07/file-compression-using-the-net-gzipstream-class/</link>
		<comments>http://rtipton.wordpress.com/2008/06/07/file-compression-using-the-net-gzipstream-class/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 23:48:28 +0000</pubDate>
		<dc:creator>Rhonda Tipton</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/06/07/file-compression-using-the-net-gzipstream-class/</guid>
		<description><![CDATA[The GZipStream class is a part of the System.IO.Compression namespace. This class is used for the compression of data. Before the .NET 2.0 Framework, the only choice we had for compression were third party tools.
&#8211;
Common Methods (Full List)

BeginRead - Begins an asynchronous read operation.
BeginWrite - Begins an asynchronous write operation.
Close - Closes the current stream [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The <a href="http://msdn.microsoft.com/en-us/library/system.io.compression.gzipstream.aspx" target="_blank">GZipStream</a> class is a part of the <a href="http://msdn.microsoft.com/en-us/library/system.io.compression.aspx" target="_blank">System.IO.Compression</a> namespace. This class is used for the compression of data. Before the .NET 2.0 Framework, the only choice we had for compression were third party tools.</p>
<p>&#8211;</p>
<p><strong>Common Methods</strong> (<a href="http://msdn.microsoft.com/en-us/library/system.io.compression.gzipstream_methods.aspx" target="_blank">Full List</a>)</p>
<ul>
<li><span style="text-decoration:underline;">BeginRead</span> - Begins an asynchronous read operation.
<li><span style="text-decoration:underline;">BeginWrite</span> - Begins an asynchronous write operation.
<li><span style="text-decoration:underline;">Close</span> - Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream.
<li><span style="text-decoration:underline;">EndRead</span> - Waits for the pending asynchronous read to complete.
<li><span style="text-decoration:underline;">EndWrite</span> - Handles the end of an asynchronous write operation.
<li><span style="text-decoration:underline;">Read</span> - Reads a number of decompressed bytes into the specified byte array.
<li><span style="text-decoration:underline;">Write</span> - Writes compressed bytes to the underlying stream from the specified byte array. </li>
</ul>
<p>&#8211;</p>
<p>Below is a simple C# console application that takes an input file, compresses it and creates a compressed zip file.</p>
<p><strong>C# Listing</strong></p>
<div style="border-right:gray 1px solid;border-top:gray 1px solid;font-size:8pt;overflow:auto;border-left:gray 1px solid;width:97.5%;cursor:text;line-height:12pt;border-bottom:gray 1px solid;font-family:consolas;max-height:200px;">
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas;"><span style="color:#0000ff;">using</span> System;
<span style="color:#0000ff;">using</span> System.IO;
<span style="color:#0000ff;">using</span> System.IO.Compression;

<span style="color:#0000ff;">public</span> <span style="color:#0000ff;">class</span> GZipTest
{
    <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">static</span> <span style="color:#0000ff;">void</span> usage()
    {
        Console.WriteLine(<span style="color:#006080;">&#8220;My test GZip program&#8221;</span>);
        Console.WriteLine(<span style="color:#006080;">&#8220;gziptest [filename to be compressed]&#8220;</span>);
    }

    <span style="color:#0000ff;">static</span> <span style="color:#0000ff;">void</span> Main(<span style="color:#0000ff;">string</span>[] args)
    {
        <span style="color:#0000ff;">if</span> (args.Length &lt; 1)
        {
            usage();
            <span style="color:#0000ff;">return</span>;
        }
        <span style="color:#0000ff;">else</span>
        {
            <span style="color:#0000ff;">string</span> inputFile = args[0];
            <span style="color:#0000ff;">string</span> outputFile = inputFile + <span style="color:#006080;">&#8220;.gz&#8221;</span>;

            <span style="color:#0000ff;">try</span>
            {
                <span style="color:#008000;">// Get bytes from input stream</span>
                FileStream inFileStream = <span style="color:#0000ff;">new</span> FileStream(Path.Combine(Environment.CurrentDirectory, inputFile), FileMode.Open);
                <span style="color:#0000ff;">byte</span>[] buffer = <span style="color:#0000ff;">new</span> <span style="color:#0000ff;">byte</span>[inFileStream.Length];
                inFileStream.Read(buffer, 0, buffer.Length);
                inFileStream.Close();

                <span style="color:#008000;">// Create GZip file stream and compress input bytes</span>
                FileStream outFileStream = <span style="color:#0000ff;">new</span> FileStream(Path.Combine(Environment.CurrentDirectory, outputFile), FileMode.Create);
                GZipStream compressedStream = <span style="color:#0000ff;">new</span> GZipStream(outFileStream, CompressionMode.Compress);
                compressedStream.Write(buffer, 0, buffer.Length);
                compressedStream.Close();
                outFileStream.Close();

                Console.WriteLine(<span style="color:#006080;">&#8220;The file has been compressed.  UR Da Bomb!!!&#8221;</span>);
            }
            <span style="color:#0000ff;">catch</span>(FileNotFoundException)
            {
                Console.WriteLine(<span style="color:#006080;">&#8220;Error: Specified file cannot be found.&#8221;</span>);
            }
        }
    }
}</pre>
</div>
<p>&#8211;</p>
<p>The command-line illustration below shows the application at work.</p>
<ul>
<li>If no argument is provided, the usage syntax is echoed to the screen
<li>If the argument provided cannot be located, error is echoed to the screen
<li>If correct argument is provided, the file is compressed and a new file is created </li>
</ul>
<p><a href="http://rtipton.files.wordpress.com/2008/06/compression1.jpg"><img style="border-width:0;" height="195" alt="compression1" src="http://rtipton.files.wordpress.com/2008/06/compression1-thumb.jpg?w=359&h=195" width="359" border="0"></a></p>
<p>The result (compressed) file created.</p>
<p><a href="http://rtipton.files.wordpress.com/2008/06/compression2.jpg"><img style="border-width:0;" height="153" alt="compression2" src="http://rtipton.files.wordpress.com/2008/06/compression2-thumb.jpg?w=359&h=153" width="359" border="0"></a></p>
<p>View the compressed file in a Zip application.</p>
<p><a href="http://rtipton.files.wordpress.com/2008/06/compression3.jpg"><img style="border-width:0;" height="196" alt="compression3" src="http://rtipton.files.wordpress.com/2008/06/compression3-thumb.jpg?w=359&h=196" width="359" border="0"></a></p>
<p>&#8211;</p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.io.compression.gzipstream.aspx" target="_blank">GZipStream</a> class is not as feature-rich as the third-party tools, but it is a convenient way to compress data.</p>
<p>&#8211;</p>
<p><strong>Related Content</strong></p>
<ul>
<li><a href="http://blogs.msdn.com/bclteam/archive/2005/06/15/429542.aspx" target="_blank">Using GZipStream for Compression in .NET</a>
<li><a href="http://msdn.microsoft.com/en-us/library/ms404280.aspx" target="_blank">How to: Compress Files</a>
<li><a href="http://msdn.microsoft.com/en-us/library/ywf6dxhx.aspx" target="_blank">Compression Application Sample</a> </li>
</ul>
<p>&#8211;</p>
<p>Happy programming&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/647/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/647/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/647/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/647/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/647/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/647/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/647/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/647/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/647/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/647/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/647/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/647/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rtipton.wordpress.com&blog=148560&post=647&subd=rtipton&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rtipton.wordpress.com/2008/06/07/file-compression-using-the-net-gzipstream-class/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rtipton-128.jpg" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2008/06/compression1-thumb.jpg" medium="image">
			<media:title type="html">compression1</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2008/06/compression2-thumb.jpg" medium="image">
			<media:title type="html">compression2</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2008/06/compression3-thumb.jpg" medium="image">
			<media:title type="html">compression3</media:title>
		</media:content>
	</item>
	</channel>
</rss>