<?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>Lance Bledsoe &#187; Tech Geek</title>
	<atom:link href="http://www.lancebledsoe.com/category/techgeek/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lancebledsoe.com</link>
	<description>Data junkie. Math geek. Rock star.</description>
	<lastBuildDate>Wed, 21 Jul 2010 10:48:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to turn off WordPress smart quotes</title>
		<link>http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/</link>
		<comments>http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 18:43:02 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[smart]]></category>
		<category><![CDATA[smartquotes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=1138</guid>
		<description><![CDATA[Smart quotes (aka curly quotes) are what most word processor programs insert into your document when you type the quote marks key.  They're pretty to look at, but they cause problems if you use them in a text document that contains code intended to be read by a computer.  That's normally not a problem since [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/wordpress-api-key/' rel='bookmark' title='Permanent Link: Understanding the WordPress API key'>Understanding the WordPress API key</a></li>
<li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-move-your-wordpress-blog-to-a-new-host/' rel='bookmark' title='Permanent Link: How to move your WordPress blog to a new host'>How to move your WordPress blog to a new host</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/" title="Permanent link to How to turn off WordPress smart quotes"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/wordpress-icon-150x150.jpg" width="150" height="150" alt="Post image for How to turn off WordPress smart quotes" /></a>
</p><p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } -->Smart quotes (aka curly quotes) are what most word processor programs insert into your document when you type the quote marks key.  They're pretty to look at, but they cause problems if you use them in a text document that contains code intended to be read by a computer.  That's normally not a problem since text editors don't create smart quotes when you type the quote key, but if you happen to find a cool chunk of code on a blog somewhere and you cut and paste it into a text file, if the blog you're copying the code from uses curly quotes, then you have a problem.</p>
<p>The bad news is, WordPress automatically converts all quote symbols to smart quotes, so if you post code snippets to your blog and they have quote marks in them, anyone who attempts to copy and paste that code into their own text file is going to have problems running the code.  The good news is, you can turn this feature off.</p>
<p>There are actually a few different ways to do this, including <a href="http://peterc.org/2008/71-how-to-disable-smart-curly-quotes-on-wordpress-25.html" target="_blank">modifying the functions.php file</a> in your theme folder, or <a href="http://bavotasan.com/tutorials/removing-the-smart-quotes-from-your-wordpress-blog/" target="_blank">modifying the default-filters.php file</a> in your wp-includes folder.  But I like creating a separate php file and making it into a WordPress plugin, as described in <a href="http://journal.brokenclay.org/wp_archives/2004/06/15/smart-quote-fix/" target="_blank">this post by Katja Stokley</a>. Create a text file called TurnOffSmartQuotes.php and put this in it:</p>
<blockquote><p>&lt;?php<br />
/*<br />
Plugin Name: TurnOffSmartQuotes<br />
Plugin URI:<br />
Description: Stops WordPress from converting your quote symbols into smartquotes. The three lines below stop the smartquote conversion in 1) your post content, 2) your comments, and 3) your post excerpts.<br />
Version: 0.1<br />
Author: Katja Stokley<br />
Author URI:<br />
*/<br />
remove_filter('the_content', 'wptexturize');<br />
remove_filter('comment_text', 'wptexturize');<br />
remove_filter('the_excerpt', 'wptexturize');<br />
?&gt;</p></blockquote>
<p>Then just upload this file to your wp-content/plugins folder, login to your WordPress dashboard, select "Plugins," and activate your new plugin.  You've just turned off smart quotes on your WordPress blog.</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/wordpress-api-key/' rel='bookmark' title='Permanent Link: Understanding the WordPress API key'>Understanding the WordPress API key</a></li>
<li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-move-your-wordpress-blog-to-a-new-host/' rel='bookmark' title='Permanent Link: How to move your WordPress blog to a new host'>How to move your WordPress blog to a new host</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to align your custom header with your navbar</title>
		<link>http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/</link>
		<comments>http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:31:09 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[navbar]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=1125</guid>
		<description><![CDATA[If you use the Thesis theme for your WordPress blog, you might have created your own custom header image for your site (kind of like mine, above).  If so, you may have noticed that your header image doesn't seem to align correctly with your navbar.  To get your header image and your navbar aligned, you'll [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/' rel='bookmark' title='Permanent Link: Removing the whitespace at the top of your Thesis blog'>Removing the whitespace at the top of your Thesis blog</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/' rel='bookmark' title='Permanent Link: How to turn off WordPress smart quotes'>How to turn off WordPress smart quotes</a></li>
<li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/" title="Permanent link to How to align your custom header with your navbar"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/wordpress-icon-150x150.jpg" width="150" height="150" alt="Post image for How to align your custom header with your navbar" /></a>
</p><p>If you use the Thesis theme for your WordPress blog, you might have created your own custom header image for your site (kind of like mine, above).  If so, you may have noticed that your header image doesn't seem to align correctly with your navbar.  To get your header image and your navbar aligned, you'll need to add a few lines of code to your Thesis custom.css file.  It's a simple fix, and here's how you do it.</p>
<p>Click on the Thesis Custom Styling option under the Appearance menu in your dashboard sidebar.  This allows you to make changes to your Thesis custom.css file.  At the bottom of this file, insert the following lines of code.</p>
<blockquote><p>/* The following lines control the alignment of your header image with your navbar. As long as these are all set to zero, your header image will be aligned with your navbar on the right and left, with no whitespace between the header image and the navbar.<br />
*/<br />
.custom #header {<br />
padding-bottom: 0;<br />
padding-top: 0;<br />
padding-left: 0;<br />
border-bottom: 0;<br />
}</p></blockquote>
<p>Save your changes, reload your blog page, and your header image and navbar will be aligned.</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/' rel='bookmark' title='Permanent Link: Removing the whitespace at the top of your Thesis blog'>Removing the whitespace at the top of your Thesis blog</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/' rel='bookmark' title='Permanent Link: How to turn off WordPress smart quotes'>How to turn off WordPress smart quotes</a></li>
<li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing the whitespace at the top of your Thesis blog</title>
		<link>http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/</link>
		<comments>http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 17:38:51 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[whitespace]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=1116</guid>
		<description><![CDATA[If you use the Thesis theme for your WordPress blog, you might have created your own custom header image for your site (kind of like mine, above).  If so, you may have noticed that there's a little bit of whitespace between the top of your browser window and the top of your header image (kind [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/' rel='bookmark' title='Permanent Link: How to align your custom header with your navbar'>How to align your custom header with your navbar</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/' rel='bookmark' title='Permanent Link: How to turn off WordPress smart quotes'>How to turn off WordPress smart quotes</a></li>
<li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/" title="Permanent link to Removing the whitespace at the top of your Thesis blog"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/wordpress-icon-150x150.jpg" width="150" height="150" alt="Post image for Removing the whitespace at the top of your Thesis blog" /></a>
</p><p>If you use the Thesis theme for your WordPress blog, you might have created your own custom header image for your site (kind of like mine, above).  If so, you may have noticed that there's a little bit of whitespace between the top of your browser window and the top of your header image (kind of like mine, above).  If you want to get rid of that whitespace, you'll need to add a few lines of code to your Thesis custom.css file.  It's a simple fix, and here's how you do it.</p>
<p>Click on the Thesis Custom Styling option under the Appearance menu in your dashboard sidebar.  This allows you to make changes to your Thesis custom.css file.  At the bottom of this file, insert the following lines of code.</p>
<blockquote><p>/* The following lines control the whitespace at the very top of the page (i.e., above the header image). If you set the padding-top property value to 0 (zero), your header image will be flush with the top of the page.<br />
*/<br />
.custom #page {<br />
padding-top: 0;<br />
}</p></blockquote>
<p>You can also set the padding-top property value to something else if you actually want some amount of space between the top of the browser window and the top of your header image.</p>
<p>Save your changes, reload your blog page, and the whitespace will be gone.</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/' rel='bookmark' title='Permanent Link: How to align your custom header with your navbar'>How to align your custom header with your navbar</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-turn-off-wordpress-smart-quotes/' rel='bookmark' title='Permanent Link: How to turn off WordPress smart quotes'>How to turn off WordPress smart quotes</a></li>
<li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Vonage vs. VOIPo</title>
		<link>http://www.lancebledsoe.com/vonage-voipo/</link>
		<comments>http://www.lancebledsoe.com/vonage-voipo/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 14:00:15 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[hostgator]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[voipo]]></category>
		<category><![CDATA[vonage]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=1056</guid>
		<description><![CDATA[A few months ago I compared my three-year experience with Vonage to my 6 month experience with Skype.  After my Skype phone died, I decided to try VOIPo, the new VOIP service from HostGator, and wanted to share my experience with them. VOIPo customer service can't be beat.  Though it's not available 24/7 (only 9-7 [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/skype-vonage/' rel='bookmark' title='Permanent Link: Skype vs. Vonage'>Skype vs. Vonage</a></li>
<li><a href='http://www.lancebledsoe.com/understanding-skype/' rel='bookmark' title='Permanent Link: Understanding Skype'>Understanding Skype</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/vonage-voipo/" title="Permanent link to Vonage vs. VOIPo"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/11/phone.127x128.jpeg" width="127" height="128" alt="Post image for Vonage vs. VOIPo" /></a>
</p><p>A few months ago I compared <a href="http://www.lancebledsoe.com/skype-vonage/" target="_blank">my three-year experience with Vonage to my 6 month experience with Skype</a>.  After my Skype phone died, I decided to try <a href="http://www.voipo.com/">VOIPo</a>, the new VOIP service from HostGator, and wanted to share my experience with them.</p>
<p>VOIPo customer service can't be beat.  Though it's not available 24/7 (only 9-7 Central, M-F), they're really good.  Minimal hold times, the reps are technically competent, and they speak to you without a script, just like you're a real person.  The few times I spoke with Vonage customer service, they were always trying to sell me some additional feature that I didn't want.</p>
<p>The prices are pretty similar.  I give VOIPo a slight edge here, but only a slight one.  It takes a little work to cut thru all the verbiage to get to the real price of the service, but once you do, you find the following:</p>
<ul>
<li><strong>VOIPo's introductory rate comes out to $11.25 a month</strong>, once you include the $36 annual taxes and fees, and assuming you buy a whole year of service at one time.</li>
<li><strong>VOIPo's standard rate comes out to $19.67 a month</strong>, again including the $36/year taxes/fees and the annual contract, though according to VOIPo existing customers can always take advantage of any special promotional pricing that's being offered.  So if the $11.25 a month price is available, you can always buy another year (or more) at that price.</li>
<li><strong>Vonage's standard rate</strong> for its most popular plan with an annual contract (which they call <a href="http://www.vonage.com/features_available_options.php?feature=annual_prepay" target="_blank">Annual Prepay</a>) is $239.99 a year (including all taxes and fees), which comes out to $20 a month, almost identical to VOIPo's standard annual price.  Though Vonage publicizes this plan as costing $24.99 a month (with no annual contract), my experience with Vonage was that once taxes and fees were added in, that price was never less than $30 a month for me; if you get this plan with Vonage, I definitely recommend the Annual Prepay option.</li>
</ul>
<p>When it comes to call quality, I found Vonage and VOIPo to be almost identical.  Both provide high-quality sound, every bit as good as any standard landline.  They also both have a nice online interface which you can use to check voicemail, set call forwarding, etc., though I found VOIPo's to be much simpler and easier to use.</p>
<p><strong>Bottom line:</strong> I like VOIPo and plan to stick with it, though Vonage's features, quality, and prices are comparable, especially if you go with their Annual Prepay option.</p>
<p>I suspect at some point my wife and I will drop the landline altogether and just use our cell phones, but right now it's still handy to have a VOIP home phone line, especially since a) I work a lot from home and b) we have three teen/pre-teen sons and don't plan on getting cell phones for them.</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/skype-vonage/' rel='bookmark' title='Permanent Link: Skype vs. Vonage'>Skype vs. Vonage</a></li>
<li><a href='http://www.lancebledsoe.com/understanding-skype/' rel='bookmark' title='Permanent Link: Understanding Skype'>Understanding Skype</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/vonage-voipo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to change OpenOffice chart colors</title>
		<link>http://www.lancebledsoe.com/openoffice-chart-colors-how-to-change/</link>
		<comments>http://www.lancebledsoe.com/openoffice-chart-colors-how-to-change/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 17:48:32 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[openoffice]]></category>
		<category><![CDATA[pie]]></category>
		<category><![CDATA[spreadsheet]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=1044</guid>
		<description><![CDATA[As a frequent user of the OpenOffice apps, including the Calc spreadsheet (oo's version of Excel), I occasionally need to create a chart from some of my data.  Typically, I'll create a pie or bar chart in Calc, then copy and paste it into Writer (oo's version of MS Word).  Recently I created two pie [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/seth-godin-charts-and-clear-communication/' rel='bookmark' title='Permanent Link: Seth Godin, charts, and clear communication'>Seth Godin, charts, and clear communication</a></li>
<li><a href='http://www.lancebledsoe.com/directvs-deceptive-charts/' rel='bookmark' title='Permanent Link: DirecTV&#8217;s deceptive charts'>DirecTV&#8217;s deceptive charts</a></li>
<li><a href='http://www.lancebledsoe.com/the-big-giant-enormous-grasshopper/' rel='bookmark' title='Permanent Link: the big, giant, enormous grasshopper'>the big, giant, enormous grasshopper</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/openoffice-chart-colors-how-to-change/" title="Permanent link to How to change OpenOffice chart colors"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/PieChart.195x150.jpg" width="195" height="150" alt="Post image for How to change OpenOffice chart colors" /></a>
</p><p>As a frequent user of the OpenOffice apps, including the Calc spreadsheet (oo's version of Excel), I occasionally need to create a chart from some of my data.  Typically, I'll create a pie or bar chart in Calc, then copy and paste it into Writer (oo's version of MS Word).  Recently I created two pie charts from similar data and I needed the colors of the pie slices to be the same for corresponding categories in each chart; in other words, I had a Category A in Chart 1 and a Category A in Chart 2, and I wanted the pie chart slices for Category A to be the same color of blue in both Chart 1 and Chart 2.</p>
<p>I didn't figure this would be a huge problem, especially since when I created the charts in Calc, it gave the corresponding categories the same colors without me having to do anything.  Unfortunately, when I copied and pasted the charts into Writer, Writer changed the colors!  Wha?</p>
<p>I figured I would just manually set the proper color for each pie slice, but it's not at all obvious how to do this simple task, and the oo help documentation isn't that helpful.  Here's what you do:</p>
<ol>
<li>After pasting your chart into Writer, <strong>single-click the chart</strong> to make sure it's selected.</li>
<li><strong>Double-click the chart</strong> to put it in "Editing mode."</li>
<li><strong>Single-click on the pie</strong>; this will make a series of small green squares appear on your pie slices, one green square per pie slice.</li>
<li><strong>Single click on one of the pie slices</strong>; this will select that one pie slice.</li>
<li><strong>Double-click on this same "selected" pie slice</strong>; this will bring up the "Data Point" dialog box.  Select the "Area" tab and select "Color" in the dropdown box.</li>
<li>Select the color you want the pie slice to have and click Save.</li>
</ol>
<p>Repeat steps 4-6 for each pie slice and you're done.  The key is to single-click and/or double-click at the right time and place; if you don't, you won't be able to get to the correct "Data Point" dialog box.</p>
<p>I'm not sure why Writer decided to spontaneously change my chart colors this way, but if any oo programmers happen to be reading, this might be a good thing to fix in the next release.</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/seth-godin-charts-and-clear-communication/' rel='bookmark' title='Permanent Link: Seth Godin, charts, and clear communication'>Seth Godin, charts, and clear communication</a></li>
<li><a href='http://www.lancebledsoe.com/directvs-deceptive-charts/' rel='bookmark' title='Permanent Link: DirecTV&#8217;s deceptive charts'>DirecTV&#8217;s deceptive charts</a></li>
<li><a href='http://www.lancebledsoe.com/the-big-giant-enormous-grasshopper/' rel='bookmark' title='Permanent Link: the big, giant, enormous grasshopper'>the big, giant, enormous grasshopper</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/openoffice-chart-colors-how-to-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Ubuntu-Windows dual boot disappeared!</title>
		<link>http://www.lancebledsoe.com/ubuntu-windows-dual-boot-disappeared/</link>
		<comments>http://www.lancebledsoe.com/ubuntu-windows-dual-boot-disappeared/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:04:21 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[dual]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=998</guid>
		<description><![CDATA[I've been thoroughly pleased with Ubuntu, the open-source operating system I've been using for the past several months.  I installed it on both my home and work computers, keeping my original Windows XP installations on both machines so I could easily boot into either system at startup, and the whole process has been mostly painless. [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/migrating-from-windows-to-linux/' rel='bookmark' title='Permanent Link: Migrating from Windows to Linux'>Migrating from Windows to Linux</a></li>
<li><a href='http://www.lancebledsoe.com/finally-trying-out-linux/' rel='bookmark' title='Permanent Link: Finally trying out Linux'>Finally trying out Linux</a></li>
<li><a href='http://www.lancebledsoe.com/i-want-my-windows-xp/' rel='bookmark' title='Permanent Link: I want my Windows XP'>I want my Windows XP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/ubuntu-windows-dual-boot-disappeared/" title="Permanent link to My Ubuntu-Windows dual boot disappeared!"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/ubuntu.160x160.jpg" width="160" height="160" alt="Post image for My Ubuntu-Windows dual boot disappeared!" /></a>
</p><p>I've been thoroughly pleased with Ubuntu, the open-source operating system I've been using for the past several months.  I installed it on both my <a href="http://www.lancebledsoe.com/finally-trying-out-linux/" target="_blank">home</a> and <a href="http://www.lancebledsoe.com/migrating-from-windows-to-linux/" target="_blank">work</a> computers, keeping my original Windows XP installations on both machines so I could easily boot into either system at startup, and the whole process has been mostly painless.</p>
<p>A few days ago, however, I needed to boot my work computer to Windows and was surprised to discover that the initial screen which displays the boot options no longer included Windows!  I managed to fight back my initial panic, as I couldn't imagine that my entire Windows system would just spontaneously disappear; I suspected that it was still there, but for some reason I just couldn't access it from the boot screen.  It turned out that this was in fact the case, and it also turned out that the fix was pretty simple.</p>
<p>If your PC is set up to dual boot Ubuntu and Windows, you have a file on your computer called <code>menu.lst</code> (that's an "L" after the dot) that generates the boot screen when you turn your computer on, displaying all of the boot options available to you.  Every time you update your Ubuntu system (e.g., with security updates from the Update Manager), Ubuntu automatically adds your latest Ubuntu installation to the top of this list, leaving the others below it in case you need to boot to a previous version after an update.  Your Windows boot option is the last one in the list, and sometimes it gets pushed so far down the list that it's no longer visible from the boot screen.  All you have to do is comment out a few lines from your menu.lst file, thus removing a few of the older Ubuntu versions from the list, and the Windows option will move back up to where it's visible.</p>
<p>From within Ubuntu, open up a terminal window and type <code>sudo gedit /boot/grub/menu.lst</code>, and enter your admin password.  Towards the bottom of the file, you'll see a comment that says "## End Default Options ##" followed by several blocks of code that look something like this:</p>
<blockquote><p>title        Ubuntu 9.04, kernel 2.6.28-15-generic<br />
uuid        16cba197-6288-4261-8bbd-367d837e9f61<br />
kernel        /boot/vmlinuz-2.6.28-15-generic root=UUID=16cba197-6288-4261-8bbd-367d837e9f61 ro quiet splash<br />
initrd        /boot/initrd.img-2.6.28-15-generic<br />
quiet</p>
<p>title        Ubuntu 9.04, kernel 2.6.28-15-generic (recovery mode)<br />
uuid        16cba197-6288-4261-8bbd-367d837e9f61<br />
kernel        /boot/vmlinuz-2.6.28-15-generic root=UUID=16cba197-6288-4261-8bbd-367d837e9f61 ro  single<br />
initrd        /boot/initrd.img-2.6.28-15-generic</p>
<p>title        Ubuntu 9.04, kernel 2.6.28-14-generic<br />
uuid        16cba197-6288-4261-8bbd-367d837e9f61<br />
kernel        /boot/vmlinuz-2.6.28-14-generic root=UUID=16cba197-6288-4261-8bbd-367d837e9f61 ro quiet splash<br />
initrd        /boot/initrd.img-2.6.28-14-generic<br />
quiet</p>
<p>title        Ubuntu 9.04, kernel 2.6.28-14-generic (recovery mode)<br />
uuid        16cba197-6288-4261-8bbd-367d837e9f61<br />
kernel        /boot/vmlinuz-2.6.28-14-generic root=UUID=16cba197-6288-4261-8bbd-367d837e9f61 ro  single<br />
initrd        /boot/initrd.img-2.6.28-14-generic</p></blockquote>
<p>Each of these "Ubuntu blocks" displays a separate line on your boot screen that allows you to boot into a version of Ubuntu. Farther down, at the very bottom of the file, you should see something that looks like this:</p>
<blockquote><p># This entry automatically added by the Debian installer for a non-linux OS<br />
# on /dev/sda1<br />
title        Microsoft Windows XP Home Edition<br />
root        (hd0,0)<br />
savedefault<br />
makeactive<br />
chainloader    +1</p></blockquote>
<p>This "Windows block" is what displays the line on your boot screen that allows you to boot into Windows.  Move back up in the file and find the last few "Ubuntu blocks." Choose several of these blocks, and in front of each line of the block, type a "#" in order to comment out that line.  (Be sure not to comment out the Ubuntu block at the top of the list, as that's your most current version.)  I commented out four blocks in my <code>menu.lst</code> file, making each block look like this:</p>
<blockquote><p>#title        Ubuntu 9.04, kernel 2.6.27-14-generic (recovery mode)<br />
#uuid        16cba197-6288-4261-8bbd-367d837e9f61<br />
#kernel        /boot/vmlinuz-2.6.27-14-generic #root=UUID=16cba197-6288-4261-8bbd-367d837e9f61 ro  single<br />
#initrd        /boot/initrd.img-2.6.27-14-generic</p></blockquote>
<p>Then save the menu.lst file and reboot your computer.  Your boot screen should once again display the Windows boot option, and you're back in business.</p>
<p>[For more info, check out <a href="http://ubuntuforums.org/showthread.php?t=152674" target="_blank">this post</a> and <a href="http://ubuntuforums.org/showthread.php?t=952045" target="_blank">this post</a>, both from the Ubuntu forums.]</p>
<p><strong>Update (10/26/2009):</strong> It appears that this bug has been fixed in one of the recent Ubuntu updates (I'm currently running Ubuntu version 9.04, Jaunty Jackalope.)  Now when my menu.lst file gets long, my boot screen allows me to scroll down to boot options that don't fit on the screen (e.g., the Windows boot option).  I have two computers running Ubuntu with the dual boot option, and both now allow scrolling on the boot screen.  Thanks, Ubuntu software development people!</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/migrating-from-windows-to-linux/' rel='bookmark' title='Permanent Link: Migrating from Windows to Linux'>Migrating from Windows to Linux</a></li>
<li><a href='http://www.lancebledsoe.com/finally-trying-out-linux/' rel='bookmark' title='Permanent Link: Finally trying out Linux'>Finally trying out Linux</a></li>
<li><a href='http://www.lancebledsoe.com/i-want-my-windows-xp/' rel='bookmark' title='Permanent Link: I want my Windows XP'>I want my Windows XP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/ubuntu-windows-dual-boot-disappeared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A simple tweak for the WordPress YARPP plugin</title>
		<link>http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/</link>
		<comments>http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 11:01:24 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[blank]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[YARPP]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=943</guid>
		<description><![CDATA[Someone recently asked me to make a small change to the Yet Another Related Posts Plugin (YARPP) which she had recently added to her WordPress site.  (For each of your published posts, YARPP will display a list of related posts, the idea being that if readers enjoyed the post they just read, they might want [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/' rel='bookmark' title='Permanent Link: How to align your custom header with your navbar'>How to align your custom header with your navbar</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/' rel='bookmark' title='Permanent Link: Removing the whitespace at the top of your Thesis blog'>Removing the whitespace at the top of your Thesis blog</a></li>
<li><a href='http://www.lancebledsoe.com/merge-wordpress-blogs/' rel='bookmark' title='Permanent Link: Merging WordPress blogs'>Merging WordPress blogs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/" title="Permanent link to A simple tweak for the WordPress YARPP plugin"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/wordpress-icon-150x150.jpg" width="150" height="150" alt="Post image for A simple tweak for the WordPress YARPP plugin" /></a>
</p><p>Someone recently asked me to make a small change to the Yet Another Related Posts Plugin (YARPP) which she had recently added to her WordPress site.  (For each of your published posts, YARPP will display a list of related posts, the idea being that if readers enjoyed the post they just read, they might want to read a related post as well.)</p>
<p><a href="http://www.lancebledsoe.com/wp-content/uploads/2009/08/YARPPspace.png"><img class="alignleft size-medium wp-image-964" title="YARPPspace" src="http://www.lancebledsoe.com/wp-content/uploads/2009/08/YARPPspace-300x167.png" alt="YARPPspace" width="300" height="167" /></a>The desired change was simply to remove the blank line between the "Related posts" heading and the first related post.  It turns out that this can be done by inserting some code in the YARPP settings page, but unless you're somewhat familiar with CSS, it's not immediately obvious what code to insert.  Here's what you do:</p>
<p>After you install YARPP, click on the "Related Posts (YARPP)" link under the Settings heading in the left sidebar.   On the YARPP settings page, scroll down to the "Display options for your website" section about halfway down and find the heading that says "Before/after related entries."</p>
<p><a href="http://www.lancebledsoe.com/wp-content/uploads/2009/08/BeforeAfter.png"><img class="alignnone size-full wp-image-965" title="BeforeAfter" src="http://www.lancebledsoe.com/wp-content/uploads/2009/08/BeforeAfter.png" alt="BeforeAfter" width="443" height="100" /></a></p>
<p>The first box next to this heading contains an opening paragraph tag (<code>&lt;p&gt;</code>) and you want to add some CSS code to make that tag look like this:</p>
<p><code>&lt;p style="margin-bottom:0;"&gt;</code></p>
<p>Click the "Update options" button at the bottom of the screen and your list of related posts will now look like this:</p>
<p><a href="http://www.lancebledsoe.com/wp-content/uploads/2009/08/YARPPnospace.png"><img class="alignnone size-medium wp-image-972" title="YARPPnospace" src="http://www.lancebledsoe.com/wp-content/uploads/2009/08/YARPPnospace-300x153.png" alt="YARPPnospace" width="300" height="153" /></a></p>
<p>[If you're interested in more details on how this little bit of CSS works its magic, take a look <a href="http://www.recommendedwebtools.com/index.php/293/removing-line-breaksspace-beforeafter-h1-tags/" target="_blank">here</a> and <a href="http://www.webmasterworld.com/forum21/2841.htm" target="_blank">here</a>.]</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/how-to-align-header-navbar-thesis-wordpress/' rel='bookmark' title='Permanent Link: How to align your custom header with your navbar'>How to align your custom header with your navbar</a></li>
<li><a href='http://www.lancebledsoe.com/how-to-remove-whitespace-padding-margin-header-thesis-wordpress/' rel='bookmark' title='Permanent Link: Removing the whitespace at the top of your Thesis blog'>Removing the whitespace at the top of your Thesis blog</a></li>
<li><a href='http://www.lancebledsoe.com/merge-wordpress-blogs/' rel='bookmark' title='Permanent Link: Merging WordPress blogs'>Merging WordPress blogs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Skype vs. Vonage</title>
		<link>http://www.lancebledsoe.com/skype-vonage/</link>
		<comments>http://www.lancebledsoe.com/skype-vonage/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 10:54:00 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[hostgator]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[voip]]></category>
		<category><![CDATA[voipo]]></category>
		<category><![CDATA[vonage]]></category>

		<guid isPermaLink="false">http://www.bledsoetech.com/?p=133</guid>
		<description><![CDATA[We used Vonage as our home phone service for about 3 years, and for the most part were pretty pleased.  I initially decided to try Vonage because they offered a phone line with unlimited local and long distance calling for about half what I was paying my previous phone provider, BellSouth ($30/mo vs. $50-60/mo).  While [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/vonage-voipo/' rel='bookmark' title='Permanent Link: Vonage vs. VOIPo'>Vonage vs. VOIPo</a></li>
<li><a href='http://www.lancebledsoe.com/understanding-skype/' rel='bookmark' title='Permanent Link: Understanding Skype'>Understanding Skype</a></li>
<li><a href='http://www.lancebledsoe.com/how-come-my-cell-phone-can-access-the-internet-anywhere-but-my-laptop-has-to-be-in-a-coffee-shop/' rel='bookmark' title='Permanent Link: How Come My Cell Phone Can Access the Internet Anywhere, but My Laptop Has to Be In A Coffee Shop?'>How Come My Cell Phone Can Access the Internet Anywhere, but My Laptop Has to Be In A Coffee Shop?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/skype-vonage/" title="Permanent link to Skype vs. Vonage"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/SkypeBlue150x150.png" width="150" height="150" alt="Post image for Skype vs. Vonage" /></a>
</p><p>We used Vonage as our home phone service for about 3 years, and for the most part were pretty pleased.  I initially decided to try Vonage because they offered a phone line with unlimited local and long distance calling for about half what I was paying my previous phone provider, BellSouth ($30/mo vs. $50-60/mo).  While the initial setup took a little work, and transferring my existing phone number to Vonage was a bit of a hassle, the price was definitely better and Vonage had a lot of neat features included at no extra charge (voicemail, caller ID, online account access, etc.).</p>
<p>A few months ago, however, we dropped Vonage and switched our home phone service to Skype.  (Check out <a href="http://www.lancebledsoe.com/understanding-skype/" target="_blank">this post</a> for the basics you need to know to understand Skype.)  The primary reason I switched was the price ($5.50/mo for Skype vs. $30/mo for Vonage), and up until a few days ago, when my Skype phone died, I was relatively pleased.  Using  Skype as your home phone service may not be for everyone, however, so here are a few things to keep in mind based on my experience:</p>
<p><strong>1. Unless you want to use your computer and headset to make all of your phone calls, you need a special Skype phone.</strong> I've been using a GE 28310 that I bought used but a few days ago it suddenly stopped working.  The tech support for the GE 28310 is remarkably bad (as I noted in <a href="http://www.amazon.com/review/R235GNUI9RG3XO/ref=cm_cr_rdp_perm" target="_blank">my Amazon review</a>) and after suggesting that I unplug and re-plug everything (which I'd already done), they simply recommended that I purchase another one.  I don't think so.</p>
<p><strong>2. In order to receive calls from regular phones, you have to purchase a Skype phone number.</strong> As I noted in <a href="http://www.lancebledsoe.com/understanding-skype/" target="_blank">my earlier post</a>:</p>
<blockquote><p>Technically, [a Skype phone number] costs $60 a year, but they give you a 50% discount if you also purchase a “subscription,” which costs $3 a month and allows you to make unlimited local and long distance calls to any phone number in the US.  Without a subscription, you have to purchase Skype credit, and pay a few cents a minute for every outgoing call you make (incoming calls are free).</p></blockquote>
<p>If you're planning to use Skype as your home phone service, I'd definitely recommend the subscription service, which also includes free voicemail.  If you use the subscription service, your total yearly cost for your phone service is approximately $66 ($30 for the phone number, and $36 for unlimited "minutes"), or roughly $5.50 per month.  Compared to Vonage's $30/month (that's roughly what it comes out to be when you add in the extra monthly Vonage fees), that's quite a savings.</p>
<p><strong>3. Overall, the sound quality I've experienced using Skype has been good</strong>, but it seems to vary depending on exactly what type of call I'm on.  Sound quality on every Skype-to-Skype call I've ever made has been fantastic.  When I'm talking to a regular phone using my Skype phone, the sound quality is good, but there's sometimes a slight delay.  And when I'm talking to a regular phone on my computer headset, I notice an occasional dropping of words (like, 2-3 seconds worth), either from my end or theirs.  I'm not sure if this has something to do with the headset I'm using (a Logitech) or what, but I never noticed it when using the Skype phone.</p>
<p><strong>4. Like Vonage, Skype is a VOIP service.</strong> This means that it's completely dependent on your high-speed internet connection.  If your internet connection is slow, noisy, or prone to frequent outages, your Skype service (or any other VOIP service) will be as well.  We have cable broadband thru Time-Warner Cable, and while the price is maybe a little steep, I have no complaints about the service, and we've have almost no outages.</p>
<p>Since my wife and I both have cell phones, and since my primary communications medium, even for work (I work from home) has become email, I've found that we use our home phone less and less.  We could probably ditch it altogether and just use cell phones, but so far a VOIP solution has been cheaper.</p>
<p>There have been numerous stories in the news lately speculating that eBay, which owns Skype, is planning to sell it, maybe sometime in 2010, and recently <a href="http://www.bloomberg.com/apps/news?pid=newsarchive&amp;sid=aY840DkfmyKY" target="_blank">there's been news</a> about eBay (which owns Skype) having legal problems with the people who apparently still own Skype's underlying technology, <a href="http://www.techcrunch.com/2009/07/31/ebay-in-litigation-with-skype-founders-over-key-technology/" target="_blank">none of which gives me a real warm feeling</a> about Skype's future.</p>
<p>There are other VOIP providers, including HostGator, which recently began offering VOIP service at an annual plan introductory rate of $8.25/month (which works out to $11.25/month with fees) thru a company called <a href="http://www.voipo.com/index.shtml" target="_blank">VOIPo</a>.  HostGator has provided my web hosting services for a while, and I've been absolutely amazed at their technical support; it's hands-down the best I've ever experienced, from anyone.  So after my GE Skype phone quit on me, I called VOIPo to sign up for their service.  I'll write about my experience with them in a future post.</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/vonage-voipo/' rel='bookmark' title='Permanent Link: Vonage vs. VOIPo'>Vonage vs. VOIPo</a></li>
<li><a href='http://www.lancebledsoe.com/understanding-skype/' rel='bookmark' title='Permanent Link: Understanding Skype'>Understanding Skype</a></li>
<li><a href='http://www.lancebledsoe.com/how-come-my-cell-phone-can-access-the-internet-anywhere-but-my-laptop-has-to-be-in-a-coffee-shop/' rel='bookmark' title='Permanent Link: How Come My Cell Phone Can Access the Internet Anywhere, but My Laptop Has to Be In A Coffee Shop?'>How Come My Cell Phone Can Access the Internet Anywhere, but My Laptop Has to Be In A Coffee Shop?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/skype-vonage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add clickable icons to your WordPress sidebar</title>
		<link>http://www.lancebledsoe.com/add-icons-wordpress-sidebar/</link>
		<comments>http://www.lancebledsoe.com/add-icons-wordpress-sidebar/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 12:31:53 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=875</guid>
		<description><![CDATA[You know how a lot of WordPress blogs have nifty icons in one of the sidebars, ones you can click on to go to, say, that blogger's twitter or facebook page?  They're really simple to add. It's essentially a 2-step process: Upload the icon image(s) to your media library.  You can find a ton of [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
<li><a href='http://www.lancebledsoe.com/merge-wordpress-blogs/' rel='bookmark' title='Permanent Link: Merging WordPress blogs'>Merging WordPress blogs</a></li>
<li><a href='http://www.lancebledsoe.com/understanding-rss-and-web-feeds/' rel='bookmark' title='Permanent Link: Understanding RSS and Web Feeds'>Understanding RSS and Web Feeds</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/add-icons-wordpress-sidebar/" title="Permanent link to How to add clickable icons to your WordPress sidebar"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/wordpress-icon-150x150.jpg" width="150" height="150" alt="Post image for How to add clickable icons to your WordPress sidebar" /></a>
</p><p>You know how a lot of WordPress blogs have nifty icons in one of the sidebars, ones you can click on to go to, say, that blogger's twitter or facebook page?  They're really simple to add.</p>
<p>It's essentially a 2-step process:</p>
<ol>
<li>Upload the icon image(s) to your media library.  You can find a ton of free icons online.  <a href="http://speckyboy.com/2009/07/20/50-social-service-and-bookmarking-icon-sets-for-bloggers/" target="_blank">Check out</a> <a href="http://www.jonbishop.com/2009/06/27-excellent-free-social-media-icons-sets/" target="_blank">these</a> <a href="http://www.cssreflex.com/2009/06/15-free-awesome-social-bookmark-icons-sets.html" target="_blank">sites</a> for a few examples.</li>
<li>Add a "Text" widget to your sidebar and insert code similar to the following:</li>
</ol>
<blockquote><p>&lt;a href="http://twitter.com/bledsoe"&gt;&lt;img src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/tweeter_48x48.png" /&gt;&lt;/a&gt;<br />
&lt;a href="http://www.facebook.com/lancebledsoe"&gt;&lt;img src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/facebook_48.png" /&gt;&lt;/a&gt;<br />
&lt;a href="mailto:lance@lancebledsoe.com"&gt;&lt;img src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/email_48x48.png" /&gt;&lt;/a&gt;<br />
&lt;a href="http://www.lancebledsoe.com/feed/"&gt;&lt;img src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/rss_48x481.png" /&gt;&lt;/a&gt;</p></blockquote>
<p>Then just change the URLs in the code so that they point to <em>your</em> icons and links (instead of mine).  You may also need to adjust the width of your sidebar or the size of your icons so that they all fit.</p>
<p>And that's it!  So find a few cool-looking icons and go nuts!</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/yarpp-plugin-wordpress-remove-blank-space/' rel='bookmark' title='Permanent Link: A simple tweak for the WordPress YARPP plugin'>A simple tweak for the WordPress YARPP plugin</a></li>
<li><a href='http://www.lancebledsoe.com/merge-wordpress-blogs/' rel='bookmark' title='Permanent Link: Merging WordPress blogs'>Merging WordPress blogs</a></li>
<li><a href='http://www.lancebledsoe.com/understanding-rss-and-web-feeds/' rel='bookmark' title='Permanent Link: Understanding RSS and Web Feeds'>Understanding RSS and Web Feeds</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/add-icons-wordpress-sidebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merging WordPress blogs</title>
		<link>http://www.lancebledsoe.com/merge-wordpress-blogs/</link>
		<comments>http://www.lancebledsoe.com/merge-wordpress-blogs/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 14:00:03 +0000</pubDate>
		<dc:creator>bledsoe</dc:creator>
				<category><![CDATA[Tech Geek]]></category>
		<category><![CDATA[bulkedit]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lancebledsoe.com/?p=545</guid>
		<description><![CDATA[Merging two or more WordPress blogs is a fairly straightforward task.  The exporting and importing steps, which actually copy all of your blog posts from your source blog(s) and move them into your target blog, are handled with just a few clicks of the mouse button.  The planning beforehand and the cleanup afterward take a [...]

<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/categories-permalinks-simple-approach/' rel='bookmark' title='Permanent Link: Using categories and permalinks on your blog: A simple approach'>Using categories and permalinks on your blog: A simple approach</a></li>
<li><a href='http://www.lancebledsoe.com/i-just-converted-my-site-to-wordpress/' rel='bookmark' title='Permanent Link: I just converted my site to WordPress'>I just converted my site to WordPress</a></li>
<li><a href='http://www.lancebledsoe.com/migrating-from-windows-to-linux/' rel='bookmark' title='Permanent Link: Migrating from Windows to Linux'>Migrating from Windows to Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.lancebledsoe.com/merge-wordpress-blogs/" title="Permanent link to Merging WordPress blogs"><img class="post_image alignleft remove_bottom_margin" src="http://www.lancebledsoe.com/wp-content/uploads/2009/07/wordpress-icon-150x150.jpg" width="150" height="150" alt="Post image for Merging WordPress blogs" /></a>
</p><p>Merging two or more WordPress blogs is a fairly straightforward task.  The exporting and importing steps, which actually copy all of your blog posts from your source blog(s) and move them into your target blog, are handled with just a few clicks of the mouse button.  The planning beforehand and the cleanup afterward take a little more effort, but the whole process is still a lot easier than you probably expect.</p>
<h3>Before The Merge</h3>
<p><strong>1. Choose your permalink structure.</strong> You want to set your permalink structure before you import the posts from your source blog, because as the posts are imported they'll each be assigned a URL based on the permalink structure you set up in your target blog.  I like the /%postname%/ permalink structure (which I discuss in <a href="http://www.lancebledsoe.com/categories-permalinks-simple-approach/" target="_blank">this post</a>), but you may prefer a different one.</p>
<p><strong>2. Choose your categories.</strong> If you haven't already, now's a good time to plan and choose the categories you'll be using on your target blog.  <a href="http://www.problogger.net/archives/2008/10/03/how-to-choose-categories-for-your-blog/" target="_blank">This post</a> by Ali Hale has some good suggestions.</p>
<h3>The Merge</h3>
<p><strong></strong><strong>3. Export your blog.</strong> This step is as simple as logging in to your WordPress admin, going to the Tools-&gt;Export section, and clicking the "Download Export File" button.  (I'm assuming you want to download posts by "All Authors" but if for some reason you're only exporting posts by one author, choose that author from the dropdown menu before downloading the export file.) WordPress will download a .xml file to your computer.</p>
<h1><strong><a href="../wp-content/uploads/2009/07/Import_shot.png"><img class="alignright" title="Import_shot" src="../wp-content/uploads/2009/07/Import_shot-212x300.png" alt="Import_shot" width="212" height="300" /></a></strong></h1>
<p><strong>4. Import your blog.</strong> Now go to the Tools-&gt;Import section, select "WordPress" (assuming you're importing a WordPress blog), browse to that file, then click the "Upload file and import" button. The next screen gives you some options for "Assigning Authors," and here's <a href="http://markjaquith.wordpress.com/2009/01/14/tip-for-merging-two-wordpress-blogs/" target="_blank">a neat tip from Mark Jaquith</a>: create a new "temporary" user for all of your imported posts.  This will simplify the Cleanup part of the merge process (see below), by allowing you to more easily selected your recently imported posts for bulk editing.   Also, be sure to check the "Download and import file attachments" checkbox; this will insure that any images you included with your posts will get imported as well.</p>
<h3>After The Merge</h3>
<p><strong>5. Start the cleanup process.</strong> This will likely include heavy use of the WordPress "Edit Posts" screen, particularly the Quick Edit and Bulk Edit features.  If you're not familiar with these features, take a look at <a href="http://wordpress.tv/2009/01/14/using-quick-edit-and-bulk-edit-to-manage-your-posts-in-half-the-time/" target="_blank">this excellent one-and-a-half minute video</a> from wordpress.tv.</p>
<p>When updating the categories of your newly added posts in your target blog, the Bulk Edit feature is handy, but it's not perfect.  In particular, as noted <a href="http://codex.wordpress.org/Posts_Edit_SubPanel" target="_blank">here</a>, "Categories and Tags can be ADDED in bulk to a set of Posts, but it is not possible to CHANGE, or DELETE, a Category, or Tag, for those Posts."  This is related to another annoying quirk:  When you choose several previously Uncategorized posts in order to Bulk Edit them so they all are in the same category, WordPress also leaves them in the Uncategorized category.  Since you can't do a bulk edit to delete the Uncategorized category from these posts, you'll have to edit them one-by-one using Quick Edit.</p>
<p>This last step will likely be the longest and most tedious of the whole process, especially if you need to change the (categories or tags) for a lot of posts.  But take heart; after it's over, your new blog will likely be much better organized than the old one(s) ever were.</p>
<p>Once you're satisfied that your blog merge was successful, you'll probably want to forward the domain of your old blog so that it points to your new blog, and also completely delete all of the WordPress files (and the old WordPress database) from your old site.  That way you won't have duplicate copies of your posts at the old site.</p>


<p style="margin-bottom:0em;">Related posts:<ol><li><a href='http://www.lancebledsoe.com/categories-permalinks-simple-approach/' rel='bookmark' title='Permanent Link: Using categories and permalinks on your blog: A simple approach'>Using categories and permalinks on your blog: A simple approach</a></li>
<li><a href='http://www.lancebledsoe.com/i-just-converted-my-site-to-wordpress/' rel='bookmark' title='Permanent Link: I just converted my site to WordPress'>I just converted my site to WordPress</a></li>
<li><a href='http://www.lancebledsoe.com/migrating-from-windows-to-linux/' rel='bookmark' title='Permanent Link: Migrating from Windows to Linux'>Migrating from Windows to Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lancebledsoe.com/merge-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
