<?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>wangarific</title>
	<atom:link href="http://www.wangarific.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wangarific.com</link>
	<description>the internet is always open</description>
	<lastBuildDate>Mon, 08 Mar 2010 14:52:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rewrite &amp; Rename Filenames using Javascript</title>
		<link>http://www.wangarific.com/rewrite-rename-filenames-using-javascript/</link>
		<comments>http://www.wangarific.com/rewrite-rename-filenames-using-javascript/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 14:52:01 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Blog Intermediates]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=459</guid>
		<description><![CDATA[Ever need to a search and replace with a folder of filenames? You saved a bunch of images from your camera as Steve and Michelle Wedding when you meant Stephen and Michelle? Or you put the wrong date or otherwise need to change a lot of filenames and don&#8217;t feel like doing it manually?
Fortunately you [...]<p><a href="http://www.wangarific.com/rewrite-rename-filenames-using-javascript/">Rewrite &#038; Rename Filenames using Javascript</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Ever need to a search and replace with a folder of filenames? You saved a bunch of images from your camera as Steve and Michelle Wedding when you meant Stephen and Michelle? Or you put the wrong date or otherwise need to change a lot of filenames and don&#8217;t feel like doing it manually?</p>
<p>Fortunately you can use javascript to do the work for you. Javascript is very versatile and perfect for these quick and dirty solutions where you don&#8217;t need something complex, just a little script that goes into a directory and replaces all instances of one word, or string, with another. I adapted this script from <a href="http://www.codeproject.com/KB/scripting/RenameAllFiles.aspx">this snippet</a>.</p>
<p>In this example, I&#8217;m going to rename all the files that end in <strong>.gif.png</strong> so that they end in just <strong>.gif.</strong> The code will replace all instances of .gif.png, even if they appear in the middle of a filename (so image.gif.png.jpg will be renamed image.gif.jpg), but I know that in my directory this won&#8217;t happen because of the files I have inside of it. </p>
<p>Again, this is a quick and dirty script, no error checking and is not a robust solution. Remember to make your edits to the values before you run it.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">var sFolderName, sStringToFind;
var nResult;
//////////////////////////////////////////
// Set these values
sFolderName = &quot;C:\\Temp\\Images&quot;; // use directory containing image
sStringToFind = &quot;.gif.png&quot;;
sStringToReplace = &quot;.gif&quot;;
//////////////////////////////////////////
&nbsp;
nResult = renameFiles(sFolderName, sStringToFind, sStringToReplace);
WScript.Echo(nResult + &quot; files renamed&quot;);
&nbsp;
//    Function Name:    renameFiles
//    Parameters:
//    sFolder:    Folder Name (use double backslashes)
//    sString1:    String to search for
//    sString2:    String to replace
//    Returns:    Number of files renamed
&nbsp;
function renameFiles(sFolder, sString1, sString2) {
    var oFSO, oFile, oFolder;
    var re, index;
    var sName;
    var i = 0, n;
&nbsp;
    oFSO = new ActiveXObject(&quot;Scripting.FileSystemObject&quot;);
    oFolder = oFSO.GetFolder(sFolder);
    try {
        index = new Enumerator(oFolder.Files);
        for (; !index.atEnd(); index.moveNext()) {
            oFile = index.item();
            sName = oFile.Name;
            n = sName.indexOf(sString1);
            if(n != -1) {
                try {
                    sName = sName.substring(0, n) + sString2 + 
                            sName.substr(n + sString1.length);
                    oFile.Name = sName;
                    i++;
                } catch(e) {
                    WScript.Echo(&quot;Can not rename file &quot; + sName + &quot; because\n&quot; + e.description);
                }
            }
        }
    }
    catch(e) {
        WScript.Echo(&quot;Could not access folder &quot; + sFolder + &quot; because\n&quot; + e.description);
        return 0;
    } finally {
        oFSO = null;
        re = null;
        return i;
    }
}</pre></div></div>

<p>There you have it, a quick search and replace javascript for renaming files.</p>
<p><a href="http://www.wangarific.com/rewrite-rename-filenames-using-javascript/">Rewrite &#038; Rename Filenames using Javascript</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/rewrite-rename-filenames-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the Difference Between .GIF and .PNG</title>
		<link>http://www.wangarific.com/whats-the-difference-between-gif-and-png/</link>
		<comments>http://www.wangarific.com/whats-the-difference-between-gif-and-png/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:48:00 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Blog Beginners]]></category>
		<category><![CDATA[Images]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=456</guid>
		<description><![CDATA[If you&#8217;ve played with Yahoo! YSlow&#8217;s Smush.it tool, you&#8217;ll probably notice that it will often convert .GIF files into .PNG files. Ever wonder why they do that? It&#8217;s because PNG files are patent-free (though the underlying GIF patent, the LZW algorithm, expired in 2003), contain alpha channels, gamma correction, and two dimensional interlacing. All that [...]<p><a href="http://www.wangarific.com/whats-the-difference-between-gif-and-png/">What&#8217;s the Difference Between .GIF and .PNG</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve played with <a href="http://developer.yahoo.com/yslow/smushit/">Yahoo! YSlow&#8217;s Smush.it</a> tool, you&#8217;ll probably notice that it will often convert .GIF files into .PNG files. Ever wonder why they do that? It&#8217;s because PNG files are patent-free (though the underlying GIF patent, the LZW algorithm, expired in 2003), contain alpha channels, gamma correction, and two dimensional interlacing. All that gibberish means translates into a better version of a GIF file that also compresses better, about 5% to 25% according to the <a href="http://www.w3.org/QA/Tips/png-gif">W3.org</a>.</p>
<p>For you trivia enthusiasts out there, GIF stands for graphics interchange format and was introduced in 1987. It uses the Lempel-Ziv-Welch (LZW) lossless data compression technique that was patented in 1985. CompuServe got into a tiff (haha, get it? <a href="http://en.wikipedia.org/wiki/Tagged_Image_File_Format">TIFF</a>?) Unisys, which held the patent, and the PNG standard was developed.</p>
<p>PNG stands for portable network graphics and nowadays it&#8217;s widely accepted as an image format by all major browsers. As a result, it&#8217;s becoming more popular as it is generally smaller than GIFs by 5-25%.</p>
<blockquote><p>You may be wondering where the JPEG, joint photographic experts group, fits in all this. It differs from GIF and PNG in that it&#8217;s a lossy compression algorithm (whereas GIF/PNG are lossless) designed for photos.</p></blockquote>
<p>There you have it, the differences between GIF and PNG (and JPEG!).</p>
<p><a href="http://www.wangarific.com/whats-the-difference-between-gif-and-png/">What&#8217;s the Difference Between .GIF and .PNG</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/whats-the-difference-between-gif-and-png/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Track Clicks with Google Analytics</title>
		<link>http://www.wangarific.com/how-to-track-clicks-with-google-analytics/</link>
		<comments>http://www.wangarific.com/how-to-track-clicks-with-google-analytics/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 13:03:36 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Blog Intermediates]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google Website Optimizer]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=445</guid>
		<description><![CDATA[Google Analytics makes it dead simple to track outbound clicks on your site.
First, you need to put your Google Analytics code above the content of your page (or at the very least, before any link you want to track). The function call you will add to the OnClick javascript hook will reference a function in [...]<p><a href="http://www.wangarific.com/how-to-track-clicks-with-google-analytics/">How to Track Clicks with Google Analytics</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Google Analytics makes it dead simple to track outbound clicks on your site.</p>
<p>First, you need to put your Google Analytics code above the content of your page (or at the very least, before any link you want to track). The function call you will add to the OnClick javascript hook will reference a function in the Analytics code so it needs to be loaded by the time you get to the link. Page speed principles recommend that you put javascript at the bottom, since there can be a little lag in loading it, but in this case there&#8217;s no way around it. Google is pretty fast anyway so I consider this a fair tradeoff for additional data.</p>
<p>Then, simply add this bit to your links  (if you use Google Website Optimizer, you&#8217;ll notice it uses the same mechanism to track clicks):</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">onClick='javascript: pageTracker._trackPageview(&quot;/click/tracking&quot;)'</pre></div></div>

<p>You can change <strong>/click/tracking</strong> to anything you want. I like to bucket my tracking into different areas and change the term <strong>tracking</strong> to something that makes sense to me. If it&#8217;s affiliate clicks I might put <strong>/click/aff/company/tag</strong> and programmatically change the company name or the tag based on the page. (you can use php to do this).</p>
<p>Let&#8217;s say you want to track a click on an affiliate link on a particular page, you could do this if you were running Wordpress:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">onClick='javascript: pageTracker._trackPageview(&quot;/click/affiliate/&lt;?php echo $post-&gt;ID; ?&gt;&quot;)'</pre></div></div>

<p>which would resolve to:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">onClick='javascript: pageTracker._trackPageview(&quot;/click/affiliate/XXXX&quot;)'</pre></div></div>

<p>with XXXX as the ID of the post.</p>
<p>(remember, to run PHP in a post on Wordpress you&#8217;ll need to download a php execution plugin and turn off comments for security)</p>
<p>How do you review the data? Go into your Google Analytics and each of the clicks is considered a pageview. I review it by going to Content -> Top Content &#8211; View full Report and then searching on the term <strong>/click/</strong>. Advanced users of Analytics now recognize that you can start assigning goal values and whatnot but I generally avoid that because I don&#8217;t find that adds value.</p>
<p><a href="http://www.wangarific.com/how-to-track-clicks-with-google-analytics/">How to Track Clicks with Google Analytics</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/how-to-track-clicks-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Make a Favicon</title>
		<link>http://www.wangarific.com/how-to-make-a-favicon/</link>
		<comments>http://www.wangarific.com/how-to-make-a-favicon/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 01:26:59 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Blog Beginners]]></category>
		<category><![CDATA[Brand]]></category>
		<category><![CDATA[Favicon]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=370</guid>
		<description><![CDATA[What is a favicon? It&#8217;s short for favorites icon and it&#8217;s an icon that represents your site in places like your bookmarks, in shortcuts, etc. It&#8217;s a chance for you to distinguish yourself in your reader&#8217;s list of favorites sites and they&#8217;re ridiculously easy to make.
Is a favicon important?It&#8217;s not crucial to the success of [...]<p><a href="http://www.wangarific.com/how-to-make-a-favicon/">How to Make a Favicon</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>What is a favicon?</strong> It&#8217;s short for favorites icon and it&#8217;s an icon that represents your site in places like your bookmarks, in shortcuts, etc. It&#8217;s a chance for you to distinguish yourself in your reader&#8217;s list of favorites sites and they&#8217;re ridiculously easy to make.</p>
<p><strong>Is a favicon important?</strong>It&#8217;s not crucial to the success of your site but it&#8217;s always good to differentiate yourself from everyone else as much as possible. A favicon will appear in bookmarks, it will appear in aggregators, and in the end it really doesn&#8217;t take much time&#8230; so you mighta s well make it.</p>
<p><strong>How do you make a favicon?</strong> If you have a site logo, you can use that, or try to find something distinguishable. A favicon is usually 16&#215;16, 32&#215;32, or 64&#215;64 pixel image in the .ico format. You can use other formats but the .ico format is the most supported filetype.</p>
<p>After you&#8217;ve created the file, simply upload the favicon.ico (use that filename just to make it easy on yourself) to your root directory and many browsers will automatically pick it up. Internet Explorer will automatically load it.</p>
<p>Then, add this in the header of your website (this lets all the other browsers, the ones who don&#8217;t automatically load it, know where your favicon is):</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;SHORTCUT ICON&quot; href=&quot;http://www.website.com/myicon.ico&quot;/&gt;</pre></div></div>

<p>That&#8217;s it, as easy as pie.</p>
<p><a href="http://www.wangarific.com/how-to-make-a-favicon/">How to Make a Favicon</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/how-to-make-a-favicon/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Sell Luxury Goods</title>
		<link>http://www.wangarific.com/how-to-sell-luxury-goods/</link>
		<comments>http://www.wangarific.com/how-to-sell-luxury-goods/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 14:50:03 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Don't Miss]]></category>
		<category><![CDATA[Entrepreneur]]></category>
		<category><![CDATA[Psychology]]></category>
		<category><![CDATA[Sales]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=441</guid>
		<description><![CDATA[I&#8217;ve always been fascinated by salespeople because they have one of the hardest jobs in the world &#8211; selling something. If you&#8217;ve ever read sales techniques, you&#8217;ll know that it&#8217;s hardly a hard science but there are many things deeply rooted in psychology. In this WSJ article titled How to Sell a $35,000 Watch in [...]<p><a href="http://www.wangarific.com/how-to-sell-luxury-goods/">How to Sell Luxury Goods</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been fascinated by salespeople because they have one of the hardest jobs in the world &#8211; selling something. If you&#8217;ve ever read sales techniques, you&#8217;ll know that it&#8217;s hardly a hard science but there are many things deeply rooted in psychology. In this WSJ article titled <a href="http://online.wsj.com/article/SB10001424052970203517304574304322707126380.html">How to Sell a $35,000 Watch in a Recession</a>, luxury goods sales consultant Jean-Marie Brücker shares a few tips on how to sell high-end luxury goods in a recession. We&#8217;re not talking $300 Coach purses, we&#8217;re talking watches that cost as much as cars.</p>
<p>The strategies mentioned in the article:</p>
<ul>
<li>The macaroon technique &#8211; where you sandwich the price of an item between two statements about its benefits. &#8220;Madam, this timepiece (or diamond or handbag) comes from our finest workshop <strong>[benefit]</strong> and it has a value of $10,000 <strong>[price]</strong>. If you buy it, your children are sure to enjoy it for generations to come <strong>[benefit]</strong>.&#8221;</li>
<li>Say value rather than price.</li>
<li>Don&#8217;t offer a discount, offer gifts.</li>
<li>Positively distract other members of the party so they don&#8217;t get bored and drag the group away (since the target customer of a high end watch is typically a man, the article discusses how to show a watch to his wife so she doesn&#8217;t get bored).</li>
</ul>
<p>It&#8217;s a quick read too so it should only take you a few minutes to complete.</p>
<p><a href="http://www.wangarific.com/how-to-sell-luxury-goods/">How to Sell Luxury Goods</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/how-to-sell-luxury-goods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thesis Theme Review</title>
		<link>http://www.wangarific.com/thesis-theme-review/</link>
		<comments>http://www.wangarific.com/thesis-theme-review/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 13:27:49 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Blog Beginners]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=365</guid>
		<description><![CDATA[This is a guest post from Pete of BibleMoneyMatters.com.
When you&#8217;re starting a blog, one of the first things that you&#8217;ll need to do after purchasing a domain name and setting up WordPress  is to give your new website a design by choosing a WordPress theme.  While most can probably agree that having a [...]<p><a href="http://www.wangarific.com/thesis-theme-review/">Thesis Theme Review</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p><em>This is a guest post from Pete of <a href="http://www.biblemoneymatters.com">BibleMoneyMatters.com</a>.</em></p>
<p>When you&#8217;re starting a blog, one of the first things that you&#8217;ll need to do after purchasing a domain name and setting up WordPress  is to give your new website a design by choosing a WordPress theme.  While most can probably agree that <a href="http://www.wangarific.com/customizing-your-theme-is-overrated/">having a premium theme from the get-go isn&#8217;t essential</a> (there are more important things like creating good content, <a href="http://www.wangarific.com/how-to-easily-split-test-adsense-block-palettes/">testing and optimizing ads</a> and promoting your site), I think most can agree that some premium themes will give you a leg up by giving you a superior look and feel, in addition to having more functionality available behind the scenes.</p>
<p>When I first started my blog at <a href="http://www.biblemoneymatters.com">BibleMoneyMatters.com</a> I was using a free template that I had found through one of the free WordPress theme websites.  While the theme I chose was functional, it certainly didn&#8217;t give me the flexibility to make the kind of changes i wanted to, to take my site to the next level.   After doing some research, I discovered a theme that did everything I wanted, and more. <a href="http://www.shareasale.com/r.cfm?b=202503&#038;u=134881&#038;m=24570&#038;urllink=&#038;afftrack=">The Thesis WordPress Theme.</a></p>
<p><center><a target="_blank" href="http://www.shareasale.com/r.cfm?b=202503&#038;u=134881&#038;m=24570&#038;urllink=&#038;afftrack="><img src="http://www.shareasale.com/image/24570/468x60.png" alt="Thesis Theme for WordPress:  Options Galore and a Helpful Support Coummunity" border="0"></a></center></p>
<h1>The Thesis WordPress Theme</h1>
<p><a href="http://www.shareasale.com/r.cfm?b=202503&#038;u=134881&#038;m=24570&#038;urllink=&#038;afftrack=">Thesis Theme</a> is a WordPress website framework that gives you a ton of flexibility to create the blog that you&#8217;ve always wanted.  It gives great design, easily changeable layouts, optimized SEO (without the use of plugins) and a great support community.</p>
<p>Chris Pearson, designer of Thesis talks about why he designed the template:</p>
<blockquote><p><em>I built the Thesis Theme because I wanted a framework that had it all—killer typography, a dynamically resizable layout, intelligent code, airtight optimization, and tons of flexibility. Now, after months of field testing, I’m confident enough to offer it to those of you who have come to expect nothing but the finest themes from me.</em></p></blockquote>
<p>The theme definitely has those things and more.   let&#8217;s look at a few of the reasons why I love the Thesis theme.</p>
<h2>Superior Design And Backend Options</h2>
<p>One of the first thing I noticed when looking around at themes is that so many of them try to do too much with the design, and become a bit too busy while not allowing you easy access to change things you don&#8217;t like.  Thesis on the other hand has a nice clean design out of the box, has great readability, and if you like to tinker &#8211;  is easy to customize to your own tastes.   The Thesis back end tools allow you to  change fonts,  swap colors, update menus and change the complete layout of the site.  You can have 1, 2 or 3 columns and order your columns however you want.   Just about anything about your site that you might want to change, you can do it through the Thesis design and site options menus.  If you&#8217;re a more advanced user, you can also customize your site further using CSS and PHP, which is made readily accessible through another menu option in the WordPress Dashboard.    If you&#8217;re not as advanced there are hundreds of tutorials available that will walk you through more advanced changes.</p>
<h2>SEO Optimized Site Framework</h2>
<p>One of the great things about the Thesis theme is that it is search engine friendly out of the box.  While WordPress sites in general do well with search engines, there are things you can do with your theme to help improve your SEO.   For example, Thesis has the ability to specify each post’s title tags, keywords and meta tags without a plugin like All in One SEO Pack.    Thesis also gives you the option to use canonical urls so that the search engines can index your content correctly.  All of these things can be done with other plugins, but having them built into your theme is even better.</p>
<h2>Easy Upgrades</h2>
<p>One thing that sets Thesis above a lot of other themes is the fact that it is so easy to upgrade the theme when a new version comes out.  To customize all you have to do is change two files,  <em>custom.css</em> and <em>custom_functions.php</em>.  If you&#8217;re upgrading the theme you just download the &#8220;custom&#8221; directory with those files in it, upgrade the theme, and then re-upload those files to the new version of the theme.  Done.  Upgrades only take a few minutes at most.</p>
<p>With a lot of other themes to make changes to your site design and layout you  have to modify the theme&#8217;s core files.  If you have to do an upgrade, you then have to figure out all the modifications you made to the theme&#8217;s core files, and then re-modify the theme once you&#8217;ve upgraded.  That could take hours or days depending upon how many changes you&#8217;ve made to customize your site!</p>
<h2>Support Community Second To None</h2>
<p>One of the biggest selling points of the theme in my eyes is that it has a support community second to none.  When you purchase the theme you get access to the member&#8217;s only forum where experts in Thesis are always ready to give a helping hand. In addition there are hundreds of Thesis tutorials out on the web that will help you do anything from change a background image to adding a header.   If you&#8217;ve dreamed of doing something, someone else has already done it &#8211; and put out a tutorial on how it was done.</p>
<h2>Thesis Theme Isn&#8217;t Perfect</h2>
<p>As you can tell I&#8217;m a big fan of the Thesis theme, however, it does have its flaws.    The theme does have a learning curve for newer users, especially if you want to do anything beyond the basic site changes.  The theme uses what is called &#8220;hooks&#8221;, a framework that allows you to insert your own custom code or programming just about anywhere in your theme.   If you want to use hooks, you&#8217;ll want to find a good tutorial on them, like the ones found on <a href="http://thesishooks.com/">http://thesishooks.com/</a>.   Another downside of the theme is that if you don&#8217;t opt to customize your installation, the basic Thesis theme can have a pretty bland, vanilla look.  So many people use the theme that your site can get lost in the shuffle if you don&#8217;t make changes.</p>
<h2>Plugins To Make Thesis Even Better</h2>
<p>While Thesis is great, it doesn&#8217;t address every need that users might have.    Two plugins that I would suggest every new user of Thesis install once they buy the theme are:</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/thesis-openhook/">Thesis Openhooks</a>:  This plugin makes it easer for all users to use the hooks framework, and allows you to insert ads, text, graphics, etc anywhere in the theme that you want.</li>
<li><a href="http://wordpress.org/extend/plugins/thesis-settings-export/">Thesis Import/Export</a>:  This plugin allows you to export your Thesis theme and openhooks settings in case your site has a catastrophic failure and you need to re-import them from backup.</li>
</ul>
<h2>Conclusion</h2>
<p>Since becoming a blogger I&#8217;ve tested out and installed countless themes on the websites that I operate.  None of the themes, however, have come close to the Thesis Theme for WordPress when it comes to design options, optimized SEO, usability and flexibility.  If you&#8217;re looking for a theme to use on your site, I wouldn&#8217;t hesitate to purchase your copy of the theme.</p>
<p><center><a target="_blank" href="http://www.shareasale.com/r.cfm?b=202503&#038;u=134881&#038;m=24570&#038;urllink=&#038;afftrack="><img src="http://www.shareasale.com/image/24570/468x60.png" alt="Thesis Theme for WordPress:  Options Galore and a Helpful Support Coummunity" border="0"></a></center></p>
<p><a href="http://www.wangarific.com/thesis-theme-review/">Thesis Theme Review</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/thesis-theme-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Please Rob Me (dot com)</title>
		<link>http://www.wangarific.com/please-rob-me-dot-com/</link>
		<comments>http://www.wangarific.com/please-rob-me-dot-com/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 00:52:32 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Foursquare]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=434</guid>
		<description><![CDATA[There&#8217;s a funny little site called Please Rob Me that scans the stream of Twitter updates for people checking into various places on Foursquare. When you check into a place on Foursquare, you aren&#8217;t home&#8230; so presumably a thief could rob you! While created in jest, it underscores an important point a lot of people [...]<p><a href="http://www.wangarific.com/please-rob-me-dot-com/">Please Rob Me (dot com)</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a funny little site called <a href="http://pleaserobme.com/">Please Rob Me</a> that scans the stream of Twitter updates for people checking into various places on <a href="http://foursquare.com/">Foursquare</a>. When you check into a place on Foursquare, you aren&#8217;t home&#8230; so presumably a thief could rob you! While created in jest, it underscores an important point a lot of people miss: when you share so much information with the world, there are bound to be consequences.</p>
<p>While I have yet to see a news story about someone&#8217;s home being burglarized because a thief saw them check into a bar down the street, you know it will happen one day.</p>
<p>Be smart.</p>
<p><a href="http://www.wangarific.com/please-rob-me-dot-com/">Please Rob Me (dot com)</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/please-rob-me-dot-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add a Reddit Button to Your Site</title>
		<link>http://www.wangarific.com/how-to-add-a-reddit-button-to-your-site/</link>
		<comments>http://www.wangarific.com/how-to-add-a-reddit-button-to-your-site/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 17:40:43 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Blog Intermediates]]></category>
		<category><![CDATA[Reddit]]></category>
		<category><![CDATA[Social News]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=419</guid>
		<description><![CDATA[As your site grows, the likelihood that it gets submitted to a social news site like Reddit also grows. When that happens, you&#8217;ll want to get it as many upvotes as possible so that it can become more popular. The best way to do that is leverage your existing visitors, hoping they will have Reddit [...]<p><a href="http://www.wangarific.com/how-to-add-a-reddit-button-to-your-site/">How to Add a Reddit Button to Your Site</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></description>
			<content:encoded><![CDATA[<p>As your site grows, the likelihood that it gets submitted to a social news site like <a href="http://www.reddit.com/">Reddit</a> also grows. When that happens, you&#8217;ll want to get it as many upvotes as possible so that it can become more popular. The best way to do that is leverage your existing visitors, hoping they will have Reddit accounts and having them give you the votes to put you over the top. It&#8217;s as simple as putting in this snippet of code to your page.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://www.reddit.com/button.js?t=1&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>The cost of putting a button like this on a page is that it&#8217;s an extra javascript call to an external server. While the cost may seem minimal, it&#8217;s enough that you probably don&#8217;t want to put this type of button on every post in the hopes that someone clicks on it. If you just want a standard static reddit button, you can do this instead:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://www.reddit.com/submit&quot;</span> onclick<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;window.location = 'http://www.reddit.com/submit?url=' + encodeURIComponent(window.location); return false&quot;</span><span style="color: #339933;">&gt;</span> <span style="color: #339933;">&lt;</span>img src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://www.reddit.com/static/spreddit7.gif&quot;</span> alt<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;submit to reddit&quot;</span> border<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;0&quot;</span> <span style="color: #339933;">/&gt;</span> <span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>It&#8217;ll put something like this:<br />
<a href="http://www.reddit.com/submit" onclick="window.location = 'http://www.reddit.com/submit?url=' + encodeURIComponent(window.location); return false"> <img src="http://www.reddit.com/static/spreddit7.gif" alt="submit to reddit" border="0" /></a></p>
<p>If you want to make it a bit faster, download the image and store it locally.</p>
<p><a href="http://www.wangarific.com/how-to-add-a-reddit-button-to-your-site/">How to Add a Reddit Button to Your Site</a> is a post from: <a href="http://www.wangarific.com">wangarific</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wangarific.com/how-to-add-a-reddit-button-to-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Password Protect a Web Directory</title>
		<link>http://www.wangarific.com/how-to-password-protect-a-web-directory/</link>
		<comments>http://www.wangarific.com/how-to-password-protect-a-web-directory/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 13:20:39 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Blog Intermediates]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.wangarific.com/?p=427</guid>
		<description><![CDATA[