


<?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>You Dont Know Shat</title>
	<atom:link href="http://justinshattuck.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://justinshattuck.com</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 19:36:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Writing a Javascript Bookmarklet for Flickr</title>
		<link>http://justinshattuck.com/2010/writing-a-javascript-bookmarklet-for-flickr/</link>
		<comments>http://justinshattuck.com/2010/writing-a-javascript-bookmarklet-for-flickr/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 21:48:08 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Freshest]]></category>
		<category><![CDATA[alpha]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[enc]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[photograph]]></category>
		<category><![CDATA[var]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=381</guid>
		<description><![CDATA[I recently authored a quick and simple bookmarklet for Flickr&#8482; to allow me to retrieve the shortened URI to a specific photograph. This shortened URI is available via the source of the photograph&#8217;s page on Flickr. However, I desired a...]]></description>
			<content:encoded><![CDATA[<p>I recently authored a quick and simple bookmarklet for Flickr&trade; to allow me to retrieve the shortened URI to a specific photograph.  This shortened URI is available via the source of the photograph&#8217;s page on Flickr.  However, I desired a quicker and easier way to capture it.  </p>
<p>So, now that Flickr removed the pretty link from their source, I have to grab it myself.  The shortened URI is base58 encoding based on the ID of the photograph.  To make it easier, I wanted to write a quick javascript snippet to do the calculation and spit back the shortened URI.  </p>
<h4>The Javascript Code</h4>
<p>Let&#8217;s skip a bunch of chatter and go straight to the meat and potatoes.  The javascript is pretty straight forward.  I wanted to output the shortened URI to my window if I was looking at a Flickr photograph and if I wasn&#8217;t, prompt me for the ID of the photo so I could manually add it.  The javascript ended up as:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> m<span style="color: #339933;">=</span>window.<span style="color: #660066;">location</span>.<span style="color: #660066;">href</span>.<span style="color: #660066;">match</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">/^</span>https<span style="color: #339933;">?:</span>\<span style="color: #339933;">/</span>\<span style="color: #339933;">/</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">^/</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">*</span>\bflickr\.<span style="color: #660066;">com</span>\<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span>photos\<span style="color: #339933;">/</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">^</span><span style="color: #009966; font-style: italic;">/]+\/(\d+))/i</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>m.<span style="color: #660066;">length</span><span style="color: #339933;">&amp;&amp;</span>m<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
  <span style="color: #000066;">prompt</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'flic.kr for<span style="color: #000099; font-weight: bold;">\n</span>'</span><span style="color: #339933;">+</span>m<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #3366CC;">':'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'http://flic.kr/p/'</span><span style="color: #339933;">+</span><span style="color: #009900;">&#40;</span>
    <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>num<span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> num<span style="color: #339933;">!==</span><span style="color: #3366CC;">'number'</span><span style="color: #009900;">&#41;</span>
        num<span style="color: #339933;">=</span>parseInt<span style="color: #009900;">&#40;</span>num<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> enc<span style="color: #339933;">=</span><span style="color: #3366CC;">''</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> alpha<span style="color: #339933;">=</span><span style="color: #3366CC;">'123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ'</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> div<span style="color: #339933;">=</span>num<span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>num<span style="color: #339933;">&gt;=</span><span style="color: #CC0000;">58</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
          div<span style="color: #339933;">=</span>num<span style="color: #339933;">/</span><span style="color: #CC0000;">58</span><span style="color: #339933;">;</span>
          <span style="color: #003366; font-weight: bold;">var</span> mod<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span>num<span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">58</span><span style="color: #339933;">*</span>Math.<span style="color: #660066;">floor</span><span style="color: #009900;">&#40;</span>div<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          enc<span style="color: #339933;">=</span><span style="color: #3366CC;">''</span><span style="color: #339933;">+</span>alpha.<span style="color: #660066;">substr</span><span style="color: #009900;">&#40;</span>mod<span style="color: #339933;">,</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span>enc<span style="color: #339933;">;</span>
          num<span style="color: #339933;">=</span>Math.<span style="color: #660066;">floor</span><span style="color: #009900;">&#40;</span>div<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
      <span style="color: #000066; font-weight: bold;">return</span><span style="color: #009900;">&#40;</span>div<span style="color: #009900;">&#41;</span><span style="color: #339933;">?</span><span style="color: #3366CC;">''</span><span style="color: #339933;">+</span>alpha.<span style="color: #660066;">substr</span><span style="color: #009900;">&#40;</span>div<span style="color: #339933;">,</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span>enc<span style="color: #339933;">:</span>enc<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#40;</span>m<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<h4>Next steps</h4>
<p>So, now you have this functional piece of javascript and you need it to be as easy as clicking a button.  That is where Bookmarklets come into action.  Creating a bookmarklet is very simple.  Actually, its basically putting <code>javascript:</code> in front of your snippet and calling it through an action as you normally would.  In my case, I am just going to make it a <code>href</code> and drag it to my bookmark menu in the browser window.  This will allow it to be used in any window within the corresponding browser.  Another great aspect of bookmarklets is they can be used in every browser: IE, Opera, Chrome, Firefox, Safari, etc.  Javascript doesn&#8217;t discriminate behavior.</p>
<h4>The bookmarklet, done.</h4>
<p>The final step is actually turning the javascript into our bookmarklet:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">void</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #003366; font-weight: bold;">var</span> m<span style="color: #339933;">=</span>window.<span style="color: #660066;">location</span>.<span style="color: #660066;">href</span>.<span style="color: #660066;">match</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">/^</span>https<span style="color: #339933;">?:</span>\<span style="color: #339933;">/</span>\<span style="color: #339933;">/</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">^/</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">*</span>\bflickr\.<span style="color: #660066;">com</span>\<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span>photos\<span style="color: #339933;">/</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">^</span><span style="color: #009966; font-style: italic;">/]+\/(\d+))/i</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>if<span style="color: #009900;">&#40;</span>m.<span style="color: #660066;">length</span><span style="color: #339933;">&amp;&amp;</span>m<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #000066;">prompt</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'flic.kr for<span style="color: #000099; font-weight: bold;">\n</span>'</span><span style="color: #339933;">+</span>m<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #3366CC;">':'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'http://flic.kr/p/'</span><span style="color: #339933;">+</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>num<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span><span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> num<span style="color: #339933;">!==</span><span style="color: #3366CC;">'number'</span><span style="color: #009900;">&#41;</span>num<span style="color: #339933;">=</span>parseInt<span style="color: #009900;">&#40;</span>num<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>var enc<span style="color: #339933;">=</span><span style="color: #3366CC;">''</span><span style="color: #339933;">;</span>var alpha<span style="color: #339933;">=</span><span style="color: #3366CC;">'123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ'</span><span style="color: #339933;">;</span>var div<span style="color: #339933;">=</span>num<span style="color: #339933;">;</span>while<span style="color: #009900;">&#40;</span>num<span style="color: #339933;">&gt;=</span><span style="color: #CC0000;">58</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>div<span style="color: #339933;">=</span>num<span style="color: #339933;">/</span><span style="color: #CC0000;">58</span><span style="color: #339933;">;</span>var mod<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span>num<span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">58</span><span style="color: #339933;">*</span>Math.<span style="color: #660066;">floor</span><span style="color: #009900;">&#40;</span>div<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>enc<span style="color: #339933;">=</span><span style="color: #3366CC;">''</span><span style="color: #339933;">+</span>alpha.<span style="color: #660066;">substr</span><span style="color: #009900;">&#40;</span>mod<span style="color: #339933;">,</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span>enc<span style="color: #339933;">;</span>num<span style="color: #339933;">=</span>Math.<span style="color: #660066;">floor</span><span style="color: #009900;">&#40;</span>div<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #000066; font-weight: bold;">return</span><span style="color: #009900;">&#40;</span>div<span style="color: #009900;">&#41;</span><span style="color: #339933;">?</span><span style="color: #3366CC;">''</span><span style="color: #339933;">+</span>alpha.<span style="color: #660066;">substr</span><span style="color: #009900;">&#40;</span>div<span style="color: #339933;">,</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span>enc<span style="color: #339933;">:</span>enc<span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>m<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>If you would like to use this flickr bookmarklet, please visit the page I have setup for it on my lab <a href="http://lab.justinshattuck.com/flickr/index.html">Flickr Bookmarklet on lab.justinshattuck.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/writing-a-javascript-bookmarklet-for-flickr/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yet Another Related Posts Plugin Template</title>
		<link>http://justinshattuck.com/2010/yet-another-related-posts-plugin-template/</link>
		<comments>http://justinshattuck.com/2010/yet-another-related-posts-plugin-template/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:40:30 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[yarpp]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=345</guid>
		<description><![CDATA[Yet Another Related Posts Plugin is likely the most valuable and popular plug-ins for WordPress. It indexes your content and outputs articles and pages from your WordPress blog that are likely to relate to one another. Technically it is much...]]></description>
			<content:encoded><![CDATA[<p><a href="http://mitcho.com/code/yarpp/" rel="nofollow">Yet Another Related Posts Plugin</a> is likely the most valuable and popular plug-ins for WordPress.  It indexes your content and outputs articles and pages from your WordPress blog that are likely to relate to one another.  Technically it is much more advanced than that little one liner, but you get the point.</p>
<p>During my initial redesign one of the questions I received from my early previewers was, &#8220;How did you go about displaying the related-posts that way?&#8221;  So, I thought I would do more than explain it and just give you a quick template you can use on your own blog.  Now, I in know way shape or form guarantee this will work for absolutely everyone.  I tested it with WordPress 2.9.2 and YARPP 3.1.4 and it works fine.  I&#8217;m not including any &#8220;simple instructions&#8221; to get this rocking.</p>
<p>I&#8217;m sorry, but I like to make people work a little to get things going.  I&#8217;ll give you the ground-work, but you have to exert a little effort yourself.</p>
<h4>YARPP Template:  <em>The Idea</em></h4>
<p>I wanted to display five related posts including: post title, published date, author&#8217;s name, and the categories it was published to.  I wanted to display an image associated with each post and have the information associated with each post display on hover.<br />
<div id="attachment_346" class="wp-caption aligncenter" style="width: 559px"><a href="http://justinshattuck.com/site/wp-content/uploads/2010/03/Idea.jpg"><img src="http://justinshattuck.com/site/wp-content/uploads/2010/03/Idea.jpg" alt="" title="YARPP Template Idea" width="549" height="214" class="size-full wp-image-346" /></a><p class="wp-caption-text">Designing the Concept</p></div><br />
</p>
<h4>YARPP Template:  <em>Bringing it to life</em></h4>
<p>The overall template is pretty simple.  A bit of markup to build the segments of information.  The only technical part of this piece is passing the category, title, author and pubDate and grabbing them.  Another factor is keeping the categories from running off the side of the overlay graphic when you mouseOver.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;related-posts&quot;&gt;
	&lt;h3&gt;So, what would you like to read now?&lt;/h3&gt;
	&lt;div class=&quot;right&quot;&gt;Congratulations, you made it to the end of this article! Maybe you'll be interested in some of these related articles.&lt;/div&gt;
	&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
	&lt;ul id=&quot;related-posts-list&quot;&gt;
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$related_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$related_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$related_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">the_post</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #000088;">$limit_string</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">25</span><span style="color: #339933;">;</span>					
			<span style="color: #000088;">$cats</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$categories</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #009933; font-style: italic;">/**
			Loop through our categories and put them into array
			**/</span>
			<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span>get_the_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$category</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$cats</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$category</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">cat_name</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
&nbsp;
			<span style="color: #009933; font-style: italic;">/**
			We don't want the list of categories to run off the side
			**/</span>
			<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cats</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$count</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$categories</span><span style="color: #339933;">.</span><span style="color: #0000ff;">', '</span><span style="color: #339933;">.</span><span style="color: #000088;">$cats</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$count</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;=</span> <span style="color: #000088;">$limit_string</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$categories</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$cats</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$count</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
				<span style="color: #000088;">$count</span><span style="color: #339933;">++;</span>
			<span style="color: #009900;">&#125;</span>					
		<span style="color: #000000; font-weight: bold;">?&gt;</span>
		&lt;li&gt;
			&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; rp:description=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_date<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'m.d.Y'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> in <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$categories</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; rp:author=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_author<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
				&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;image&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
			&lt;/a&gt;
		&lt;/li&gt;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;/ul&gt;
&lt;/div&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Of course, none of this would be useful without a bit of styling and JS to make it all come together.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.related-posts</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;Lucida Grande&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Trebuchet MS&quot;</span><span style="color: #00AA00;">,</span> Verdana<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">550px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.related-posts</span> h3 <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#08a2e6</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">210px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.related-posts</span> <span style="color: #6666ff;">.right</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#9d9d9d</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">230px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.clear</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">both</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#related-posts-list</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#related-posts-list</span> li <span style="color: #00AA00;">&#123;</span>  <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#related-posts-list</span> li a img <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#a6a6a6</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#related-posts-hover</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'img/overlay.png'</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#9d9d9d</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Verdana<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">83px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">letter-spacing</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-1px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30px</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">215px</span><span style="color: #00AA00;">;</span>   <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#related-posts-hover</span> <span style="color: #6666ff;">.title</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#52bceb</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;Lucida Grande&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Lucida Sans Unicode&quot;</span><span style="color: #00AA00;">,</span> Verdana<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span>  <span style="color: #000000; font-weight: bold;">letter-spacing</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>  <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#related-posts-hover</span> <span style="color: #6666ff;">.description</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#related-posts-hover</span> <span style="color: #6666ff;">.author</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#related-posts-list li a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'rp:title'</span><span style="color: #339933;">,</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'title'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">removeAttr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'title'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#related-posts-list li a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hover</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #006600; font-style: italic;">// hover on</span>
		<span style="color: #003366; font-weight: bold;">var</span> title <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'rp:title'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #003366; font-weight: bold;">var</span> author <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'rp:author'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #003366; font-weight: bold;">var</span> description <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'rp:description'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'li'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;div id=&quot;related-posts-hover&quot;&gt;&lt;span class=&quot;title&quot;&gt;'</span><span style="color: #339933;">+</span>title<span style="color: #339933;">+</span><span style="color: #3366CC;">'&lt;/span&gt;&lt;span class=&quot;description&quot;&gt;'</span><span style="color: #339933;">+</span>description<span style="color: #339933;">+</span><span style="color: #3366CC;">'&lt;/span&gt;&lt;span class=&quot;author&quot;&gt;by '</span><span style="color: #339933;">+</span>author<span style="color: #339933;">+</span><span style="color: #3366CC;">'&lt;/span&gt;&lt;/div&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#related-posts-hover'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'top'</span><span style="color: #339933;">,</span>e.<span style="color: #660066;">pageY</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#related-posts-hover'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">remove</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#related-posts-list li a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">mousemove</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#related-posts-hover'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'top'</span><span style="color: #339933;">,</span>e.<span style="color: #660066;">pageY</span><span style="color: #339933;">+</span><span style="color: #CC0000;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#related-posts-hover'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'left'</span><span style="color: #339933;">,</span>e.<span style="color: #660066;">pageX</span><span style="color: #339933;">+</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>This does utilize jQuery so make sure you are using it.  If you have any questions you can direct them to me using the comments on this thread.  I cannot guarantee I will get to absolutely every single question, but I will try!  When it comes to integrating this into your WordPress blog, make sure you name the file yarpp-template-whatever.php so that the plugin recognizes it.  Additionally, you&#8217;ll want to put the overlay image, stylesheet, and javascript into the proper directories and include them in your header.  That&#8217;s all for now!</p>
<h4>YARPP Template:  What you are really after</h4>
<p><a href="http://justinshattuck.com/bin/yarpp_template/yarpp_template.zip" rel="nofollow" title="Yet Another Related Posts Plugin Template Download">Download yarpp_template.zip</a>, which contains the source psd, javascript, stylesheet and template file.<br />
<a href="http://lab.justinshattuck.com/yarpp_template/template.html" rel="nofollow" title="Yet Another Related Posts Plugin Template Demo">View the Demo</a> to see this bad boy in action, but without WordPress.</p>
<p>Thanks to <a href="http://www.jordanh.net/" rel="nofollow" title="Jordan Hatch">Jordan Hatch</a> for helping me get this goody ready for you people to eat up.  He&#8217;s a great asset to <a href="http://justtheweb.com" rel="nofollow">Just the Web</a> and definitely someone you should check out on twitter too <a href="http://twitter.com/1jh" rel="nofollow">@1jh</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/yet-another-related-posts-plugin-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repeat clients are great, but Enthused Fans are better</title>
		<link>http://justinshattuck.com/2010/repeat-clients-are-great-but-enthused-fans-are-better/</link>
		<comments>http://justinshattuck.com/2010/repeat-clients-are-great-but-enthused-fans-are-better/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 19:54:33 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[agency]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[fans]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=330</guid>
		<description><![CDATA[In my career path and business experience I have learned quite a bit about people. No matter how big their game, lengthy their discussions or raving their rants; they are still just people. It has been apparent for quite some...]]></description>
			<content:encoded><![CDATA[<p>In my career path and business experience I have learned quite a bit about people.  No matter how big their game, lengthy their discussions or raving their rants; they are still just people.  It has been apparent for quite some time that I am just that good.  I am not talking about my work, my schedule or my extremely awesome hair.  I&#8217;m talking about my ability to make everyone a fan of what I have going on.  </p>
<p>In an average week at <a href="http://justtheweb.com" rel="nofollow" title="just the web tulsa oklahoma design and development firm">Just the Web</a> we get a dozen or so inquiries from new clients.  Additionally, during an average week we bill a massive amount of hours for existing clients.  You hear people tell you that keeping a client is cheaper than finding a new one. Even better, existing clients make the best fans!</p>
<p>We are pretty fortunate at <a href="http://justtheweb.com" title="Just the Web Tulsa Graphic and Development Design in Oklahoma" rel="nofollow">Just the Web</a> because we lay down all the ground rules and fundamentals for how we operate before we even tell a customer how much we charge.  Granted this is either because I am always excited for how we operate or because I think it is more important for them to know.  Either way, it just works for us and we will likely never change it.  </p>
<p>If I made an attempt at going after each of our prospective clients each week, I would spend upwards of 40 hours trying to capture them.  My process for getting a new client is pretty straight-forward.  I evaluate each of the inquiries we receive and find the individuals that best meets our criteria for a well-rounded client.  </p>
<p>This criteria ranges from how detailed their initial email to how much information they are willing to divulge on first contact.  Personally, I look for a few important elements in an inquiry:  a proper invitation to contact them back via telephone, a decent amount of information about what they&#8217;re wanting to accomplish (not what they want done*), and if they seem like the type of client who will just annoy me.</p>
<p>Now, it sounds like I have it all worked out and I pretty much do.  Overall it is a time consuming process to go through this over and over.  So, during 2009 I really ironed out a process and a mindset that allows <a href="http://justtheweb.com" title="Just the Web Tulsa Graphic and Development Design in Oklahoma" rel="nofollow">Just the Web</a> to retain its existing clients and to turn them into fanatical people who always want to share our story.</p>
<h3>Who better to tell your story?</h3>
<p>Clients who have been through the process with you are perfect for this job.  Now, it isn&#8217;t really a job.  For them, it is their way of giving back and bragging to their other business acquaintances about how awesome of a job you did.  Nothing burns more than another business owner saying, &#8220;Our web crew got it done,&#8221; while most others are complaining about how their agency of choice never returns a phone call.  </p>
<p>Clients know you.  Let me re-phrase, your clients should know you.  They should know what is going on in the shop, who is up to what and that crazy flood that left two inches of water in your office.  They need to know when you are sick, when you are well, how you speak and when you are kidding.  When your clients cross into this personal zone, you know they are becoming fans.  Getting personable with a client is the first -right choice you can make when trying to make them a fan.</p>
<p>Having the right people working together and getting it done is one thing, but having those people get it done while the client is out recruiting new clients is all the better.  Make sure you pay attention to more than just what your clients&#8217; checks look like.  Be personable and ask them questions.  How did they get started?  What hurdles did they face?  Can you relate to them?  Make sure you don&#8217;t take control over the conversation.  One thing that will annoy a client is you taking control of the conversation to tell them how you new baby boy just crapped his diaper.  </p>
<p>Building up a loyal fan base is just as important as building up your brand&#8217;s image.  Your fans are going to ultimately have a bit of equity in your agency or freelance business.  Arm them with the weapons and tools they will need.</p>
<p>Give them printed materials to give out to their friends and colleagues that might want to contact you.  This could be as simple as shipping them some business cards and brochures; fliers and cards; or any other assortment of goods.  We like to be a bit different and create customized cards and post-cards for our fan-boys and -girls to hand out.  &#8220;Hey!  Rebecca said you were cool, so we might think so too!  Call 1-877-HIRE-JTW and let&#8217;s get creative.&#8221; </p>
<p>The goal is to connect with people.  It is more affordable to connect through a silly 3&#8243; x 2&#8243; piece of 383gsm paper than it is to pick-up the telephone and speak to every prospective client you might get.  So, think about that one.  Stew over it while you&#8217;re talking to your associates and come up with a clever way to weed out the worthy clients from the less than admirable ones.</p>
<p>This article is really just a base for what I am going to give out on this topic.  Make sure to check back often and see what other tips I give you to be more like me.  Kudos!</p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/repeat-clients-are-great-but-enthused-fans-are-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Made Ice Cream Trumps Store Bought Products</title>
		<link>http://justinshattuck.com/2010/home-made-ice-cream-trumps-store-bought-products/</link>
		<comments>http://justinshattuck.com/2010/home-made-ice-cream-trumps-store-bought-products/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 03:21:11 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[Featured Article]]></category>
		<category><![CDATA[In the Kitchen]]></category>
		<category><![CDATA[almond]]></category>
		<category><![CDATA[cherry]]></category>
		<category><![CDATA[cooking]]></category>
		<category><![CDATA[dessert]]></category>
		<category><![CDATA[ice cream]]></category>
		<category><![CDATA[kitchen]]></category>
		<category><![CDATA[sherbet]]></category>
		<category><![CDATA[sorbet]]></category>
		<category><![CDATA[strawberry]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=338</guid>
		<description><![CDATA[A dreadful experience: Pacing slowly down the frozen-dairy section of the grocery store. Glancing at all the frozen goodies through the foggy and blistering cold doors. Vanilla.. now that sounds delicious. Whoa! Chocolate-Chocolate-Cherry Crunch, a product with fudge brownies and...]]></description>
			<content:encoded><![CDATA[<p>A dreadful experience:  Pacing slowly down the frozen-dairy section of the grocery store.  Glancing at all the frozen goodies through the foggy and blistering cold doors.  Vanilla.. now that sounds delicious.  Whoa!  Chocolate-Chocolate-Cherry Crunch, a product with fudge brownies and cashews; that could be wonderful.  Now, continue walking, don&#8217;t stop, don&#8217;t pick anything up!  Exit this sure hell of food before you make a horrible decision and pick-up one of these over-priced vats of a thousand calories.</p>
<p>After pondering about the whole process of making ice-cream, sorbet, sherbets and frozen delicious desserts, I decided to start making my own.  I wanted to create some yummy eats that weren&#8217;t going to completely kill me. I&#8217;m not sure what kind of nonsense those people from Braums Dairy, Blue Bell and Ben &amp; Jerry&#8217;s are placing in their tubs, but in my tub I don&#8217;t want to load up with Chocolate and Cookie Dough!  I wanted to make the basic ice creams and the occasional berry-base sorbet.  So, I made the leap and purchased an ice cream maker!</p>
<p>Currently, I am producing a wonderful Cherry Limeade sherbet in the kitchen.  It has about ten more minutes before it is finished, but I can&#8217;t wait to give it a try!  Compared to the store bought products, mine is sitting at about 97 calories per serving versus 250 plus of the competition.  Now, I&#8217;m not trying to justify and say mine is healthy, but hey it is definitely more healthy than the store purchased products.</p>
<p>Over the weekend, I made up Pistachio Ice Cream, a thick cream-based loveliness with 2 cups or so of fine pistachio nuts.  I served it up at a dinner party on Saturday evening and a few individuals who don&#8217;t even like pistachios said that it was delicious!  I also made an attempt at strawberry, cherry and almond cream.  The strawberry was fair at best, the fruit was a little too frozen before I used it and the cherry was well, plain.  However, to my surprise and the four people who got to try the Almond-Cream ice cream, two said, &#8220;This is the best ice-cream I&#8217;ve ever had!&#8221;  Someone else followed up with a request for what was in it and how I made it.</p>
<p>I do intend on releasing the recipes, but for now I am going to perfect them.  Let it be known that I am using raw cream, raw milk and all natural flavors and extracts.  I used Almond oil on the almond cream, but it as well is natural.</p>
<p>I&#8217;m looking forward to experimenting with my process, recipes and results.  Until next time, enjoy!</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/yf1B1BIHxzU&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed  src="http://www.youtube.com/v/yf1B1BIHxzU&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><!-- http://twitter.com/madecreamily/status/16495644122 --><br />
<style type='text/css'>.bbpBox_39047214{background:url(http://a1.twimg.com/profile_background_images/105003710/wallpaper-198080.jpg) #6e6e6e; padding:20px;}p.bbpTweet_39047214{background:#fff;padding:10px 12px 10px 12px;margin:0;min-height:48px;color:#000;font-size:18px !important;line-height:22px;-moz-border-radius:5px;-webkit-border-radius:5px}p.bbpTweet_39047214 span.metadata{display:block;width:100%;clear:both;margin-top:8px;padding-top:12px;height:40px;border-top:1px solid #fff;border-top:1px solid #e6e6e6}p.bbpTweet_39047214 span.metadata span.author{line-height:19px}p.bbpTweet_39047214 span.metadata span.author img{float:left;margin:0 7px 0 0px;width:38px;height:38px}p.bbpTweet_39047214 a {color: #0084B4; text-decoration:none;}p.bbpTweet_39047214 a:hover{text-decoration:underline}p.bbpTweet_39047214 span.timestamp{font-size:12px;display:block}</style>
<div class='bbpBox_39047214'>
<p class='bbpTweet_39047214'>Hey you!  Goto <a rel="nofollow" target="_blank" href="http://creamily.com/">http://creamily.com/</a> and check out the new brand and sign-up to be notified at launch, even if you already have.. do again!<span class='timestamp'><a title='Fri Jun 18 20:19:36 +0000 2010' href='http://twitter.com/madecreamily/status/16495644122'>Jun 18</a> via <a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow">Twitter for iPhone</a></span><span class='metadata'><span class='author'><a href='http://twitter.com/madecreamily'><img src='http://a1.twimg.com/profile_images/929807708/creamily-big_normal.jpg' /></a><strong><a href='http://twitter.com/madecreamily'>Creamily</a></strong><br/>madecreamily</span></span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/home-made-ice-cream-trumps-store-bought-products/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blyth&#8217;s Partylite Candle Company is Cult-ish</title>
		<link>http://justinshattuck.com/2010/blyths-partylite-candle-company-is-cult-ish/</link>
		<comments>http://justinshattuck.com/2010/blyths-partylite-candle-company-is-cult-ish/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 19:40:12 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Everyday]]></category>
		<category><![CDATA[Featured Article]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=322</guid>
		<description><![CDATA[During the good old days in 2007, I posted an article, I don&#8217;t like Partylite Candle Company. The article was meant to be a decently small rant about my trip to a Partylite party for my cousin. I wrote about...]]></description>
			<content:encoded><![CDATA[<p>During the good old days in 2007, I posted an article, <a href="http://old.justinshattuck.com/2007/02/21/i-dont-like-partylite-candle-company/" rel="nofollow" title="I dont like the candlelite candle company">I don&#8217;t like Partylite Candle Company</a>.  The article was meant to be a decently small rant about my trip to a Partylite party for my cousin.  I wrote about the experience and really just wanted to use it as a medium to vent.  Little did I know, I would receive hundreds of comments and it would become one of the most popular articles I&#8217;ve published.</p>
<p>Numerous crazies thought I was making a killing off the article itself.  Just to put it out there, I received no financial compensation, advertising revenue or monies for writing my opinion.  In fact, I guess you could say I was out money, considering hosting fees and such.  However, I did learn a great deal about search engine optimization for my future articles.  The ultimate fact is that Partylite Candle Company Consultants are like crazy members of a cult!</p>
<p>On more than one occasion I sat down in my office and opened up my email to find threats from single mothers.  These single mothers of however-many children were upset that I was <em>giving their company a bad name</em>.  Fact of that matter is the company itself gave themselves a bad name.  I simply wrote about an experience and these ladies just couldn&#8217;t handle that I have rights too.  Despite the comments being ridiculous, I always let them through.  I talked to a few ladies on the telephone, via email and through comment replies.</p>
<p>Cult pejoratively refers to a group whose beliefs or practices could be, reasonably or unreasonably, considered strange.  All I can testify to from my experience with the partylite consultants comment on my thread is that they have some crazy beliefs.  They are more than strange!  I did however get excited to read that so many people in the world do agree with what I am saying and more so those that disagree.  I am all for confrontation, so let me re-state my thoughts.</p>
<p>Blyth&#8217;s Partylite Candle Company is a complete joke of a business.  They are just like the other pyramid schemes and MLM companies who prey on the individuals sense of obligation.  There are so many mlm and pyramid companies in our society it is sick.  Honestly, I bet there is a pyramid mlm company for just about every niche industry.  Need a can opener?  Hit up pampered chef and all their crazy women.  Need a candle, hit up a non-supportive, ignorant consultant from Partylite that Blyth trusts in.  Blyth likely does not care about any more than its financial numbers at the end of the day.  If these consultants of theirs can keep them in the black and potential turn a major profit, who&#8217;s to tell them to stop, right?</p>
<p>Move forward Partylite, just do not ever expect me to jump on board.  I know you could care less if I am on board.  But, remember, when people search for Party Lite Candle Company or Partylite Candle Company on google, they get this article.  They get my previous article.  They ultimately get to see my opinions above all the other subjective opinions saying that Blyth is a great company.  </p>
<p>I guess I should begin preparations for the large amount of comments I could receive from this article.  Kudos!  Tell me how you feel.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/blyths-partylite-candle-company-is-cult-ish/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fixing WhiteSpace in XML WordPress Feeds</title>
		<link>http://justinshattuck.com/2010/fixing-whitespace-in-xml-wordpress-feeds/</link>
		<comments>http://justinshattuck.com/2010/fixing-whitespace-in-xml-wordpress-feeds/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:16:51 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=307</guid>
		<description><![CDATA[Ever setup a site utilizing WordPress just to find out the feed generated by WordPress isn&#8217;t validating? You cannot burn your feed on feedburner unless it validates. Additionally, many RSS/Atom feed readers will not allow the feed to be used...]]></description>
			<content:encoded><![CDATA[<p>Ever setup a site utilizing WordPress just to find out the feed generated by WordPress isn&#8217;t validating?  You cannot burn your feed on feedburner unless it validates.  Additionally, many RSS/Atom feed readers will not allow the feed to be used unless it validates standards as well.  I discovered an issue yesterday that was adding four lines of white space to the top of my XML feed for this site.</p>
<p>I surfed the web and found some solutions saying that I needed to make sure I removed all the leading whitespace lines before and after my <code>&#60;&#63;php &#63;&#62;</code> throughout my template and WordPress core files.  I realized that I have feeds working on a dozen other sites using WordPress without any problems.  Therefore, I chalked it up to a boo-boo on my end and I as unable to find it.  </p>
<p>The exact error I was having is:</p>
<blockquote><p><code>XML Parsing Error: XML or text declaration not at start of entity<br />
Location: http://justinshattuck.com/feed/<br />
Line Number 4, Column 1:&#60;&#63;xml version="1.0" encoding="UTF-8"&#63;&#62;<br />
^</code></p></blockquote>
<p>I decided to write up a quick script to munch the information coming out of my feed, parse it, eat the white space and call it quits.  So, with a bit of <code> ob_start </code> love I was able to come up with the following script.  Please note this will require PHP5 as some of the functions used will not work on any previous version of PHP.</p>
<p><code><br />
<?php<br />
function killwhitespace($stuff) {<br />
	$good = false;<br />
	/* does our heading have legit content? */<br />
	$exist = false;<br />
	/* tear it apart and return clear text*/<br />
	foreach (headers_list() as $heading) {<br />
		if (preg_match("/^content-type:\\s+(text\\/|application\\/((xhtml|atom|rss)\\+xml|xml))/i", $heading)) {<br />
			$good = true;<br />
		}<br />
		if (preg_match("/^content-type:\\s+/i", $heading)) {<br />
			$exist = true;<br />
		}<br />
	}<br />
	/* work nom nom nom */<br />
	if ($good || !$exist) {<br />
		return preg_replace("/\\A\\s*/m", "", $stuff);<br />
	} else {<br />
		return $stuff;<br />
	}<br />
}<br />
/* time to send 'er back */<br />
ob_start("killwhitespace");<br />
?><br />
</code></p>
<p>Copy and paste that code into a new document named <code>fixwhitespace.php</code></p>
<p>Getting this bad boy to work is pretty simple.  Just goto your root WordPress directory and upload the file.  Next, open up <code>index.php</code> and insert <code>include("fixwhitespace.php");</code> in above the line that says <code>define('WP_USE_THEMES', true);</code>.  The final file should look something like this:</p>
<p><code><br />
<?php<br />
include("fixwhitespace.php");<br />
define('WP_USE_THEMES', true);<br />
require('./site/wp-blog-header.php');<br />
?></code></p>
<p>Now, the next time you try to visit yourdomainusingwordpress.com/feed/ it should validate, at least if the only problem you were having is the same issue I had, where the white space was being generated from some beast you couldn&#8217;t find within your code.</p>
<p>Kudos!</p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/fixing-whitespace-in-xml-wordpress-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugs Bugs Bugs I hate Bugs</title>
		<link>http://justinshattuck.com/2010/bugs-bugs-bugs-i-hate-bugs/</link>
		<comments>http://justinshattuck.com/2010/bugs-bugs-bugs-i-hate-bugs/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:12:37 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Everyday]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=302</guid>
		<description><![CDATA[Literally! I cannot stand bugs of any sort. Crickets, moths, spiders and all the other multi-legged disgusting creatures that crunch when you step on them. I&#8217;m not afraid of bugs. I don&#8217;t yell when I see a bug. But I...]]></description>
			<content:encoded><![CDATA[<p>Literally!  I cannot stand bugs of any sort.  Crickets, moths, spiders and all the other multi-legged disgusting creatures that crunch when you step on them.  I&#8217;m not afraid of bugs.  I don&#8217;t yell when I see a bug.  But I make sure I kill any insect that crosses my path.  Why you ask?  Because I am bigger, higher on the food chain and mostly because I just can&#8217;t resist.</p>
<p>Additionally, I don&#8217;t want any bugs on my site.  I&#8217;ve stumbled across a few and I&#8217;ve been informed about a few more.  But, I know there are likely to be many more out there that I am unaware of.  So, please do us all a favor (you and I), and <a href="http://justinshattuck.com/contact/" rel="nofollow" title="Contact Justin Shattuck">contact me</a> with any bugs or hiccups you find during your surfing experience.  I need to know.  They need to be resolved.  Come on, tell me!  </p>
<p>Next, I need a bit of input.  What do you think is too slow or too fast for the slider on the home page?  I had it set to 8 seconds and many people complained that it was too long.  Then, I set it to five seconds and I had a few people say it wasn&#8217;t long enough.  My solution might just be to embed a pause/play feature that will allow visitors to stop the rotation and read whatever mumbo-jumbo I have on my images.  But, I need to know what you clowns think.  So, comment here, send me an email, or whatever means you have to reach out to me.  Reach out and let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/bugs-bugs-bugs-i-hate-bugs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am whatever I say I am</title>
		<link>http://justinshattuck.com/2010/i-am-whatever-i-say-i-am/</link>
		<comments>http://justinshattuck.com/2010/i-am-whatever-i-say-i-am/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:07:45 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Everyday]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Featured Article]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[tagline]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/?p=299</guid>
		<description><![CDATA[Yesterday I decided to launch the site with its new fresh appearance. I received a large amount of great feedback and a question about the new title, &#8220;You don&#8217;t know shat.&#8221; The statement, &#8220;you don&#8217;t know shat,&#8221; was thought up...]]></description>
			<content:encoded><![CDATA[<p>Yesterday I decided to launch the site with its new fresh appearance.  I received a large amount of great feedback and a question about the new title, &#8220;You don&#8217;t know shat.&#8221;  The statement, &#8220;you don&#8217;t know shat,&#8221; was thought up a bit over a year ago while I was talking to a client.  I asked this client a question and his response was, &#8220;I don&#8217;t know what Shat knows about the web.&#8221;  It really stuck and honestly, it fits me quite well.</p>
<p>Most of my friends, colleagues and readership knows I am a bit of a black sheep when it comes to trends on the internet.  I critique often and always have honest feedback when it comes to ideas.  I&#8217;m sometimes a touch too blatant and border-line rude, but I owe no apologies.  You don&#8217;t know Shat, is entirely true on the play on words.  Many don&#8217;t know a whole heck of a lot about me and even more so a whole heck of a lot about the web. </p>
<p>You read various websites giving you tips and tricks, but there is not a lot breaking down why these tips or tricks are good and bad.  I intend to change that with my new site.  Moving forward you can count on me to give you some constructive criticism on all the junk flowing through the internet pipes.  I am Justin Shattuck, a mid-twenties entrepreneur and junkie when it comes to the web.  The title of this article means just about nothing, I just stole it from Emenim&#8217;s song lyrics.  But, it sits true with my new brand.  YOU DO NOT KNOW SHAT.  So let&#8217;s fix it, be prepared to learn some shat!</p>
<p>If you have something you would like for me to break down, deconstruct or sort, let me know.  I&#8217;m all ears and fingers.. typing.. relentlessly..</p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/i-am-whatever-i-say-i-am/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrity is not subjective</title>
		<link>http://justinshattuck.com/2010/integrity-is-not-subjective-to-potential-money/</link>
		<comments>http://justinshattuck.com/2010/integrity-is-not-subjective-to-potential-money/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 23:05:19 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[honesty]]></category>
		<category><![CDATA[integrity]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/site/?p=290</guid>
		<description><![CDATA[Far too often and I mean absolutely far too often &#8212; I am witness to individuals&#8217; giving up their personal integrity to make a quick buck or alleviate confrontation that might arise from their sense of right and wrong. Now,...]]></description>
			<content:encoded><![CDATA[<p>Far too often and I mean absolutely far too often &mdash; I am witness to individuals&#8217; giving up their personal integrity to make a quick buck or alleviate confrontation that might arise from their sense of right and wrong.  Now, I am not necessarily just writing about one persons right to do something slightly incorrect to make money.  But, I am typing words to those who find themselves thinking its better not to ask than it is to tell, correct or educate.</p>
<p>As a whole, the majority of the public, when asked, believes integrity to be a quality encapsulating a sense of honesty, truthfulness and strict moral ethics.  You dig my play on words there?  Integrity comes from a latin word meaning, whole!  Back on topic.  People are hypocrites, heck, I&#8217;m sure we all have said or done something that we previous criticized something else for.  What really gets under my skin is people sacrificing what is truly necessary to succeed because they&#8217;re too afraid of the outcome.  Maybe I am not talking about Integrity at all, but more less fear itself.</p>
<p>I discovered that an individual was thinking its better to, &#8220;not ask a question you may not want to know the answer to,&#8221; and I have believed in this motto for some areas of my life.  But, when it comes to clients depending on my brain to work for their well-being.. I feel it is far better to do everything I can to make sure its all correct.  The exact circumstances I am thinking of I will keep to myself, but basically I was informed I should not have attempted to figure out a problem by the means I took.  Essentially, I acted and asked questions until I reached the top of an organization and found my answers.  I think its correct to ask questions, explain details and better serve my clients.  But, I guess when I explained this to someone else I know, they felt it was improper as I should have moved forward and played stupid.</p>
<p>So, it seems people are willing to give up their integrity, their wholeness of honesty and truthfulness, their personal values which obviously are not consistent, when they can advance in time or money.  Want to save time and get a project completed?  Simple, just don&#8217;t ask the questions to the proper parties at any cost to determine a solution, which causes horrible back-lash in the end.  </p>
<p>My rant is simple.  If you&#8217;re operating a small business, make sure your integrity is in fact integrity.  Your value system, honor code, and ethical values must stand tall against those standing in your way.  Use them to your advantage.  The fact that someone just told me my integrity is a problem, makes me think that person is a complete jack-ass.</p>
<p>End of rant.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/integrity-is-not-subjective-to-potential-money/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ASCII Character to HTML Code Lookup Table</title>
		<link>http://justinshattuck.com/2010/ascii-character-to-html-lookup-table/</link>
		<comments>http://justinshattuck.com/2010/ascii-character-to-html-lookup-table/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:43:23 +0000</pubDate>
		<dc:creator>Shat</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[ansii]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[decimal]]></category>
		<category><![CDATA[hex]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://justinshattuck.com/site/?p=242</guid>
		<description><![CDATA[There are a variety of tables providing a decent cross reference between ascii, decimal, hex and html codes; but none that really please my senses.  I made this one and you're free to rip it for your own use.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all been surfing the web looking for the HTML code that will allow us to insert certain symbols in our markup.  Today I was needing to do a few things and had a bit of difficulty trying to find a specific character.  Therefore, to ease this pain for any future inquiries I might have and yours, I created this huge table to help.  <strong>Feel free to rip it</strong> and put it on your own website, server or resource list.  All I ask is you credit me back some how.  I accept cases of Monster as well.<br />
<!-- So, you've decided to rip this bad boy off?  Excellent!  Simply copy from the start of the table, through the closing table tag. There is a comment down there too --></p>
<table>
<tbody>
<tr>
<th>
<h4>Character</h4>
</th>
<th>
<h4>HTML Number</h4>
</th>
<th>
<h4>HTML Code</h4>
</th>
</tr>
<tr>
<td>
<pre>space</pre>
</td>
<td><code>&amp;&#35;32&#59;</code></td>
</tr>
<tr>
<td>&#33;</td>
<td><code>&amp;&#35;33&#59;</code></td>
</tr>
<tr>
<td>&#34;</td>
<td><code>&amp;&#35;34&#59;</code></td>
<td><code>&amp;quot&#59;</code></td>
</tr>
<tr>
<td>&#35;</td>
<td><code>&amp;&#35;35&#59;</code></td>
</tr>
<tr>
<td>&#36;</td>
<td><code>&amp;&#35;36&#59;</code></td>
</tr>
<tr>
<td>&#37;</td>
<td><code>&amp;&#35;37&#59;</code></td>
</tr>
<tr>
<td>&#38;</td>
<td><code>&amp;&#35;38&#59;</code></td>
<td><code>&amp;amp&#59;</code></td>
</tr>
<tr>
<td>&#39;</td>
<td><code>&amp;&#35;39&#59;</code></td>
</tr>
<tr>
<td>&#40;</td>
<td><code>&amp;&#35;40&#59;</code></td>
</tr>
<tr>
<td>&#41;</td>
<td><code>&amp;&#35;41&#59;</code></td>
</tr>
<tr>
<td>&#42;</td>
<td><code>&amp;&#35;42&#59;</code></td>
</tr>
<tr>
<td>&#43;</td>
<td><code>&amp;&#35;43&#59;</code></td>
</tr>
<tr>
<td>&#44;</td>
<td><code>&amp;&#35;44&#59;</code></td>
</tr>
<tr>
<td>&#45;</td>
<td><code>&amp;&#35;45&#59;</code></td>
</tr>
<tr>
<td>&#46;</td>
<td><code>&amp;&#35;46&#59;</code></td>
</tr>
<tr>
<td>&#47;</td>
<td><code>&amp;&#35;47&#59;</code></td>
</tr>
<tr>
<td>&#48;</td>
<td><code>&amp;&#35;48&#59;</code></td>
</tr>
<tr>
<td>&#49;</td>
<td><code>&amp;&#35;49&#59;</code></td>
</tr>
<tr>
<td>&#50;</td>
<td><code>&amp;&#35;50&#59;</code></td>
</tr>
<tr>
<td>&#51;</td>
<td><code>&amp;&#35;51&#59;</code></td>
</tr>
<tr>
<td>&#52;</td>
<td><code>&amp;&#35;52&#59;</code></td>
</tr>
<tr>
<td>&#53;</td>
<td><code>&amp;&#35;53&#59;</code></td>
</tr>
<tr>
<td>&#54;</td>
<td><code>&amp;&#35;54&#59;</code></td>
</tr>
<tr>
<td>&#55;</td>
<td><code>&amp;&#35;55&#59;</code></td>
</tr>
<tr>
<td>&#56;</td>
<td><code>&amp;&#35;56&#59;</code></td>
</tr>
<tr>
<td>&#57;</td>
<td><code>&amp;&#35;57&#59;</code></td>
</tr>
<tr>
<td>&#58;</td>
<td><code>&amp;&#35;58&#59;</code></td>
</tr>
<tr>
<td>&#59;</td>
<td><code>&amp;&#35;59&#59;</code></td>
</tr>
<tr>
<td>&#60;</td>
<td><code>&amp;&#35;60&#59;</code></td>
<td><code>&amp;lt&#59;</code></td>
</tr>
<tr>
<td>&#61;</td>
<td><code>&amp;&#35;61&#59;</code></td>
</tr>
<tr>
<td>&#62;</td>
<td><code>&amp;&#35;62&#59;</code></td>
<td><code>&amp;gt&#59;</code></td>
</tr>
<tr>
<td>&#63;</td>
<td><code>&amp;&#35;63&#59;</code></td>
</tr>
<tr>
<td>&#64;</td>
<td><code>&amp;&#35;64&#59;</code></td>
</tr>
<tr>
<td>&#65;</td>
<td><code>&amp;&#35;65&#59;</code></td>
</tr>
<tr>
<td>&#66;</td>
<td><code>&amp;&#35;66&#59;</code></td>
</tr>
<tr>
<td>&#67;</td>
<td><code>&amp;&#35;67&#59;</code></td>
</tr>
<tr>
<td>&#68;</td>
<td><code>&amp;&#35;68&#59;</code></td>
</tr>
<tr>
<td>&#69;</td>
<td><code>&amp;&#35;69&#59;</code></td>
</tr>
<tr>
<td>&#70;</td>
<td><code>&amp;&#35;70&#59;</code></td>
</tr>
<tr>
<td>&#71;</td>
<td><code>&amp;&#35;71&#59;</code></td>
</tr>
<tr>
<td>&#72;</td>
<td><code>&amp;&#35;72&#59;</code></td>
</tr>
<tr>
<td>&#73;</td>
<td><code>&amp;&#35;73&#59;</code></td>
</tr>
<tr>
<td>&#74;</td>
<td><code>&amp;&#35;74&#59;</code></td>
</tr>
<tr>
<td>&#75;</td>
<td><code>&amp;&#35;75&#59;</code></td>
</tr>
<tr>
<td>&#76;</td>
<td><code>&amp;&#35;76&#59;</code></td>
</tr>
<tr>
<td>&#77;</td>
<td><code>&amp;&#35;77&#59;</code></td>
</tr>
<tr>
<td>&#78;</td>
<td><code>&amp;&#35;78&#59;</code></td>
</tr>
<tr>
<td>&#79;</td>
<td><code>&amp;&#35;79&#59;</code></td>
</tr>
<tr>
<td>&#80;</td>
<td><code>&amp;&#35;80&#59;</code></td>
</tr>
<tr>
<td>&#81;</td>
<td><code>&amp;&#35;81&#59;</code></td>
</tr>
<tr>
<td>&#82;</td>
<td><code>&amp;&#35;82&#59;</code></td>
</tr>
<tr>
<td>&#83;</td>
<td><code>&amp;&#35;83&#59;</code></td>
</tr>
<tr>
<td>&#84;</td>
<td><code>&amp;&#35;84&#59;</code></td>
</tr>
<tr>
<td>&#85;</td>
<td><code>&amp;&#35;85&#59;</code></td>
</tr>
<tr>
<td>&#86;</td>
<td><code>&amp;&#35;86&#59;</code></td>
</tr>
<tr>
<td>&#87;</td>
<td><code>&amp;&#35;87&#59;</code></td>
</tr>
<tr>
<td>&#88;</td>
<td><code>&amp;&#35;88&#59;</code></td>
</tr>
<tr>
<td>&#89;</td>
<td><code>&amp;&#35;89&#59;</code></td>
</tr>
<tr>
<td>&#90;</td>
<td><code>&amp;&#35;90&#59;</code></td>
</tr>
<tr>
<td>&#91;</td>
<td><code>&amp;&#35;91&#59;</code></td>
</tr>
<tr>
<td>&#92;</td>
<td><code>&amp;&#35;92&#59;</code></td>
</tr>
<tr>
<td>&#93;</td>
<td><code>&amp;&#35;93&#59;</code></td>
</tr>
<tr>
<td>&#94;</td>
<td><code>&amp;&#35;94&#59;</code></td>
</tr>
<tr>
<td>&#95;</td>
<td><code>&amp;&#35;95&#59;</code></td>
</tr>
<tr>
<td>&#96;</td>
<td><code>&amp;&#35;96&#59;</code></td>
</tr>
<tr>
<td>&#97;</td>
<td><code>&amp;&#35;97&#59;</code></td>
</tr>
<tr>
<td>&#98;</td>
<td><code>&amp;&#35;98&#59;</code></td>
</tr>
<tr>
<td>&#99;</td>
<td><code>&amp;&#35;99&#59;</code></td>
</tr>
<tr>
<td>&#100;</td>
<td><code>&amp;&#35;100&#59;</code></td>
</tr>
<tr>
<td>&#101;</td>
<td><code>&amp;&#35;101&#59;</code></td>
</tr>
<tr>
<td>&#102;</td>
<td><code>&amp;&#35;102&#59;</code></td>
</tr>
<tr>
<td>&#103;</td>
<td><code>&amp;&#35;103&#59;</code></td>
</tr>
<tr>
<td>&#104;</td>
<td><code>&amp;&#35;104&#59;</code></td>
</tr>
<tr>
<td>&#105;</td>
<td><code>&amp;&#35;105&#59;</code></td>
</tr>
<tr>
<td>&#106;</td>
<td><code>&amp;&#35;106&#59;</code></td>
</tr>
<tr>
<td>&#107;</td>
<td><code>&amp;&#35;107&#59;</code></td>
</tr>
<tr>
<td>&#108;</td>
<td><code>&amp;&#35;108&#59;</code></td>
</tr>
<tr>
<td>&#109;</td>
<td><code>&amp;&#35;109&#59;</code></td>
</tr>
<tr>
<td>&#110;</td>
<td><code>&amp;&#35;110&#59;</code></td>
</tr>
<tr>
<td>&#111;</td>
<td><code>&amp;&#35;111&#59;</code></td>
</tr>
<tr>
<td>&#112;</td>
<td><code>&amp;&#35;112&#59;</code></td>
</tr>
<tr>
<td>&#113;</td>
<td><code>&amp;&#35;113&#59;</code></td>
</tr>
<tr>
<td>&#114;</td>
<td><code>&amp;&#35;114&#59;</code></td>
</tr>
<tr>
<td>&#115;</td>
<td><code>&amp;&#35;115&#59;</code></td>
</tr>
<tr>
<td>&#116;</td>
<td><code>&amp;&#35;116&#59;</code></td>
</tr>
<tr>
<td>&#117;</td>
<td><code>&amp;&#35;117&#59;</code></td>
</tr>
<tr>
<td>&#118;</td>
<td><code>&amp;&#35;118&#59;</code></td>
</tr>
<tr>
<td>&#119;</td>
<td><code>&amp;&#35;119&#59;</code></td>
</tr>
<tr>
<td>&#120;</td>
<td><code>&amp;&#35;120&#59;</code></td>
</tr>
<tr>
<td>&#121;</td>
<td><code>&amp;&#35;121&#59;</code></td>
</tr>
<tr>
<td>&#122;</td>
<td><code>&amp;&#35;122&#59;</code></td>
</tr>
<tr>
<td>&#123;</td>
<td><code>&amp;&#35;123&#59;</code></td>
</tr>
<tr>
<td>&#124;</td>
<td><code>&amp;&#35;124&#59;</code></td>
</tr>
<tr>
<td>&#125;</td>
<td><code>&amp;&#35;125&#59;</code></td>
</tr>
<tr>
<td>&#126;</td>
<td><code>&amp;&#35;126&#59;</code></td>
</tr>
<tr>
<td>&#127;</td>
<td><code>&amp;&#35;127&#59;</code></td>
</tr>
<tr>
<td>&#8364;</td>
<td><code>&amp;&#35;128&#59;</code></td>
</tr>
<tr>
<td></td>
<td><code>&amp;&#35;129&#59;</code></td>
</tr>
<tr>
<td>&#8218;</td>
<td><code>&amp;&#35;130&#59;</code></td>
</tr>
<tr>
<td>&#402;</td>
<td><code>&amp;&#35;131&#59;</code></td>
</tr>
<tr>
<td>&#8222;</td>
<td><code>&amp;&#35;132&#59;</code></td>
</tr>
<tr>
<td>&#8230;</td>
<td><code>&amp;&#35;133&#59;</code></td>
</tr>
<tr>
<td>&#8224;</td>
<td><code>&amp;&#35;134&#59;</code></td>
</tr>
<tr>
<td>&#8225;</td>
<td><code>&amp;&#35;135&#59;</code></td>
</tr>
<tr>
<td>&#710;</td>
<td><code>&amp;&#35;136&#59;</code></td>
</tr>
<tr>
<td>&#8240;</td>
<td><code>&amp;&#35;137&#59;</code></td>
</tr>
<tr>
<td>&#352;</td>
<td><code>&amp;&#35;138&#59;</code></td>
</tr>
<tr>
<td>&#8249;</td>
<td><code>&amp;&#35;139&#59;</code></td>
</tr>
<tr>
<td>&#338;</td>
<td><code>&amp;&#35;140&#59;</code></td>
</tr>
<tr>
<td></td>
<td><code>&amp;&#35;141&#59;</code></td>
</tr>
<tr>
<td>&#382;</td>
<td><code>&amp;&#35;142&#59;</code></td>
</tr>
<tr>
<td></td>
<td><code>&amp;&#35;143&#59;</code></td>
</tr>
<tr>
<td></td>
<td><code>&amp;&#35;144&#59;</code></td>
</tr>
<tr>
<td>&#8216;</td>
<td><code>&amp;&#35;145&#59;</code></td>
</tr>
<tr>
<td>&#8217;</td>
<td><code>&amp;&#35;146&#59;</code></td>
</tr>
<tr>
<td>&#8220;</td>
<td><code>&amp;&#35;147&#59;</code></td>
</tr>
<tr>
<td>&#8221;</td>
<td><code>&amp;&#35;148&#59;</code></td>
</tr>
<tr>
<td>&#8226;</td>
<td><code>&amp;&#35;149&#59;</code></td>
</tr>
<tr>
<td>&#8211;</td>
<td><code>&amp;&#35;150&#59;</code></td>
<td><code>&amp;ndash&#59;</code></td>
</tr>
<tr>
<td>&#8212;</td>
<td><code>&amp;&#35;151&#59;</code></td>
<td><code>&amp;mdash&#59;</code></td>
</tr>
<tr>
<td>&#732;</td>
<td><code>&amp;&#35;152&#59;</code></td>
</tr>
<tr>
<td>&#8482;</td>
<td><code>&amp;&#35;153&#59;</code></td>
</tr>
<tr>
<td>&#353;</td>
<td><code>&amp;&#35;154&#59;</code></td>
</tr>
<tr>
<td>&#8250;</td>
<td><code>&amp;&#35;155&#59;</code></td>
</tr>
<tr>
<td>&#339;</td>
<td><code>&amp;&#35;156&#59;</code></td>
</tr>
<tr>
<td></td>
<td><code>&amp;&#35;157&#59;</code></td>
</tr>
<tr>
<td></td>
<td><code>&amp;&#35;158&#59;</code></td>
</tr>
<tr>
<td>&#376;</td>
<td><code>&amp;&#35;159&#59;</code></td>
</tr>
<tr>
<td>&#160;</td>
<td><code>&amp;&#35;160&#59;</code></td>
<td><code>&amp;nbsp&#59;</code></td>
</tr>
<tr>
<td>&#161;</td>
<td><code>&amp;&#35;161&#59;</code></td>
<td><code>&amp;iexcl&#59;</code></td>
</tr>
<tr>
<td>&#162;</td>
<td><code>&amp;&#35;162&#59;</code></td>
<td><code>&amp;cent&#59;</code></td>
</tr>
<tr>
<td>&#163;</td>
<td><code>&amp;&#35;163&#59;</code></td>
<td><code>&amp;pound&#59;</code></td>
</tr>
<tr>
<td>&#164;</td>
<td><code>&amp;&#35;164&#59;</code></td>
<td><code>&amp;curren&#59;</code></td>
</tr>
<tr>
<td>&#165;</td>
<td><code>&amp;&#35;165&#59;</code></td>
<td><code>&amp;yen&#59;</code></td>
</tr>
<tr>
<td>&#166;</td>
<td><code>&amp;&#35;166&#59;</code></td>
<td><code>&amp;brvbar&#59;</code></td>
</tr>
<tr>
<td>&#167;</td>
<td><code>&amp;&#35;167&#59;</code></td>
<td><code>&amp;sect&#59;</code></td>
</tr>
<tr>
<td>&#168;</td>
<td><code>&amp;&#35;168&#59;</code></td>
<td><code>&amp;uml&#59;</code></td>
</tr>
<tr>
<td>&#169;</td>
<td><code>&amp;&#35;169&#59;</code></td>
<td><code>&amp;copy&#59;</code></td>
</tr>
<tr>
<td>&#170;</td>
<td><code>&amp;&#35;170&#59;</code></td>
<td><code>&amp;ordf&#59;</code></td>
</tr>
<tr>
<td>&#171;</td>
<td><code>&amp;&#35;171&#59;</code></td>
<td><code>&amp;laquo&#59;</code></td>
</tr>
<tr>
<td>&#172;</td>
<td><code>&amp;&#35;172&#59;</code></td>
<td><code>&amp;not&#59;</code></td>
</tr>
<tr>
<td>&#173;</td>
<td><code>&amp;&#35;173&#59;</code></td>
<td><code>&amp;shy&#59;</code></td>
</tr>
<tr>
<td>&#174;</td>
<td><code>&amp;&#35;174&#59;</code></td>
<td><code>&amp;reg&#59;</code></td>
</tr>
<tr>
<td>&#175;</td>
<td><code>&amp;&#35;175&#59;</code></td>
<td><code>&amp;macr&#59;</code></td>
</tr>
<tr>
<td>&#176;</td>
<td><code>&amp;&#35;176&#59;</code></td>
<td><code>&amp;deg&#59;</code></td>
</tr>
<tr>
<td>&#177;</td>
<td><code>&amp;&#35;177&#59;</code></td>
<td><code>&amp;plusmn&#59;</code></td>
</tr>
<tr>
<td>&#178;</td>
<td><code>&amp;&#35;178&#59;</code></td>
<td><code>&amp;sup2&#59;</code></td>
</tr>
<tr>
<td>&#179;</td>
<td><code>&amp;&#35;179&#59;</code></td>
<td><code>&amp;sup3&#59;</code></td>
</tr>
<tr>
<td>&#180;</td>
<td><code>&amp;&#35;180&#59;</code></td>
<td><code>&amp;acute&#59;</code></td>
</tr>
<tr>
<td>&#181;</td>
<td><code>&amp;&#35;181&#59;</code></td>
<td><code>&amp;micro&#59;</code></td>
</tr>
<tr>
<td>&#182;</td>
<td><code>&amp;&#35;182&#59;</code></td>
<td><code>&amp;para&#59;</code></td>
</tr>
<tr>
<td>&#183;</td>
<td><code>&amp;&#35;183&#59;</code></td>
<td><code>&amp;middot&#59;</code></td>
</tr>
<tr>
<td>&#184;</td>
<td><code>&amp;&#35;184&#59;</code></td>
<td><code>&amp;cedil&#59;</code></td>
</tr>
<tr>
<td>&#185;</td>
<td><code>&amp;&#35;185&#59;</code></td>
<td><code>&amp;sup1&#59;</code></td>
</tr>
<tr>
<td>&#186;</td>
<td><code>&amp;&#35;186&#59;</code></td>
<td><code>&amp;ordm&#59;</code></td>
</tr>
<tr>
<td>&#187;</td>
<td><code>&amp;&#35;187&#59;</code></td>
<td><code>&amp;raquo&#59;</code></td>
</tr>
<tr>
<td>&#188;</td>
<td><code>&amp;&#35;188&#59;</code></td>
<td><code>&amp;frac14&#59;</code></td>
</tr>
<tr>
<td>&#189;</td>
<td><code>&amp;&#35;189&#59;</code></td>
<td><code>&amp;frac12&#59;</code></td>
</tr>
<tr>
<td>&#190;</td>
<td><code>&amp;&#35;190&#59;</code></td>
<td><code>&amp;frac34&#59;</code></td>
</tr>
<tr>
<td>&#191;</td>
<td><code>&amp;&#35;191&#59;</code></td>
<td><code>&amp;iquest&#59;</code></td>
</tr>
<tr>
<td>&#192;</td>
<td><code>&amp;&#35;192&#59;</code></td>
<td><code>&amp;Agrave&#59;</code></td>
</tr>
<tr>
<td>&#193;</td>
<td><code>&amp;&#35;193&#59;</code></td>
<td><code>&amp;Aacute&#59;</code></td>
</tr>
<tr>
<td>&#194;</td>
<td><code>&amp;&#35;194&#59;</code></td>
<td><code>&amp;Acirc&#59;</code></td>
</tr>
<tr>
<td>&#195;</td>
<td><code>&amp;&#35;195&#59;</code></td>
<td><code>&amp;Atilde&#59;</code></td>
</tr>
<tr>
<td>&#196;</td>
<td><code>&amp;&#35;196&#59;</code></td>
<td><code>&amp;Auml&#59;</code></td>
</tr>
<tr>
<td>&#197;</td>
<td><code>&amp;&#35;197&#59;</code></td>
<td><code>&amp;Aring&#59;</code></td>
</tr>
<tr>
<td>&#198;</td>
<td><code>&amp;&#35;198&#59;</code></td>
<td><code>&amp;AElig&#59;</code></td>
</tr>
<tr>
<td>&#199;</td>
<td><code>&amp;&#35;199&#59;</code></td>
<td><code>&amp;Ccedil&#59;</code></td>
</tr>
<tr>
<td>&#200;</td>
<td><code>&amp;&#35;200&#59;</code></td>
<td><code>&amp;Egrave&#59;</code></td>
</tr>
<tr>
<td>&#201;</td>
<td><code>&amp;&#35;201&#59;</code></td>
<td><code>&amp;Eacute&#59;</code></td>
</tr>
<tr>
<td>&#202;</td>
<td><code>&amp;&#35;202&#59;</code></td>
<td><code>&amp;Ecirc&#59;</code></td>
</tr>
<tr>
<td>&#203;</td>
<td><code>&amp;&#35;203&#59;</code></td>
<td><code>&amp;Euml&#59;</code></td>
</tr>
<tr>
<td>&#204;</td>
<td><code>&amp;&#35;204&#59;</code></td>
<td><code>&amp;lgrave&#59;</code></td>
</tr>
<tr>
<td>&#205;</td>
<td><code>&amp;&#35;205&#59;</code></td>
<td><code>&amp;lacute&#59;</code></td>
</tr>
<tr>
<td>&#206;</td>
<td><code>&amp;&#35;206&#59;</code></td>
<td><code>&amp;lcirc&#59;</code></td>
</tr>
<tr>
<td>&#207;</td>
<td><code>&amp;&#35;207&#59;</code></td>
<td><code>&amp;luml&#59;</code></td>
</tr>
<tr>
<td>&#208;</td>
<td><code>&amp;&#35;208&#59;</code></td>
<td><code>&amp;ETH&#59;</code></td>
</tr>
<tr>
<td>&#209;</td>
<td><code>&amp;&#35;209&#59;</code></td>
<td><code>&amp;Ntilde&#59;</code></td>
</tr>
<tr>
<td>&#210;</td>
<td><code>&amp;&#35;210&#59;</code></td>
<td><code>&amp;Ograve&#59;</code></td>
</tr>
<tr>
<td>&#211;</td>
<td><code>&amp;&#35;211&#59;</code></td>
<td><code>&amp;Oacute&#59;</code></td>
</tr>
<tr>
<td>&#212;</td>
<td><code>&amp;&#35;212&#59;</code></td>
<td><code>&amp;Ocirc&#59;</code></td>
</tr>
<tr>
<td>&#213;</td>
<td><code>&amp;&#35;213&#59;</code></td>
<td><code>&amp;Otilde&#59;</code></td>
</tr>
<tr>
<td>&#214;</td>
<td><code>&amp;&#35;214&#59;</code></td>
<td><code>&amp;Ouml&#59;</code></td>
</tr>
<tr>
<td>&#215;</td>
<td><code>&amp;&#35;215&#59;</code></td>
<td><code>&amp;times&#59;</code></td>
</tr>
<tr>
<td>&#216;</td>
<td><code>&amp;&#35;216&#59;</code></td>
<td><code>&amp;Oslash&#59;</code></td>
</tr>
<tr>
<td>&#217;</td>
<td><code>&amp;&#35;217&#59;</code></td>
<td><code>&amp;Ugrave&#59;</code></td>
</tr>
<tr>
<td>&#218;</td>
<td><code>&amp;&#35;218&#59;</code></td>
<td><code>&amp;Uacute&#59;</code></td>
</tr>
<tr>
<td>&#219;</td>
<td><code>&amp;&#35;219&#59;</code></td>
<td><code>&amp;Ucirc&#59;</code></td>
</tr>
<tr>
<td>&#220;</td>
<td><code>&amp;&#35;220&#59;</code></td>
<td><code>&amp;Uuml&#59;</code></td>
</tr>
<tr>
<td>&#221;</td>
<td><code>&amp;&#35;221&#59;</code></td>
<td><code>&amp;Yacute&#59;</code></td>
</tr>
<tr>
<td>&#222;</td>
<td><code>&amp;&#35;222&#59;</code></td>
<td><code>&amp;THORN&#59;</code></td>
</tr>
<tr>
<td>&#223;</td>
<td><code>&amp;&#35;223&#59;</code></td>
<td><code>&amp;szlig&#59;</code></td>
</tr>
<tr>
<td>&#224;</td>
<td><code>&amp;&#35;224&#59;</code></td>
<td><code>&amp;agrave&#59;</code></td>
</tr>
<tr>
<td>&#225;</td>
<td><code>&amp;&#35;225&#59;</code></td>
<td><code>&amp;aacute&#59;</code></td>
</tr>
<tr>
<td>&#226;</td>
<td><code>&amp;&#35;226&#59;</code></td>
<td><code>&amp;acirc&#59;</code></td>
</tr>
<tr>
<td>&#227;</td>
<td><code>&amp;&#35;227&#59;</code></td>
<td><code>&amp;atilde&#59;</code></td>
</tr>
<tr>
<td>&#228;</td>
<td><code>&amp;&#35;228&#59;</code></td>
<td><code>&amp;auml&#59;</code></td>
</tr>
<tr>
<td>&#229;</td>
<td><code>&amp;&#35;229&#59;</code></td>
<td><code>&amp;aring&#59;</code></td>
</tr>
<tr>
<td>&#230;</td>
<td><code>&amp;&#35;230&#59;</code></td>
<td><code>&amp;aelig&#59;</code></td>
</tr>
<tr>
<td>&#231;</td>
<td><code>&amp;&#35;231&#59;</code></td>
<td><code>&amp;ccedil&#59;</code></td>
</tr>
<tr>
<td>&#232;</td>
<td><code>&amp;&#35;232&#59;</code></td>
<td><code>&amp;egrave&#59;</code></td>
</tr>
<tr>
<td>&#233;</td>
<td><code>&amp;&#35;233&#59;</code></td>
<td><code>&amp;eacute&#59;</code></td>
</tr>
<tr>
<td>&#234;</td>
<td><code>&amp;&#35;234&#59;</code></td>
<td><code>&amp;ecirc&#59;</code></td>
</tr>
<tr>
<td>&#235;</td>
<td><code>&amp;&#35;235&#59;</code></td>
<td><code>&amp;euml&#59;</code></td>
</tr>
<tr>
<td>&#236;</td>
<td><code>&amp;&#35;236&#59;</code></td>
<td><code>&amp;igrave&#59;</code></td>
</tr>
<tr>
<td>&#237;</td>
<td><code>&amp;&#35;237&#59;</code></td>
<td><code>&amp;iacute&#59;</code></td>
</tr>
<tr>
<td>&#238;</td>
<td><code>&amp;&#35;238&#59;</code></td>
<td><code>&amp;icirc&#59;</code></td>
</tr>
<tr>
<td>&#239;</td>
<td><code>&amp;&#35;239&#59;</code></td>
<td><code>&amp;iuml&#59;</code></td>
</tr>
<tr>
<td>&#240;</td>
<td><code>&amp;&#35;240&#59;</code></td>
<td><code>&amp;eth&#59;</code></td>
</tr>
<tr>
<td>&#241;</td>
<td><code>&amp;&#35;241&#59;</code></td>
<td><code>&amp;ntilde&#59;</code></td>
</tr>
<tr>
<td>&#242;</td>
<td><code>&amp;&#35;242&#59;</code></td>
<td><code>&amp;ograve&#59;</code></td>
</tr>
<tr>
<td>&#243;</td>
<td><code>&amp;&#35;243&#59;</code></td>
<td><code>&amp;oacute&#59;</code></td>
</tr>
<tr>
<td>&#244;</td>
<td><code>&amp;&#35;244&#59;</code></td>
<td><code>&amp;ocirc&#59;</code></td>
</tr>
<tr>
<td>&#245;</td>
<td><code>&amp;&#35;245&#59;</code></td>
<td><code>&amp;otilde&#59;</code></td>
</tr>
<tr>
<td>&#246;</td>
<td><code>&amp;&#35;246&#59;</code></td>
<td><code>&amp;ouml&#59;</code></td>
</tr>
<tr>
<td>&#247;</td>
<td><code>&amp;&#35;247&#59;</code></td>
<td><code>&amp;divide&#59;</code></td>
</tr>
<tr>
<td>&#248;</td>
<td><code>&amp;&#35;248&#59;</code></td>
<td><code>&amp;oslash&#59;</code></td>
</tr>
<tr>
<td>&#249;</td>
<td><code>&amp;&#35;249&#59;</code></td>
<td><code>&amp;ugrave&#59;</code></td>
</tr>
<tr>
<td>&#250;</td>
<td><code>&amp;&#35;250&#59;</code></td>
<td><code>&amp;uacute&#59;</code></td>
</tr>
<tr>
<td>&#251;</td>
<td><code>&amp;&#35;251&#59;</code></td>
<td><code>&amp;ucirc&#59;</code></td>
</tr>
<tr>
<td>&#252;</td>
<td><code>&amp;&#35;252&#59;</code></td>
<td><code>&amp;uuml&#59;</code></td>
</tr>
<tr>
<td>&#253;</td>
<td><code>&amp;&#35;253&#59;</code></td>
<td><code>&amp;yacute&#59;</code></td>
</tr>
<tr>
<td>&#254;</td>
<td><code>&amp;&#35;254&#59;</code></td>
<td><code>&amp;thorn&#59;</code></td>
</tr>
<tr>
<td>&#255;</td>
<td><code>&amp;&#35;255&#59;</code></td>
<td><code>&amp;yuml&#59;</code></td>
</tr>
<tr>
<td>&#338;</td>
<td><code>&amp;&#35;338&#59;</code></td>
</tr>
<tr>
<td>&#339;</td>
<td><code>&amp;&#35;339&#59;</code></td>
</tr>
<tr>
<td>&#352;</td>
<td><code>&amp;&#35;352&#59;</code></td>
</tr>
<tr>
<td>&#353;</td>
<td><code>&amp;&#35;353&#59;</code></td>
</tr>
<tr>
<td>&#376;</td>
<td><code>&amp;&#35;376&#59;</code></td>
</tr>
<tr>
<td>&#3402;</td>
<td><code>&amp;&#35;3402&#59;</code></td>
</tr>
<tr>
<td>&#8211;</td>
<td><code>&amp;&#35;8211&#59;</code></td>
</tr>
<tr>
<td>&#8212;</td>
<td><code>&amp;&#35;8212&#59;</code></td>
</tr>
<tr>
<td>&#8216;</td>
<td><code>&amp;&#35;8216&#59;</code></td>
<td><code>&amp;lsquo&#59;</code></td>
</tr>
<tr>
<td>&#8217;</td>
<td><code>&amp;&#35;8217&#59;</code></td>
<td><code>&amp;rsquo&#59;</code></td>
</tr>
<tr>
<td>&#8218;</td>
<td><code>&amp;&#35;8218&#59;</code></td>
<td><code>&amp;sbquo&#59;</code></td>
</tr>
<tr>
<td>&#8220;</td>
<td><code>&amp;&#35;8220&#59;</code></td>
<td><code>&amp;ldquo&#59;</code></td>
</tr>
<tr>
<td>&#8221;</td>
<td><code>&amp;&#35;8221&#59;</code></td>
<td><code>&amp;rdquo&#59;</code></td>
</tr>
<tr>
<td>&#8222;</td>
<td><code>&amp;&#35;8222&#59;</code></td>
<td><code>&amp;bdquo&#59;</code></td>
</tr>
<tr>
<td>&#8224;</td>
<td><code>&amp;&#35;8224&#59;</code></td>
<td><code>&amp;dagger&#59;</code></td>
</tr>
<tr>
<td>&#8225;</td>
<td><code>&amp;&#35;8225&#59;</code></td>
<td><code>&amp;Dagger&#59;</code></td>
</tr>
<tr>
<td>&#8226;</td>
<td><code>&amp;&#35;8226&#59;</code></td>
</tr>
<tr>
<td>&#8230;</td>
<td><code>&amp;&#35;8230&#59;</code></td>
</tr>
<tr>
<td>&#8240;</td>
<td><code>&amp;&#35;8240&#59;</code></td>
<td><code>&amp;permil&#59;</code></td>
</tr>
<tr>
<td>&#8249;</td>
<td><code>&amp;&#35;8249&#59;</code></td>
<td><code>&amp;lsaquo&#59;</code></td>
</tr>
<tr>
<td>&#8250;</td>
<td><code>&amp;&#35;8250&#59;</code></td>
<td><code>&amp;rsaquo&#59;</code></td>
</tr>
<tr>
<td>&#8254;</td>
<td><code>&amp;&#35;8254&#59;</code></td>
<td><code>&amp;oline&#59;</code></td>
</tr>
<tr>
<td>&#8264;</td>
<td><code>&amp;&#35;8264&#59;</code></td>
</tr>
<tr>
<td>&#8482;</td>
<td><code>&amp;&#35;8482&#59;</code></td>
<td><code>&amp;trade&#59;</code></td>
</tr>
<tr>
<td>&#8482;</td>
<td><code>&amp;&#35;8482&#59;</code></td>
</tr>
<tr>
<td>&#8592;</td>
<td><code>&amp;&#35;8592&#59;</code></td>
<td><code>&amp;larr&#59;</code></td>
</tr>
<tr>
<td>&#8593;</td>
<td><code>&amp;&#35;8593&#59;</code></td>
<td><code>&amp;uarr&#59;</code></td>
</tr>
<tr>
<td>&#8594;</td>
<td><code>&amp;&#35;8594&#59;</code></td>
<td><code>&amp;rarr&#59;</code></td>
</tr>
<tr>
<td>&#8595;</td>
<td><code>&amp;&#35;8595&#59;</code></td>
<td><code>&amp;darr&#59;</code></td>
</tr>
<tr>
<td>&#9824;</td>
<td><code>&amp;&#35;9824&#59;</code></td>
<td><code>&amp;spades&#59;</code></td>
</tr>
<tr>
<td>&#9827;</td>
<td><code>&amp;&#35;9827&#59;</code></td>
<td><code>&amp;clubs&#59;</code></td>
</tr>
<tr>
<td>&#9829;</td>
<td><code>&amp;&#35;9829&#59;</code></td>
<td><code>&amp;hearts&#59;</code></td>
</tr>
<tr>
<td>&#9830;</td>
<td><code>&amp;&#35;9830&#59;</code></td>
<td><code>&amp;diams&#59;</code></td>
</tr>
</tbody>
</table>
<p><!-- This is where you want to stop.  Don't forget to give me some credit! --></p>
]]></content:encoded>
			<wfw:commentRss>http://justinshattuck.com/2010/ascii-character-to-html-lookup-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
