<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Kim Fenolio</title>
	
	<link>http://www.kimfenolio.com</link>
	<description>Recognizing the importance of convenience, quality and versatility</description>
	<lastBuildDate>Tue, 15 Feb 2011 19:52:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://www.kimfenolio.com</link>
  <url>http://www.kimfenolio.com/favicon1.ico</url>
  <title>Kim Fenolio</title>
</image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/KimFenolio" /><feedburner:info uri="kimfenolio" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>The Purpose and Importance of a DOCTYPE</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/ViEc5ka4OwY/</link>
		<comments>http://www.kimfenolio.com/11-08-2010/the-purpose-and-importance-of-a-doctype/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 15:40:25 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Technical Advice]]></category>
		<category><![CDATA[doc]]></category>
		<category><![CDATA[doctype]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[reasons]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[why]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=188</guid>
		<description><![CDATA[
			
				
			
		Recently someone asked me what a DOCTYPE was. I paused for a moment and thought, &#8220;well, I know the DOCTYPE is the first thing at the top of every webpage, even before the HTML tag.&#8221; Quite honestly though, I had no idea what the purpose of it was. When I start coding a new page, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-08-2010%2Fthe-purpose-and-importance-of-a-doctype%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-08-2010%2Fthe-purpose-and-importance-of-a-doctype%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><img class="alignright size-full wp-image-194" title="doctype" src="http://www.kimfenolio.com/wp-content/uploads/2010/11/doctype.png" alt="doctype" width="250" height="128" />Recently someone asked me what a DOCTYPE was. I paused for a moment and thought, &#8220;well, I know the DOCTYPE is the first thing at the top of every webpage, even before the HTML tag.&#8221; Quite honestly though, I had no idea what the purpose of it was. When I start coding a new page, I let Dreamweaver create a new blank document and generate whatever the default tags are. DOCTYPE was one of the ones it tosses in there for me. I figure, if this is a standard thing on webpages, I should know what it is, why it&#8217;s there and why it&#8217;s so important. Yes, DOCTYPE is important. Why do I know this? It&#8217;s on <strong>every</strong> page of every website, or at least it should be.</p>
<p>For example, the DOCTYPE on this website looks like this:<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</p>
<h3>But What Does it All Mean?</h3>
<p>Let&#8217;s break down what DOCTYPE means to try and make it easy. DOC means document. TYPE means type. Plainly put, the DOCTYPE declares what type of documentation (or rules) our HTML page is being displayed with.  If you don&#8217;t declare a DOCTYPE, the browser will assume you have no idea what you&#8217;re doing and will go into &#8220;fix-it&#8221; mode <em>generally</em> using the transitional ruleset as outlined below. The action is not the same from browser to browser. The unpredictability of that in and of itself should encourage you to not only use a DOCTYPE but also the <em>proper</em> DOCTYPE. If you&#8217;re paying attention that means there are different types of documentation, or sets of rules, that each website can be displayed using.</p>
<h3>Strict DOCTYPE</h3>
<p>The first of three types is the <strong>strict</strong> DOCTYPE. Any website with strict DOCTYPEs will tell the browser to follow the HTML rules as set by the W3C. For those of you not in <em>the know</em>, the World Wide Web Consortium is the lovely group that outlines and sets all the HTML standards that us developers should be following. That means that any website using using this DOCTYPE will not display deprecated items like the &lt;font&gt; tag (if you&#8217;re still using &lt;font&gt; I&#8217;ll ask that you please back away from the keyboard slowly, then call me for some consulting help).</p>
<p>Let&#8217;s say that you didn&#8217;t know what a DOCTYPE was and you never included it on your webpage, but then you also used &lt;font&gt; tags. I bet you had all kinds of trouble trying to figure out why the darn code you were using didn&#8217;t work. Well, if you don&#8217;t specify within the DOCTYPE tag which type you want it to use, then your browser is trained like a good little puppy to display your page using <strong>strict</strong> rules by default. You see, the strict DOCTYPE makes you stand up straight! Stomach in, chest out! It accepts no substitutes or less than what the rules call for.</p>
<p>Strict HTML<br />
&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01//EN&#8221; &#8220;http://www.w3.org/TR/html4/strict.dtd&#8221;&gt;</p>
<p>Strict XHTML<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;</p>
<h3>Transitional DOCTYPE</h3>
<p>The <strong>transitional</strong> DOCTYPE is for those of us who are want a little bit of everything. For instance, you don&#8217;t want to stop using &lt;font&gt; tags (shame on you!) but you have moved onto trying out some of the newer rules. Basically, this DOCTYPE gives you greater flexibility and tells your browser it&#8217;s okay to use both current and deprecated tags.</p>
<p>Transitional HTML<br />
&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/html4/loose.dtd&#8221;&gt;</p>
<p>Transitional XHTML<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</p>
<h3>Frameset DOCTYPE</h3>
<p>If you were to use frames (which you shouldn&#8217;t), then the <strong>frameset</strong> DOCTYPE can be used. It will tell your browser to use the rules of the transitional DOCTYPE but also allow for frames. For the record: frames are bad for SEO, search engines, usability, bookmarking and it just plain looks bad.</p>
<p>HTML Frameset<br />
&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Frameset//EN&#8221; &#8220;http://www.w3.org/TR/html4/frameset.dtd&#8221;&gt;</p>
<p>XHTML Frameset<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Frameset//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&#8221;&gt;</p>
<p>As you can see in my examples above, you can tell your browser through the DOCTYPE tag if your page was built in HTML or XHTML. It will also include a URL to the official W3C website. It points to the exact page where the rules for that DOCTYPE actually exist. You&#8217;re telling the browser, &#8220;this is the DOCTYPE that I want you to use and here&#8217;s the rules to support it.&#8221; That leaves zero questions, your browser has less to think about and will display your page quicker. As standards change, using these URLs will allow browsers to seemlessly support your HTML code even after the W3C posts new standards.</p>
<p>It&#8217;s important to keep up with what&#8217;s changing with the W3C. As they release new versions of HTML or XHTML, our DOCTYPE tags will need to change in order to maintain top standards. For example, with HTML 5 now making it&#8217;s way towards the mainstream, the tag you would use is &lt;!DOCTYPE HTML&gt;. Pretty simple and quite a bit different than current methods, however it&#8217;ll be the new standard!</p>
<p>Now remember, if you don&#8217;t follow the rules, your webpage just won&#8217;t work right. So with a little bit of practice, you&#8217;ll be able to keep that stomach in and your chest out. C&#8217;mon, show me what you can do!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F11-08-2010%2Fthe-purpose-and-importance-of-a-doctype%2F';
  addthis_title  = 'The+Purpose+and+Importance+of+a+DOCTYPE';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=ViEc5ka4OwY:QXa9DjNgy7c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=ViEc5ka4OwY:QXa9DjNgy7c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=ViEc5ka4OwY:QXa9DjNgy7c:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=ViEc5ka4OwY:QXa9DjNgy7c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=ViEc5ka4OwY:QXa9DjNgy7c:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=ViEc5ka4OwY:QXa9DjNgy7c:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/ViEc5ka4OwY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/11-08-2010/the-purpose-and-importance-of-a-doctype/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/11-08-2010/the-purpose-and-importance-of-a-doctype/</feedburner:origLink></item>
		<item>
		<title>Squeeze it! Squeeze it real good!</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/dVEQzUARS5M/</link>
		<comments>http://www.kimfenolio.com/08-25-2010/introducing-fresh-squeezed-creative/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 16:35:19 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[fresh]]></category>
		<category><![CDATA[fresh squeezed creative]]></category>
		<category><![CDATA[kim fenolio]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[word of mouth]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=182</guid>
		<description><![CDATA[
			
				
			
		The year 2010 started out with a bang. I was laid off of my job on January 1. We all know how difficult the economy is right now and I have many associates who are unemployed and have been for some time now. It&#8217;s not easy to find a new job. 
Having learned so much [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-25-2010%2Fintroducing-fresh-squeezed-creative%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-25-2010%2Fintroducing-fresh-squeezed-creative%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>The year 2010 started out with a bang. I was laid off of my job on January 1. We all know how difficult the economy is right now and I have many associates who are unemployed and have been for some time now. It&#8217;s not easy to find a new job. </p>
<p>Having learned so much over the past few years, networking and meeting so many great connections, I came to the conclusion that I needed to start my own business. As it turns out, it was just the right move at just the right time. </p>
<p>I&#8217;d like to introduce to you my company, <a href="http://www.FreshSqueezedCreative.com/">Fresh Squeezed Creative</a>, and also my business partner <a href="http://www.linkedin.com/pub/chris-vandeventer/0/384/9a3" target="_blank">Chris Vandeventer</a>. </p>
<p>Through referrals from our contacts, we haven&#8217;t had to do a lick of advertising to remain busy and even successful. That said, we have been so busy that we haven&#8217;t even had time to create a website or a logo for ourselves. As a matter of fact, our website redirects to our Facebook page that includes a pretty full portfolio. All of our business has been generated via word-of-mouth marketing and social media. That&#8217;s when I knew I&#8217;d done something right.</p>
<p>So there you have it. My newest endeavor with my new business partner. Right now we&#8217;re working primarily with smaller to mid-size businesses on website development, social media and marketing strategy. Do you know someone who needs a website or advice on how to use Twitter or Facebook to help market their business? Give them our website: <a href="http://www.FreshSqueezedCreative.com/">FreshSqueezedCreative.com</a>! We&#8217;d love to help!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F08-25-2010%2Fintroducing-fresh-squeezed-creative%2F';
  addthis_title  = 'Squeeze+it%21+Squeeze+it+real+good%21';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dVEQzUARS5M:KQOBPiunaUU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dVEQzUARS5M:KQOBPiunaUU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dVEQzUARS5M:KQOBPiunaUU:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dVEQzUARS5M:KQOBPiunaUU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dVEQzUARS5M:KQOBPiunaUU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dVEQzUARS5M:KQOBPiunaUU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/dVEQzUARS5M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/08-25-2010/introducing-fresh-squeezed-creative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/08-25-2010/introducing-fresh-squeezed-creative/</feedburner:origLink></item>
		<item>
		<title>An HTML Footer Include Made Easy</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/aGNCz1mTQ7w/</link>
		<comments>http://www.kimfenolio.com/08-03-2010/html-footer-include-made-easy/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 19:54:03 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Technical Advice]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=173</guid>
		<description><![CDATA[
			
				
			
		Someone asked me a question about HTML includes recently.
I want to make changes to the footer on one page and make it change across all of my pages. How do I do this?
Well, it&#8217;s pretty simple. Here&#8217;s a quick tutorial.

Create a new HTML page with empty code. If your editor inserts code automatically, delete it.
Go [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-03-2010%2Fhtml-footer-include-made-easy%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-03-2010%2Fhtml-footer-include-made-easy%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>Someone asked me a question about HTML includes recently.
<div style="border:1px solid #999;background:#e4e4e4;padding:5px;margin:10px 0 10px 60px;"><b>I want to make changes to the footer on one page and make it change across all of my pages. How do I do this?</b></div>
<p>Well, it&#8217;s pretty simple. Here&#8217;s a quick tutorial.</p>
<ol>
<li>Create a new HTML page with empty code. If your editor inserts code automatically, delete it.</li>
<li>Go to your original HTML page where you have your existing footer. Cut the code (Edit-&gt;Cut). Paste (Edit-&gt;Paste) it into the new HTML file you created. Save it as footer.html into the root directory (wherever your index.html is located.</li>
<li>Now we want to insert the code that includes the newly created footer on the page. This is called an HTML Include. Go back to your original HTML page. In place of where you originally had the footer code, you&#8217;re going to insert this code:<br />
&lt;!&#8211;#include file=&#8221;footer.html&#8221;&#8211;&gt;</li>
<li>Save your file.</li>
<li>Upload both files to your server and everything should work perfectly.</li>
</ol>
<p>For all other existing pages of your website, you&#8217;ll need to go and delete its current footer and add in the HTML Include footer code. If you&#8217;re using a program like Dreamweaver or Microsoft Visual Web Developer you can do a Find and Replace of the entire solution to make it quick and easy.</p>
<p>You can also do the same thing for your header, a sidebar or anything else that repeats throughout your site.</p>
<p>Any questions?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F08-03-2010%2Fhtml-footer-include-made-easy%2F';
  addthis_title  = 'An+HTML+Footer+Include+Made+Easy';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=aGNCz1mTQ7w:MCCbsr4p_tk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=aGNCz1mTQ7w:MCCbsr4p_tk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=aGNCz1mTQ7w:MCCbsr4p_tk:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=aGNCz1mTQ7w:MCCbsr4p_tk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=aGNCz1mTQ7w:MCCbsr4p_tk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=aGNCz1mTQ7w:MCCbsr4p_tk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/aGNCz1mTQ7w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/08-03-2010/html-footer-include-made-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/08-03-2010/html-footer-include-made-easy/</feedburner:origLink></item>
		<item>
		<title>Business Owners: What Not to Do with a Bad Yelp Review</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/xRJHvVVCU6Y/</link>
		<comments>http://www.kimfenolio.com/04-07-2010/business-owners-what-not-to-do-with-a-bad-yelp-review/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 17:23:47 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Business Advice]]></category>
		<category><![CDATA[business owner]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[yelp]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=154</guid>
		<description><![CDATA[
			
				
			
		
In January I reviewed a local restaurant on Yelp (an easy way to find, review and talk about what&#8217;s great &#8211; and not so great, in your area). I admit, I wasn&#8217;t too thrilled with the service at the time of writing my review. We waited for over a half an hour just for initial [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F04-07-2010%2Fbusiness-owners-what-not-to-do-with-a-bad-yelp-review%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F04-07-2010%2Fbusiness-owners-what-not-to-do-with-a-bad-yelp-review%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><a href="http://www.yelp.com/biz/little-tokyo-munster#hrid:k4Ygq6x3x_mvsLTRmhAq9g"><img title="Yelp Business Owner Response" src="http://content.screencast.com/users/KimFenolio/folders/Jing/media/0bcda0be-0c09-4642-9538-9ddb4c242fb8/2010-04-07_1140.png" alt="Yelp Business Owner Response" width="445" /></a></p>
<p>In January I reviewed a local restaurant on <a href="http://www.yelp.com/" target="_blank">Yelp</a> (an easy way to find, review and talk about what&#8217;s great &#8211; and not so great, in your area). I admit, I wasn&#8217;t too thrilled with the service at the time of writing my review. We waited for over a half an hour just for initial service, and in my opinion that goes far beyond ridiculous. So with my review, I laid out the facts. You can <a href="http://www.yelp.com/biz/little-tokyo-munster#hrid:k4Ygq6x3x_mvsLTRmhAq9g" target="_blank">see it here</a>, if you like. The business owner logged in today, April, and responded <em>directly to my review</em> with the comment you see above.</p>
<p>This business owner was obviously angry but also doesn&#8217;t seem to understand how reviews work. You have to start with good service and good product in order to get a positive response and good reviews. Not everyone is going to have a good experience, or even the same experience. This owner&#8217;s comment on my review has only reinforced my service complaints.</p>
<p>If you own a business and someone gives you a bad review, don&#8217;t react. You need to respond. Here&#8217;s what you need to do. Take a step back and calm down. Once you have your head on straight, take some time to think about what it is this person is really saying in this review. While some people can exaggerate an experience, there&#8217;s likely some truth within what this person has written. Take their complaint and see what you can do to improve your product or service for your next patron. At that point, I&#8217;d recommend extending a coupon to the person who wrote the review and ask them to come in for an improved experience.</p>
<p>What it comes down to is this, you don&#8217;t want to lose customers. Someone can have a bad experience, and as an owner you&#8217;re in the business of service. So work on the best customer service that you can. If something went wrong, make it right. Invite the patron back once you&#8217;ve got your ducks in order. Make sure to give them a reason to come (discount) and start a conversation that shows you care.</p>
<p>Doing all of this can help to create a raving fan of your business, rather than a lost customer and a review that turns others away from your business. If the owner whose business I reviewed had done this, I&#8217;d have gone back to Yelp and written an update saying something along the lines of what they did and &#8220;Hey things have changed! I love it now! You should all go!&#8221; But no, I&#8217;m left with a bad taste in my mouth about this restaurant. Prior to today I still ordered carry out. With this lovely response from the owner, I will no longer be a patron of any kind.</p>
<p>Remember, respond and don&#8217;t react.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F04-07-2010%2Fbusiness-owners-what-not-to-do-with-a-bad-yelp-review%2F';
  addthis_title  = 'Business+Owners%3A+What+Not+to+Do+with+a+Bad+Yelp+Review';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=xRJHvVVCU6Y:f2w1gOSFpg8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=xRJHvVVCU6Y:f2w1gOSFpg8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=xRJHvVVCU6Y:f2w1gOSFpg8:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=xRJHvVVCU6Y:f2w1gOSFpg8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=xRJHvVVCU6Y:f2w1gOSFpg8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=xRJHvVVCU6Y:f2w1gOSFpg8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/xRJHvVVCU6Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/04-07-2010/business-owners-what-not-to-do-with-a-bad-yelp-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/04-07-2010/business-owners-what-not-to-do-with-a-bad-yelp-review/</feedburner:origLink></item>
		<item>
		<title>A Contest and a Podcast</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/zSb7tKXUQy0/</link>
		<comments>http://www.kimfenolio.com/03-30-2010/a-contest-and-a-podcast/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 03:38:16 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[dancing with the stars]]></category>
		<category><![CDATA[new business]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=144</guid>
		<description><![CDATA[
			
				
			
		
I know I&#8217;m not the best at writing for myself very frequently, but I thought I should come back over here and share a bit of what&#8217;s been going on in my world. Aside from clients consistently keeping me busy (thank you, you rock), I&#8217;ve been doing some things for myself that are just plain [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F03-30-2010%2Fa-contest-and-a-podcast%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F03-30-2010%2Fa-contest-and-a-podcast%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><a href="http://www.gramlovesdwts.com/"><img class="aligncenter size-full wp-image-150" title="Gram Loves Dancing with the Stars" src="http://www.kimfenolio.com/wp-content/uploads/2010/03/site-header.jpg" alt="Gram Loves Dancing with the Stars" width="510" height="156" /></a></p>
<p>I know I&#8217;m not the best at writing for myself very frequently, but I thought I should come back over here and share a bit of what&#8217;s been going on in my world. Aside from clients consistently keeping me busy (thank you, you rock), I&#8217;ve been doing some things for myself that are just plain fun. And we all need a little fun in our lives, don&#8217;t we? I&#8217;m even learning quite a bit, bonus!</p>
<h3>I&#8217;ve Got a Little Sumthin&#8217; For Ya</h3>
<p>In preparation for a new business that I&#8217;m starting, I launched a website and campaign to get others to <a href="http://www.helpusnameourbusiness.com/">Help Us Name Our Business</a>. The concept was simple, yet rushed. The plan was that within less than a week to have a name for this business. All a participant needed to do was email, comment, write on a wall or @us on twitter with their name idea. That entered them into the contest to win a Kodak Zi8 HD Video Camera. We had over 200 people participate. Starting from nothing surrounding this project, that&#8217;s a pretty significant number of participants. All of this was accomplished via social media: <a href="http://www.helpusnameourbusiness.com/">blog</a>, email, <a href="http://www.twitter.com/hunob">Twitter</a> and <a href="http://www.facebook.com/helpusnameit">Facebook</a>. Submissions came in from more than 7 different countries. Interesting to note is that most of our submissions were given through Facebook. That shows the power of friend suggestions over disconnected marketing on Twitter.</p>
<h3>Make a Little Noise, Do a Little Dance&#8230;</h3>
<p>It&#8217;s been a couple of years since I&#8217;ve ventured into the land of producing podcasts. Last week that all changed. I decided to take the amazing relationship that my grandmother and I have and share it with the world. I&#8217;ve called the show <a href="http://www.gramlovesdwts.com/">Gram Loves Dancing with the Stars</a>. Obviously, we talk about Dancing with the Stars. The show is about 20 minutes long and gram gets saucy about all kinds of things on the show from the boobs and hair to the dresses and the dancing. We have a flowing intro to the show and a moving exit. Right now our focus is on <a href="http://www.facebook.com/pages/Gram-Loves-Dancing-with-the-Stars/105848696114025?v=wall">Facebook</a>, <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=364271794">iTunes</a> and <a href="http://www.gramlovesdwts.com/">the website</a>. I&#8217;m experimenting a bit with some different ways to get the word out about the show. I didn&#8217;t want a venture that felt like work, so this is my little bit of fun each week and a simple idea to play around with some different marketing strategies. I&#8217;ll keep you posted on what I&#8217;m doing and how it&#8217;s working. In the meantime, if you like Dancing with the Stars, <a href="http://www.gramlovesdwts.com">you should listen</a>. It&#8217;s free, it&#8217;s easy to listen to and, if I do say so myself, it&#8217;s rather entertaining.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F03-30-2010%2Fa-contest-and-a-podcast%2F';
  addthis_title  = 'A+Contest+and+a+Podcast';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=zSb7tKXUQy0:uFnFyc2HNzw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=zSb7tKXUQy0:uFnFyc2HNzw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=zSb7tKXUQy0:uFnFyc2HNzw:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=zSb7tKXUQy0:uFnFyc2HNzw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=zSb7tKXUQy0:uFnFyc2HNzw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=zSb7tKXUQy0:uFnFyc2HNzw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/zSb7tKXUQy0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/03-30-2010/a-contest-and-a-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/03-30-2010/a-contest-and-a-podcast/</feedburner:origLink></item>
		<item>
		<title>The Emotion Promotion</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/rbRXmowvbIo/</link>
		<comments>http://www.kimfenolio.com/11-29-2009/the-emotion-promotion/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 04:54:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business Advice]]></category>
		<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[care]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[promotions]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=128</guid>
		<description><![CDATA[
			
				
			
		I have always said that if a song or a television show can evoke an emotion from me, that&#8217;s the sign that they&#8217;ve done their job. Really, if I&#8217;m laughing my head off, crying my eyes out or feeling the emotions of love, then I&#8217;m more likely to talk to others about what caused all [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-29-2009%2Fthe-emotion-promotion%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-29-2009%2Fthe-emotion-promotion%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><img class="alignright size-full wp-image-133" title="crying-baby2" src="http://www.kimfenolio.com/wp-content/uploads/2009/11/crying-baby2.jpg" alt="crying-baby2" width="225" height="233" />I have always said that if a song or a television show can evoke an emotion from me, that&#8217;s the sign that they&#8217;ve done their job. Really, if I&#8217;m laughing my head off, crying my eyes out or feeling the emotions of love, then I&#8217;m more likely to talk to others about what caused all of that in me. What does that do? Well, the people behind what I saw just created a marketing officer in me by doing that. I start spouting off about how great their show is. Yes, when you talk about a show (in a positive light) you&#8217;re <strong>promoting </strong>their show (negative light.. well you get the idea). For example, when the show Glee premiered, I told everyone that they should watch it. Seriously, I lost my mind over this show. I still think you should watch it. It&#8217;s great! Particularly the pilot episode. I felt like I was on top of the world at the end. I didn&#8217;t want to stop believing because I felt so powerful and was truly energized by the music and the characters.</p>
<p>This doesn&#8217;t just work for television or movies. This concept can work for basically any brand. You&#8217;ve got to find a way to connect to your audience. What can you, your product, your service or your brand do that is interesting to your target? Once you can find what they want, all that&#8217;s left is finding a way to grab onto a sliver of emotion. What can you get them to identify with?</p>
<p>Have you ever seen a picture of a poor neglected puppy in the newspaper accompanied with a story about how it desperately needed a home. It&#8217;d been beaten, left for dead on the side of the road and had been nursed back to health by the great men and women at the local ASPCA. Generally those newspapers are flooded with phone calls from would-be adopters. That animal and its story struck a chord with so many of those people and they chose to act on that specific thing. After they were told someone else was already adopting the animal, most of them realized and found that they were interested in pet adoption and at the very least were now talking about action. They wanted the thing that they&#8217;d identified with. When marketing your product, you have to give them something that matters to them.</p>
<p>So when it comes to creating a new campaign or promotion, you need to ask yourself the question &#8220;How can I get my audience to feel something?&#8221; If you don&#8217;t get me something to be compelled, intrigued or entertained by, then why should I care about it?</p>
<p>Just one last question. Have you set your DVR to record Glee yet? You should. [See!]</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F11-29-2009%2Fthe-emotion-promotion%2F';
  addthis_title  = 'The+Emotion+Promotion';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=rbRXmowvbIo:uV9UB0srTvo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=rbRXmowvbIo:uV9UB0srTvo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=rbRXmowvbIo:uV9UB0srTvo:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=rbRXmowvbIo:uV9UB0srTvo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=rbRXmowvbIo:uV9UB0srTvo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=rbRXmowvbIo:uV9UB0srTvo:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/rbRXmowvbIo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/11-29-2009/the-emotion-promotion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/11-29-2009/the-emotion-promotion/</feedburner:origLink></item>
		<item>
		<title>Trying to Find That Good Samaritan</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/69vEQMTEAWg/</link>
		<comments>http://www.kimfenolio.com/11-23-2009/trying-to-find-that-good-samaritan/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 17:06:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[car crash]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[christmas eve]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[i-65]]></category>
		<category><![CDATA[i65]]></category>
		<category><![CDATA[indiana]]></category>
		<category><![CDATA[indianapolis]]></category>
		<category><![CDATA[regional manager]]></category>
		<category><![CDATA[toys]]></category>
		<category><![CDATA[toys r us]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=124</guid>
		<description><![CDATA[Ten years ago my car crashed on Christmas Eve. Only one man pulled over to make sure I was okay. This is my call for help so that I can thank this stranger for his kindness.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-23-2009%2Ftrying-to-find-that-good-samaritan%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-23-2009%2Ftrying-to-find-that-good-samaritan%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>I just sent the following letter to Toys &#8220;R&#8221; Us in hopes that they can put me back in touch someone who touched my life ten years ago. I hope someone there reads it and can lend a hand to my search.</p>
<blockquote><p>Dear Toys &#8220;R&#8221; Us,</p>
<p>I&#8217;m trying to find out how I can get in contact with someone who claimed to be an employee of your organization back in December of 1999. Let me tell you why.</p>
<p>Late in the evening on December 23, 1999 I was driving up I-65 from Tennessee to the Chicago area to visit my family for Christmas. Right around Indianapolis, IN there was a blizzard out of nowhere. A complete white-out. I couldn&#8217;t see the road anymore and my tires rubbed the grassy median. I spun out, did 3-360s in the road, my car went across all lanes of traffic, dropped 15 feet into a ditch and skidded 50 feet until I stopped by hitting a tree.</p>
<p>I was 19 years old, alone, didn&#8217;t have a cell phone and was far from home still. I was scared out of my mind. A man pulled over to check on me despite the heavy snow and deep cold. He helped me up out of the ditch and let me sit in his car until the police and tow truck arrived. Now, we didn&#8217;t talk much. He could see I was scared and possibly hurt (turns out, I was). I remember he was a gentleman, nice and caring but specifically that he said he was a regional manager of Toys R Us. Sadly, I don’t recall his name.</p>
<p>This Christmas it will be 10 years since that night. I want to find this man so that I can properly say &#8220;thank you&#8221; for being the Good Samaritan that we all hope for in times like those.. and to let him know that I never forgot his kindness.</p>
<p>Is there a way you would be able to find out who your regional managers were around that time, that may have been in that area on that day? I understand there&#8217;s likely privacy issues. Maybe you could somehow reach him and ask him to contact me instead?</p>
<p>I know, this is a long shot but every year I think about this man and how I didn’t even know his name or say thank you like I should have. I’d like to see what I can do to remedy that. I really hope that you can help to reconnect us. Please let me know if you can and/or are willing.</p>
<p>Sincerely,<br />
Kim Fenolio<br />
www.KimFenolio.com<br />
twitter.com/kFenolio<br />
937-757-1331</p></blockquote>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F11-23-2009%2Ftrying-to-find-that-good-samaritan%2F';
  addthis_title  = 'Trying+to+Find+That+Good+Samaritan';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=69vEQMTEAWg:MLbrFnW9rLU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=69vEQMTEAWg:MLbrFnW9rLU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=69vEQMTEAWg:MLbrFnW9rLU:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=69vEQMTEAWg:MLbrFnW9rLU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=69vEQMTEAWg:MLbrFnW9rLU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=69vEQMTEAWg:MLbrFnW9rLU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/69vEQMTEAWg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/11-23-2009/trying-to-find-that-good-samaritan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/11-23-2009/trying-to-find-that-good-samaritan/</feedburner:origLink></item>
		<item>
		<title>What a Character!</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/IhDnXwfuTdM/</link>
		<comments>http://www.kimfenolio.com/10-26-2009/what-a-character/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 16:29:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Speaking Engagement]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[#140conf]]></category>
		<category><![CDATA[140]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[kim fenolio]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[speak]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=113</guid>
		<description><![CDATA[
			
				
			
		This week I am leading the small business panel at the 140 Characters Conference in Los Angeles, California on behalf of my employer, America&#8217;s Best Companies. This is pretty significant in that I will be sharing how small business is being effected by the real-time internet. Basically, I’m going to talk about how Facebook and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F10-26-2009%2Fwhat-a-character%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F10-26-2009%2Fwhat-a-character%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><img class="alignleft size-full wp-image-122" title="140-conf" src="http://www.kimfenolio.com/wp-content/uploads/2009/10/140-conf.jpg" alt="140 Characters Conference" width="179" height="207" />This week I am leading the small business panel at the <a href="http://lax.140conf.com/">140 Characters Conference</a> in Los Angeles, California on behalf of my employer, America&#8217;s Best Companies. This is pretty significant in that I will be sharing how small business is being effected by the real-time internet. Basically, I’m going to talk about how Facebook and Twitter (social media) are helping your business in the current state of the world, even in this economy.</p>
<p>This panel and conference isn’t all about me. I’ll be sharing the stage with some fantastic co-panelists: Scott Townsend of <a href="http://www.unitedlinen.com/">United Linen</a> and Neal Rohrbach of <a href="http://www.ideaanglers.com/">Idea Anglers</a>. Together we hope to give you a rounded view of how small business works with these medias from beginning to end. We’re calling our panel <strong>Small as a Tweet</strong>. We’re taking a few questions up front. If there’s anything specific that you’d like any of us to answer, you can ask at <a href="http://www.smallasatweet.com/">our website</a> or on our <a href="http://www.twitter.com/smallasatweet">Twitter account</a>.</p>
<p>The entire conference will be broadcast live on the internet via the <a href="http://lax.140conf.com/">conference website</a>. If you’d like to tune in live for my panel, you can visit <a href="http://lax.140conf.com/">http://lax.140conf.com/</a> on Wednesday, October 28, 2009 at 1:55pm PST. Once the video is gathered afterwards, I’ll share it here on the ABC site as well. There are many other layers to the conference and a lot of big names going to appear and speak. I encourage you to check out the other panels and see if there are specific speakers that would  pertain to your niche.</p>
<p>On a more personal note, I&#8217;m really looking forward to meeting so many of the fabulous people that I usually only interact with on the social networks. Along with my co-panelists I&#8217;m hoping to meet Anita Campbell, Jeff Pulver, CC Chapman and lots of other equally amazing individuals. If you&#8217;re going to be there please track me down!</p>
<p>Can&#8217;t find me in the crowd? Catch me any number of ways: my mobile (text or call) is 937-757-1331, <a href="http://www.twitter.com/kfenolio">Twitter</a> via DM or @message me! I’d love to talk with you! <strong>Seriously</strong>.</p>
<p><a href="http://www.twitter.com/kfenolio/"> <img style="border-width: 0px;" src="http://static.gowithabc.com/x/twitter-kfenolio.jpg" alt="Kim Fenolio on Twitter" /></a><a href="http://www.twitter.com/kfenolio/"> </a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F10-26-2009%2Fwhat-a-character%2F';
  addthis_title  = 'What+a+Character%21';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=IhDnXwfuTdM:Nq4sojXeuAI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=IhDnXwfuTdM:Nq4sojXeuAI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=IhDnXwfuTdM:Nq4sojXeuAI:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=IhDnXwfuTdM:Nq4sojXeuAI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=IhDnXwfuTdM:Nq4sojXeuAI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=IhDnXwfuTdM:Nq4sojXeuAI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/IhDnXwfuTdM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/10-26-2009/what-a-character/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/10-26-2009/what-a-character/</feedburner:origLink></item>
		<item>
		<title>Southwest Shows How Offering Incentives can Increase Your ROI</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/XGwI9UjoTh8/</link>
		<comments>http://www.kimfenolio.com/09-15-2009/southwest-shows-how-offering-incentives-can-increase-your-roi/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 16:50:01 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[incentive]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[southwest]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=108</guid>
		<description><![CDATA[Southwest Airlines announced a new campaign today that offers a set of round-trip tickets as an incentive for subscribers, new or old, to open emails. ]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F09-15-2009%2Fsouthwest-shows-how-offering-incentives-can-increase-your-roi%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F09-15-2009%2Fsouthwest-shows-how-offering-incentives-can-increase-your-roi%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>Southwest Airlines announced a new campaign today that offers a set of round-trip tickets as an <a href="http://www.southwest.com/clicknsaveandwin/?int=PREMFBKW02CNSWIN090915" target="_blank">incentive for subscribers</a>, new or old, to open emails. In email marketing today one of the biggest struggles is getting people to actually open the email. Obviously, subscribers know there&#8217;s something of value from a company they&#8217;re already getting a newsletter from otherwise they wouldn&#8217;t have subscribed in the first place. It&#8217;s just sometimes life, and even an overabundance of other email, can detract from getting to (and reading) some subscriptions. I fall victim to that time and time again.</p>
<p>So, as an email marketer I know how big of a struggle it can be to reach out to people like me and get them to even notice the newsletter I&#8217;ve sent out. One of the most successful ways of getting people to open emails has always been through a creative or compelling subject line. When I saw &#8220;Click and Win Free Travel&#8221; I was all over it.</p>
<p>Southwest has stepped it up a notch above a great subject line. Each time a subscriber opens up their Click &#8216;n Save email then the subscriber will be entered into a monthly drawing for a chance to win 2 round trip tickets. Nothing more. No need to click through. No need to shout their praises. No need to fill out a form. You open? You enter.</p>
<p>This is a genius strategy. They&#8217;re offering some serious value. Now, they&#8217;re getting more people to open the email due to this incentive. What that does is it creates a higher likelihood that people will actually read their content. That, in turn, increases the chances of the subscriber carrying out whatever call to action exists within it.</p>
<p>Incentives are always a great way to encourage an action out of your target audience. If you&#8217;re able to offer something free then you should do it. The ROI will prove the campaign&#8217;s effectiveness each and every time.</p>
<p>It&#8217;s all about incentive. Way to go Southwest!</p>
<p>Subscribe to the Southwest Click &#8216;n Save <a href="http://www.southwest.com/specialoffers/signup.html" target="_blank">email newsletter here</a>.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F09-15-2009%2Fsouthwest-shows-how-offering-incentives-can-increase-your-roi%2F';
  addthis_title  = 'Southwest+Shows+How+Offering+Incentives+can+Increase+Your+ROI';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=XGwI9UjoTh8:pqyAKJ0Kn_k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=XGwI9UjoTh8:pqyAKJ0Kn_k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=XGwI9UjoTh8:pqyAKJ0Kn_k:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=XGwI9UjoTh8:pqyAKJ0Kn_k:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=XGwI9UjoTh8:pqyAKJ0Kn_k:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=XGwI9UjoTh8:pqyAKJ0Kn_k:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/XGwI9UjoTh8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/09-15-2009/southwest-shows-how-offering-incentives-can-increase-your-roi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/09-15-2009/southwest-shows-how-offering-incentives-can-increase-your-roi/</feedburner:origLink></item>
		<item>
		<title>Twitter Tip: How to Toot Your Own Horn</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/GAJI7LUcyjo/</link>
		<comments>http://www.kimfenolio.com/09-02-2009/twitter-tip-how-to-toot-your-own-horn/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 15:33:33 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[self promotion]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=100</guid>
		<description><![CDATA[
			
				
			
		
Someone asked me the following question today:
Sometimes I see people making a little celebratory announcement on Twitter. Like being listed on the Top 20 Twitterers for this or that, for instance. Is that something where it&#8217;s OK for the influencer types to do it but not really the rest of us [average users]?
This is a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F09-02-2009%2Ftwitter-tip-how-to-toot-your-own-horn%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F09-02-2009%2Ftwitter-tip-how-to-toot-your-own-horn%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><img class="size-full wp-image-101 alignnone" title="toot-horn" src="http://www.kimfenolio.com/wp-content/uploads/2009/09/toot-horn.jpg" alt="toot-horn" width="346" height="256" /></p>
<p>Someone asked me the following question today:</p>
<blockquote><p>Sometimes I see people making a little celebratory announcement on Twitter. Like being listed on the Top 20 Twitterers for this or that, for instance. Is that something where it&#8217;s OK for the influencer types to do it but not really the rest of us [average users]?</p></blockquote>
<p>This is a great question to ask. I don&#8217;t think tooting your own horn or celebrating something you&#8217;ve done well applies only to the people on the &#8220;A List&#8221;. In my opinion it&#8217;s all in how you do it.</p>
<p><strong>Don&#8217;t Celebrate Like This</strong><br />
&#8220;I was just told I&#8217;m amazing! I <strong>am </strong>amazing! Look at me! How could you deny it?&#8221;</p>
<p>Your approach should be more suave and celebratory.</p>
<p><strong>Do Something Like This</strong><br />
&#8220;I was just called &#8220;amazing&#8221; by John. Gosh that makes me feel great! THANK YOU!&#8221;</p>
<p>There&#8217;s nothing wrong with saying that someone recognizes you as having done something good. Just don&#8217;t be one of those people who comes across as a pompous self-centered know-it-all.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F09-02-2009%2Ftwitter-tip-how-to-toot-your-own-horn%2F';
  addthis_title  = 'Twitter+Tip%3A+How+to+Toot+Your+Own+Horn';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GAJI7LUcyjo:P3mYbT-niCU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GAJI7LUcyjo:P3mYbT-niCU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GAJI7LUcyjo:P3mYbT-niCU:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GAJI7LUcyjo:P3mYbT-niCU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GAJI7LUcyjo:P3mYbT-niCU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GAJI7LUcyjo:P3mYbT-niCU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/GAJI7LUcyjo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/09-02-2009/twitter-tip-how-to-toot-your-own-horn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/09-02-2009/twitter-tip-how-to-toot-your-own-horn/</feedburner:origLink></item>
		<item>
		<title>Twitter and Social Media — What Should it Be?</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/AntJwrxh7DI/</link>
		<comments>http://www.kimfenolio.com/08-22-2009/twitter-and-social-media-what-should-it-be/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 00:09:54 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[intentions]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=84</guid>
		<description><![CDATA[
			
				
			
		It was around 2005 when I first started getting into this new age of social media. I found podcasts first. I liked the podcast hosts and wanted to get to know them further. I found them through their online forums that they&#8217;d talked about on their shows and then the initial group of us all [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-22-2009%2Ftwitter-and-social-media-what-should-it-be%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-22-2009%2Ftwitter-and-social-media-what-should-it-be%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>It was around 2005 when I first started getting into this <em>new age</em> of social media. I found podcasts first. I liked the podcast hosts and wanted to get to know them further. I found them through their online forums that they&#8217;d talked about on their shows and then the initial group of us all discovered Twitter in 2006. This was a time where everything was fresh, new and exciting. The possibilities were endless for social media and what it could leverage for each of us! I made some amazing friends. We shared our lives, our thoughts and stances on all different subjects.</p>
<p>That was 2006 and this is now 2009, where much has changed. I still see people giving of themselves, though not nearly as much. What I see more of is people promoting whatever it is that they&#8217;re into: their jobs, their new money-making scheme, but even more-so I see links. They&#8217;re everywhere and I have to tell you, I&#8217;m tired of it.</p>
<p>I miss the days where the value that you brought to the table was shown openly in the social network. Someone would make a statement and everyone cheered or responded right there. I didn&#8217;t have to see your &#8220;call to action&#8221;, click the link and then read it on your blog. The value was clearly <strong>right there</strong>. Instead, so much of what&#8217;s out there feels like email: spam. I realize that junk mail fills the mailboxes outside of our homes and spam fills our email inboxes. I really don&#8217;t enjoy seeing so much of it in my communication stream.</p>
<p>One example of value are the small business tips I post on <a href="http://twitter.com/kfenolio/" target="_blank">my Twitter account</a> Monday &#8211; Friday. I decide what I want to write about (sometimes with a little help from my friends), figure out how in the heck I&#8217;m going to condense it into 130 characters (10 of the 140 characters are consumed by the hash tag and what number tip it is for the day) and then just post the tips to Twitter. I don&#8217;t require anyone to go to my blog or my company&#8217;s blog to consume the data. I give easy and actionable advice that you can take right from that message and use for your business. That&#8217;s the value I try to bring to the table.</p>
<p>Don&#8217;t get me wrong, I&#8217;m not knocking you having a blog or the promotion of it. Obviously, I have one myself and I know that not everything can be said in 140 characters or less. My point is that I don&#8217;t feel social networks should be used solely as a way to promote a person, a product or a brand. If you&#8217;re going to be on a social network then you should be there adding to the the value and not the noise. Bring something to the table that I can actually use, something that will mean something to me. That right there is what proves you&#8217;re valuable and as a result promotes your brand, product or service that you&#8217;ve associated yourself to.</p>
<p>You&#8217;re right, it&#8217;s not traditional media but what about this medium <strong>is </strong>traditional? We&#8217;re here to reach out to consumers, business owners and each other in ways that haven&#8217;t been explored. So why should we continue to do it in the same way that&#8217;s always been done? Let&#8217;s break free of the traditional mold and get back to actually communicating!</p>
<p>Let&#8217;s make Twitter and all of social media become a culmination of solid thought, communication and value. When it comes down to it, isn&#8217;t that what we want when we&#8217;re being <em>social</em> in social media?</p>
<p>What do you want social media to be?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F08-22-2009%2Ftwitter-and-social-media-what-should-it-be%2F';
  addthis_title  = 'Twitter+and+Social+Media+%26%238212%3B+What+Should+it+Be%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=AntJwrxh7DI:FgWUE81tPhU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=AntJwrxh7DI:FgWUE81tPhU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=AntJwrxh7DI:FgWUE81tPhU:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=AntJwrxh7DI:FgWUE81tPhU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=AntJwrxh7DI:FgWUE81tPhU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=AntJwrxh7DI:FgWUE81tPhU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/AntJwrxh7DI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/08-22-2009/twitter-and-social-media-what-should-it-be/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/08-22-2009/twitter-and-social-media-what-should-it-be/</feedburner:origLink></item>
		<item>
		<title>Lots of Changes</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/dyP-p6nAGVY/</link>
		<comments>http://www.kimfenolio.com/10-28-2008/lots-of-changes/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 20:21:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[americas best companies]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[discounts]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=57</guid>
		<description><![CDATA[
			
				
			
		This past month has been full of changes for me. Thankfully they’ve all been positive. I have a new job and as a result, it’s helped me create a new way to how I function in my social networks. 
The New Career Opportunity
At the beginning of October I officially moved from self-employed to being employed [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F10-28-2008%2Flots-of-changes%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F10-28-2008%2Flots-of-changes%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>This past month has been full of changes for me. Thankfully they’ve all been positive. I have a new job and as a result, it’s helped me create a new way to how I function in my social networks. </p>
<p><strong>The New Career Opportunity</strong><br />
At the beginning of October I officially moved from self-employed to being employed by a small business: <a href="http://www.americasbestcompanies.com/">America’s Best Companies</a> (ABC). We are basically a national-level small business association. This is a company that educates, offers advice and helps to make life overall easier on the small business owner. One of the main ways they do this is by offering discounts (the kind that actually help you!) from companies like Staples, UPS, insurance, utilities and even health care. There are blogs, a weekly newsletter, search engine submission and even a bi-monthly magazine. The magazine is absolutely amazing if I do say so.</p>
<p>As with any small business association, there’s a membership involved to receive these discounts and additional benefits. ABC offers so much more in comparison to many city and town based associations and chambers of commerce and for far less money. I think that’s the key here, the cost is low and the give is big.</p>
<p>We recently opened it up and now offer <strong>free basic memberships</strong>! I think that’s way cool because it allows people free access to our eWeekly newsletter (I get to <a href="http://www.americasbestcompanies.com/blog/Default.aspx?Author=70fecd27-bc4c-4a4d-bf63-bc3634e6a79d">write a bit</a> for that too), a free business profile and automatic search engine inclusion. You even get a free issue of our magazine. </p>
<p>After the free basic membership, there are two other levels. One brings you an amped up premium profile, those fabulous discounts I mentioned before, online advertising, advice, information, news, full subscription to America’s Best Magazine and a boatload of marketing material. The other offers all of that, plus your own customized website. </p>
<p>What made me want to work for this company, aside from them wanting me to work there, was their real desire to help small business in the United States. The philosophy isn’t to kick the super-I-sell-everything-stores to the side, but to find a way for the small business owner to be able to thrive right along side them! The goal is that once we get enough members, well have the power of numbers on our side and can make it to Washington to become the voice of small business and lobby for some rights. It’s that <strong>integrity</strong> and that <strong>value</strong> that hooked me. They want to help and they <strong>can</strong>. </p>
<p><strong>What do I do?</strong><br />
Now I’ve told you what the company does and what they offer, but what do I do for them? I help to make them look good. I get to do a little bit of everything that I’m good at. I design a little, I code a little, I talk a little and I interact all around. I work on interface and new media and I love what I do. </p>
<p>The interesting thing with this transition is that I’ve changed how I play in the social media space. Since I used to work from home, for myself, I always had a hard time separating personal and business. Business for me was personal. I had a personal Twitter account and a business account. The sad thing is, I neglected my business account and never paid the proper attention to the people who wanted to follow me there. I’ve done away with that account and have followed all of the people who followed me there on the account that I now interact on during the day: @<a href="http://www.twitter.com/kfenolio">kFenolio</a>. I am still maintaining my personal Twitter account privately. I certainly don’t need more than two Twitter accounts. </p>
<p>So if you’re on Twitter, <a href="http://www.twitter.com/kfenolio">follow me</a> there. I generally interact and talk throughout my day. I share interesting small business finds or internet marketing related things. I also write a bit and share my own advice. </p>
<p>So I leave you with a couple requests, if you would, I’d love if you’d <a href="http://www.twitter.com/kfenolio">follow me</a> on Twitter or share with others what <a href="http://www.americasbestcompanies.com/">my company</a> can do for them. Now I need to know what I can do for you. How can I help you?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F10-28-2008%2Flots-of-changes%2F';
  addthis_title  = 'Lots+of+Changes';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dyP-p6nAGVY:mc1y2HCXMm0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dyP-p6nAGVY:mc1y2HCXMm0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dyP-p6nAGVY:mc1y2HCXMm0:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dyP-p6nAGVY:mc1y2HCXMm0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=dyP-p6nAGVY:mc1y2HCXMm0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=dyP-p6nAGVY:mc1y2HCXMm0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/dyP-p6nAGVY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/10-28-2008/lots-of-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/10-28-2008/lots-of-changes/</feedburner:origLink></item>
		<item>
		<title>Social Media Impacts Lives</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/b9DBD5WWOM4/</link>
		<comments>http://www.kimfenolio.com/08-12-2008/social-media-impacts-lives/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 19:59:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[compassion]]></category>
		<category><![CDATA[damage]]></category>
		<category><![CDATA[demolished]]></category>
		<category><![CDATA[destruction]]></category>
		<category><![CDATA[griffith]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[highland]]></category>
		<category><![CDATA[houses]]></category>
		<category><![CDATA[impact]]></category>
		<category><![CDATA[indiana]]></category>
		<category><![CDATA[tornado]]></category>
		<category><![CDATA[trees]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=36</guid>
		<description><![CDATA[
			
				
			
		
On Monday, August 4, 2008 a tornado touched down in Griffith, Indiana just two blocks from where I currently live in Highland, Indiana. I started Plurking and Tweeting (on my personal accounts) as soon as I saw the National Weather Service alert that the tornado would be to me within five minutes; of course that [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-12-2008%2Fsocial-media-impacts-lives%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-12-2008%2Fsocial-media-impacts-lives%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><a href="http://www.kimfenolio.com/wp-content/uploads/2008/08/tornadodestruction.jpg"><img class="alignnone size-full wp-image-40" title="Griffith Indiana Tornado Destruction" src="http://www.kimfenolio.com/wp-content/uploads/2008/08/tornadodestruction.jpg" alt="" width="495" height="200" /></a></p>
<p>On Monday, August 4, 2008 a tornado touched down in Griffith, Indiana just two blocks from where I currently live in Highland, Indiana. I started <a href="http://www.plurk.com/user/kimfenolio" target="_blank">Plurking</a> and <a href="http://twitter.com/goodthingscomin" target="_blank">Tweeting</a> (on my personal accounts) as soon as I saw the National Weather Service alert that the tornado would be to me within five minutes; of course that was <strong>after</strong> I got my family safe. Here&#8217;s my Twitter time line and what the folks who follow me there got to see from when it began through to the next morning:</p>
<blockquote>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">08:21 PM August 04, 2008  from Ping.fm<br />
</span>So [name] sent [their] tornado to me. In the basement now.</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">08:25 PM August 04, 2008  from Ping.fm<br />
</span>OMG neon blue sky.. Neon green.. Sirens!</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">08:30 PM August 04, 2008  from Ping.fm</span><br />
The sound is terrifying! We&#8217;re in the crawl space.</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">08:37 PM August 04, 2008  from txt</span><br />
House is moving and creaking. Jacob is freaking out. No power obviously. Cramped in here.</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">08:52 PM August 04, 2008  from txt</span><br />
Outside with my father because he&#8217;s freaking INSANE! It&#8217;s a mess out here. Emergency vehicles all over.</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">09:15 PM August 04, 2008  from Ping.fm</span><br />
The tornado ran along the next block. Lightening struck, we lost a ton of electronics. Things are smoking&#8230;</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">09:22 PM August 04, 2008  from Ping.fm<br />
</span>Houses are gone&#8230;</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">09:26 PM August 04, 2008  from txt</span><br />
Turning off my updates from u people.. Phone juice running low.. No way to power phone for now. Will keep updating.</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">11:41 PM August 04, 2008  from Ping.fm</span><br />
It&#8217;s around midnight and the people out walking the streets to see th damage reminds me of a parade.</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">08:03 AM August 05, 2008  from Ping.fm</span><br />
http://ping.fm/p/ogle4 &#8211; Never seen anything like this.. Looks like a hurricane came thru &amp; mangled all the towns around here. It&#8217;s hard to find words for this&#8230;</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">08:14 AM August 05, 2008  from Ping.fm</span><br />
We have power back. A lot of things are fried. AC is dead. DSL dead. Headed out now to buy new surge protectors.</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">09:09 AM August 05, 2008  from Ping.fm</span><br />
The storage unit I put all my apartment and life in is demolished. I&#8217;m balling my eyes out. WHY AGAIN?!</p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span style="font-size: 8pt; color: gray;">10:55 AM August 05, 2008  from Ping.fm<br />
</span>Aaaand to top it all off: my computer is fried despite the surge protector.</p></blockquote>
<p>As soon as I said that a tornado was on the way, a flood of reply messages started coming in. People expressed <a href="http://twitter.com/ilea02/statuses/877793421" target="_blank">concern for our safety</a>, <a href="http://twitter.com/BleuCaldwell/statuses/877840693" target="_blank">asked if we were ok</a> and extended <a href="http://twitter.com/peeler/statuses/877803614" target="_blank">prayers</a>. The responses coming to me on Twitter via text message were comforting to me while my family and I huddled together in the crawl space of the house. I may have been alone in taking care of my family, but my social media family was with me in spirit. I was amazed at the compassion and immediate response from the people that I&#8217;ve simply formed relationships with online.</p>
<p>In the time line above, you read that I found out that I&#8217;d lost my storage unit (again) to the tornado. I&#8217;ll elaborate on the again part of that statement. Two years ago in September I was living in a basement apartment that was flooded so bad that they had to gut the building to its foundation. My son and I lost our home and everything but my dining room table, my computer and a duffel bag of clothing.</p>
<p>Just a few months ago I had moved in with my parents while I began my search for a full time job (didn&#8217;t want to sign another year-long lease since I planned on moving) and also to help out since my father and grandmother need daily assistance. I took everything from my home and placed it into storage with the exception of my clothing and my computer.</p>
<p>The tornado touched down two blocks from me, made it&#8217;s way across the the parking lot of a Kmart, took out a strip mall, demolished the residential neighborhood behind it, went straight through my storage building and then down through another neighborhood.</p>
<p><a href="http://www.kimfenolio.com/wp-content/uploads/2008/08/storage.jpg"><img class="alignnone size-full wp-image-38" title="Reserve Storage Aerial View" src="http://www.kimfenolio.com/wp-content/uploads/2008/08/storage.jpg" alt="" width="495" height="200" /></a></p>
<p>My storage area was an afterthought and I&#8217;d only stumbled upon it the next day because I was on the way to pick up new surge protectors for the house. I saw just the edge of the warehouses and they looked as though they&#8217;d gone through a shredder. I broke down into tears immediately. I am still questioning how two different natural disasters can affect one person in two years.</p>
<p>My social media friends extended their thoughts, love and prayers immediately yet again. I received phone calls, emails, text messages and word through friends concerned about me. They wanted me to know I wasn&#8217;t alone, that I was cared for and that they would help in any way they could. Just having their words was a huge help.</p>
<p>I have my friend Jim of <a href="http://withavoicelikethis.com/" target="_blank">With a Voice Like This</a> to thank for his support and help in the clean-up, but also my family from <a href="http://reunionchurch.net" target="_blank">Reunion Church</a>. As soon as Pastor Chuck found out about this, he sent word out via email to the church community. People started calling immediately offering to come and help, which many did. Also a result of the Reunion family, I even received a text message of support from someone in New York that I didn&#8217;t know. The physical was covered.</p>
<p><a href="http://www.kimfenolio.com/wp-content/uploads/2008/08/storage_cleanup.jpg"><img class="alignnone size-full wp-image-39" title="Storage : Before and During Clean-up" src="http://www.kimfenolio.com/wp-content/uploads/2008/08/storage_cleanup.jpg" alt="" width="495" height="200" /></a></p>
<p>The social media friends certainly couldn&#8217;t be there physically to help me sort through what was and wasn&#8217;t salvageable (china cabinet, kitchen items, sentimental things in Rubbermaid totes were saved; lost all furniture and beds), but they found their own way to help out. Friday evening my friend Andrea of <a href="http://geekischic.org" target="_blank">Geek is Chic</a> sent me a text message saying that she had a question for me and asked that I call her. She was bubbling with excitement while she told me that she had organized a group of people who had together pooled over $400 to put towards helping us get back on our feet. Of course, I began crying again. This time it wasn&#8217;t in sadness but because I had such amazing and wonderful people who cared so very much.</p>
<p>Thank you to Mark Tafoya, Rachel, Krissy, Alison L, Flick, Amy Osborn, Winnie, Bleu, Cliff and Stephanie Ravenscraft, Kim Thompson and FrancR for your generosity and your compassion. I love you people. Thank you so much.</p>
<p>&#8211;</p>
<p>New and social media is here to stay. I talk about it all the time, but this example here is something that shows how strongly it can take hold of you, how it can truly affect lives. I&#8217;m a testament to that. Social Media is helping me start fresh. I&#8217;m one person. Now think for a moment, on a bigger scale, how social media could affect the world. What are you doing to be a part of it?</p>
<blockquote><p><strong>Additional Media re: Tornado</strong></p>
<ol>
<li>Here&#8217;s a YouTube <a href="http://www.youtube.com/watch?v=gadrQCJ8rFw" target="_blank">video</a> that I shot of a neighborhood along Arbogast.</li>
<li>This is another YouTube <a href="http://www.youtube.com/watch?v=Dk9x1dFVKs4" target="_blank">video</a> that someone else put together. At around 4 minutes into this one, there&#8217;s actually additional footage beyond just sights and sounds from the storm. You may want to skip ahead.</li>
<li><a href="http://www.flickr.com/photos/kfenolio/sets/72157594298589486/" target="_blank">Photos</a> of the destruction<a href="http://www.flickr.com/photos/kfenolio/sets/72157594298589486/" target="_blank"><br />
</a></li>
</ol>
</blockquote>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F08-12-2008%2Fsocial-media-impacts-lives%2F';
  addthis_title  = 'Social+Media+Impacts+Lives';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=b9DBD5WWOM4:bV-qPGoO1TI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=b9DBD5WWOM4:bV-qPGoO1TI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=b9DBD5WWOM4:bV-qPGoO1TI:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=b9DBD5WWOM4:bV-qPGoO1TI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=b9DBD5WWOM4:bV-qPGoO1TI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=b9DBD5WWOM4:bV-qPGoO1TI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/b9DBD5WWOM4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/08-12-2008/social-media-impacts-lives/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/08-12-2008/social-media-impacts-lives/</feedburner:origLink></item>
		<item>
		<title>I’m Engaged: How’d That Happen?</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/amgXlfDu8fI/</link>
		<comments>http://www.kimfenolio.com/07-29-2008/im-engaged-howd-that-happen/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 04:25:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design Related]]></category>
		<category><![CDATA[Experience]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[meet-up]]></category>
		<category><![CDATA[personal brand]]></category>
		<category><![CDATA[relationships]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=35</guid>
		<description><![CDATA[
			
				
			
		I&#8217;ve been engaged in Social Media and the internet since before it received its title. In the early 90s I began by teaching myself how to code HTML using Notepad and created my own graphics using MS Paint. I created websites that defined who I was and was among the first to display my contact [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F07-29-2008%2Fim-engaged-howd-that-happen%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F07-29-2008%2Fim-engaged-howd-that-happen%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>I&#8217;ve been engaged in Social Media and the internet since before it received its title. In the early 90s I began by teaching myself how to code HTML using Notepad and created my own graphics using MS Paint. I created websites that defined who I was and was among the first to display my contact information publicly.</p>
<p>Shortly after that I started working in an online gaming community that was in it’s infancy. This was a time where internet communities hadn&#8217;t yet figured out how to identify themselves. By 1997 I attended my first community meet-up where people from all over the USA met in person for the first time. Here I am today, just over a week out of a meet-up that I personally organized and ran for <a href="http://www.girlsnightinpodcast.com/" target="_blank">a podcast</a> that I created in May of 2007.</p>
<p>I have formal training in graphic design and multimedia: an associates degree. That training has further encouraged me to display my communications in an attractive way; a nice, net package if you will. This is far beyond what many designers and/or social media artists are capable of. It&#8217;s this vast array of capabilities that make what I can do so very marketable.</p>
<p>I know what it is to communicate and create meaningful relationships that last. I know how to market myself, a business or a brand with a communication strategy that involves the written word, spoken word or graphic appeal. Relationship building, brand building, marketing: it&#8217;s all the same. We&#8217;re just learning new and innovative ways to make it more efficient.</p>
<p>I wonder how the rest of you came to be social on the internet and what you made of it if anything. Care to share?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F07-29-2008%2Fim-engaged-howd-that-happen%2F';
  addthis_title  = 'I%26%238217%3Bm+Engaged%3A+How%26%238217%3Bd+That+Happen%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=amgXlfDu8fI:p51aARRJAHU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=amgXlfDu8fI:p51aARRJAHU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=amgXlfDu8fI:p51aARRJAHU:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=amgXlfDu8fI:p51aARRJAHU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=amgXlfDu8fI:p51aARRJAHU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=amgXlfDu8fI:p51aARRJAHU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/amgXlfDu8fI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/07-29-2008/im-engaged-howd-that-happen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/07-29-2008/im-engaged-howd-that-happen/</feedburner:origLink></item>
		<item>
		<title>Self Employment: Is it All That?</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/4NxU1_8EPLs/</link>
		<comments>http://www.kimfenolio.com/07-28-2008/self-employment-is-it-all-that/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 03:01:31 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Design Related]]></category>
		<category><![CDATA[New Concepts]]></category>
		<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[Social Media]]></category>
		<category />
		<category><![CDATA[boss]]></category>
		<category><![CDATA[corporate]]></category>
		<category><![CDATA[employment]]></category>
		<category><![CDATA[lonely]]></category>
		<category><![CDATA[new media]]></category>
		<category><![CDATA[self employed]]></category>
		<category><![CDATA[self employment]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=34</guid>
		<description><![CDATA[
			
				
			
		It is no secret that I am looking for a job right now. One of the most frequently asked questions I’ve received since I’ve started looking again is, “Why do you want to stop doing the self-employment bit to get back out into the corporate world?” My answer to that is pretty simple. My work [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F07-28-2008%2Fself-employment-is-it-all-that%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F07-28-2008%2Fself-employment-is-it-all-that%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>It is no secret that I am looking for a job right now. One of the most frequently asked questions I’ve received since I’ve started looking again is, “Why do you want to stop doing the self-employment bit to get back out into the corporate world?” My answer to that is pretty simple. My work has taken over my life. I need a healthier balance between personal and business. I often find that I have so much to do that I’m unable to find the time to update many of my blogs or social networks. If you’ve paid any attention to the dates on this blog, you’ll see that I’ve neglected it as well.</p>
<p>Why did I choose to pursue self-employment in the first place? Many of my reasons are personal and for those, my plan worked out fantastically for a time. The other natural desire of self-employment is to be your own boss. That was great too, but the reality is that you’re never your own boss if you have clients. Each job comes with its own job description and someone on the other end who will approve your work; I’d call that a boss. Bosses are good for all of us because they give you goals and something to strive for, even if sometimes they are a bit warped. Let’s face it though, who isn’t? I’ll wait for comments from the peanut gallery on that one.</p>
<p>Aside from the reasons I’ve already mentioned, self employment is lonely. Sure a lot of what I do is in new and social media so I get a lot of opportunity to talk to people every day. The difference with that is my interaction is on a computer, not always verbal and usually not in person. I’ve found that I really miss the personal interaction with others, even if it’s just a few people a day. Who would have thought working alone would be lonely? Bring on the office politics I say!</p>
<p>Seriously though, it’s just time for me to get back out into the world and take on someone else’s new and social media desires or their requests of graphical goodness. I’m good at marketing for others and making it look fantastic. Let me work someone else’s projects so that maybe I can get back to my new and social medias being just for fun. Don’t get me wrong, I still have fun in what I do. It’s all the requirements of what I’ve taken on that have eaten away my desire to continue the personal consulting full time. I’ll continue to do some freelance consulting, of course. When I work for someone else, their priorities will come before those of my own, as I feel that it should be.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F07-28-2008%2Fself-employment-is-it-all-that%2F';
  addthis_title  = 'Self+Employment%3A+Is+it+All+That%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=4NxU1_8EPLs:5h2uzsx4XS8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=4NxU1_8EPLs:5h2uzsx4XS8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=4NxU1_8EPLs:5h2uzsx4XS8:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=4NxU1_8EPLs:5h2uzsx4XS8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=4NxU1_8EPLs:5h2uzsx4XS8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=4NxU1_8EPLs:5h2uzsx4XS8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/4NxU1_8EPLs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/07-28-2008/self-employment-is-it-all-that/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/07-28-2008/self-employment-is-it-all-that/</feedburner:origLink></item>
		<item>
		<title>Let’s Talk About Breasts</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/HT74uyimC8w/</link>
		<comments>http://www.kimfenolio.com/06-26-2008/lets-talk-about-breasts/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 19:06:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[New Concepts]]></category>
		<category><![CDATA[Random Thought]]></category>
		<category />
		<category><![CDATA[boobs]]></category>
		<category><![CDATA[bowling]]></category>
		<category><![CDATA[breasts]]></category>
		<category><![CDATA[measure]]></category>
		<category><![CDATA[measurement]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=30</guid>
		<description><![CDATA[
			
				
			
		I want to talk about breasts here for a moment, and not just for the sake of talking about breasts. I&#8217;ve been doing a lot of work lately helping out with raising funds to support finding a cure for breast cancer. I have a number of friends who have been affected by the disease; maybe [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F06-26-2008%2Flets-talk-about-breasts%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F06-26-2008%2Flets-talk-about-breasts%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>I want to talk about breasts here for a moment, and not just for the sake of talking about breasts. I&#8217;ve been doing a lot of work lately helping out with raising funds to support finding a cure for breast cancer. I have a number of friends who have been affected by the disease; maybe not directly but have friends or family who have.</p>
<p>This Saturday I&#8217;m going to be helping and participating in a fundraiser called Bowling for Boobs. During this event we&#8217;re going to plan a game. It&#8217;s similar to the game that women play at baby showers where you Measure the Mommy&#8217;s Belly:</p>
<blockquote><p>(Materials- String or yarn and scissors) Have each woman pull the yarn to the size they believe would fit perfectly around the Mother-To-Be&#8217;s center of her pregnant tummy. After everyone cuts their string, compare the results to the Mommy-To-Be&#8217;s actual tummy. Give a prize to the woman who is the most close! This is a baby shower favorite.</p></blockquote>
<p>The obvious twist is that we&#8217;re going to do this for the bust instead of the belly. We need a new and clever name. I posed this question on <a href="http://www.plurk.com/user/kimfenolio" target="_blank">Plurk</a> not too long ago and got a bunch of ideas.</p>
<p><img src="http://www.kimfenolio.com/wp-content/uploads/2008/06/boobmeasurements.png" alt="Bowling for Boobs" /></p>
<p>Fundraisers that I&#8217;ve helped out with so far have been called:<br />
Cooks for a Cure (cookbook)<br />
Buy a Pear, Save a Pair (Farmer&#8217;s Market stand)<br />
Bowling for Boobs (bowling event this weekend)</p>
<p>Here are some ideas compiled so far:</p>
<ol>
<li>Judge the Jugs</li>
<li>Size &#8216;Em Up</li>
<li>Boob Barometer</li>
<li>Measuring the Mammaries</li>
<li>Take Size of the Ta-Tas</li>
<li>Less Than Equal</li>
<li>Rack &#8216;Em Up</li>
<li>Guess the Breast</li>
<li>Guess a Cup for Cancer</li>
<li>More Than a Handful</li>
<li>More Than a Cupful</li>
<li>Gauge the Girls</li>
<li>Size up the Sweater Stretchers</li>
<li>Calculating Cleavage</li>
<li>Ample Appraisal</li>
<li>Notice the Knockers</li>
<li>Calculate My Curves</li>
<li>Are the Breasts in Here Bigger Than They Appear?</li>
<li>Rate This Rack</li>
</ol>
<p>Let&#8217;s see if the power of social media can evoke some of <strong>your </strong>creative juices for a name to this game. What ideas do you have?</p>
<p>&#8211;</p>
<p><em>If you&#8217;re able to, help support this cause financially. Someday you might be affected. Wouldn&#8217;t it be nice to find a cure? Donate to support a young boy on the team who&#8217;s grandmother is currently fighting breast cancer.</em></p>
<p><a href="http://08.the3day.org/site/TR/Walk/ChicagoEvent?pg=personal&amp;fr_id=1160&amp;fr_id=1160&amp;px=1930687" target="_blank"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/06/donate1.png" alt="Donate Now" /><br />
</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F06-26-2008%2Flets-talk-about-breasts%2F';
  addthis_title  = 'Let%26%238217%3Bs+Talk+About+Breasts';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=HT74uyimC8w:SgLvRfUlq6w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=HT74uyimC8w:SgLvRfUlq6w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=HT74uyimC8w:SgLvRfUlq6w:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=HT74uyimC8w:SgLvRfUlq6w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=HT74uyimC8w:SgLvRfUlq6w:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=HT74uyimC8w:SgLvRfUlq6w:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/HT74uyimC8w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/06-26-2008/lets-talk-about-breasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/06-26-2008/lets-talk-about-breasts/</feedburner:origLink></item>
		<item>
		<title>To Plurk or Not to Plurk?</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/24GxypdqwRg/</link>
		<comments>http://www.kimfenolio.com/06-03-2008/to-plurk-or-not-to-plurk/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 07:24:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[New Concepts]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[plurk]]></category>
		<category><![CDATA[social network]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=29</guid>
		<description><![CDATA[
			
				
			
		 
I spent much of a whole day playing within Plurk. Yes, it has quite the peculiar name. When I first registered and began using the service I found it to be rather buggy. I got a lot of “File Not Found” errors and even the style sheets wouldn’t load properly. After a bit of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F06-03-2008%2Fto-plurk-or-not-to-plurk%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F06-03-2008%2Fto-plurk-or-not-to-plurk%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p class="MsoNormal"> <img src="http://www.kimfenolio.com/wp-content/uploads/2008/06/plurk.png" alt="Plurk" /></p>
<p class="MsoNormal">I spent much of a whole day playing within <a href="http://www.plurk.com/user/kimfenolio" target="_blank">Plurk</a>. Yes, it has quite the peculiar name. When I first registered and began using the service I found it to be rather buggy. I got a lot of “File Not Found” errors and even the style sheets wouldn’t load properly. After a bit of clicking around and fidgeting with the browser, all things became right in the world.</p>
<p class="MsoNormal"><strong>What is Plurk?</strong><br />
Well it’s similar to Twitter in that it’s a micro-blogging social network. You can send out messages that are 140 characters or less. It’s your choice if you want to use a qualifier “kimfenolio IS writing about Plurk” or choose not to “kimfenolio: I’m writing a post to encourage others to micro blog.” Using the @ function like you do in Twitter works the same in Plurk only it creates a direct link without the @ sign having to appear in the final message. They&#8217;ve even supplied you with a list of <a href="http://www.plurk.com/safe_plurking" target="_blank">safe Plurking habits</a>.</p>
<p class="MsoNormal"><strong>How is it Different?</strong><br />
There are a number of things that set it aside from Twitter. First is the interactivity. You and your friends have the ability to comment directly on a message that you Plurk. The really neat thing is that if you have that message open while someone else responds you can see their reply appear right before your eyes.</p>
<p class="MsoNormal"><strong>Alerts</strong><br />
You are continually appraised of new Plurks and new updates with an alert box in the bottom left-hand corner of your timeline. It is unobtrusive, no sounds and no pop-up windows for it. It will simply appear when there’s something new for you to check up on. I will admit that with multiple people responding to Plurks, it certainly gets old after you have to keep going back to each message time after time. I suppose that’s why on the alert’s menu there’s a “Mark all as read” option.</p>
<p class="MsoNormal"><strong>Visual Timeline</strong><br />
While I’m talking about the timeline, let’s expand on that for a bit. The timeline runs from right to left. Updates appear as if they’re almost floating in the sky based on time. If you hover your mouse over an update it’ll highlight the time at the bottom of your timeline. Clicking on an update will expand it so that you can read the entire update as well as any responses. You can also view the <a href="http://www.plurk.com/m" target="_blank">mobile timeline</a> if the visual timeline is too conspicuous for you. Either I don’t like this visual timeline or it takes a lot of getting used to.</p>
<p class="MsoNormal"><strong>Friend Filtering</strong><br />
I can create “Cliques” and add people. Once I do this I can send out a Plurk to just the users in that specific group. Apparently there’s a way to filter incoming messages from just those in that group but I haven’t found it available to me just yet. The only thing I don’t like about adding folks to the clique is that you have to type their names rather than selecting people with check boxes in a list.</p>
<p class="MsoNormal"><strong>Friend, No Need to Follow<br />
</strong>Friends can be friends but you don’t have to follow their timeline. I really like this feature. Someone asked me why I would want to be friends with someone but not read what they have to say. There are folks that I’m friends with where I want to see what they have to say some of the time, not all of the time. It allows me a certain amount of discretion by letting me hit a button to turn timeline updates on or off.</p>
<p class="MsoNormal"><strong>Drawbacks<br />
</strong>I was in at least 35 different conversations today and I can’t remember where I said what. I want to be able to search for things that I said. Make “me” searchable. I still can’t find out how to view just people in my clique. I want that to be an option and if it is, I want that to be more intuitive. Due to the instant interaction and the instant alerts I’ve found the use of this network to occupy a lot of my time. It’s hard to just walk away from a conversation. This is by no means the fault of Plurk, but a human trait we all possess.</p>
<p class="MsoNormal">I wonder how Plurk will do with scalability? Twitter has experienced a lot of trouble and downtime lately and it doesn&#8217;t have the type of interaction or interface that Plurk does. I wonder what kind of plans the creators of Plurk have to combat the inevitable?</p>
<p class="MsoNormal">&#8211;</p>
<p class="MsoNormal">I think Plurk has some real potential though I don’t know that I’m ready to migrate from the familiarity that is Twitter just yet. What makes it different and sets it aside from Twitter are all huge advantages for me; aside from the timeline view. I can see using Plurk as a means by which to have more personal interaction. It’s like interactive polling. Twitter is much easier to just output and walk away. Plurk, however, is a more like instant messaging in groups at your friends’ leisure.</p>
<p class="MsoNormal">Have some fun. Play around. What do you think about <a href="http://www.plurk.com/user/kimfenolio" target="_blank">Plurk</a>? What drawbacks, bonuses or other features (or lack there of)  should we talk about?</p>
<p>This entry has be Dugg!<br />
<a href="http://digg.com/software/To_Plurk_or_Not_to_Plurk"><br />
<img src="http://digg.com/img/badges/100x20-digg-button.png" width="100" height="20" alt="Digg!" /><br />
</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F06-03-2008%2Fto-plurk-or-not-to-plurk%2F';
  addthis_title  = 'To+Plurk+or+Not+to+Plurk%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=24GxypdqwRg:gXGtnheH3rU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=24GxypdqwRg:gXGtnheH3rU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=24GxypdqwRg:gXGtnheH3rU:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=24GxypdqwRg:gXGtnheH3rU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=24GxypdqwRg:gXGtnheH3rU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=24GxypdqwRg:gXGtnheH3rU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/24GxypdqwRg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/06-03-2008/to-plurk-or-not-to-plurk/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/06-03-2008/to-plurk-or-not-to-plurk/</feedburner:origLink></item>
		<item>
		<title>Social Networking and Me</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/5PDI-xcYTKg/</link>
		<comments>http://www.kimfenolio.com/03-17-2008/social-networking-and-me/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 18:13:05 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[relationships]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=25</guid>
		<description><![CDATA[
			
				
			
		Recently I was talking to my brother. I asked him if he had a Facebook account. His response was as follows:
Social Networking.. Blahhhh. I like meeting people the old fashion way. &#8220;Hey you, come over here. I wanna talk to you.&#8221;
I guess I&#8217;m not doing my sisterly job very well. I&#8217;ll work on that. The [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F03-17-2008%2Fsocial-networking-and-me%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F03-17-2008%2Fsocial-networking-and-me%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>Recently I was talking to my brother. I asked him if he had a Facebook account. His response was as follows:</p>
<blockquote><p>Social Networking.. Blahhhh. I like meeting people the old fashion way. &#8220;Hey you, come over here. I wanna talk to you.&#8221;</p></blockquote>
<p>I guess I&#8217;m not doing my sisterly job very well. I&#8217;ll work on that. The whole point behind social networking is to be more social. You get the opportunity to connect and network with people that you likely may not have stumbled across in the physical realm. Once you make those connections through social networking, it provides an easier means of which to make the connection in your personal space.</p>
<p>Heck, you may not even need to meet face-to-face. I have a number of clients that I have never physically met. I&#8217;ve communicated with them through the social networking sites, chat programs and video sites. Some of my connections aren&#8217;t necessarily clients, but are colleagues and even friends. I&#8217;ve had the opportunity to meet a number of them in person as a result of the relationship we&#8217;ve formed through the social networking that my brother blahed at earlier.</p>
<p>I have made some great friends, connected with old friends, networked with connections of my connections, created business relationships, negotiated ideas, have held and been the subject of interviews and meetings all as a result of this social networking.</p>
<p>What has social networking done for you?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F03-17-2008%2Fsocial-networking-and-me%2F';
  addthis_title  = 'Social+Networking+and+Me';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5PDI-xcYTKg:nvYBm9pWG2U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5PDI-xcYTKg:nvYBm9pWG2U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5PDI-xcYTKg:nvYBm9pWG2U:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5PDI-xcYTKg:nvYBm9pWG2U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5PDI-xcYTKg:nvYBm9pWG2U:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5PDI-xcYTKg:nvYBm9pWG2U:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/5PDI-xcYTKg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/03-17-2008/social-networking-and-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/03-17-2008/social-networking-and-me/</feedburner:origLink></item>
		<item>
		<title>Adjusting Your Microphone’s Recording Volume</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/GdVACpW7jts/</link>
		<comments>http://www.kimfenolio.com/01-29-2008/adjusting-your-microphones-recording-volume/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 23:05:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Technical Advice]]></category>
		<category><![CDATA[adjustment]]></category>
		<category><![CDATA[microphone]]></category>
		<category><![CDATA[recording volume]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=18</guid>
		<description><![CDATA[
			
				
			
		This article is going to cover how to adjust your microphone&#8217;s recording volume if you&#8217;re on a Windows XP machine. I voice chat a lot and run across many people whose microphone volume&#8217;s are coming across either too soft or too loud.
Why is this a problem? Well, for example, if I have three other people [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-29-2008%2Fadjusting-your-microphones-recording-volume%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-29-2008%2Fadjusting-your-microphones-recording-volume%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>This article is going to cover how to adjust your microphone&#8217;s recording volume if you&#8217;re on a Windows XP machine. I voice chat a lot and run across many people whose microphone volume&#8217;s are coming across either too soft or too loud.</p>
<p>Why is this a problem? Well, for example, if I have three other people on a Skype conference call, one person might be soft while the other two are a good volume. I don&#8217;t want to turn up my system volume because the other two will be exceptionally loud in my ear while that one person will be at an acceptable level. The one person who is too soft should be able to adjust their level so that the rest of the people in the call won&#8217;t have to adjust.</p>
<p>These instructions are for those who are using the Win XP generic drivers for their sound card. The majority of people are. If you&#8217;re using something else, then you may be able to adapt these instructions. Give it a read and see.</p>
<p>There are two different ways to get into the panel and adjust the recording volume. I&#8217;m going to list both ways. You decide which is easier. Screen shots are provided within the instructions. Click on the thumbnails to view the full size image.</p>
<p><strong>Access From the System Tray </strong>(with explanations)</p>
<ol>
<li>In your system tray (the little area on your taskbar with the clock) there will be an icon that looks like a little gray speaker. Double click on it.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/taskbar.jpg" target="_blank" title="Sound Mixer via the Taskbar"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/taskbar.thumbnail.jpg" alt="Sound Mixer via the Taskbar" /></a></li>
<li>The window that comes up is called your Playback Control. This is what controls the volume of anything that you hear either over your speakers or through your headphones. There, you will see a Microphone slider. This controls how loud you hear yourself through your headphones. If the mute button is checked, then you won&#8217;t hear yourself at all. This has no baring on whether or not others will hear you if you&#8217;re in a VOIP call. It only controls what *you* hear of yourself. Only adjust this volume slider if you need to hear more or less of yourself.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/playbackcontrol.jpg" target="_blank" title="Playback Control"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/playbackcontrol.thumbnail.jpg" alt="Playback Control" /></a></li>
<li>To get to the area where we adjust the recording volume (what others will hear when you&#8217;re in a call) click on Options at the top of the window. Then Properties.</li>
<li>The Properties box now has an area in the top that says &#8220;Adjust volume for&#8221;. Click the Recording button.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesplayback.jpg" target="_blank" title="Playback Properties"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesplayback.thumbnail.jpg" alt="Playback Properties" /></a></li>
<li>You should now notice that the options in the bottom of that box have changed. Make sure that there is a check mark next to where it says Microphone. Then click OK.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesrecord.jpg" target="_blank" title="Recording Properties"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesrecord.thumbnail.jpg" alt="Recording Properties" /></a></li>
<li>The window will now change and become the Record Control. This is the mixer that controls what gets recorded or sent out as audio through a call. Each of these sliders does not have a &#8220;Mute&#8221; under it, instead it has &#8220;Select&#8221; under it. Unless you have an advanced setup (you&#8217;ll know if you have this) you will want the check in the box underneath the Microphone slider. None of the other sliders on this window will effect your outgoing voice or audio. Generally, the best place to have your slider is right at or just above the halfway mark. If people tell you that you need to be louder, obviously you&#8217;ll want to drag the slider up. If you&#8217;re too loud, drag the slider down.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/recordcontrol.jpg" target="_blank" title="Record Control"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/recordcontrol.thumbnail.jpg" alt="Record Control" /></a></li>
<li>When your voice is being sent out at an acceptable level, simply close the window.</li>
</ol>
<p><strong> Access From Control Panel</strong></p>
<ol>
<li>Go to Start, Control Panel. Double click on Sound and Audio Devices. If you don&#8217;t see that, click on &#8220;Classic View&#8221; in the left hand side of the window.</li>
<li>Click the Audio tab. Then click Volume under the &#8220;Sound recording&#8221; area.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/sadp.jpg" target="_blank" title="Sound and Device Properties"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/sadp.thumbnail.jpg" alt="Sound and Device Properties" /></a></li>
<li>The window will now change and become the Record Control. This is the mixer that controls what gets recorded or sent out as audio through a call. Each of these sliders does not have a &#8220;Mute&#8221; under it, instead it has &#8220;Select&#8221; under it. Unless you have an advanced setup (you&#8217;ll know if you have this) you will want the check in the box underneath the Microphone slider. None of the other sliders on this window will effect your outgoing voice or audio. Generally, the best place to have your slider is right at or just above the halfway mark. If people tell you that you need to be louder, obviously you&#8217;ll want to drag the slider up. If you&#8217;re too loud, drag the slider down.</li>
<li>When your voice is being sent out at an acceptable level, simply close the window.</li>
</ol>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F01-29-2008%2Fadjusting-your-microphones-recording-volume%2F';
  addthis_title  = 'Adjusting+Your+Microphone%26%238217%3Bs+Recording+Volume';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GdVACpW7jts:j_sB7-JaroE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GdVACpW7jts:j_sB7-JaroE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GdVACpW7jts:j_sB7-JaroE:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GdVACpW7jts:j_sB7-JaroE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GdVACpW7jts:j_sB7-JaroE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GdVACpW7jts:j_sB7-JaroE:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/GdVACpW7jts" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/01-29-2008/adjusting-your-microphones-recording-volume/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/01-29-2008/adjusting-your-microphones-recording-volume/</feedburner:origLink></item>
		<item>
		<title>It’s a Go</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/18ZOvVxKl4E/</link>
		<comments>http://www.kimfenolio.com/01-23-2008/its-a-go/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 06:41:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Design Related]]></category>
		<category><![CDATA[Experience]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://experimenting.kimfenolio.com/?p=17</guid>
		<description><![CDATA[
			
				
			
		Today is the day I unleash my new site here to the masses. I want to explain a bit about what it is that I want to do here and why I&#8217;m doing it.
The Finger Trail
I&#8217;m a graphic artist. It&#8217;s what I went to school for. It&#8217;s the degree that I graduated with.  It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-23-2008%2Fits-a-go%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-23-2008%2Fits-a-go%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>Today is the day I unleash my new site here to the masses. I want to explain a bit about what it is that I want to do here and why I&#8217;m doing it.</p>
<p><strong>The Finger Trail</strong><br />
I&#8217;m a graphic artist. It&#8217;s what I went to school for. It&#8217;s the degree that I graduated with.  It&#8217;s why I was the president of my school&#8217;s graphic design club. It&#8217;s the title that I&#8217;ve held professionally for the past five years. I love graphic design and I love being creative. Over the past year I&#8217;ve felt like there&#8217;s been something missing within the realm of my career. I haven&#8217;t really been able to put my finger on it. Finally I decided to stop running around in circles and put my whole hand down on what I want; not just that finger.</p>
<p><strong>Final Destination</strong><br />
Playing around in new and social media is something I&#8217;ve been doing for about four years now. I say playing because it&#8217;s something that&#8217;s merely been a hobby of mine. Help is something that I have offered freely and likely will continue to do. Today I focus and make it a part of my career.</p>
<p>I say a <em>part </em>of my career because I&#8217;ve proven that I am a good graphic artist but that I&#8217;m also good at producing and consulting in new and social medias. I am creating a workable relationship between design and new media. I have no doubt in my mind that this can and will be a good thing. The next step is application and follow-through, which we all know is the key to any relationship.</p>
<p><strong>The Key</strong><br />
I look forward to using this key to open doors not only for myself but also for those people whose paths I will cross. There are people who will benefit from the skills that I have to offer. I love to help out wherever I can, and if it&#8217;s something I don&#8217;t know how to do then it&#8217;s something I&#8217;m going to learn how to do. I love a good challenge. What&#8217;ve <strong>you</strong> got?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F01-23-2008%2Fits-a-go%2F';
  addthis_title  = 'It%26%238217%3Bs+a+Go';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=18ZOvVxKl4E:Fq7UU95Dhrk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=18ZOvVxKl4E:Fq7UU95Dhrk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=18ZOvVxKl4E:Fq7UU95Dhrk:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=18ZOvVxKl4E:Fq7UU95Dhrk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=18ZOvVxKl4E:Fq7UU95Dhrk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=18ZOvVxKl4E:Fq7UU95Dhrk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/18ZOvVxKl4E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/01-23-2008/its-a-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/01-23-2008/its-a-go/</feedburner:origLink></item>
		<item>
		<title>Personal Experience in Podcasting</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/GCEXHR4t0EI/</link>
		<comments>http://www.kimfenolio.com/01-18-2008/personal-experience-in-podcasting/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 22:49:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[kim fenolio]]></category>
		<category><![CDATA[podcasting]]></category>

		<guid isPermaLink="false">http://experimenting.kimfenolio.com/?p=14</guid>
		<description><![CDATA[
			
				
			
		How I Got Started
I first got involved in podcasting back in January of 2006. It started with my listening, which quickly turned into my participating in other people&#8217;s podcasts; either by comments at their blog, messages left to show voicemail lines or participation in online forums. After a short time I was asked to guest [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-18-2008%2Fpersonal-experience-in-podcasting%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-18-2008%2Fpersonal-experience-in-podcasting%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><strong>How I Got Started</strong><br />
I first got involved in podcasting back in January of 2006. It started with my listening, which quickly turned into my participating in other people&#8217;s podcasts; either by comments at their blog, messages left to show voicemail lines or participation in online forums. After a short time I was asked to guest host a show, which sealed the deal for me: I needed to start my own podcast and it didn&#8217;t matter what it was about. It was fun, engaging and wholly entertaining.</p>
<p><strong>My First Show</strong><br />
A friend of mine agreed to co-host a show with me. Due to circumstances beyond our control, we were unable to get the show past two episodes and it fizzled out. I continued to participate in other people&#8217;s shows as well as help out where I could. There were times that I even produced <strong>my own audio segments for shows</strong>. In February of 2007 though, things changed. An idea was created to start a podcast based on the television show Grey&#8217;s Anatomy. It was the first <a href="http://gspn.tv/category/gafp" target="_blank">fan based podcast</a> of it&#8217;s time and was an instant hit. I co-hosted the show with <a href="http://www.gspn.tv" target="_blank">Stephanie and Cliff Ravenscraft</a> where we incorporated live listeners, voicemail calls, also making the show available for download at a later time. I created a visual brand for the podcast in terms of cover art, podcast logo, promotional banner and other promotional items to be used on forums and the like. After the television show finished up for the year in May, I resigned my position as co-host.</p>
<p><strong>The Current Focus</strong><br />
Just a few weeks later in May of 2007 I launched another podcast called <a href="http://www.girlsnightinpodcast.com/" target="_blank">Girls Night In</a>. This is a show with a total of four hosts. Not only do I occupy the role as a host but I also manage, produce and have branded this show. As I continue on I find that I&#8217;ve learned so much more than I thought was possible in regards to all aspects of podcasting.</p>
<p>I&#8217;ve established how to effectively market our brand, incorporate live listeners into the show, route and record audio where each of the four hosts of the show are in separate parts of the country, master audio levels, edit audio, learn to master post-production editing and effects to allow for the final product to be more palatable on the download. I&#8217;ve been able to give the show a presence on a number of social networks such as Facebook, Twitter and MySpace where we&#8217;ve been able to find a number of listeners willing to interact and pose feedback.</p>
<p><strong>The Visual Brand</strong><br />
I&#8217;ve established our presence at a website which is syndicated with RSS (a blog) thus allowing the media that we create to reach the listener without any action on their part. The site itself is branded along with the cover art. Beyond simply creating the logo, coverart and website with a consistent brand, I also went a step further and created individual avatars for each of the hosts to use if they so desired. This way, each host would be visually associated with the show on whichever social network they chose to be a part of. The blog has been sprinkled with all sorts of goodies that make it easy for the listener or potential new listener to navigate and find out more about the show. There are blog posts from the hosts, posts that contain the podcast episodes and show notes, pages that share what the podcast is about, how to contact the hosts, where to interact within the show, outside of the show and in social networks, a schedule of our show dates and an easy way to listen directly from the site.</p>
<p>Why do you want to do this? Well, people are going to find your podcast by searching for it, <strong>looking </strong>for it and not necessarily hearing it first. They&#8217;re likely going to read something somewhere about it, find your page and view what you&#8217;re about before they download and listen. This is why having an attractive visual brand is so important and an integral part in expanding your podcast audience.</p>
<p>A logo is the most readily available representative of your podcast. Your logo can accompany press releases, be used as a link to your site, for advertising purposes, and give potential audiences a glimpse at what you and your podcast are all about even before listening to your show.</p>
<p>If you or your company already has a logo, you could further brand your image by incorporating your business logo or design a variation of your corporate logo to strengthen and reinforce your brand. Just as with your logo, your cover art displays your identity. It will display your logo and the name of your podcast, if that is your desire. This is what is shown when any directory displays your podcast. It is used as a way to represent your show. This image can also be used as your show artwork in RSS feeds or on your website.</p>
<p><strong>The Audible Brand</strong><br />
Outside of making everything visually appealing and consistent, the same needs to apply to what the audience is hearing. There needs to be consistency in what to expect with audio quality as well as what&#8217;s being mixed into the natural sound. The use of an intro, outro and audio bumpers in between segments is a great way to establish a template of how the show works, thus creating a consistent flow. The audience then recognizes and is able to anticipate what&#8217;s coming up. Outside of the mechanics of the audio, you need to sound like you&#8217;re more than just a drone reading from a word document. Even if you are reading, the best way to keep your audience engaged is to add flare to your voice. You need to <strong>be</strong> interested in what you&#8217;re speaking about or your audience will lose interest. If you lose the interest of your audience, you lose your audience.</p>
<p><strong>What it Comes Down to</strong><br />
Create your brand both visually and audibly. Make it clear, concise and easy to follow. Your message needs to be relatable and interesting. Is it? Are you sure you&#8217;ve established yourself in that manner? What else needs to be done to make a podcast work and work well?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F01-18-2008%2Fpersonal-experience-in-podcasting%2F';
  addthis_title  = 'Personal+Experience+in+Podcasting';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GCEXHR4t0EI:RmVEcf98SP0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GCEXHR4t0EI:RmVEcf98SP0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GCEXHR4t0EI:RmVEcf98SP0:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GCEXHR4t0EI:RmVEcf98SP0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=GCEXHR4t0EI:RmVEcf98SP0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=GCEXHR4t0EI:RmVEcf98SP0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/GCEXHR4t0EI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/01-18-2008/personal-experience-in-podcasting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/01-18-2008/personal-experience-in-podcasting/</feedburner:origLink></item>
		<item>
		<title>When I’m At My Best</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/5fTR_ej2beI/</link>
		<comments>http://www.kimfenolio.com/01-16-2008/when-im-at-my-best/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 08:51:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[best time to work]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://experimental.kimfenolio.com/?p=3</guid>
		<description><![CDATA[
			
				
			
		I&#8217;m winding down on day two of this re-branding process. It&#8217;s approximately 2:41. I state the time because it&#8217;s important to something I&#8217;ve learned this week. I have bigger and better ideas starting around 10:00. I&#8217;m finding that I work through at high-speed and with fantastic clarity through to about 3:00. It&#8217;s quite surprising.
Not only [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-16-2008%2Fwhen-im-at-my-best%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-16-2008%2Fwhen-im-at-my-best%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>I&#8217;m winding down on day two of this re-branding process. It&#8217;s approximately 2:41. I state the time because it&#8217;s important to something I&#8217;ve learned this week. I have bigger and better ideas starting around 10:00. I&#8217;m finding that I work through at high-speed and with fantastic clarity through to about 3:00. It&#8217;s quite surprising.</p>
<p>Not only am I finding that I work harder, faster and produce better product during this time period, my voice even performs at what I might call optimum levels. I podcast as well, so to have a clear and round tone to my voice without having to concentrate or use any vocal tricks is something that&#8217;s also encouraging for production in that realm.</p>
<p>Why is that important? Well, simply because I now recognize when I&#8217;m at my best, performance wise. I know when I&#8217;m going to be able to produce more and where to schedule less of my fun-time activities. There is now the thought that I might be able to find what makes this time-period so productive for me and see if I can&#8217;t apply that to the rest of my day. That would be optimal, but for the time being I&#8217;m going to go with what works.</p>
<p>What are your peak hours of operation and why?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F01-16-2008%2Fwhen-im-at-my-best%2F';
  addthis_title  = 'When+I%26%238217%3Bm+At+My+Best';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5fTR_ej2beI:9ErZN0NBjxk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5fTR_ej2beI:9ErZN0NBjxk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5fTR_ej2beI:9ErZN0NBjxk:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5fTR_ej2beI:9ErZN0NBjxk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=5fTR_ej2beI:9ErZN0NBjxk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=5fTR_ej2beI:9ErZN0NBjxk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/5fTR_ej2beI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/01-16-2008/when-im-at-my-best/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/01-16-2008/when-im-at-my-best/</feedburner:origLink></item>
		<item>
		<title>The Experiment</title>
		<link>http://feedproxy.google.com/~r/KimFenolio/~3/u9pRCyxKSTU/</link>
		<comments>http://www.kimfenolio.com/01-14-2008/hello-world/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 22:49:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Design Related]]></category>
		<category><![CDATA[New Concepts]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Random Thought]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://experimental.kimfenolio.com/?p=1</guid>
		<description><![CDATA[
			
				
			
		Welcome to the Kim Fenolio redesign and rebrand. The goal is to embark upon a career path that will not just be monetarily rewarding but also enjoyable. The concept is quite simple, the road however is a bit more rugged.
As I design, tweak, code and create myself again (did I mention again?) on the interwebs [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-14-2008%2Fhello-world%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-14-2008%2Fhello-world%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>Welcome to the Kim Fenolio redesign and rebrand. The goal is to embark upon a career path that will not just be monetarily rewarding but also enjoyable. The concept is quite simple, the road however is a bit more rugged.</p>
<p>As I design, tweak, code and create myself again (did I mention again?) on the interwebs I&#8217;m finding new and different things that I can do and also enjoy doing. I don&#8217;t just put my mind to something. I put my mind to something and I <strong>finish it</strong>. If I don&#8217;t have the answer, I will find someone who does.</p>
<p>I&#8217;ve built this great network of people by means of social networking. Some of these folks I&#8217;ve met through <a href="http://girlsnightinpodcast.com">podcasting</a>, through <a href="http://twitter.com/kfenolio">Twitter</a>, through <a href="http://profile.to/KimFenolio">Facebook</a> and other forums. The point is that I have a large pool of talent and knowledge available to me. All I have to do is ask a question and so many people are willing to share and give of themselves and their knowledge. It&#8217;s actually quite amazing. Without my having met and spending some time to create a relationship with each of these people, I wouldn&#8217;t be the talent that I am today.</p>
<p>The point is that when you get me, you also get connections. I have strings attached, but they&#8217;re not in the conventional way that you would think strings are attached. It&#8217;s the idea that you get more bang for your buck.</p>
<p>Welcome to my personal brand. Welcome to my life. Welcome to Kim Fenolio.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F01-14-2008%2Fhello-world%2F';
  addthis_title  = 'The+Experiment';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=u9pRCyxKSTU:1HAWM9csvWs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=u9pRCyxKSTU:1HAWM9csvWs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=u9pRCyxKSTU:1HAWM9csvWs:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=u9pRCyxKSTU:1HAWM9csvWs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/KimFenolio?i=u9pRCyxKSTU:1HAWM9csvWs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/KimFenolio?a=u9pRCyxKSTU:1HAWM9csvWs:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/KimFenolio?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/KimFenolio/~4/u9pRCyxKSTU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/01-14-2008/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kimfenolio.com/01-14-2008/hello-world/</feedburner:origLink></item>
	</channel>
</rss>

