<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Brucerick.com</title>
	<atom:link href="http://www.brucerick.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.brucerick.com</link>
	<description></description>
	<lastBuildDate>Wed, 05 Oct 2011 23:56:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Don&#8217;t Forget Comments When Programming</title>
		<link>http://www.brucerick.com/dont-forget-comments-when-programming.html</link>
		<comments>http://www.brucerick.com/dont-forget-comments-when-programming.html#comments</comments>
		<pubDate>Wed, 05 Oct 2011 23:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development / Programming]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=928</guid>
		<description><![CDATA[I just have to say something about this. &#160;Don&#39;t forget to add comments to your programs! &#160;I know it can be a little time consuming to add comments to your programs but it will save you tons of time down the road. &#160;Just think of how much time you would have saved if you ad [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/dont-forget-comments-when-programming.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS SQL 2000 to MS SQL 2008 R2 Import Issues</title>
		<link>http://www.brucerick.com/ms-sql-2000-to-ms-sql-2008-r2-import-issues.html</link>
		<comments>http://www.brucerick.com/ms-sql-2000-to-ms-sql-2008-r2-import-issues.html#comments</comments>
		<pubDate>Mon, 22 Aug 2011 13:10:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development / Programming]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=923</guid>
		<description><![CDATA[These are just a quick list of things that I have noticed during imports from Microsoft SQL 2000 to Microsoft SQL 2008 R2 that, if you are doing this, you should watch for. &#160;This is probably not the complete list of issues, but one&#39;s that I have noticed so far: Stored Procedures do not get [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/ms-sql-2000-to-ms-sql-2008-r2-import-issues.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bored and Thinking About Designing A New CMS</title>
		<link>http://www.brucerick.com/bored-and-thinking-about-designing-a-new-cms.html</link>
		<comments>http://www.brucerick.com/bored-and-thinking-about-designing-a-new-cms.html#comments</comments>
		<pubDate>Sun, 14 Aug 2011 21:19:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=920</guid>
		<description><![CDATA[Today, while at work, I started thinking about what kind of project I could play with next, so here is my idea. &#160;I think I would like to build a CMS run on Google Go, using a MongoDB and have the front end use HTML5 and CSS3. &#160;With that being said, I&#39;ve started getting the [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/bored-and-thinking-about-designing-a-new-cms.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parsing A Few Characters in A String &#8211; VB.Net</title>
		<link>http://www.brucerick.com/parsing-a-few-characters-in-a-string-vb-net.html</link>
		<comments>http://www.brucerick.com/parsing-a-few-characters-in-a-string-vb-net.html#comments</comments>
		<pubDate>Tue, 21 Jun 2011 19:37:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[code-behind]]></category>
		<category><![CDATA[parsing]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=914</guid>
		<description><![CDATA[If you need to parse just a few characters from a string, you can easily do that in the code-behind like this: MyVariable = VariableName.Substring(1,3) This gets the first through the third character in the string and places it in MyVariable. Note that the starting position of the variable is 0 so the true first [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/parsing-a-few-characters-in-a-string-vb-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting The Current File Name in Vb.Net</title>
		<link>http://www.brucerick.com/getting-file-name-in-vb-net.html</link>
		<comments>http://www.brucerick.com/getting-file-name-in-vb-net.html#comments</comments>
		<pubDate>Tue, 07 Jun 2011 13:19:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=911</guid>
		<description><![CDATA[Some times you need to figure out what the actual file name is a the web page that you are on. &#160;If this is the case, here is the easy way to do this in the code behind: Dim myPage As String = System.IO.Path.GetFileName(System.Web.HttpContext.Current.Request.Url.AbsolutePath) If you are on a page, myPage will have just the [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/getting-file-name-in-vb-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing ShowStartNode or StartNodeOffset For Sitemap In Code Behind</title>
		<link>http://www.brucerick.com/vb_changing_showstartnode_startnodeoffse.html</link>
		<comments>http://www.brucerick.com/vb_changing_showstartnode_startnodeoffse.html#comments</comments>
		<pubDate>Tue, 07 Jun 2011 13:15:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=908</guid>
		<description><![CDATA[Sometimes you may want to change the ShowStartNode or StartNodeOffset for your sitemap file when the page is loaded in vb.net. One example is if you are using the web.sitemap file to display an asp:menu on your page. There may be certain pages that you want to show from the starting node and other times [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/vb_changing_showstartnode_startnodeoffse.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Javascript Image Swapping Function</title>
		<link>http://www.brucerick.com/easy-javascript-image-swapping-function.html</link>
		<comments>http://www.brucerick.com/easy-javascript-image-swapping-function.html#comments</comments>
		<pubDate>Thu, 26 May 2011 01:42:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[image swapping]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rollover image]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=902</guid>
		<description><![CDATA[Sometimes you just need a quick image swapping script so here is one you can use quickly. &#160;You could always do this right inline too but why? &#160;I want to use the same script over and over and want to be able to place the images anywhere so this is how I do this. Create [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/easy-javascript-image-swapping-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Google Page Speed To Google Analyticator For WordPress</title>
		<link>http://www.brucerick.com/adding-google-page-speed-to-google-analyticator-for-wordpress.html</link>
		<comments>http://www.brucerick.com/adding-google-page-speed-to-google-analyticator-for-wordpress.html#comments</comments>
		<pubDate>Fri, 06 May 2011 21:34:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Google Analyticator]]></category>
		<category><![CDATA[Google Page Speed]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=896</guid>
		<description><![CDATA[Google Analyticator is a plugin for WordPress that connects your site to your Google Analytics account. &#160;Now that Google has also set it up so that you can track a users page speed on your analytics, you should track how fast your connection is for your visitors. Log into your WordPress administration site. Scroll down [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/adding-google-page-speed-to-google-analyticator-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding A Textarea To Virtuemart Products</title>
		<link>http://www.brucerick.com/adding-textarea-to-virtuemart-products.html</link>
		<comments>http://www.brucerick.com/adding-textarea-to-virtuemart-products.html#comments</comments>
		<pubDate>Fri, 29 Apr 2011 01:30:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=884</guid>
		<description><![CDATA[For some products, or all of your products, on a Virtuemart product, you may want to add a comments or notes section to your products in a Textarea. &#160;There is no easy way to do this but I have come up with one way to do it. Use the following steps to use this method: [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/adding-textarea-to-virtuemart-products.html/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Hiding Page Title From Content Area In Joomla 1.6</title>
		<link>http://www.brucerick.com/how-to-hide-page-title-from-content-joomla-16.html</link>
		<comments>http://www.brucerick.com/how-to-hide-page-title-from-content-joomla-16.html#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:25:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Joomla 1.6]]></category>
		<category><![CDATA[Page Title]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=879</guid>
		<description><![CDATA[Some times you do not want the Page Title to be displayed on the content page. &#160;To remove the page title from the specific page, use the following procedure: In this example you can see the page title &#34;Test&#34; which is also shown as the meta title tag for the specific page. We will use [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/how-to-hide-page-title-from-content-joomla-16.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing WAMP 2.1 Port From 80 To 81 Or Other Port</title>
		<link>http://www.brucerick.com/changing-wamp-2-1-port-from-80-to-81-or-other-port.html</link>
		<comments>http://www.brucerick.com/changing-wamp-2-1-port-from-80-to-81-or-other-port.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 02:29:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development / Programming]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[Port 80]]></category>
		<category><![CDATA[WAMP]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=875</guid>
		<description><![CDATA[I&#39;ve found that I need to do this a lot, especially when installing WAMP on a machine that I&#39;m also running IIS on. &#160;I usually place Apache onto Port 81. &#160;To make this change in WAMP 2.1, use the following procedure: Open the http.conf file found in your /wamp/bin/apache/Apache2.2.17/conf/ folder. Search for the line that [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/changing-wamp-2-1-port-from-80-to-81-or-other-port.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Using A Checkbox in Virtuemart</title>
		<link>http://www.brucerick.com/using-a-checkbox-in-virtuemart.html</link>
		<comments>http://www.brucerick.com/using-a-checkbox-in-virtuemart.html#comments</comments>
		<pubDate>Sat, 09 Apr 2011 19:31:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=871</guid>
		<description><![CDATA[I&#39;m not sure why this is such a difficult task, but they really have made it a pain to use things such as a checkbox, dropdown list, radio button, textarea or any other type of function in Virtuemart. So, I&#39;ve decided to show a quick way to change the custom information in virtuemart to a [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/using-a-checkbox-in-virtuemart.html/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>SEO For WordPress</title>
		<link>http://www.brucerick.com/seo-for-wordpress.html</link>
		<comments>http://www.brucerick.com/seo-for-wordpress.html#comments</comments>
		<pubDate>Mon, 28 Mar 2011 20:12:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=858</guid>
		<description><![CDATA[This is the way I deal with SEO in WordPress. I have found this works very well for all of my WordPress sites. Install Canonical URL&#39;s, one of Yoast&#39;s plugins. Once activated, you will be able to add your canonical link at the bottom of each post or page on your site. Install and Activate&#160;Google [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/seo-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ripped Fuel Extreme Review</title>
		<link>http://www.brucerick.com/ripped-fuel-extreme-review.html</link>
		<comments>http://www.brucerick.com/ripped-fuel-extreme-review.html#comments</comments>
		<pubDate>Sun, 20 Mar 2011 15:22:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Work Out]]></category>
		<category><![CDATA[Ripped Fuel]]></category>
		<category><![CDATA[Supplements]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=844</guid>
		<description><![CDATA[This is my own Twin Labs Ripped Fuel Extreme review. I&#39;ve tried many of different types of weight loss and fat burning supplements over the years but my first test was pretty extreme. &#160;I took this about 30 minutes before my workout with breakfast and was amazed. I&#39;ve taken this more for the jump that [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/ripped-fuel-extreme-review.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Setting Title Tags In Joomla 1.6</title>
		<link>http://www.brucerick.com/setting-title-tags-in-joomla-16.html</link>
		<comments>http://www.brucerick.com/setting-title-tags-in-joomla-16.html#comments</comments>
		<pubDate>Sat, 12 Mar 2011 19:44:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=829</guid>
		<description><![CDATA[Other than the content on your page, this is the most important part of your page. If you plan on having your page show up on a search engine and for people to actually visitor your site, this is #1. You have 80 characters or less of space to highlight what your page is about. [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/setting-title-tags-in-joomla-16.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Joomla 1.6 Search Engine Friendly URL&#8217;s</title>
		<link>http://www.brucerick.com/joomla_16_sef_urls.html</link>
		<comments>http://www.brucerick.com/joomla_16_sef_urls.html#comments</comments>
		<pubDate>Sat, 12 Mar 2011 18:57:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=821</guid>
		<description><![CDATA[So why do you want SEF turned on? Because it does make a slight difference in search engines. &#160;It may help slightly with search engine ranking, but above that, it will help will people actually selecting your web site. Just as an example, to make you understand, which one of these would you select on [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/joomla_16_sef_urls.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 9 and Issues With CSS Shadowing</title>
		<link>http://www.brucerick.com/internet-explorer-9-and-issues-with-css-shadowing.html</link>
		<comments>http://www.brucerick.com/internet-explorer-9-and-issues-with-css-shadowing.html#comments</comments>
		<pubDate>Wed, 09 Mar 2011 15:16:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development / Programming]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE9]]></category>
		<category><![CDATA[Internet Explorer 9]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=793</guid>
		<description><![CDATA[I&#39;ve found yet another problem with IE9 that just blows my mind. &#160;I have a site that is using text-shadow and filter: Shadow to shadow text. &#160;These work great in most browsers and previous versions of Internet Explorer would just ignore them, as other browsers do. Oh no, Internet Explorer 9 has to be different [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/internet-explorer-9-and-issues-with-css-shadowing.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Should I Still Build IE6 Compatible Web Sites?</title>
		<link>http://www.brucerick.com/should-i-still-build-ie6-compatible-web-sites.html</link>
		<comments>http://www.brucerick.com/should-i-still-build-ie6-compatible-web-sites.html#comments</comments>
		<pubDate>Thu, 24 Feb 2011 23:44:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development / Programming]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=760</guid>
		<description><![CDATA[This is a question that has been kicked around a lot lately by different web developers. Internet Explorer 6 was released on August 27, 2001. That means that IE 6 is almost 10 years old! &#160;You would think that no one would be using this still but it seems there are those out there that [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/should-i-still-build-ie6-compatible-web-sites.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fatal error: Class &#8216;shjlang16Helper&#8217; not found</title>
		<link>http://www.brucerick.com/fatal-error-class-shjlang16helper-not-found.html</link>
		<comments>http://www.brucerick.com/fatal-error-class-shjlang16helper-not-found.html#comments</comments>
		<pubDate>Tue, 22 Feb 2011 05:41:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SH404SEF]]></category>
		<category><![CDATA[shjlang16Helper]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=776</guid>
		<description><![CDATA[This is an error you may see when updating SH404SEF if you didn&#39;t uninstall it first from Joomla. The first thing you should try doing is uninstalling SH404SEF from your system to remove the old version and then re-install the new version. Now if you run into a problem where you can not access your [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/fatal-error-class-shjlang16helper-not-found.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing The Add To Cart Button in Virtuemart</title>
		<link>http://www.brucerick.com/changing-the-add-to-cart-button-in-virtuemart.html</link>
		<comments>http://www.brucerick.com/changing-the-add-to-cart-button-in-virtuemart.html#comments</comments>
		<pubDate>Sun, 20 Feb 2011 14:34:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://www.brucerick.com/?p=773</guid>
		<description><![CDATA[It is not so obvious how to change the Add To Cart button in Virtuemart but it really isn&#39;t that difficult. &#160;Use the following steps to make an adjustment. Create your button in your favorite graphic editing program. FTP your new image to the /components/com_virtuemart/themes/default/images/ folder. Open the theme.css file found in your /components/com_virtuemart/themes/ folder. [...]]]></description>
		<wfw:commentRss>http://www.brucerick.com/changing-the-add-to-cart-button-in-virtuemart.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
