<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Perfected Perspectives</title>
	
	<link>http://blog.perfectedperspectives.com</link>
	<description>Photography by Andrew Rodgers</description>
	<lastBuildDate>Fri, 29 Jan 2010 06:00:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/perfspectblog" /><feedburner:info uri="perfspectblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>WordPress Function to Style New or Updated Posts</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/jkhM-WNBsQ4/</link>
		<comments>http://blog.perfectedperspectives.com/2010/wordpress-function-to-style-new-or-updated-posts/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:00:50 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[FAQs Help and Tutorials]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=263</guid>
		<description><![CDATA[Recently I&#8217;ve been doing a lot of WordPress theme customization work, and a client wanted to add those nifty &#8220;new&#8221; or &#8220;updated&#8221; icons to his post. I wrote this simple function to handle it. Simply add this to your theme&#8217;s functions.php file, or if your theme doesn&#8217;t have a functions.php file, create one, and add [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been doing a lot of <a class="zem_slink freebase/en/wordpress" href="http://wordpress.org" title="WordPress" rel="homepage">WordPress</a> theme customization work, and a client wanted to add those nifty &#8220;new&#8221; or &#8220;updated&#8221; icons to his post. I wrote this simple function to handle it.</p>
<p>Simply add this to your theme&#8217;s functions.php file, or if your theme doesn&#8217;t have a functions.php file, create one, and add the following also available as a zip: <a href="http://blog.perfectedperspectives.com/wp-content/uploads/2010/01/pp_get_post_status.zip">Add Style to New/Updates posts</a>.</p>
<p><code>function pp_get_post_status() {<br />
global $post;<br />
//begin config Vars<br />
$old_days = 2; //set how many days a post is considered "new"<br />
$up_days = 1; //set how many days a post is considered "updated"<br />
$new_class = 'new'; //class you want applied for posts considered "new"<br />
$up_class = 'updated'; //class you want applied for posts considered "updated"<br />
$class_tag = ''; //set default class, if any<br />
//end config</code></p>
<p><code><br />
	$cur_time = time(); //get current system time<br />
	$post_age = $cur_time - get_the_time('U', $post-&gt;ID); //determine posts' age<br />
	$up_age = $cur_time - get_the_modified_time('U', $post-&gt;ID); //determine last update age<br />
		if($post_age &lt; ($old_days * 86400)) {$class_tag = ' ' . $new_class;} //if post is newer than n days, apply "new"<br />
		elseif($up_age &lt; ($up_days * 86400)) {$class_tag = ' ' . $up_class;} //if post older than n days, but updated within n days, apply "updated<br />
	echo $class_tag;<br />
}</code></p>
<p>You can call it from within the loop, here is an example where it&#8217;s adding a class to the div containing the post, you could use it in any CSS class declaration. You will notice that it automatically adds the space between any existing classes and the class it adds.</p>
<p><code>&lt;div class="article&lt;?php pp_get_post_status(); ?&gt;"&gt;</code></p>
<p>You could then use the <a class="zem_slink freebase/en/cascading_style_sheets" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" title="Cascading Style Sheets" rel="wikipedia">CSS selector</a>:<br />
 <code>.article .new {style here}</code><br />
for new posts and:<br />
<code>.article .updated {style here}</code><br />
for updated posts.</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/7bf8db07-0861-45ff-96cb-da72edcf6ec9/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=7bf8db07-0861-45ff-96cb-da72edcf6ec9" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related more-info pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2010%2Fwordpress-function-to-style-new-or-updated-posts%2F&amp;linkname=WordPress%20Function%20to%20Style%20New%20or%20Updated%20Posts"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/jkhM-WNBsQ4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2010/wordpress-function-to-style-new-or-updated-posts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2010/wordpress-function-to-style-new-or-updated-posts/</feedburner:origLink></item>
		<item>
		<title>Huntsville Tornado, maybe…</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/DKmdjorxvu8/</link>
		<comments>http://blog.perfectedperspectives.com/2010/huntsville-tornado-maybe/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 01:23:42 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=252</guid>
		<description><![CDATA[So we had a tornado in Huntsville this afternoon, passed by our house, by about a mile or so. Did quite a bit of damage I understand, we were out in the county, ironically directly in the path of the tornado, fortunately it fizzled out before it got to us. I was out in the [...]]]></description>
			<content:encoded><![CDATA[<p>So we had a tornado in Huntsville this afternoon, passed by our house, by about a mile or so. Did quite a bit of damage I understand, we were out in the county, ironically directly in the path of the tornado, fortunately it fizzled out before it got to us.</p>
<p>I was out in the street taking photos, while my sweetie fled to the local storm shelter, which brings me to my main point: I LOVE Google voice, both because it lets me route calls between my contact number, and because it&#8217;s VERY entertaining. Here is the message (according to google voice transcriptions) that Shelli left on my phone. </p>
<blockquote><p> Okay,  and  we  are  in  a  storm  shelter.  Andy  Myer  with  me.  My  i  think  and  I  just  laugh  neat.  I&#8217;m  calling  in  thing  and  myneer.  Anyway,  it&#8217;s  me.  Capital  last  day  to  turn  on  the  death  wheel  drive  9  in  the  back  of  the  house  vote  like  the  last  and  it&#8217;s  got  a  little  refill,  bureck  so  that&#8217;s  what  we  are  he.  Anna,  you  can.  Downtown  take  a  few  weeks  of  those  of  us  while  yet,  hi  bye. </p></blockquote>
<p>I can&#8217;t believe I missed the last day to turn on the death wheel drive!!</p>
<p>Here are some of the pics I took:</p>
<p><a href="http://blog.perfectedperspectives.com/wp-content/uploads/2010/01/IMG_2855.jpg"><img src="http://blog.perfectedperspectives.com/wp-content/uploads/2010/01/IMG_2855.jpg" alt="" title="Tornado #1" width="447" height="640" class="alignnone size-full wp-image-254" /></a></p>
<p><a href="http://blog.perfectedperspectives.com/wp-content/uploads/2010/01/IMG_2862.jpg"><img src="http://blog.perfectedperspectives.com/wp-content/uploads/2010/01/IMG_2862.jpg" alt="Tornado dissipating" title="Tornado #2" width="640" height="427" class="alignnone size-full wp-image-253" /></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2010%2Fhuntsville-tornado-maybe%2F&amp;linkname=Huntsville%20Tornado%2C%20maybe%26%238230%3B"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/DKmdjorxvu8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2010/huntsville-tornado-maybe/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2010/huntsville-tornado-maybe/</feedburner:origLink></item>
		<item>
		<title>First image thumbnail, using PhotoBucket</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/Z_NUKUord60/</link>
		<comments>http://blog.perfectedperspectives.com/2010/first-image-thumbnail-using-photobucket/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 15:04:57 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[Image Cataloguing]]></category>
		<category><![CDATA[Image Management]]></category>
		<category><![CDATA[photobucket]]></category>
		<category><![CDATA[Thumbnail]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=243</guid>
		<description><![CDATA[I doubt there are a whole lot of people out there using WordPress like this, but, just in case, I thought I would put this up. I created this script to help out @e_anurag, he had a unique situation, a blog with all of the images hosted over at photobucket.com. He wanted to use a [...]]]></description>
			<content:encoded><![CDATA[<p>I doubt there are a whole lot of people out there using <a class="zem_slink freebase/en/wordpress" href="http://wordpress.org" title="WordPress" rel="homepage">WordPress</a> like this, but, just in case, I thought I would put this up.<br />
I created this script to help out <a href="http://twitter.com/e_anurag">@e_anurag</a>, he had a unique situation, a blog with all of the images hosted over at <a class="zem_slink freebase/en/photobucket" href="http://www.photobucket.com" title="Photobucket" rel="homepage">photobucket.com</a>. He wanted to use a thumbnail of the first image in each post on the homepage, but since the images weren&#8217;t hosted on the blog, the existing scripts he found wouldn&#8217;t work. I modified the <a href="http://www.wprecipes.com/how-to-get-the-first-image-from-the-post-and-display-it">display-first-image-as-thumbnail-script</a> found at <a href="http://wprecipes.com">wprecipes.com</a></p>
<p>Photobucket automagically generates <a class="zem_slink freebase/en/thumbnail" href="http://en.wikipedia.org/wiki/Thumbnail" title="Thumbnail" rel="wikipedia">thumbnails</a> of images uploaded, stored with the prefix &#8216;th_&#8217; appended to the file name, thus &#8216;my_image.jpg&#8217; becomes &#8216;th_my_image.jpg&#8217; I modified the script so that it found two separate elements, the url path, and the <a class="zem_slink freebase/en/image_file_formats" href="http://en.wikipedia.org/wiki/Image_file_formats" title="Image file formats" rel="wikipedia">image file</a> name, allowing us to concatenate them together, with the &#8216;th_&#8217; prefix stuck between. this script should go in you &#8216;<code>functions.php</code>&#8216; file in the root of your theme.</p>
<div class="code_format">
<code>&lt;?php<br />
function photobucket_thumbnail() {<br />
  global $post, $posts;<br />
  $first_img = '';<br />
  ob_start();<br />
  ob_end_clean();<br />
  $output = preg_match_all('%&lt;img.+src=['"]([^'"]+/+)(.*..*?)['"].*&gt;%i', $post-&gt;post_content, $matches);<br />
  $first_img = $matches [1] [0];<br />
  $first_img .= 'th_';<br />
  $first_img .= $matches [2] [0];<br />
  if(empty($first_img)){ //Defines a default image<br />
    $first_img = "/images/default.jpg";<br />
  }<br />
  return $first_img;<br />
}<br />
?&gt;</code>
</div>
<p>Using <code>&lt;?php photobucket_thumbnail() ?&gt;</code> anywhere within the WP loop, will return the URL for the thumbnail of the first image in the post, so long as it&#8217;s from photobucket.</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/a07ca0f2-d7e7-4825-88ac-b53bc0d8abf5/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=a07ca0f2-d7e7-4825-88ac-b53bc0d8abf5" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related more-info pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2010%2Ffirst-image-thumbnail-using-photobucket%2F&amp;linkname=First%20image%20thumbnail%2C%20using%20PhotoBucket"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/Z_NUKUord60" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2010/first-image-thumbnail-using-photobucket/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2010/first-image-thumbnail-using-photobucket/</feedburner:origLink></item>
		<item>
		<title>Tweeps KML/Stream</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/xtFwqW41tTs/</link>
		<comments>http://blog.perfectedperspectives.com/2010/tweeps-kmlstream/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 21:54:24 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[Keyhole Markup Language]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[SimplePie]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=225</guid>
		<description><![CDATA[So if you&#8217;ve been over to the &#8220;Stuff&#8221; page, you already know that I&#8217;ve started keeping up with the Tweeps that I&#8217;ve helped using a Google Earth map. I recently added a &#8220;tweetstream&#8221; of the people on the map. I thought of using a list to acquire the tweets, but I didn&#8217;t want to enter [...]]]></description>
			<content:encoded><![CDATA[<p>So if you&#8217;ve been over to the <a href="http://blog.perfectedperspectives.com/stuff">&#8220;Stuff&#8221; page</a>, you already know that I&#8217;ve started keeping up with the Tweeps that I&#8217;ve helped using a <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fblog.perfectedperspectives.com%2Fwp-content%2Fuploads%2FTwitterHelped.kml&amp;sll=37.0625,-95.677068&amp;sspn=41.360684,93.076172&amp;ie=UTF8&amp;ll=6.843019,-141.773996&amp;spn=174.04169,360&amp;z=1">Google Earth map</a>. I recently added a &#8220;tweetstream&#8221; of the people on the map. I thought of using a list to acquire the tweets, but I didn&#8217;t want to enter the usernames in 2 places, so I decided to instead parse the names out of the <a class="zem_slink freebase/en/keyhole_markup_language" href="http://en.wikipedia.org/wiki/Keyhole_Markup_Language" title="Keyhole Markup Language" rel="wikipedia">KML</a> file. I used the native PHP extension simplexml to parse the KML file, and then used <a class="zem_slink" href="http://simplepie.org/%20" title="SimplePie" rel="homepage">SimplePie</a> to create a new RSS feed from all the users tweetstreams.</p>
<p>Updated: I have modified the script heavily, and added more comments in the code. Now I only retrieve one tweet from each user, then sort those tweets by date. The WordPress function I wrote now retrieves tweets until a certain number of characters is obtained, attempting to fill an area with tweets, regardless of individual tweet length.</p>
<p> Here is the code that creates the RSS feed:</p>
<div class="code_format">
<code>&lt;?php echo '&lt;?xml version="1.0" encoding="UTF-8"?&gt;'; ?&gt;<br />
&lt;rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:georss="http://www.georss.org/georss"&gt;<br />
&lt;channel&gt;<br />
&lt;title&gt;Twitter Helped KML&lt;/title&gt;<br />
&lt;link&gt;http://blog.perfectedperspectives.com/stuff&lt;/link&gt;<br />
&lt;description&gt;<br />
Stream of tweets from tweeps I've helped with web development<br />
&lt;/description&gt;<br />
&lt;atom:link type="application/rss+xml" href="http://twitter.com/statuses/user_timeline/14388935.rss" rel="self"/&gt;<br />
&lt;language&gt;en-us&lt;/language&gt;<br />
&lt;?php<br />
//setup sortbydate<br />
function sortbysub($a, $b) {<br />
   if($a['date'] &gt; $b['date'])<br />
      return 1;<br />
   if($a['date'] &lt; $b['date'])<br />
      return -1;<br />
   return 0;<br />
}<br />
//load existing KML file<br />
$xml = simplexml_load_file('http://blog.perfectedperspectives.com/wp-content/uploads/TwitterHelped.kml');<br />
//<br />
foreach ($xml-&gt;Document-&gt;Folder as $folder) {<br />
//parse each placemark for the TwitterUsername<br />
	foreach ($folder-&gt;Placemark as $placemark) {<br />
		$trimtweepurl  = 'http://twitter.com/statuses/user_timeline/' . (string)trim($placemark-&gt;name, " @") . '.rss';<br />
		$tweepurls[] = $trimtweepurl;<br />
}<br />
}<br />
//include SimplePie<br />
include 'simplepie.inc';<br />
//Setup error Checking<br />
$firstfeed = 0;<br />
//call SimplePie for each Tweeps RSS feed<br />
foreach ($tweepurls as $simpleurl)	{<br />
//SimplePie parameters and setup<br />
$feed = new SimplePie();<br />
$feed-&gt;set_feed_url($simpleurl);<br />
$feed-&gt;set_cache_duration (1000);<br />
$feed-&gt;init();<br />
$feed-&gt;handle_content_type();<br />
//counter so that we only get the latest tweet from each tweep<br />
$itemlimit = 0;<br />
//retrieve the latest tweet from each feed<br />
foreach ($feed-&gt;get_items() as $item) {<br />
//count n tweet(s) from each user<br />
if($itemlimit==1){break;}<br />
//load tweet into array<br />
	$tweet['title'] = $item-&gt;get_title();<br />
	$tweet['link'] = $item-&gt;get_permalink();<br />
	$tweet['date'] = $item-&gt;get_date();<br />
	$tweet['guid'] = $item-&gt;get_id();<br />
	$tweet['description'] = $item-&gt;get_description();<br />
//load each tweet as array element<br />
$tweeptweets[] = $tweet;<br />
//increment counter so we only get n tweets<br />
$itemlimit = $itemlimit + 1;<br />
//end foreach<br />
}<br />
//this if statement prevents the next from running on ALL RSS queries, this prevents having to wait for the entire script to run if the twitter ratelimit is exceeded from just the first RSS query<br />
if($firstfeed &gt; 0){break;}<br />
if(in_array('&lt;error&gt;', $tweeptweets)){<br />
//this is the error message displayed if Twitter denies our RSS query<br />
?&gt;<br />
&lt;item&gt;<br />
&lt;title&gt;Rate Limit Exceeded&lt;/title&gt;<br />
&lt;link&gt;&lt;/link&gt;<br />
&lt;pubDate&gt;&lt;/pubDate&gt;<br />
&lt;guid&gt;&lt;/guid&gt;<br />
&lt;description&gt;Twitter HATES you!&lt;/description&gt;<br />
&lt;/item&gt;<br />
&lt;?php<br />
}<br />
}<br />
//here we sort the tweets by date, using the function declared earlier<br />
usort($tweeptweets, 'sortbysub');<br />
//flip into descending order<br />
$tweeptweets = array_reverse($tweeptweets);<br />
//create each item for the final rss feed<br />
foreach ($tweeptweets as $tweeptweet) {<br />
?&gt;<br />
&lt;item&gt;<br />
&lt;title&gt;&lt;?php echo $tweeptweet['title']; ?&gt;&lt;/title&gt;<br />
&lt;link&gt;&lt;?php echo $tweeptweet['link']; ?&gt;&lt;/link&gt;<br />
&lt;pubDate&gt;&lt;?php echo $tweeptweet['date']; ?&gt;&lt;/pubDate&gt;<br />
&lt;guid&gt;&lt;?php echo $tweeptweet['guid']; ?&gt;&lt;/guid&gt;<br />
&lt;description&gt;&lt;?php echo $tweeptweet['description']; ?&gt;&lt;/description&gt;<br />
&lt;/item&gt;<br />
&lt;?php }<br />
//close the rss file<br />
 ?&gt;<br />
&lt;/channel&gt;<br />
&lt;/rss&gt;</code></div>
<p>I then created a shortcode in my functions.php file in my <a class="zem_slink freebase/en/wordpress" href="http://wordpress.org" title="WordPress" rel="homepage">WordPress</a> theme, using this code:</p>
<div class="code_format"><code>function display_helped_tweets() {<br />
include_once(ABSPATH.WPINC.'/simplepie.inc');<br />
$tweepstream = '&lt;div id="tweepstream"&gt;&lt;ul id="tweepstreamlist"&gt;';<br />
$feed_url = 'http://tools.qtekso.com/pie/kmltwits.php';<br />
$feed = new simplepie($feed_url);<br />
foreach($feed-&gt;get_items() as $item) :<br />
			$tweetparts = explode(':', $item-&gt;get_title(), 2);<br />
$tweepstream .= '&lt;li class="tweepstreamtweet"&gt;';<br />
$tweepstream .= '&lt;a href="http://twitter.com/' . $tweetparts[0] . '" title="' . $item-&gt;get_title() . '"&gt;';<br />
$tweepstream .= '@' . $tweetparts[0];<br />
$tweepstream .= '&lt;/a&gt;"' . $tweetparts[1] . '"&lt;/li&gt;';<br />
endforeach;<br />
$tweepstream .= '&lt;/ul&gt;&lt;/div&gt;';<br />
return $tweepstream;<br />
}<br />
add_shortcode('tweepstream', 'display_helped_tweets')</code></div>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/ac3d8619-28a7-4b6e-8270-afca65c857f2/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=ac3d8619-28a7-4b6e-8270-afca65c857f2" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related more-info pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2010%2Ftweeps-kmlstream%2F&amp;linkname=Tweeps%20KML%2FStream"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/xtFwqW41tTs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2010/tweeps-kmlstream/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2010/tweeps-kmlstream/</feedburner:origLink></item>
		<item>
		<title>First Byte Response Benchmarking</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/PNKLtdJJL7w/</link>
		<comments>http://blog.perfectedperspectives.com/2009/first-byte-response-benchmarking/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 18:28:06 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=201</guid>
		<description><![CDATA[I was helping @nicoalaryjr this week, trying to minimize his First Byte Response time for his WordPress site, sexlab.tv First Byte Response (FBR) is a metric used to describe the delay between when a users browser sends a request, and when the server fulfills the first byte of that request. It&#8217;s a great metric for [...]]]></description>
			<content:encoded><![CDATA[<p>I was helping <a id="aptureLink_x3X0yBMyF3" href="http://twitter.com/nicoalaryjr">@nicoalaryjr</a> this week, trying to minimize his First Byte Response time for his <a class="zem_slink freebase/en/wordpress" href="http://wordpress.org" title="WordPress" rel="homepage">WordPress</a> site, <a id="aptureLink_yZ0tOKebhH" href="http://sexlab.tv">sexlab.tv</a> First Byte Response (FBR) is a metric used to describe the delay between when a users browser sends a request, and when the server fulfills the first byte of that request. It&#8217;s a great metric for most WordPress installs, as the first byte is typically indicative of completion of server-side processing. It&#8217;s a great way to test to see the performance impact of a particular plugin, as well as the overall responsiveness of your site. I used the <a class="zem_slink freebase/en/open_source" href="http://en.wikipedia.org/wiki/Open_source" title="Open source" rel="wikipedia">open source</a> httperf tool set to run the test I&#8217;m showing today, it can be installed on ubuntu by simply using this command:</p>
<p> <code>sudo apt-get install httperf</code></p>
<p><a href="http://blog.perfectedperspectives.com/wp-content/uploads/2009/12/HosingBenchmarking.png" rel="lightbox"><img src="http://blog.perfectedperspectives.com/wp-content/uploads/2009/12/HosingBenchmarking.png" alt="Benchmark Comparing Hosting Provider Performance" title="HostingBenchmarking" class="alignnone size-medium wp-image-205" width="450"></a></p>
<p><a id="aptureLink_NqCRWugkLH" href="http://twitter.com/nicoalaryjr">@nicoalaryjr</a> wanted to know what the performance benefits of moving from his current hosting provider to <a class="zem_slink freebase/en/dreamhost" href="http://www.dreamhost.com" title="DreamHost" rel="homepage">Dreamhost</a>, the hosting provider I use for this blog. The results were partly expected, and partly surprising, with the one anomaly being that Dreamhost seems to have one connection out of a thousand that it just drops the ball on. The real performance metric to look at here is the median response time, which, with 50 requests per second (RS), Dreamhost was 30X faster than his existing hosting! Even at 10 RS, Dreamhost was 7.5X faster.</p>
<p>The really surprising results were the Dreamhost VPS tests. With the default RAM value of 2300MB, at 50 RS, it was nearly 50X SLOWER than shared hosting. Even at 10 RS, it was 14X slower. With the minimum RAM of 150MB, performance is completely unnacceptable. What&#8217;s going on here? I can only theorize, but I would like to know the true reason. If anyone has some insight here please comment and let me know. The only theory I can come up with is that CPU throttling is dynamic on the shared hosting, as opposed to being given a static slice of CPU with VPS, therefore, with the short duration of the tests, throttling did not kick in on the shared account.</p>
<p>Let me know what you think!<br />
BTW favorite <a href="http://sexlab.tv">sexlab.tv</a> video? <a href="http://sexlab.tv/video/episode-2-the-spiderman/">The Spiderman</a>, it&#8217;s hilarious!!</p>
<p>Here is the link to the actual test results: <a id="aptureLink_9nJsyN4QBx" href="http://spreadsheets.google.com/pub?key=thnvzPtXYsLEydFquuUlcbg&amp;output=html">Hosting Provider First Byte Response Benchmarking Results</a> </p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/e3e04a8d-a4ed-48b4-9f97-48d69507dcd6/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=e3e04a8d-a4ed-48b4-9f97-48d69507dcd6" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related more-info pretty-attribution"></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2009%2Ffirst-byte-response-benchmarking%2F&amp;linkname=First%20Byte%20Response%20Benchmarking"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/PNKLtdJJL7w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2009/first-byte-response-benchmarking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2009/first-byte-response-benchmarking/</feedburner:origLink></item>
		<item>
		<title>Holiday Biscotti</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/TUoe-TKDXZc/</link>
		<comments>http://blog.perfectedperspectives.com/2009/holiday-biscotti/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 18:46:10 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[baking]]></category>
		<category><![CDATA[Baking and Confections]]></category>
		<category><![CDATA[biscotti]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[pistachio]]></category>
		<category><![CDATA[recipe]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=192</guid>
		<description><![CDATA[Great Recipe for Holiday Biscotti!]]></description>
			<content:encoded><![CDATA[<p>This is a recipe that my girlfriend&#8217;s parents found and tweaked a little, it&#8217;s D-E-L-I-C-I-O-U-S!</p>
<p>Here are the Ingredients you need:
<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl style="width: 310px;" class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Plate_of_biscotti.jpg"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Plate_of_biscotti.jpg/300px-Plate_of_biscotti.jpg" alt="A plate of biscotti" title="A plate of biscotti" height="199" width="300"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Plate_of_biscotti.jpg">Wikipedia</a></dd>
</dl>
</div>
</div>
<ul>
<li>2 cups of All Purpose Flour</li>
<li>3/4 cups of Sugar</li>
<li>1 1/2 teaspoons of Baking Powder</li>
<li>1/4 Pound (1 stick) of Butter (room temperature)</li>
<li>2 Large Eggs</li>
<li>1 cup of Pistachios</li>
<li>1 cup of Dried Sweetened Cranberries (Craisins)</li>
<li>2 teaspoons of Lemon Zest</li>
<li>1/4 teaspoon of Salt</li>
</ul>
<p>Preheat oven to 350 degrees. Beat Sugar, Eggs, Salt, Zest, and Butter to a even consistency. Mix Flour and Baking Powder in a separate bowl, then add to Sugar and Butter mixture. Fold in Pistachios and Cranberries until evenly distibuted. Spread Dough on Baking Parchment, making a loaf about 8&#8243; wide and 1&#8243; high in the center. Bake for 25-30 minutes, until golden brown. Allow Loaf to cool to room temperature, then cut into slices approximately 1&#8243; wide. Place slices on their sides an place back in the oven for 5-10 minutes, until cut edged firm up. Flip slices and cook another 5-10 minutes. Allow to cool before storing, makes 10-15 slices.</p>
<p>For a twist, substitute a 1/4 cup of flour for cocoa powder, and switch the Lemon zest for about double the amount of equal parts Orange and Tangerine Zest.</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/dafea047-41a6-42f8-b263-3050919d94ce/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=dafea047-41a6-42f8-b263-3050919d94ce" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related more-info pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2009%2Fholiday-biscotti%2F&amp;linkname=Holiday%20Biscotti"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/TUoe-TKDXZc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2009/holiday-biscotti/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2009/holiday-biscotti/</feedburner:origLink></item>
		<item>
		<title>OSS for your non-profit/civic group/church</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/Ghj3dQyQy3A/</link>
		<comments>http://blog.perfectedperspectives.com/2009/oss-for-your-non-profitcivic-groupchurch/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 06:52:42 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[church]]></category>
		<category><![CDATA[civic]]></category>
		<category><![CDATA[Customer Relationship Management]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[Human resources]]></category>
		<category><![CDATA[non-profit]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Project management]]></category>
		<category><![CDATA[Sales and Marketing Productivity]]></category>
		<category><![CDATA[Software as a service]]></category>
		<category><![CDATA[volunteer]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=184</guid>
		<description><![CDATA[Image via Wikipedia One of my newer clients came to me with some interesting needs, they are an all-volunteer organization with multiple project-groups and over 300 volunteers. They needed a solution for collaborative project planning (preferably web-based) and volunteer resource management. It turns out that managing people you pay is not that different from managing [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignleft" style="width: 181px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Opensource.svg"><img title="Logo Open Source Initiative" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Opensource.svg/288px-Opensource.svg.png" alt="Logo Open Source Initiative" width="171" height="153" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Opensource.svg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>One of my newer clients came to me with some interesting needs, they are an all-volunteer organization with multiple project-groups and over 300 volunteers. They needed a solution for collaborative project planning (preferably web-based) and volunteer resource management. It turns out that managing people you pay is not that different from managing people you don&#8217;t.</p>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 204px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:CiviCRM_Logo.png"><img title="CiviCRM" src="http://upload.wikimedia.org/wikipedia/en/4/46/CiviCRM_Logo.png" alt="CiviCRM" width="194" height="189" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:CiviCRM_Logo.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>I found the <a class="zem_slink freebase/en/open_source" title="Open source" rel="wikipedia" href="http://en.wikipedia.org/wiki/Open_source">Open-Source</a> project <a class="zem_slink freebase/en/orangehrm" title="OrangeHRM" rel="homepage" href="http://www.orangehrm.com/">OrangeHRM</a> (Human Resources Management) to cover all the requirements we could throw at it. One of the biggest challenges with volunteers, is matching tasks to those with the right experience. OrangeHRM allows us to track individuals&#8217; skill-sets, and match a given task to the available volunteers. This greatly simplifies task delegation, and keeps you from overwhelming a volunteer with tasks outside of their skill set.</p>
<p>For Collaborative Project management, the Open-Source <a class="zem_slink freebase/en/dotproject" title="DotProject" rel="homepage" href="http://www.dotproject.net/">dotProject</a> looks to fit the bill, offering web-based project management with a robust feature-set. While not as polished as some of the commercial <a class="zem_slink freebase/en/software_as_a_service" title="Software as a service" rel="wikipedia" href="http://en.wikipedia.org/wiki/Software_as_a_service">SaaS</a> packages, like <a class="zem_slink" title="Basecamp" rel="homepage" href="http://www.basecamphq.com/">BaseCamp</a>, dotProject has all the functionality you need to facilitate team managed project planning.</p>
<p>I think between these two packages, I will be able to provide a solution that is both Open-Source, as well as best-in-class. If you are here looking for software to help organize your civic group, I would also recommend you check out <a class="zem_slink freebase/en/civicrm" title="CiviCRM" rel="homepage" href="http://civicrm.org/">CiviCRM</a>, a really neat module that integrates with both of the major OSS CMS platforms, Drupal and <a class="zem_slink freebase/en/joomla" title="Joomla!" rel="homepage" href="http://www.joomla.org/">Joomla</a>. Most of us know CRM to mean &#8220;<a class="zem_slink freebase/en/customer_relationship_management" title="Customer relationship management" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_relationship_management">Customer Relationship Management</a>,&#8221; CiviCRM touts itself as a &#8220;Constituent Relationship Management&#8221; package. While not offering the functionality I needed in this project, CiviCRM did have some interesting features, donation management not in the least. (Plus their logo is cool)</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/234da66f-0f44-408e-bf59-32de64be3451/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=234da66f-0f44-408e-bf59-32de64be3451" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2009%2Foss-for-your-non-profitcivic-groupchurch%2F&amp;linkname=OSS%20for%20your%20non-profit%2Fcivic%20group%2Fchurch"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/Ghj3dQyQy3A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2009/oss-for-your-non-profitcivic-groupchurch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2009/oss-for-your-non-profitcivic-groupchurch/</feedburner:origLink></item>
		<item>
		<title>Pixelpost to WordPress Migration</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/t9R8WXmQVPY/</link>
		<comments>http://blog.perfectedperspectives.com/2009/pixelpost-to-wordpress-migration/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 03:14:59 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[pixelpost]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=172</guid>
		<description><![CDATA[So I made contact on Twitter with @photodreamz who needed to migrate their PixelPost blog to WordPress. The problem is, Pixelpost doesn&#8217;t support any type of export interface. This problem was partially solved by Joe Lencioni, over at ShiftingPixel.com and one of his readers, @kristerella of http://kristerella.com. Between the two of them, I believe they [...]]]></description>
			<content:encoded><![CDATA[<p>So I made contact on <a class="zem_slink freebase/guid/9202a8c04000641f800000000484d119" title="Twitter" rel="homepage" href="http://twitter.com/">Twitter</a> with <a id="aptureLink_cjJghtlriG" href="http://twitter.com/photodreamz">@photodreamz</a> who needed to migrate their PixelPost blog to <a class="zem_slink freebase/guid/9202a8c04000641f80000000002d66b2" title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a>. The problem is, Pixelpost doesn&#8217;t support any type of export interface. This problem was partially solved by Joe Lencioni, over at <a id="aptureLink_pScbtIpdIp" href="http://shiftingpixel.com">ShiftingPixel.com</a> and one of his readers, <a id="aptureLink_zOW0v0MmM3" href="http://twitter.com/kristerella">@kristerella</a> of <a id="aptureLink_0psqB0QVpR" href="http://kristerella.com">http://kristerella.com</a>. Between the two of them, I believe they have the right solution, yes it could handle a little polish, but it works. I have made my version of the script available here. Below, you will find step by step instructions for installing and using the script.</p>
<p>The features I added to the script were a <a class="zem_slink freebase/guid/9202a8c04000641f8000000000019cb8" title="Graphical user interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/Graphical_user_interface">GUI</a> way to supply the root domain for the WordPress install, and some general debugging. I may end up making this automatically populate from the database, for now I&#8217;ll leave it manual. Functioning manually, you can specify a domain, even while running the script on a test environment, which I recommend.</p>
<p>Remember, I can not be held liable for any negative effects this has on your data! Always use a testing environment when performing actions such as these with your data, backup the backup of the backup! The Categories still do not apply to the posts, but it does import them.</p>
<p>Here are the steps I used to get the <a class="zem_slink freebase/guid/9202a8c04000641f8000000000b3afcd" title="Pixelpost" rel="homepage" href="http://www.pixelpost.org/">Pixelpost</a> to WordPress script to work:</p>
<ol>
<li>Download the script from here: <a href="http://blog.perfectedperspectives.com/wp-content/uploads/2009/12/pixelpost.zip">Pixelpost to WordPress Import Script</a>.</li>
<li>Install the script in the &#8220;wp-admin/import/&#8221; folder.</li>
<li>Copy your images into the root of the &#8220;wp-content/uploads/&#8221; folder.</li>
<li>In the Dashboard, go to the Tools&gt;Import page.</li>
<li>Select &#8220;Pixelpost&#8221; from the list of databases available for import.</li>
<li>Provide the login info for the database your Pixelpost data is in. Also specify the domain name you will be using with WordPress, this will ensure the photos show up in the posts.</li>
<li>Click &#8220;Import Categories&#8221;</li>
<li>Verify the number of Categories imported, then click &#8220;Import Posts&#8221; (This may take a few minutes, don&#8217;t click the button again, and don&#8217;t refresh the browser, it will let you know when it&#8217;s done.)</li>
<li>Verify the number of posts imported, then click &#8220;Import Comments&#8221; (This may take a few minutes, don&#8217;t click the button again, and don&#8217;t  refresh the browser, it will let you know when it&#8217;s done.)</li>
<li>You&#8217;re set! Click &#8220;Visit Site&#8221; at the top of the page to verify the import completed successfully.</li>
</ol>
<p>Here are some tips: From what I read, this works best with an empty WordPress DB, it&#8217;s best to set up a test environment if you have an existing WordPress installation, import the pixel post into your test environment, the use the mature, <a class="zem_slink freebase/guid/9202a8c04000641f8000000000041c85" title="XML" rel="wikipedia" href="http://en.wikipedia.org/wiki/XML">XML</a> based, WordPress import/export to move them into your existing WordPress installation.</p>
<p>@acedrew</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/f1031a84-88f8-410f-b2e4-237264cbe26e/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=f1031a84-88f8-410f-b2e4-237264cbe26e" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2009%2Fpixelpost-to-wordpress-migration%2F&amp;linkname=Pixelpost%20to%20WordPress%20Migration"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/t9R8WXmQVPY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2009/pixelpost-to-wordpress-migration/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2009/pixelpost-to-wordpress-migration/</feedburner:origLink></item>
		<item>
		<title>What’s the best marketing tool for your Small Business?</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/-Lq7OY65i54/</link>
		<comments>http://blog.perfectedperspectives.com/2009/whats-the-best-marketing-tool-for-your-small-business/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 06:07:48 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Marketing and Advertising]]></category>
		<category><![CDATA[Small Business]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=168</guid>
		<description><![CDATA[What&#8217;s the best marketing tool for small business? I asked this question of Bizniche2Bizniches&#8216;s @kendamorrison, her answer: YOU! She responded in a blog post that covers how you can use your heart, eyes, hands, and feet to market yourself in your community. Don&#8217;t take my word for it, go check it out for yourself here: [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>What&#8217;s the best marketing tool for small business?</p></blockquote>
<p>I asked this question of <em>Bizniche2Bizniches</em>&#8216;s <a id="aptureLink_UeMOZ83EGf" href="http://twitter.com/kendamorrison">@kendamorrison</a>, her answer: </p>
<blockquote><p>YOU!</p></blockquote>
<p>She responded in a blog post that covers how you can use your heart, eyes, hands, and feet to market yourself in your community. Don&#8217;t take my word for it, go check it out for yourself here: <a id="aptureLink_wMCMeqlyZV" href="http://www.bizniche2bizniche.com/?p=392">http://www.bizniche2bizniche.com/?p=392</a> These are thing we all probably already know, but it seems we always need to hear them again!</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/bbc4aa7a-9c8c-45b3-b557-ccca482ee525/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=bbc4aa7a-9c8c-45b3-b557-ccca482ee525" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related more-info pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2009%2Fwhats-the-best-marketing-tool-for-your-small-business%2F&amp;linkname=What%26%238217%3Bs%20the%20best%20marketing%20tool%20for%20your%20Small%20Business%3F"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/-Lq7OY65i54" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2009/whats-the-best-marketing-tool-for-your-small-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2009/whats-the-best-marketing-tool-for-your-small-business/</feedburner:origLink></item>
		<item>
		<title>Zemanta, a gift from the Bloggess</title>
		<link>http://feedproxy.google.com/~r/perfspectblog/~3/FY0JbGyoTLU/</link>
		<comments>http://blog.perfectedperspectives.com/2009/zemanta-a-gift-from-the-bloggess/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 07:00:00 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://blog.perfectedperspectives.com/?p=98</guid>
		<description><![CDATA[Image via CrunchBase I should start by saying this is not in any way endorsed by the twitter user TheBloggess, I simply thought that if bloggers had a deity, it would be a woman. (Just like Christians) If you&#8217;ve never heard of Zemanta, don&#8217;t feel bad, neither had I until this week. I found this [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl style="width: 216px;" class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/zemanta"><img src="http://www.crunchbase.com/assets/images/resized/0001/6433/16433v1-max-450x450.png" alt="Image representing Zemanta as depicted in Crun..." title="Image representing Zemanta as depicted in Crun..." width="206" height="73"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>I should start by saying this is not in any way endorsed by the twitter user TheBloggess, I simply thought that if bloggers had a deity, it would be a woman. (Just like Christians) If you&#8217;ve never heard of <a class="zem_slink" href="http://www.zemanta.com" title="Zemanta" rel="homepage">Zemanta</a>, don&#8217;t feel bad, neither had I until this week. I found this great tool while looking for something to find all of the phrases in my post that corresponded to wikipedia articles and create links to the articles, Zemanta does this and a lot more! </p>
<p>Zemanta finds context sensitive links, images, and even other blog entries that relate to the post you&#8217;re working on. It&#8217;s quick, easy, and free! Check it out at <a href="http://zemanta.com">zemanta.com</a></p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/f69be57f-1f18-4038-a5a2-5fffba60e7d4/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=f69be57f-1f18-4038-a5a2-5fffba60e7d4" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related more-info pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.perfectedperspectives.com%2F2009%2Fzemanta-a-gift-from-the-bloggess%2F&amp;linkname=Zemanta%2C%20a%20gift%20from%20the%20Bloggess"><img src="http://blog.perfectedperspectives.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a><img src="http://feeds.feedburner.com/~r/perfspectblog/~4/FY0JbGyoTLU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.perfectedperspectives.com/2009/zemanta-a-gift-from-the-bloggess/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.perfectedperspectives.com/2009/zemanta-a-gift-from-the-bloggess/</feedburner:origLink></item>
	</channel>
</rss>

