<?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>Clarity Computers</title>
	<atom:link href="http://www.devclarity.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devclarity.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 27 Jan 2012 00:42:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What Happened</title>
		<link>http://www.devclarity.com/2012/01/what-happened/</link>
		<comments>http://www.devclarity.com/2012/01/what-happened/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 11:06:55 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=535</guid>
		<description><![CDATA[The databaese server that was attached to the old site got corrupted somehow. As a result, I&#8217;ve had to revert to an old backup copy of the site, some of the links may not work properly yet but they will all be fixed as soon as possible.]]></description>
			<content:encoded><![CDATA[<p>The databaese server that was attached to the old site got corrupted somehow.  As a result, I&#8217;ve had to revert to an old backup copy of the site, some of the links may not work properly yet but they will all be fixed as soon as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2012/01/what-happened/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps Sidebar Widget for WordPress (Per Post)</title>
		<link>http://www.devclarity.com/2010/05/google-maps-widget-for-wordpress/</link>
		<comments>http://www.devclarity.com/2010/05/google-maps-widget-for-wordpress/#comments</comments>
		<pubDate>Sat, 01 May 2010 21:42:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[BlogEngine / Wordpress]]></category>
		<category><![CDATA[Files]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=494</guid>
		<description><![CDATA[My friends at Moss Creek Media had an idea.  They wanted to put a Google map of where a picture was taken next to the image. I looked at all the plug ins and could only find one that added a Google map to a sidebar.  This was great! Something existed so I didn't have [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.devclarity.com/wp-content/uploads/2010/05/mosscreek.png"><img class="alignleft size-medium wp-image-496" title="mosscreek" src="http://www.devclarity.com/wp-content/uploads/2010/05/mosscreek-300x240.png" alt="" width="300" height="240" /></a><p>My friends at <a href="http://mosscreekmedia.com/" target="_blank">Moss Creek Media</a> had an idea.  They wanted to put a Google map of where a picture was taken next to the image.</p>
<p>I looked at all the plug ins and could only find one that added a Google map to a sidebar.  This was great! Something existed so I didn't have to build it but, it only supported one location (defined globally for every instance of the widget) and  what I needed to do was set the location according to the currently displayed image.</p>
<h2>Modification time</h2>
<p>The original plug-in <a href="http://wordpress.org/extend/plugins/google-map-v3-for-idn/" target="_blank">google-map-v3-for-idn</a> created by <a href="http://www.france-development.com/" target="_blank">Raphael Berrhoun</a> was very easy to modify.  I created a new <a href="http://codex.wordpress.org/Shortcode_API" target="_blank">shortcode</a> called <strong>gps</strong> that you insert into each post where the sidebar widget is displayed.</p>
<pre class="brush: xml; title: ; notranslate"> [gps latitude=&quot;43.62132&quot; longitude=&quot;-71.629517&quot; description=&quot;&lt;strong&gt;House of Goodness&lt;/strong&gt;&lt;br/&gt;31 Main St&lt;br/&gt;Oakland, CA 12334&quot;] </pre>
<p>Next all I had to do was modify some of the javascript to read the values passed in by the <a href="http://codex.wordpress.org/Shortcode_API" target="_blank">shortcode</a> (should they be available).  If the values were not present then it defaults to the normal values.</p>
<pre class="brush: jscript; title: ; notranslate">function makeMap() {
                        var lat = '&quot;.$lat.&quot;';
                        var lng = '&quot;.$lng.&quot;';
                        var info ='';
                        if ( (document.getElementById('gps-latitude')!='undefined') &amp;&amp; (document.getElementById('lng')!='undefined') ) {
                             lat = document.getElementById('gps-latitude').innerHTML;
                             lng = document.getElementById('gps-longitude').innerHTML;
                             info = document.getElementById('gps-description').innerHTML;
                        }</pre>

<h2>Usage</h2>
<p>You can download my modified the version of the plug-in.  All that you will need to do is add the <strong>GPS</strong> line to your post and make sure you have installed the widget into your sidebar and populated the <a href="http://code.google.com/apis/maps/signup.html">Google Maps API key</a>.  (Under settings in the control panel)</p>

Note: There is a file embedded within this post, please visit this post to download the file.]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/05/google-maps-widget-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Directory Monitor</title>
		<link>http://www.devclarity.com/2010/04/directory-monitor/</link>
		<comments>http://www.devclarity.com/2010/04/directory-monitor/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 00:21:08 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Files]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=485</guid>
		<description><![CDATA[Monitor Types File Created This gets kicked off when a file is created in the directory.  It will not wait for the fileto finish being created before the process starts. After File Created This gets kicked off when a file is created in the directory and waits for it to finish. File Deleted This gets [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.devclarity.com/wp-content/uploads/2010/04/dirmon.jpg"><img class="size-full wp-image-486 " title="dirmon" src="http://www.devclarity.com/wp-content/uploads/2010/04/dirmon.jpg" alt="" /></a></p>
<h3><strong>Monitor Types</strong></h3>
<ul>
<li><strong><em>File Created</em></strong><br />
This gets kicked off when a file is created in the directory.  It will not wait for the fileto finish being created before the process starts.</li>
<li><strong><em> After File Created</em></strong><br />
This gets kicked off when a file is created in the directory and waits for it to finish.</li>
<li><strong><em>File Deleted</em></strong><br />
This gets kicked off when a file is deleted.</li>
</ul>
<h3><strong>Threading</strong></h3>
<p>Wherever possible the program runs in a single thread environment with the exception of waiting for a file to complete.</p>
<h3><strong>Command-line</strong></h3>
<p>Two command-line options are available.<span style="color: #ff0000;"> -autostart</span> and <span style="color: #ff0000;">-minimize<br />
</span><br />
These will automatically start the monitoring process and minimize the application to the tray.  The commandline options will<br />
only function using the last settings you ran the program with (saved settings).</p>
<p>ex. <em>dirmon.exe -autostart -minimize</em></p>
<h3><strong>Extensions</strong></h3>
<p>There are no periods in front of the extensions, its just a list separated by spaces, EX. bat gif jpg</p>
Note: There is a file embedded within this post, please visit this post to download the file.
<p><a href="http://www.brothersoft.com/"><img src="http://www.brothersoft.com/info/linktous/88x31_blue.gif" border="0" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/04/directory-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Curvy Corners Mootools Version</title>
		<link>http://www.devclarity.com/2010/04/curvy-corners-mootools/</link>
		<comments>http://www.devclarity.com/2010/04/curvy-corners-mootools/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 22:03:19 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Files]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=476</guid>
		<description><![CDATA[What is CurvyCorners? A free JavaScript library for creating gorgeous rounded corners for HTML block elements i.e. DIVs. Supports anti-aliasing, borders and background images. Currently Firefox, Safari and Chrome have limited support for the proposed CSS3 border-radius selector. This is an awesome library, simply include the script tag and code your css with CSS3 rounded [...]]]></description>
			<content:encoded><![CDATA[<h2>What is CurvyCorners?</h2>
<p>A free JavaScript library for creating gorgeous rounded corners for HTML block elements i.e. DIVs. Supports anti-aliasing, borders and background images.</p>
<p>Currently Firefox, Safari and Chrome have limited support for the proposed CSS3 border-radius selector.</p>
<p><strong>This is an awesome library, simply include the script tag and code your css with CSS3 rounded corner properties and it automatically detects IE and rounds the corners for you.</strong></p>

<p><strong>Script tag:</strong><pre class="brush: xml; title: ; notranslate">&lt;script src=&quot;js/curvycorners-moo.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre>

<strong>Sample CSS:</strong><pre class="brush: css; title: ; notranslate">.navbar {width: 980px; border: 1px solid #555; -moz-border-radius:3px; -webkit-border-radius:3px; }</pre></p>

<p><strong>For more information please see the authors home page:</strong>
<a href="http://www.curvycorners.net/">http://www.curvycorners.net/</a></p>

<h2>Mootools Version</h2>
<p>There is an <strong>addEvent</strong> inside the Curvy Courners JS module, I replaced this with <a href="http://mootools.net/" target="_blank">Mootools </a>code so it no longer causes a conflict.</p>

Note: There is a file embedded within this post, please visit this post to download the file.]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/04/curvy-corners-mootools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Projects of Intrest</title>
		<link>http://www.devclarity.com/2010/02/projects-of-intrest/</link>
		<comments>http://www.devclarity.com/2010/02/projects-of-intrest/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 20:07:29 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=461</guid>
		<description><![CDATA[PhoneGap is an open source development tool for building (compiled) fast, easy mobile apps with JavaScript.  (iPhone, Android, Palm, Symbian and Blackberry) http://phonegap.com/ MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. http://mootools.net/ MooLego UI is a small, minimal &#38; extensible, Object-Oriented JavaScript User Interface Framework based on [...]]]></description>
			<content:encoded><![CDATA[<p>PhoneGap is an open source development tool for building (compiled) fast, easy mobile apps with JavaScript.  (iPhone, Android, Palm, Symbian and Blackberry)</p>
<p><a href="http://phonegap.com/" target="_blank">http://phonegap.com/</a></p>
<p>MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer.</p>
<p><a href="http://mootools.net/" target="_blank">http://mootools.net/</a></p>
<p>MooLego UI is a small, minimal &amp; extensible, Object-Oriented JavaScript User Interface Framework based on Mootools.</p>
<p><a href="http://ui.moolego.org/" target="_blank">http://ui.moolego.org/</a></p>
<p>Plupload allows you to upload files using HTML5 Gears, Silverlight, Flash, BrowserPlus or normal forms,</p>
<p><a href="http://www.plupload.com/" target="_blank">http://www.plupload.com/</a></p>
<p><strong>APE</strong> is a full-featured <em>OpenSource</em> solution designed for Ajax Push.  (Uses <a href="http://www.mootools.net/" target="_blank">mootools</a> for its server-side JavaScript)</p>
<p><a href="http://www.ape-project.org/" target="_blank">http://www.ape-project.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/02/projects-of-intrest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weather Lookup</title>
		<link>http://www.devclarity.com/2010/02/weather-lookup/</link>
		<comments>http://www.devclarity.com/2010/02/weather-lookup/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 08:18:45 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=452</guid>
		<description><![CDATA[Silverlight enabled weather forecaster]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.devclarity.com/wp-content/uploads/2010/02/WeatherLookup.png"><a href="http://beta.devclarity.com/silverlight/weather/" target="_blank"><img class="alignnone size-full wp-image-454" title="WeatherLookup" src="http://www.devclarity.com/wp-content/uploads/2010/02/WeatherLookup1.png" alt="" width="515" height="343" /></a><br />
</a></p>
<p>Lately, I have been exploring the <a href="http://www.microsoft.com/silverlight/" target="_blank">Silverlight</a> technology.  I wanted to share with you the <a href="http://beta.devclarity.com/silverlight/weather/" target="_blank">application</a> I wrote with this interesting technology.</p>
<p>The application is another weather forecaster, you type in your zip code and it goes out to <a href="http://wunderground.com/" target="_blank">Weather Underground</a> and grabs the data to build the page.</p>
<p>Download the source: <a href="http://github.com/hazlema/Silverlight-Weather-Lookup">HERE</a><br />
Preview the app: <a href="http://beta.devclarity.com/silverlight/weather/">HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/02/weather-lookup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Weather Information from Yahoo Web Services in C#</title>
		<link>http://www.devclarity.com/2010/02/yahoo-webservices/</link>
		<comments>http://www.devclarity.com/2010/02/yahoo-webservices/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 18:01:38 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Files]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=435</guid>
		<description><![CDATA[I wrote an article sometime back on The CodeProject that dealt with Geolocation. I wrote this back in 2005 so I figured I would update my post here and add a new twist. The new code still uses YAHOO&#8217;s web services, however this time I am writing it in LINQ and C#. So lets dive [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote an article sometime back on <a href="http://codeproject.com/" target="_blank">The CodeProject</a> that dealt with <a href="http://www.codeproject.com/KB/ajax/GeoLocation.aspx" target="_blank">Geolocation</a>.  I wrote this back in 2005 so I figured I would update my post here and add a new twist.</p>

The new code still uses YAHOO&#8217;s web services, however this time I am writing it in LINQ and C#.  So lets dive right in shall we?  This is a simple console based program, you can re do it as a webapp or a forms program, but the concept is the same.
<pre class="brush: csharp; title: ; notranslate">using System;
using System.Linq;
using System.Xml.Linq;

namespace YahooWeather
{
    class Program
    {
        public string appid { get; set; }

        public Program(string appid)
        {
            this.appid = appid;
        }
    }
}</pre>

<p>It starts off as any program does with a basic namespace deceleration, as you can see there is one property called appid that gets set when you create an instence of this class.</p>
<pre class="brush: csharp; title: ; notranslate">        public string GetWoeid(string Zipcode)
        {
            string query = String.Format(&quot;http://where.yahooapis.com/v1/places.q('{0}')?appid={1}&quot;, Zipcode, this.appid);
            XDocument thisDoc = XDocument.Load(query);
            XNamespace ns = &quot;http://where.yahooapis.com/v1/schema.rng&quot;;

            return (from i in thisDoc.Descendants(ns + &quot;place&quot;) select i.Element(ns + &quot;woeid&quot;).Value).First();
        }</pre>
<p>This function loads up <strong>http://where.yahooapis.com/v1/</strong> and grabs the XML stream with LINQ then returns the woeid.  The woeid is a unique number that identifies your location</p>
<p>Next, we have to get the weather RSS feed from Yahoo using your woeid</p>
<pre class="brush: csharp; title: ; notranslate">        public void GetWeather(string Zipcode)
        {
            string query = String.Format(&quot;http://weather.yahooapis.com/forecastrss?w={0}&quot;, GetWoeid(Zipcode));
            XDocument thisDoc = XDocument.Load(query);
            XNamespace ns = &quot;http://xml.weather.yahoo.com/ns/rss/1.0&quot;;
            var results = (from i in thisDoc.Descendants(ns + &quot;forecast&quot;) select i);

            foreach (var thisResult in results)
                Console.WriteLine(&quot;{0}, it will be {1} with a low of {2} and a high of {3}&quot;, thisResult.Attribute(&quot;date&quot;).Value, thisResult.Attribute(&quot;text&quot;).Value, thisResult.Attribute(&quot;low&quot;).Value, thisResult.Attribute(&quot;high&quot;).Value);
        }</pre>

<p>This function prints out the current weather conditions.  In the same way we got the woeid (parsing xml/rss), we are getting the weather results.  All thats left now is the main procedure.</p>
<pre class="brush: csharp; title: ; notranslate">        static void Main(string[] args)
        {
            Program thisYahoo = new Program(&quot;&lt;strong&gt;YOUR KEY HERE&lt;/strong&gt;&quot;);

            Console.Write(&quot;Enter your zip code please: &quot;);
            thisYahoo.GetWeather(Console.ReadLine());

            Console.Write(&quot;Press Enter...&quot;);
            Console.ReadLine();
        }</pre>
<br />
<p><a href="http://developer.yahoo.com/geo/geoplanet/" target="_blank">View the Yahoo GeoPlanet API documentation</a> |
<a href="http://developer.yahoo.com/weather/" target="_blank">View the Yahoo Weather API documentation</a> |
<a href="https://login.yahoo.com/config/login_verify2?.src=devnet&#038;.done=http%3A%2F%2Fdeveloper.apps.yahoo.com%2Fwsregapp%2F" target="_blank">Get a Yahoo application ID</a></p>

Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/02/yahoo-webservices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect Blogengine Links to WordPress (running on a Rackspace Cloud)</title>
		<link>http://www.devclarity.com/2010/01/redirect-blogengine-links-to-wordpress-running-on-a-rackspace-cloud/</link>
		<comments>http://www.devclarity.com/2010/01/redirect-blogengine-links-to-wordpress-running-on-a-rackspace-cloud/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 05:20:51 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[BlogEngine / Wordpress]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=409</guid>
		<description><![CDATA[Problem I used to have a web server running IIS and BlogEngine.  When people come to my new site looking for an article they will get a nasty error.  For one the site is now PHP.  I wanted to remap all the files from the old URL&#8217;s to the new URL&#8217;s. Old URL http://www.devclarity.com/blog/post/topic.aspx New [...]]]></description>
			<content:encoded><![CDATA[<h2>Problem</h2>
<p>I used to have a web server running IIS and BlogEngine.  When people come to my new site looking for an article they will get a nasty error.  For one the site is now PHP.  I wanted to remap all the files from the old URL&#8217;s to the new URL&#8217;s.</p>

<p><strong>Old URL</strong><br />

http://www.devclarity.com/blog/post/topic.aspx</p>

<p><strong>New URL</strong><br />

http://www.devclarity.com/index.php?s=topic</p>

<p>I figured I would just put a redirect in <strong>.htaccess</strong>, but little did I know that the web server sees the .aspx extension of the old URL and processes it on the IIS server.  Thanks a lot Rackspace Cloud <img src='http://www.devclarity.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<h2>Solution</h2>
I created a Web.Config file to send all errors to a page called Redirect.aspx.
<pre class="brush: xml; title: ; notranslate">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
&lt;configuration&gt;
    &lt;system.web&gt;
		&lt;customErrors defaultRedirect=&quot;redirect.aspx&quot; mode=&quot;On&quot;&gt;   
		    &lt;error statusCode=&quot;500&quot; redirect=&quot;redirect.aspx&quot; /&gt;
		    &lt;error statusCode=&quot;404&quot; redirect=&quot;redirect.aspx&quot; /&gt;
		    &lt;error statusCode=&quot;403&quot; redirect=&quot;redirect.aspx&quot; /&gt; 
		&lt;/customErrors&gt;
    &lt;/system.web&gt;
&lt;/configuration&gt;</pre>


Then, redirect.aspx takes the URL and modifies the aspx extension to a html one and redirects the new link back to the page.
<pre class="brush: vb; title: ; notranslate">&lt;%
	Dim ASPXPath as String
	
	ASPXPath = Request.QueryString(&quot;aspxerrorpath&quot;) 
	ASPXPath = ASPXPath.Replace(&quot;aspx&quot;, &quot;html&quot;).replace(&quot;-&quot;, &quot;+&quot;)
%&gt;
&lt;html&gt;
&lt;body&gt;
	&lt;h3&gt;Please wait, your content has moved&lt;/h3&gt;
	
	&lt;script&gt;
		window.location='&lt;%=ASPXPath%&gt;';
	&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>


<p><strong>Old URL:</strong><br />

http://www.devclarity.com/blog/post/topic.aspx</p>

<p><strong>New URL:</strong><br />

http://www.devclarity.com/blog/post/topic.html</p>

So now, the only thing was setting up the .htaccess file to handle the old url.  What this rule does, is it takes the topic out of the passed URL and reroutes it to the WordPress search engine.
<pre class="brush: plain; title: ; notranslate">RewriteRule ^blog/post/([\w-\+]+)\.html$ /index.php?s=$1 [R=permanent,L]</pre>

<h2>Result</h2>
<p><a href="http://www.devclarity.com/blog/post/Backup-Mover.aspx">http://www.devclarity.com/blog/post/Backup-Mover.aspx</a> now takes you to the remapped Backup Mover page on the WordPress site.</p>

(Of course, this post is new so if you use the old backup-mover link you will see this page first with the backup mover article under it <img src='http://www.devclarity.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> )]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/01/redirect-blogengine-links-to-wordpress-running-on-a-rackspace-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Contact Us</title>
		<link>http://www.devclarity.com/2010/01/5-contact-us/</link>
		<comments>http://www.devclarity.com/2010/01/5-contact-us/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 21:50:00 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Contact Us]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=252</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[[contact-form-7]
]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/01/5-contact-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Configuration Help</title>
		<link>http://www.devclarity.com/2010/01/email-configuration-help/</link>
		<comments>http://www.devclarity.com/2010/01/email-configuration-help/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 21:44:54 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Knowladge Base]]></category>

		<guid isPermaLink="false">http://www.devclarity.com/?p=247</guid>
		<description><![CDATA[  Sorry, this content is out of date]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.devclarity.com/wp-content/uploads/2010/01/Email-Box-Open.png"><img class="alignnone size-full wp-image-573" title="Email Box Open" src="http://www.devclarity.com/wp-content/uploads/2010/01/Email-Box-Open.png" alt="" width="128" height="128" /></a>  Sorry, this content is out of date</div>
]]></content:encoded>
			<wfw:commentRss>http://www.devclarity.com/2010/01/email-configuration-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

