<?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>MDBitz Development Resources &#187; Tips &amp; Tricks</title>
	<atom:link href="http://resources.mdbitz.com/categories/tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://resources.mdbitz.com</link>
	<description></description>
	<lastBuildDate>Mon, 22 Nov 2010 14:25:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Rendering IE 8 in IE 7 compatibility mode</title>
		<link>http://resources.mdbitz.com/2010/11/rendering-ie-8-in-ie-7-compatibility-mode/</link>
		<comments>http://resources.mdbitz.com/2010/11/rendering-ie-8-in-ie-7-compatibility-mode/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 15:58:19 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[META]]></category>
		<category><![CDATA[X-UA-Compatible]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1488</guid>
		<description><![CDATA[Unfortunately Microsoft over the years has left us disappointed year after year with their web browser Internet Explorer. Yes, I know we all have had frustration with the little quirks that all browsers have but Internet Explorer has been the bane of the web developer. IE 8 like previous incarnations appears at first to be [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/11/rendering-ie-8-in-ie-7-compatibility-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing if JavaScript method Exists</title>
		<link>http://resources.mdbitz.com/2010/11/testing-if-javascript-method-exists/</link>
		<comments>http://resources.mdbitz.com/2010/11/testing-if-javascript-method-exists/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 15:46:16 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Exists]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1483</guid>
		<description><![CDATA[When developing within a large web application it may be needed to check if a JavaScript function/object exists prior to being calling. The benefits to checking if the method exists are: No JavaScript errors are Generated. if needed you can dynamically load and initialize your method or object In most cases you won&#8217;t need to [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/11/testing-if-javascript-method-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Custom Feed in WordPress</title>
		<link>http://resources.mdbitz.com/2010/08/creating-a-custom-feed-in-wordpress/</link>
		<comments>http://resources.mdbitz.com/2010/08/creating-a-custom-feed-in-wordpress/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 19:05:05 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[WordPress (WP)]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1465</guid>
		<description><![CDATA[Ever find yourself wanting to create a custom feed of your WordPress managed website? Lucky for you they have the handy add_feed hook that allows you to define as many feeds as you want, Just be careful not to duplicate any existing feeds. I personally find myself using this feature to output xml of data [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/08/creating-a-custom-feed-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to obtain the full absolute path of the exectuing shell script without readlink</title>
		<link>http://resources.mdbitz.com/2010/08/how-to-obtain-the-full-absolute-path-of-the-exectuing-shell-script-without-readlink/</link>
		<comments>http://resources.mdbitz.com/2010/08/how-to-obtain-the-full-absolute-path-of-the-exectuing-shell-script-without-readlink/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 11:16:21 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[absolute path]]></category>
		<category><![CDATA[pwd]]></category>
		<category><![CDATA[readlink]]></category>
		<category><![CDATA[Shell Script]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1451</guid>
		<description><![CDATA[One issue that I always come across when creating a shell script is referencing files dynamically based on the location of the shell script. A hack I often used was to pass the script&#8217;s path to the script on execution because the readlink command was not available to me. However recently I have revisited this [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/08/how-to-obtain-the-full-absolute-path-of-the-exectuing-shell-script-without-readlink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically generating the Java Classpath within a shell script</title>
		<link>http://resources.mdbitz.com/2010/08/dynamically-generating-the-java-classpath-within-a-shell-script/</link>
		<comments>http://resources.mdbitz.com/2010/08/dynamically-generating-the-java-classpath-within-a-shell-script/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 14:04:50 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[-cp]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Classpath]]></category>
		<category><![CDATA[Shell Script]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1447</guid>
		<description><![CDATA[One of the main maintenance issues with running a Java application from a shell script is keeping your classpath up-to-date with the new and updated jars. To make things more difficult you can&#8217;t specify a folder as the classpath as it doesn&#8217;t include the jars in it only .class files. However through the use of [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/08/dynamically-generating-the-java-classpath-within-a-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Save and Write To and From a File in Visual Basic</title>
		<link>http://resources.mdbitz.com/2010/06/how-to-save-and-write-to-and-from-a-file-in-visual-basic/</link>
		<comments>http://resources.mdbitz.com/2010/06/how-to-save-and-write-to-and-from-a-file-in-visual-basic/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 12:30:28 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[Close]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[flush]]></category>
		<category><![CDATA[IO]]></category>
		<category><![CDATA[Read]]></category>
		<category><![CDATA[Save]]></category>
		<category><![CDATA[VB]]></category>
		<category><![CDATA[Write]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1241</guid>
		<description><![CDATA[A common task when creating a form based windows application is to allow a user to save their information and to also load saved information. In this short tutorial I will show you the basic steps to save a form&#8217;s information to a file and then load up the contents of the saved file. Saving [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/06/how-to-save-and-write-to-and-from-a-file-in-visual-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiplying a Database Column&#8217;s Values</title>
		<link>http://resources.mdbitz.com/2010/06/multiplying-a-database-columns-values/</link>
		<comments>http://resources.mdbitz.com/2010/06/multiplying-a-database-columns-values/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 17:32:12 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[ANTILOG]]></category>
		<category><![CDATA[EXP]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[SUM]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1395</guid>
		<description><![CDATA[Like most individuals I find the built int SUM function of SQL very helpful when performing computations. Recently however I found myself wondering how to compute the product of a result set grouped by some factor, and I found myself slightly at a lost as no Product function exists. Fortunately for us we can use [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/06/multiplying-a-database-columns-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips &amp; Tricks: How to perform String Concatenation in Visual Basic</title>
		<link>http://resources.mdbitz.com/2010/03/tips-tricks-how-to-perform-string-concatenation-in-visual-basic/</link>
		<comments>http://resources.mdbitz.com/2010/03/tips-tricks-how-to-perform-string-concatenation-in-visual-basic/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 13:16:13 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[& operator]]></category>
		<category><![CDATA[Concatenation]]></category>
		<category><![CDATA[StringBuilder]]></category>
		<category><![CDATA[VB]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1244</guid>
		<description><![CDATA[Visual Basic allows multiple methods for concatenating Strings. The simplest and most easily recognized method is using the + operator which will perform the concatenation of Strings. However if you want to concatenate two numbers together you will first have to convert them to Strings to use the + operator. To enable you to specify [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/03/tips-tricks-how-to-perform-string-concatenation-in-visual-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing your files and folders through the command prompt</title>
		<link>http://resources.mdbitz.com/2010/03/managing-your-files-and-folders-through-the-command-prompt/</link>
		<comments>http://resources.mdbitz.com/2010/03/managing-your-files-and-folders-through-the-command-prompt/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 13:29:42 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[del]]></category>
		<category><![CDATA[delete folder]]></category>
		<category><![CDATA[delete subfiles]]></category>
		<category><![CDATA[md]]></category>
		<category><![CDATA[mkdir]]></category>
		<category><![CDATA[rd]]></category>
		<category><![CDATA[rmdir]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1179</guid>
		<description><![CDATA[Remembering the correct command prompts across different platforms can be confusing. To make things easier on myself I have compiled a short list of the commands and their options that are commonly used to create and delete files and folder in DOS. Including how to delete a folder and all its contents. How to Delete [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/03/managing-your-files-and-folders-through-the-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating User Friendly and Twitter Friendly links with TinyURL</title>
		<link>http://resources.mdbitz.com/2010/03/creating-user-friendly-and-twitter-friendly-links-with-tinyurl/</link>
		<comments>http://resources.mdbitz.com/2010/03/creating-user-friendly-and-twitter-friendly-links-with-tinyurl/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 13:10:47 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Redirects]]></category>
		<category><![CDATA[TinyURL]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1157</guid>
		<description><![CDATA[Often we forget that although we want our URLs to be SEO friendly and contain information about the current page. Because of this URLs can become very long and cumbersome to the user and to other applications which allow a limited amount of text like Twitter. For example the URL to this article is http://resources.mdbitz.com/2010/03/creating-user-friendly-and-twitter-friendly-links-with-tinyurl, [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/03/creating-user-friendly-and-twitter-friendly-links-with-tinyurl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

