<?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/" version="2.0">

<channel>
	<title>Michaelbox.net</title>
	
	<link>http://michaelbox.net</link>
	<description>A container of ideas, creativity, passions, and adventures </description>
	<lastBuildDate>Fri, 03 Sep 2010 03:23:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/michaelbox" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="michaelbox" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">michaelbox</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Social Media Shortcodes</title>
		<link>http://michaelbox.net/2010/08/23/social-media-shortcodes/</link>
		<comments>http://michaelbox.net/2010/08/23/social-media-shortcodes/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 00:21:38 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Web Design-Development]]></category>
		<category><![CDATA[shortcodes]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=206</guid>
		<description><![CDATA[Have you ever had the need to link to someone’s profile on one of the many social websites online? How about link to many profiles for many people? Doesn’t it get tiring writing out all the links over and over again? I know I got tired of it pretty quickly. One day I was reading [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you ever had the need to link to someone’s profile on one of the many social websites online? How about link to many profiles for many people? Doesn’t it get tiring writing out all the links over and over again? I know I got tired of it pretty quickly. One day I was reading about shortcodes within WordPress installs and it struck me that I could utilize shortcodes to automate the profile link creation process. I started out with just a twitter shortcode to see how it would go. You can see it down below.</p>
<span id="more-206"></span>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> twitter_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://twitter.com/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Twitter Profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Twitter)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'twitter'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'twitter_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>




<p>Once you put this into your theme’s functions.php file, all you need to do is type out</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#91;</span>twitter name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;THE USER ID&quot;</span><span style="color: #009900;">&#93;</span></pre></div></div>




<p>with “THE USER ID” replaced with the actual twitter ID, and a link to that user’s profile would be displayed, as well as what site is getting linked to within the parentheses.</p>

<p>What the shortcode function does is take the user ID provided by you in the declaration, assign it to the variable $name, and insert $name into the link target URL, the link title, and as part of the text for the link. If there is no ID provided, a link to twitter.com will be created by default.</p>

<p>After I had this much figured out, I knew the possibilities for this shortcode didn’t stop there. This shortcode use could be adapted for any website that provides a user profile. I proceeded to adapt it for: Identi.ca, Facebook, Reddit, Digg, DesignFloat, Linkedin, Stumbleupon, and Myspace. All that you need to know is the user ID for each site. Below is the combination of each declaration ready to be pasted into your functions.php file.</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> twitter_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://twitter.com/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Twitter Profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Twitter)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> identica_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://identi.ca/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Identi.ca Profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Identi.ca)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> facebook_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://www.facebook.com/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Facebook profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Facebook)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> reddit_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://www.reddit.com/user/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Reddit profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Reddit)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> digg_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://www.digg.com/users/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Digg profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Digg)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> designfloat_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://www.designfloat.com/user/profile/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s DesignFloat profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (DesignFloat)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> linkedin_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://www.linkedin.com/in/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Public Linkedin profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Linkedin)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> stumbleupon_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://www.stumbleupon.com/stumbler/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Stumbleupon profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Stumbleupon)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> myspace_sc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;http://www.myspace.com/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/&quot; title=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'s Myspace profile&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' (Myspace)&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'twitter'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'twitter_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'identica'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'identica_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'facebook'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'facebook_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'reddit'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'reddit_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'digg'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'digg_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'designfloat'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'designfloat_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'linkedin'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'linkedin_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stumbleupon'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'stumbleupon_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'myspace'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'myspace_sc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>




<p>Just remember, you need to provide the user ID within the shortcode call on either your posts or your pages, like so.</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#91;</span>reddit name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;tw2113&quot;</span><span style="color: #009900;">&#93;</span></pre></div></div>




<p>and the result will be <a href="http://www.reddit.com/user/tw2113" title="tw2113s Reddit profile">tw2113 (Reddit)</a></p>

<p>The shortcode declarations should be easily adaptable for any website that provides user profiles. With a little bit of code studying and changes to the appropriate spots, you can create your own to add to the list for whatever site you want.</p>

<p>Hopefully this proves useful to many people, especially anyone who links to these profiles frequently in their posts or pages.</p>

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=iWiTsrjtFEE:mhfMVSYgjaQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/iWiTsrjtFEE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/08/23/social-media-shortcodes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do You Think You Know Michael Beckwith?</title>
		<link>http://michaelbox.net/2010/08/18/everyone-elses-interview-with-me/</link>
		<comments>http://michaelbox.net/2010/08/18/everyone-elses-interview-with-me/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 15:58:20 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Adventures]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[myself]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=203</guid>
		<description><![CDATA[No way do you know me! Ok maybe you do. I do what I can to express a lot and always make people laugh, even in the toughest of times. This interview is a special one that I decided to do back in the early days of the interview post idea. It's done in conjunction [...]


Related posts:<ol><li><a href='http://michaelbox.net/2010/07/21/my-interview-with-jon-phillips/' rel='bookmark' title='Permanent Link: Do You Think You Know Jon Phillips?'>Do You Think You Know Jon Phillips?</a></li>
<li><a href='http://michaelbox.net/2010/05/12/my-interview-with-selene-bowlby/' rel='bookmark' title='Permanent Link: Do you think you know Selene M. Bowlby?'>Do you think you know Selene M. Bowlby?</a></li>
<li><a href='http://michaelbox.net/2010/03/06/time-so-far-as-a-minion/' rel='bookmark' title='Permanent Link: ﻿My Time, So Far, as a Minion…or What It’s Like To Work For An Over-hyper Elf'>﻿My Time, So Far, as a Minion…or What It’s Like To Work For An Over-hyper Elf</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelbox.net/wp-content/images/littleme.jpg" alt="" title="littleme" width="182" height="314" class="alignright size-full wp-image-204" />No way do you know me! Ok maybe you do. I do what I can to express a lot and always make people laugh, even in the toughest of times. This interview is a special one that I decided to do back in the early days of the interview post idea. It’s done in conjunction with my 27th birthday today. All of the questions, except one, are submitted to me from the people you’ve already met in this blog series, as well as a small handful from others on twitter. I appreciate all of them spending some time to suggest one or three. Lets get to it, I’m getting sappy.</p>
<span id="more-203"></span>

<h3>If Hollywood made a movie about your life, whom would you like to
see play the lead role as you and why?</h3>

<p><span class="interviewee">Michael Beckwith</span>: Mary Elizabeth Winstead so that I’d be considered really f’n hot for once.</p>

<p>Oh, I have to stick to the appropriate gender? OK. Hmm..Joseph Gordon-Levitt. I have always enjoyed his work, from my time in high school watching <a href="http://www.imdb.com/title/tt0147800/" title="10 Things I Hate About You">10 Things I Hate About You</a> to my recent time realizing how great of a show <a href="http://www.imdb.com/title/tt0115082/" title="3rd Rock From The Sun">3rd Rock From The Sun</a> was. He has also shown a lot of serious acting chops the past number of years as he’s matured. If JGL wasn’t available, I’d have to go with Yahoo Serious, famous Australian actor/writer/director of such films like <a href="http://www.imdb.com/title/tt0096486/" title="Young Einstein">Young Einstein</a> and <a href="http://www.imdb.com/title/tt0107930/" title="Reckless Kelly">Reckless Kelly</a>. The reason for choosing Yahoo is because I recall growing up at a really young age watching Young Einstein when it came on tv. Very satirical and funny take on Einstein’s life, including splitting a beer atom to discover E=mc^2. Love it</p>

<h3>What would I find in your refrigerator right now?</h3>

<p><span class="interviewee">Michael</span>: Due to the fact that I have not really gone grocery shopping lately, especially for things that need to remain cold, not much. Bit of milk, your usual condiments. My freezer however…a ham, some small cuts of beef, hot dogs, breakfast sausage. I used to have some bacon, but I eated it!</p>

<p>I should really invest in a shopping trip.</p>

<h3>When it comes to building WordPress themes, what is your absolute favorite feature / capability / tag?</h3>

<p><span class="interviewee">Michael</span>: I guess I don’t really have a specific love of a feature/capability/whathaveyou, but I have noticed that I enjoy the challenge of a client wanting some sort of specific functionality and me being the person in charge of making it work. The idea of determining what information I need, how to retrieve that information, what to do with it, achieving that need, and then outputting the result. A lot of it is php and programming logic, but when it comes to WordPress themes, half the work tends to be done already through the built-in functions, making it somewhat entry level programming. However, you still need to know what functions you need to achieve these results, and how to make the functions format the information to fit your need. Other than that, just seeing all the areas of the theme working the way the designer and the client envisioned and requested. When that is true and the code is good, then I know I did my job.</p>

<p>I recently had a job interview for a “web developer” position for a local company, but they told me it’d be a lot of PSD to WordPress theme development. As soon as I heard that fact, I knew I wanted the position and that it’d be along my knowledge and current skill set. I should hear about if I landed the job or not this week, if I haven’t already by the time this post goes up.</p> 

<h3>What is one thing that you have learned in the real world that contradicts what “they” taught you in school?</h3>

<p><span class="interviewee">Michael</span>: Given the fact that my alumnus was big with Microsoft and taught a lot of their stuff, probably that Internet Explorer is a decent browser. Whether actually spoken or implied, I forget.</p>

<h3>What is the very first thing you learned in college?</h3>

<p><span class="interviewee">Michael</span>: While some would argue that learning that at some point I’d get to use Microsoft Frontpage later in my first semester of Intro To Computers 101, should be the first thing I learned(and the first thing I should have wished to change), I’m going to not go with that one. Others would argue that it’d be my first chance to really learn how to live on my own and be away from my parents. While definitely true for a decent amount of incoming freshmen, my brother and I spent the summer living on our own in a (really) small apartment about an hour away from our hometown. It was far away enough to be “away from the parents” but close enough that they could easily check up on us in person if needed.</p>

<p>No, none of those are the first thing that I learned in college. I am going to go with what I learned in English 101, much to the initial annoyance to my teacher. The very first thing that I learned in college is that I no longer had to ask if I could go to the bathroom. I was allowed to just go.</p>

<h3>What is your single most desired quality in a client? The single most hated?</h3>

<p><span class="interviewee">Michael</span>: For most desired? I won’t be alone in this one, but having the client comprehend and understand that, unlike their nephew/son/family member offering to do things for free, they hire the designers and developers because those people know what they are doing and have been doing it for usually many years on professional levels.</p>

<p>They need to learn to put their trust into the people they are hiring. Chances are the designer/developer isn’t going to try and screw the client over, because they want to earn their worth on the project as well as a decent living like everyone else. You know, one of those things called a career. Also, the designer/developer is going to want to produce work that is going to, hopefully, bring in more work in the future from either the same client(unless a really bad experience happens), or new clients.</p>

<p>For most hated? Going based on a previous WordPress project I was commissioned for: unavailability. If you know you are going to be unavailable for a period of time during the duration of the hired project, let the people you hire know that it will happen ahead of time. Don’t just suddenly pick up and go for awhile, while they’re trying to work on the project and may need to contact you. Also if you know you’re going to be gone, ask ahead of time what material or information the designers/developers need in order to get the project going steadily, and provide as much as you can before you leave. It’s really difficult to work on detailed style presentation when you have no example content to put in the work-in-progress site.</p>

<h3>What has been your biggest accomplishment?</h3>

<p><span class="interviewee">Michael</span>: Hopefully something not done yet! Other than that, I’m going to list being trusted my whole life to learn how to survive and make my own way through it, while always having my parents if I need them. They have really been wonderful and put their trust in me at ages that most parents would not. For that I’m always eternally grateful for them for letting me become the man I am today.</p>

<h3>How do you spend your days off?</h3>

<p><span class="interviewee">Michael</span>: Admittedly, I really lack a good solid social life. On top of that, I am currently not at a point in my eventual career that I’d like to be at. I am still trying to get my foot in the door on a local level. I have come to reason that an office-style job would not be a bad thing for me, so a lot of my off-time from my day job is spent trying to stay caught up in some very fast moving industries, and doing what I can on a freelance level to shape and evolve my portfolio. I am a pack rat when it comes to magazines, and lately you can see me somewhat frequently at one of a small handful of local coffee shops sitting there reading older issues of <a href="http://www.netmag.co.uk/" >.Net Magazine</a> or <a href="http://www.webdesignermag.co.uk/">Web Designer Mag</a> while sipping on a large round of roasted coffee. Why are all the decent web/graphic design magazines from the UK? Come on, I don’t want to have to pay $15 USD because they have to be imported! <img src='http://michaelbox.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>

<h3>Are there any go-to bands or artists you rely on for a long day and/or night of working, coding, or designing?</h3>

<p><span class="interviewee">Michael</span>: I don’t know if I really have any bands that I constantly rely on, where they’re a shoe-in. I do notice that I go through periods of listening to certain artists regularly or certain styles. The Manic Street Preachers are one of those that I can tend to listen to a lot of for a long while, but then leave alone. Right now, at least when driving somewhere, I’ve been listening to a lot of Sonic Youth. I think I have four of their albums in there right now. All the while, I also tend to have a “hot tracks” tendency. This is where certain tracks, usually from new entries into my personal library, get listened to frequently. The latest example would be “It’s Getting Boring By the Sea” by Blood Red Shoes. This is one of the songs from the soundtrack to Scott Pilgrim Vs. The World, and it’s the one that stood out the most to me. It’s been played quite frequently since then. The video is playing as I type this sentence <img src='http://michaelbox.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>

<p>Seeing as I have typed a novel that in no way relates to the actual question, usually whatever is going on in the above novel is what gets listened to during my hard working days and nights of coding/theming. Either that or musical scores to movies!</p>

<h3>Aside from the usual (Gmail, Twitter, etc), what are some of the websites you’re drawn to check on a daily basis?</h3>

<p><span class="interviewee">Michael</span>: In terms of my bookmarks, my own site admin to check on spam comments and empty appropriately, Okcupid in attempts to work on my personal life, as well as a small list of music group forums that I have joined over the years. After that would just be my RSS feeds including various design/developer related blogs, Dlisted for my gossip and celebrity trashing, my favorite web comics, like XKCD and The Brads, and Digg/Reddit category feeds. Too many get checked too frequently.</p>

<h3>If you could create an unique HTML tag, what would you call it and what should it accomplish?</h3>

<p><span class="interviewee">Michael</span>: The self closing Michael tag. Insert it anywhere with &lt;michael&gt; and have it return my name as a link to my website. Sure it can be done as a WordPress shortcode, but that’s not universal to HTML! Pure narcissism baby!</p>

<h3>From who and where do you tend to get most of your inspiration?</h3>

<p><span class="interviewee">Michael</span>: For a who, I’m going to go ahead and list <a href="http://twitter.com/chriscoyier/" title="chriscoyiers Twitter Profile">chriscoyier (Twitter)</a> as I have subscribed to his blog and am consistently blown away by his sheer knowledge and creativity in both CSS as well as WordPress methods and ideas. I wish I could have as much output as he does.</p>

<p>For a more generalized answer, any person who thinks outside the circle or any result of an idea that comes from left field. I am always trying to come at things from new angles to see the results. While I don’t always succeed with this(there are only so many angles), I do my best and am inspired by those who do succeed.</p>

<h3>If you could animate your dreams, would they be PG or R rated?</h3>

<p><span class="interviewee">Michael</span>: Tragically I do not remember my dreams 97% of the time, and I really find that to be a shame. If you know me well or have talked with me on a personal level, you know I have a healthy and sometimes rather offbeat personality. I imagine my dreams would be my awake personality multiplied and it would be awesome to be able to remember and write down the best ideas for future use. That said, I imagine the dreams would be at LEAST PG-13 or worse.</p>

<h3>What is your favorite part of the interview process?</h3>

<p><span class="interviewee">Michael</span>: While I probably answered this in my post about how I go about conducting each one, I’ll reiterate what comes to mind as my single favorite part. Reading the answers for the very first time and getting a sense of how much fun the interviewee had with the questions I came up with. This round I got put in the hot seat so this is pretty fun too.</p>

<h3>Sum up your life story in 140 characters</h3>

<p><span class="interviewee">Michael</span>: I was born, I’ll die. What I do with the unknown amount of time in between is up to me. You’re all welcome to tag along as long as you want!</p>

<h3>Bonus: What got you started in web design/development?</h3>
<p><span class="interviewee">Michael</span>: Angelfire and too much time on computers in the ancient days of 1998/1999. It stuck and I went with a career path.</p>

<p>Related posts:<ol><li><a href='http://michaelbox.net/2010/07/21/my-interview-with-jon-phillips/' rel='bookmark' title='Permanent Link: Do You Think You Know Jon Phillips?'>Do You Think You Know Jon Phillips?</a></li>
<li><a href='http://michaelbox.net/2010/05/12/my-interview-with-selene-bowlby/' rel='bookmark' title='Permanent Link: Do you think you know Selene M. Bowlby?'>Do you think you know Selene M. Bowlby?</a></li>
<li><a href='http://michaelbox.net/2010/03/06/time-so-far-as-a-minion/' rel='bookmark' title='Permanent Link: ﻿My Time, So Far, as a Minion…or What It’s Like To Work For An Over-hyper Elf'>﻿My Time, So Far, as a Minion…or What It’s Like To Work For An Over-hyper Elf</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=luwaJWaj7jE:2W_HGYg-TGw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/luwaJWaj7jE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/08/18/everyone-elses-interview-with-me/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Do You Think You Know Cheryl Harrison?</title>
		<link>http://michaelbox.net/2010/08/09/my-interview-with-cheryl-harrison/</link>
		<comments>http://michaelbox.net/2010/08/09/my-interview-with-cheryl-harrison/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 14:00:38 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Cheryl Harrison]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=200</guid>
		<description><![CDATA[I don't have much to say for introduction other than thanking Cheryl for agreeing to participate on such a short notice as well as being very timely with her response. She is a communications strategist in Columbus, Ohio with focus in social media technology. She is also my social media interview candidate for the series. [...]


Related posts:<ol><li><a href='http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/' rel='bookmark' title='Permanent Link: Do You Think You Know Alex Cook?'>Do You Think You Know Alex Cook?</a></li>
<li><a href='http://michaelbox.net/2010/06/23/my-interview-with-rachael-acklin/' rel='bookmark' title='Permanent Link: Do You Think You Know Rachael E.C. Acklin?'>Do You Think You Know Rachael E.C. Acklin?</a></li>
<li><a href='http://michaelbox.net/2010/06/10/my-interview-with-emma-taylor/' rel='bookmark' title='Permanent Link: Do You Think You Know Emma Taylor?'>Do You Think You Know Emma Taylor?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelbox.net/wp-content/images/cherylharrison2-300x199.jpg" alt="Cheryl Harrison" title="cherylharrison2" width="300" height="199" class="alignleft size-medium wp-image-201" />I don’t have much to say for introduction other than thanking Cheryl for agreeing to participate on such a short notice as well as being very timely with her response. She is a communications strategist in Columbus, Ohio with focus in social media technology. She is also my social media interview candidate for the series. She serves as the Tactical Lead for <a href="http://nateriggs.com/work-with-nate/">Social Business Strategies</a> and has been actively using social media for more than 10 years, having worked professionally as a community manager and interactive strategist. Hope you enjoy getting to know her.</p><span id="more-200"></span>

<h3>Who are you and what do you do? Where can we find you online?</h3>

<p><span class="interviewee">Cheryl Harrison</span>: I am a good idea! I’m work in the communication space with a focus on
using social media tools. I’m currently working as the Tactical Lead
for Social Business Strategies, consulting with companies to develop
an interactive strategy and establishing internal teams to implement
that strategy.</p>

<p>And where CAN’T you find me online?! I blog at <a href="http://beingcheryl.com" title="Being Cheryl">Being Cheryl</a>,
<a href="http://greatestcityofall.com" title="Greatest City Of All">Greatest City Of All</a>, <a href="http://tappedin.tv" title="Tapped In TV">Tapped In TV</a> (the last two being Columbus-centric). I’m also active daily at <a href="http://twitter.com/cherylharrison/" title="cherylharrisons Twitter Profile">cherylharrison (Twitter)</a>, <a href="http://www.facebook.com/cherylharrison/" title="cherylharrisons Facebook profile">cherylharrison (Facebook)</a>, <a href="http://www.linkedin.com/in/cherylharrison/" title="cherylharrisons Public Linkedin profile">cherylharrison (Linkedin)</a> and <a href="http://cherylharrison.yelp.com" title="Cheryl's Yelp Profile">cherylharrison.yelp.com</a> Though frankly, if the network exists, I probably have/had/will soon have an account on it.</p>

<h3>Obviously twitter plays a huge part in your daily life anymore. Who would you recruit first for a twitter army to fight the bad practices of the social web?</h3>

<p><span class="interviewee">Cheryl</span>: I would recruit <a href="http://twitter.com/RedHeadWriting/" title="RedHeadWritings Twitter Profile">RedHeadWriting (Twitter)</a> because she’s sharp, snarky and offensive as hell. Our smartass redheadedness combined, we could rule the world. Or at least the interwebz.</p>

<h3>Over the past year, location based social media has grown in leaps and bounds. Where do you see this going in the future? What are some of the benefits of location based social media vs. the notion of privacy?</h3>

<p><span class="interviewee">Cheryl</span>: I love the trend towards location!
For individuals, location is great for knowing where your friends are, discovering new businesses, meeting new people, getting sweet discounts and just plain ol’ fun — gaming mechanics like badges for collector-types and leaderboards for competitive-types make the game a good time.</p>

<p>For businesses, location is great for advertising — and free, at that (the “nearby special” notification that pops up is free for small businesses to set up currently), consumer insight and taking advantage of the influence your customers have within their social networks.</p>

<h3>If you were to write your twitter profile url in the sky, what font would you have the pilot use for the task?</h3>

<p><span class="interviewee">Cheryl</span>: Tahoma. Simple and understated.</p>

<p>However, If I were to write my MySpace URL in the sky… Comic Sans.
Anyone still use MySpace? Seriously. Anyone?</p>

<h3>Say you were given the chance to work with and help improve any top name brand for one month, which brand would you choose and why?</h3>

<p><span class="interviewee">Cheryl</span>: <a href="http://www.woot.com" title="Woot.com">Woot.com</a>. Not that they need me to improve their stellar brand, it would just be seriously fun. Hey Woot, did you hear that? Call me up
to contribute some of your brilliant copy, cool? Send me some free wine.woot while you’re at it.</p>

<h3>The social web is in an ever changing state at very rapid paces. Where do you see social media in 6 months?</h3>

<p><span class="interviewee">Cheryl</span>: Everything is trending towards localized and niche content — even broad networks like Twitter and Facebook are integrating geographic-focus features — and I think that trend will continue. It’s cool to chat with someone from Australia while in Ohio, but it’s really cool to connect with like-minded people who live around the corner and can meet up in real life.</p>

<h3>Do you go sailing on the high seas as a social media pirate or do you stick to stealthy social media ninja moves?</h3>

<p><span class="interviewee">Cheryl</span>: Arrrgh matey. I have no idea how else to respond to this. Next.</p>

<h3>It shows that you truly love your city of Columbus, Ohio. What are some of the city’s strongest assets, especially as it pertains to people in your career line?</h3>

<p><span class="interviewee">Cheryl</span>: Columbus has a very creative, tech-savvy culture, which is a perfect fit for me. Oh, and uh, we have a lot of readily-available craft beer… which is a perfect fit for me.</p>

<h3>What is your favorite social media stereotype? Why?</h3>

<p><span class="interviewee">Cheryl</span>: The whole idea of working in “social media” has been tainted by douchebags who want to make a quick buck and scam small businesses out of a few grand to “set up a Facebook page.” I cringe every time I see another smarmy sales guy/gal who signed up for Twitter last week and is qualified to TOTALLY CHANGE THE WAY YOU DO BUSINESS FOREVS!!!11!!</p>

<p>…some poor sap is gonna hand him/her a bag of money, too. (Speaking
of which… any and all bags of money can be sent my way via PayPal or
FedEx.)</p>

<h3>In your opinion, what is one of twitter’s primary weaknesses that could dethrone it in the longrun?</h3>

<p><span class="interviewee">Cheryl</span>: Aside from the big “WTF is our revenue model” issue, Twitter.com is Twitter’s primary weakness.While they have been slowly unrolling features to make it better (lists was a great one) the site pales in comparison to third-party services like Hootsuite, Tweetdeck and
Seesmic for functionality and usability.</p>

<h3>Would you consider yourself an android or do you lead an iLife?</h3>

<p><span class="interviewee">Cheryl</span>: I’m an Apple fangirl fo’ sho’, but I use Google so heavily that it would realistically make more sense for me to do the droid thing. Mostly, I’m stubborn.</p>

<h3>What website, with any focus you want, do you want to promote here and now because you believe it deserves more users and more people knowing it exists?</h3>

<p><span class="interviewee">Cheryl</span>: Haha, this is such a random answer, but when I read this question I thought of Kingdom of Loathing (kindomofloathing.com. It’s a MMORPG…kinda? With stick figures. And sarcasm. And meat as currency. And absurd character types like “turtle tamer,” “disco bandit” and “seal clubber.” It’s seriously hilarious. I used to play it alllll the time, but haven’t really touched it in a year (which is why it is such a random response) — but occasionaly when I get sad or really, really bored, I go back for a couple hours of poorly drawn laughs.</p>

<h3>Is the Columbus beer stein half full, half empty, the glass is too big, or “wtf, who drank half of my awesome Columbus beer?!?!?” ?</h3>

<p><span class="interviewee">Cheryl</span>: MY Columbus beer stein is always half empty, but it’s ok, because there’s always a freshly brewed refill waiting for me at Columbus Brewing Company or Barley’s or Elevator <img src='http://michaelbox.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<h3>What job has been the one you have liked the least since entering that whole “working world?”</h3>

<p><span class="interviewee">Cheryl</span>: My last job as the Digital Content Manager for three local radio stations. But it was also my favorite! The disconnect was in the way that stations are structured — the on-air staff and the programming
directors were awesome. I was totally invested in the stations’ brands and enjoyed communicating with listeners online and coming up with creative new ways to do so. I wish the energy had been the same on the sales and business side of the organization.</p>

<h3>At the end of the day, how much of a good idea is being Cheryl, really?</h3>

<p><span class="interviewee">Cheryl</span>: I’m not sure, but have someone else claim “I am a good idea” and watch how fast I slap their ass with a lawsuit! Ha, yeah right, like I afford to file a trademark or hire a lawyer. I’m just ok. <img src='http://michaelbox.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p>Related posts:<ol><li><a href='http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/' rel='bookmark' title='Permanent Link: Do You Think You Know Alex Cook?'>Do You Think You Know Alex Cook?</a></li>
<li><a href='http://michaelbox.net/2010/06/23/my-interview-with-rachael-acklin/' rel='bookmark' title='Permanent Link: Do You Think You Know Rachael E.C. Acklin?'>Do You Think You Know Rachael E.C. Acklin?</a></li>
<li><a href='http://michaelbox.net/2010/06/10/my-interview-with-emma-taylor/' rel='bookmark' title='Permanent Link: Do You Think You Know Emma Taylor?'>Do You Think You Know Emma Taylor?</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=DH9m2s7Tw8Q:uKyW3kVJeTc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/DH9m2s7Tw8Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/08/09/my-interview-with-cheryl-harrison/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vi vs. Emac. The epic battle</title>
		<link>http://michaelbox.net/2010/08/03/vi-vs-emac-the-epic-battle/</link>
		<comments>http://michaelbox.net/2010/08/03/vi-vs-emac-the-epic-battle/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 22:37:14 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Passions]]></category>
		<category><![CDATA[emac]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[vi(m)]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=198</guid>
		<description><![CDATA[Which side do you represent? (repost urged from fellow Fedora Design Team members) Vi(m) or Emac? No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[Which side do you represent? (repost urged from fellow Fedora Design Team members)

<h3>Vi(m)</h3>
<img src="http://farm4.static.flickr.com/3037/2636961985_fbfc332b20.jpg" alt="Vi(m)" />

or

<h3>Emac?</h3>
<img src="http://farm4.static.flickr.com/3125/2637787732_864f812df8.jpg" alt="Emacs" />

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=HYn-Zx0B1qI:Tq703jk0wrs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/HYn-Zx0B1qI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/08/03/vi-vs-emac-the-epic-battle/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Do You Think You Know Jon Phillips?</title>
		<link>http://michaelbox.net/2010/07/21/my-interview-with-jon-phillips/</link>
		<comments>http://michaelbox.net/2010/07/21/my-interview-with-jon-phillips/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 15:30:11 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Web Design-Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[musician]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=192</guid>
		<description><![CDATA[While the name "Jon Phillips" may not be instantly recognizable to you, if you attempt to keep your thumb on a general pulse of the web design community, chances are you've come across him already, or at least his online magazine Spyre Studios. I recall the day that the idea of interviewing him came up. [...]


Related posts:<ol><li><a href='http://michaelbox.net/2010/05/12/my-interview-with-selene-bowlby/' rel='bookmark' title='Permanent Link: Do you think you know Selene M. Bowlby?'>Do you think you know Selene M. Bowlby?</a></li>
<li><a href='http://michaelbox.net/2010/08/18/everyone-elses-interview-with-me/' rel='bookmark' title='Permanent Link: Do You Think You Know Michael Beckwith?'>Do You Think You Know Michael Beckwith?</a></li>
<li><a href='http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/' rel='bookmark' title='Permanent Link: Do You Think You Know Alex Cook?'>Do You Think You Know Alex Cook?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelbox.net/wp-content/images/jonphillips.jpg" alt="" title="Jon Phillips" width="200" height="423" class="alignright size-full wp-image-193" />While the name “Jon Phillips” may not be instantly recognizable to you, if you attempt to keep your thumb on a general pulse of the web design community, chances are you’ve come across him already, or at least his online magazine Spyre Studios.</p>

<p>I recall the day that the idea of interviewing him came up. <a href="http://michaelbox.net/2010/05/12/my-interview-with-selene-bowlby/" title="My interview with Selene M. Bowlby">Selene M. Bowlby</a> and I were talking and I went to my twitter list to see who I could interview next. Jon’s profile showed up and to me, approaching him felt like aiming for the stars. I mentioned the idea to Selene and she was for it 100%, She suggested to mention herself in my introduction email since her and Jon had conversed a lot in the past. Thankfully, Jon agreed to participate and here we are, about to get to know Jon Phillips.</p><span id="more-192"></span>

<h3>On top of being a designer, you are also a musician in your spare time. Have you been privileged to work with other musicians and help them with their branding and marketing?</h3>

<p><span class="interviewee">Jon Phillips</span>: Actually I haven’t. I try to keep design and music separate as much as possible. I’m usually too involved with the music to be able to design something with an outside perspective. I did design my band’s blog, but it was a one shot thing and it felt like designing my own site — and we know designers often have trouble designing their own sites <img src='http://michaelbox.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>

<h3>The smartphone market is hotter than really really really hot things. Which smartphone are you? Has anyone approached you about designing for any apps?</h3>

<p><span class="interviewee">Jon</span>: I doubt the smartphone market can be hotter than my apartment right now but once I get a new air conditioner I’m sure it will be considered hot again. I’ve never designed any apps and to be honest it’s not something I’m particularly interested in. For some reason the whole ‘apps’ market gives me a weird feeling of deja-vu — remember when CDs were all the rage?</p>

<p>If you put a gun to my head and gave me a choice, I’d go for the iPhone (well I’d go with the iPhone even without the gun part).</p>

<h3>Would you be interested in joining a harmonica/kazoo/cowbell/wawa pedal experimental music group? We’re looking for new members.</h3>

<p><span class="interviewee">Jon</span>: Totally! That’s exactly what I’ve been looking for for years! Just tell me when and where and I’ll be there! (if you provide the cowbell I’ll <a href="http://www.ebaumsworld.com/video/watch/719364/">explore the studio space</a> like there’s no tomorrow!)</p>

<h3>WordPress 3.0 was released in late June, with a plethora of new features. What elements are still not part of a WordPress default install that you’d love to see made default?</h3>

<p><span class="interviewee">Jon</span>: I’m very happy with all the new features in WP 3.0, but there are definitely some things I would’ve liked to see. Things like a built-in spam flagging system and a stats package that offers more than the WordPress one would have been nice. You can do so many thing with WordPress with custom templates, functions and plug-ins, but those two things should really be in the WP core in my opinion.</p>

<h3>Pretend for a moment that you were asked to gather, from your twitter list, a team for a record label’s web and marketing department. Who would you tap on the shoulder for the task?</h3>

<p><span class="interviewee">Jon</span>: I think the first person I would ask is Marc Davison (<a href="http://twitter.com/1000wattMarc/" title="1000wattMarcs Twitter Profile">1000wattMarc (Twitter)</a>), not only cause he’s a cool and professional guy but also because he knows a ton about the music business and he’s got years of experience in the music and web fields. I would also ask Tean Schultz (<a href="http://twitter.com/Schrecker/" title="Schreckers Twitter Profile">Schrecker (Twitter)</a>) for similar reasons, of course we’re in the same band, but he’s also a sick producer and songwriter.</p>

<p>I know I would also post something on my Twitter feed asking for recommendations. That’s the beauty of a service like Twitter.</p>

<h3>What are some of the best and worst uses of typography you have seen by musicians?</h3>

<p><span class="interviewee">Jon</span>: There’s a lot of extremely unreadable logotypes in the metal scene, especially in the more obscure branches of metal. I can’t just pick one cause that wouldn’t be fair, but just to give you a taste of how unreadable it can get sometimes, have a look around the <a href="http://brutaldeathmetallogo.blogspot.com/">Brutal Death Metal Logos blog</a>.</p>

<p>As for great uses of typography, I really like <a href="http://www.johnmayer.com/">John Mayer’s</a> website, I think the typography there is pretty sweet. There’s also <a href="http://www.jamiecullum.com/">Jamie Cullum’s</a> site, nice typography and a great minimalist layout with good color contrast. In case you didn’t know, I like simplicity and minimalism <img src='http://michaelbox.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<h3><a href="http://www.gracesmith.co.uk/5-things-you-didnt-know-about-me/" title="THE RUMOR SOURCE!!!">Rumor</a> on the street is that you failed art class in the 4th grade. Did the teacher give you low grades due to you claiming all of your doodles were you playing with wingdings/webdings?</h3>

<p><span class="interviewee">Jon</span>: Haha, well I failed my art class mostly because I didn’t care too much about drawing and painting and all that artsy stuff when I was that age. I didn’t get into design until I was much older. I got into music at around 12, and then years later started getting interested in design.</p>

<h3>Have you devised any digital “Subscribe to me” pullout cards to replace the ones from print magazines?</h3>

<p><span class="interviewee">Jon</span>: I have not, but it’s a great idea! Can I use it and give you credit?</p>

<h3>What are some challenges in running a digital magazine that people may not expect compared to a print magazine? Advantages?</h3>

<p><span class="interviewee">Jon</span>: I can’t really compare the two because I’ve never run a print magazine but I’m guessing that some advantages would be the very low start-up, operating and maintenance costs of an online magazine compared to a print one. Of course running an online magazine will incur some costs (in both time and money) such as hosting, paying writers, maintenance, marketing and promotion, but at the end of the day it’s cheaper, easier to get up and running and reaching a large audience may happen sooner.</p>

<h3>Have you experienced an 80s heavy metal hair phase yet? If so, did you use bad client stories to poof up your hair instead of Aqua Net ? If not, you now have an idea to achieve the effect.</h3>

<p><span class="interviewee">Jon</span>: I have! I kept the long hair for about 7 or 8 years and about 3 years ago I decided that phase was over (a bit tired of head banging to heavy bands). As for Aqua Net, to be honest I had to Google it to find out it was hair spray cause I had no idea what it was. Then I found out there’s also a band called Aquanet — that really really made my day!</p>

<h3>What is your position on the whole music piracy topic, being a musician yourself? Is it personally a benefit for your band The Gods of Now or more a harm? Have you given any considerations to less restrictive licenses like Creative Commons?</h3>

<p><span class="interviewee">Jon</span>: Of course being a musician, making money from CD sales is great, but I believe music should be free. The whole music industry is not even about the music anymore anyway! That’s probably why a lot of the major labels are going belly up and you see more and more independent labels pop up everywhere. A lot of bands and artists these days make more selling t-shirts and stickers at shows and live events than selling CDs.</p>

<p>I still believe it’s wrong to steal music though. If an artist chooses to sell his or her music, don’t steal it, buy the album instead. I simply believe more artists should follow Radiohead’s and Trent Reznor’s steps and give the music away for free and find other means of making money.</p>

<h3>Where can we find online, both your designer half as well as your musician half? Also, any last thoughts?</h3>

<p><span class="interviewee">Jon</span>: You can find my designer’s half on <a href="http://spyrestudios.com">SpyreStudios</a> and my musician’s half on the <a href="http://thegodsofnow.com">TGON website</a></p>

<h3>Borrowing this wording from a very popular topic. Team Pirates or Team Ninjas?</h3>

<p><span class="interviewee">Jon</span>: Definitely Pirates. Ninjas don’t drink Whiskey, Pirates do.</p>

<h3>What is the most inventive way you have mashed up your two trades, design and music?</h3>

<p><span class="interviewee">Jon</span>: Well I haven’t tried to mash the two together (like I said I like to keep them separate). It could be interesting though.</p>

<h3>What trends in design would you love to see fade away, never to return?</h3>

<p><span class="interviewee">Jon</span>: The glossy and mirrored Web 2.0 logos. Oh, and designers calling themselves rockstars, ninjas or gurus (pirates are ok). What about Pornstar Designer? That would be cool. (Editor’s note: said like a true rockstar)</p>

<hr />
<p>Like with all of my interviews, I’d like to thank Jon for agreeing to participate and hope that he had fun answering the hairbrained questions I managed to come up with. <img src='http://michaelbox.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p>Related posts:<ol><li><a href='http://michaelbox.net/2010/05/12/my-interview-with-selene-bowlby/' rel='bookmark' title='Permanent Link: Do you think you know Selene M. Bowlby?'>Do you think you know Selene M. Bowlby?</a></li>
<li><a href='http://michaelbox.net/2010/08/18/everyone-elses-interview-with-me/' rel='bookmark' title='Permanent Link: Do You Think You Know Michael Beckwith?'>Do You Think You Know Michael Beckwith?</a></li>
<li><a href='http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/' rel='bookmark' title='Permanent Link: Do You Think You Know Alex Cook?'>Do You Think You Know Alex Cook?</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=_7gpUd-AMQU:lFoLq861mG4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/_7gpUd-AMQU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/07/21/my-interview-with-jon-phillips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handwritten Tweets. Express more</title>
		<link>http://michaelbox.net/2010/07/19/handwritten-tweets-express-more/</link>
		<comments>http://michaelbox.net/2010/07/19/handwritten-tweets-express-more/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 16:43:46 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[handwrittentweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=189</guid>
		<description><![CDATA[I do not know exactly when it clicked in my mind or what sparked it all, but as I was sitting at my day job, the idea of writing out tweets by hand came to me. I sat there rolling it around in my head and it came to me that people would be able [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelbox.net/wp-content/images/2010-07-17-19.06.40-300x224.jpg" alt="" title="handwrittentweets" width="300" height="224" class="alignleft size-medium wp-image-191" />I do not know exactly when it clicked in my mind or what sparked it all, but as I was sitting at my day job, the idea of writing out tweets by hand came to me. I sat there rolling it around in my head and it came to me that people would be able to write beyond twitter’s 140 character limit with variable readability depending on clear legible writing. With the wide proliferation of cell phones containing built in cameras, as well as many photo services being tied to twitter already, there is an extremely low entry requirement for handwritten tweets.</p><span id="more-189"></span>

<p>There are likely still many of you asking and wondering why someone may want to go through all the effort. As I have already stated above, if you have something to say that requires more than 140 characters, you can get it all in one tweet. Obviously, creating one by hand would require more time and effort than typing it through the site or your favorite twitter client, but imagine the joy someone will experience when they get a handwritten message directed at them. I know my first @mention, directed at <a href="http://twitter.com/emtaylor/" title="emtaylors Twitter Profile">emtaylor (Twitter)</a>, made her <a href="https://twitter.com/emtaylor/status/18704201001" title="Emtaylors tweet">day</a>.</p>

<p>Writing it out on a piece of paper and then posting a picture of it, also provides a broad canvas that allows for creativity to flourish. You can draw little doodles, provide decorations, or anything else you can think of. I KNOW twitter is full of creative types and I don’t see why we can’t show that off more.</p>

<p>Just because you write out the actual message on paper or some other medium, doesn’t mean you can’t use your allotted 140 characters. Some of them would be used for the image URL, but the rest can be used for more @mentions and #tags.</p>

<p>I know well enough that any idea or trend that grows online is very hard to control, if not impossible to. That said, I am not setting any “method of use” for handwritten tweets, just explaining the origin and some uses that have already come to mind. I don’t know where the idea will go, if anywhere, but I would love to see it go somewhere.</p>

<p>Be inventive, be creative, make someone’s day, pay it forward…do SOMETHING.</p>

<h3>Handwrittentweets examples</h3>
<ul>
<li><a href="http://twitter.com/gracesmith/" title="gracesmiths Twitter Profile">gracesmith (Twitter)</a> sent this one to all of her followers <a href="https://twitter.com/gracesmith/status/18707139841" title="Grace Smith's tweet">here</a></li>
<li><a href="http://twitter.com/domencolja/" title="domencoljas Twitter Profile">domencolja (Twitter)</a> did this one as an alternative to dribbble as he lacks an account <a href="https://twitter.com/domencolja/status/18708448058" title="Domen Colja's tweet">here</a></li>
<li><a href="http://twitter.com/designcoyote/" title="designcoyotes Twitter Profile">designcoyote (Twitter)</a> sent this one quoting Judy Garland <a href="https://twitter.com/designcoyote/status/18709104767" title="Designcoyote's tweet">here</a></li>
<li><a href="http://twitter.com/rudedoodle/" title="rudedoodles Twitter Profile">rudedoodle (Twitter)</a> asked this good question <a href="https://twitter.com/rudedoodle/status/18710980591" title="Claire Smyth's tweet">here</a></li>
</ul>

<p>What about yours?</p>

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=x0cM5vwaNEk:62603eE9YOM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/x0cM5vwaNEk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/07/19/handwritten-tweets-express-more/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>And now you know…my interview process</title>
		<link>http://michaelbox.net/2010/07/13/my-interview-process/</link>
		<comments>http://michaelbox.net/2010/07/13/my-interview-process/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 16:00:44 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[interview]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=187</guid>
		<description><![CDATA[If you are reading this post, then chances are high that you are well aware of my ongoing interview series “Do You Think You Know…”. If you have managed to beat the odds and do not know what I’m talking about, just read some previous posts, the series will stand out and you can get [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div id="attachment_188" class="wp-caption alignright" style="width: 310px"><img src="http://michaelbox.net/wp-content/images/15sign-300x300.jpg" alt="The number 15" title="15sign" width="300" height="300" class="size-medium wp-image-188" /><p class="wp-caption-text">CC Attribution-ShareAlike 2.0 Generic http://www.flickr.com/photos/lincolnian/</p></div><p>If you are reading this post, then chances are high that you are well aware of my ongoing interview series “Do You Think You Know…”. If you have managed to beat the odds and do not know what I’m talking about, just read some previous posts, the series will stand out and you can get caught up easily.</p><span id="more-187"></span>

<p>At this point in time, I have conducted six interviews, and they all have had varying levels of popularity and high levels of enjoyment for both myself and the person we’re getting to know. Within this post, I hope to explain and describe the general process used going into each interview, even as it is bound to change and evolve with time and experience. I also hope to clarify motives for why I choose to make the effort.</p>

<p>Sadly, I am do not hold an employment position that uses any of my design and development knowledge. Any design or development work has been done during my free time away from a 40hr/week day job. While I won’t comment further on my day job, I will admit that I do still appreciate the amount of time available to think and brainstorm, even if it does suffer distractions. It was during that free time that the first draft of this post was written then on yellow legal paper. This is also when all questions, for the person in the hotseat, are conceived. I am able to sit, figure out what I am going to ask, and how I’m going to word them.</p>

<p>I have done what I can to keep the questions pretty open ended but also keep some topics regular with each interview. Questions involving favorite colors and fonts, preference between pirates and ninjas and the occasional zombie or pirate, and a nonsensical question involving birds on powerlines, have all been used regularly. One that I take a lot of pride in and put a lot of focus on is about twitter users that the interviewee recommends. This focus is because almost all of the people that we’ve gotten to know together, I first met on Twitter. One of the best parts about this question is the allowance granted to the interviewee to highlight some people important to them. Little bits of promotion and recommendation facilitates everyone winning and meeting new people.</p>

<p>At the end of the brainstorming stage, I have fifteen questions that I’ve done my best to tailor fit the person, their personality, and their areas of specialty. The questions are a mix of serious and (hopefully)humorous questions. Before sending the questions, I organize them in a manner that goes back and forth between serious and humorous. I do what I can to accomodate for busy schedules by sending the questions about two weeks before the day I plan to publish the post. I also send friendly reminders, if necessary, a couple times during the two weeks.</p>

<p>Once I receive the answered questions back, I put everything into a new wordpress post, apply the necessary styling, add the associated settings and metadata, and schedule it for the right date and time. The post going live is what I look forward to the most, as it is when myself and the interviewed get to have fun promoting the interview and spreading the love. Reading the twitter replies, retweets, post comments, and anything else make all the time and effort worth it.</p>

<p>At the end of the day, I get to take pride in that I got to promote someone I care about, support, and believe in. Meanwhile, that person gets to be in the spotlight for a day and be the focus of peoples’ attention. I hope that it is considered a huge honor, with them being in a field where so frequently they do the highlighting, primarily for clients. That is why I put forth the effort.</p>

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=a-JWvMT-prw:yLnm-r7cN_4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/a-JWvMT-prw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/07/13/my-interview-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do You Think You Know Alex Cook?</title>
		<link>http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/</link>
		<comments>http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 15:30:49 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Web Design-Development]]></category>
		<category><![CDATA[Alex Cook]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=184</guid>
		<description><![CDATA[With all due respect to both past and future interviews, I consider this one to be my most important. With this interview, I am holding up a mirror to your pasts. When you look into this mirror, you do not see yourself, you see Alex Cook. "What do you mean" you say? Alex is fresh [...]


Related posts:<ol><li><a href='http://michaelbox.net/2010/06/23/my-interview-with-rachael-acklin/' rel='bookmark' title='Permanent Link: Do You Think You Know Rachael E.C. Acklin?'>Do You Think You Know Rachael E.C. Acklin?</a></li>
<li><a href='http://michaelbox.net/2010/06/10/my-interview-with-emma-taylor/' rel='bookmark' title='Permanent Link: Do You Think You Know Emma Taylor?'>Do You Think You Know Emma Taylor?</a></li>
<li><a href='http://michaelbox.net/2010/04/27/my-interview-with-grace-smith/' rel='bookmark' title='Permanent Link: Do you think you know Grace Smith?'>Do you think you know Grace Smith?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://mytalkingbird.com/" title="Alex Cook"><img src="http://michaelbox.net/wp-content/images/alex-300x225.jpg" alt="" title="Alex Cook" width="300" height="225" class="alignleft size-medium wp-image-185" /></a> With all due respect to both past and future interviews, I consider this one to be my most important. With this interview, I am holding up a mirror to your pasts. When you look into this mirror, you do not see yourself, you see Alex Cook. “What do you mean” you say? Alex is fresh out of University, and at the start of her path to her career.</p><span id="more-184"></span>

<p>This is also a very personal interview for me. Out of everyone, Alex may be the one who I know the most, and knows me the most in return. I have known her since sometime in mid 2009. When I had the idea to include her in this post series, I knew that it would be my chance to offer a lending hand and help her out as much as I could. With that said, lets help her get her feet off the ground and get to know Alex Cook.

<h3>Please introduce yourself to everyone. What did you major in and where at? Did you specialize in any areas?</h3>

<p><span class="interviewee">Alex Cook</span>: Hello! :3 I’m Alex Cook, your typical unemployed, yet hopeful graduate with an interest in design, writing and film. Seriously, talk to me about movies and I’ll likely love you forever. Anyways! I recently graduated with a BS in New Media Publishing from Rochester Institute of Technology.  My major includes a mix of graphic design, web development, printing, business and IT.  At RIT, I concentrated/specialized in both French Language and Culture and Contemporary Publishing.  Think eBook creation and designing, studying the pros and cons of the New York Times Reader, and so on!</p>

<h3>You just graduated this past spring. What do you hope for in your near future, and what fears do you have given the current job market?</h3>

<p><span class="interviewee">Alex</span>: Good. Question.  Since I’ve graduated, I’ve come up with such a multitude of plans, it’s borderline ridiculous.  Do I want another bachelor’s degree? In graphic design? Journalism? How about a masters in human computer interaction?  Who knows. I think I’d really just like to get some more design practice and experience.. we’ll worry about the job front later. (aka I’d prefer to not think about the current job market. ;p )</p>

<h3>If you could choose for the pigment in your skin to be any color possible, what would that color’s RGB/CYMK value be?</h3>

<p><span class="interviewee">Alex</span>: Oh man, ideally? #333366. I’m crazy about this purple. (C: 93% M: 90% Y: 31% K: 20%) (R: 51 G: 51 B: 102)  Realistically though, I need a tan. –__– #CC9966. (C: 20% M: 41% Y: 67% K: 1%) (R: 204 G: 153 B: 102)</p>

<h3>If you had control of who follows your twitter account, what four people would you add to your followers list? Why?</h3>

<p><span class="interviewee">Alex</span>: Eeeee! <a href="http://twitter.com/dessadarling/" title="dessadarlings Twitter Profile">dessadarling (Twitter)</a>. Dessa is hands down my favorite artist/rapper/author.  Her lyrics and essays are a constant source of inspiration for me in writing, illustrating, so on and so forth.</p>

<p><a href="http://twitter.com/disneypixar/" title="disneypixars Twitter Profile">disneypixar (Twitter)</a>. Yet another source of inspiration for me. To say that I never dreamed of working for Disney would be an absolute, terrible lie. If you could see my wish list of books right now, it’d be over 75% full of Pixar art books.</p>

<p><a href="http://twitter.com/andrewhussie/" title="andrewhussies Twitter Profile">andrewhussie (Twitter)</a>. I follow the newest MS Paint Adventure like it’s my job (“Homestuck,” go read it! :p). He’s got one heck of an imagination, seems to write like a pro, and oh man are his drawings cute or what?!</p>

<p>Andddd <a href="http://twitter.com/ConanOBrien/" title="ConanOBriens Twitter Profile">ConanOBrien (Twitter)</a>, because everyone loves a little attention now and then, amiright?</p>

<h3>Below, is a question and answer</h3>

<p><img src="http://michaelbox.net/wp-content/images/handwriting.jpg" alt="" title="handwriting" width="600" height="450" class="aligncenter size-full wp-image-186" /></p>

<h3>Recently, you returned to Minnesota where you had an internship last year. Is there anywhere in the area that you would absolutely love to work at? Any specific companies?</h3>

<p><span class="interviewee">Alex</span>: Minnesota is so full of major corporations, I’m certain holding a design position at any would be more than fine in my book! (Hey there Target, Best Buy, 3M, General Mills! (; ) If dreams could come true, I’d die to work for Rhymesayers Entertainment, an independent hip hop record label based in Minneapolis.  I missed out on a design internship for them due to poor timing, but shall we keep our fingers crossed for the future?  And as for an area? Anywhere. Seriously, I’m so in love with the state. <img src='http://michaelbox.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>

<h3>What are some of your favorite bands to listen to while designing?</h3>

<p><span class="interviewee">Alex</span>: First and foremost, Dessa. I mentioned the inspiration deal already, but she’s just an awesome artist regardless.  Otherwise, Portishead, Bjork, Cat Power, Death Cab for Cutie, P.O.S, Bright Eyes, or mostly my collection of film soundtracks and scores. Anything that I can listen but not have to put all of my attention into really.  Oh, and of course, the Glee Cast station on Pandora when I need something peppy and exciting. ;3</p>

<h3>A zombie, pirate, politician, and ninja have all made it to the Rock/Paper/Scissor final four. Who are you rooting for and who do you hope they beat to win the championship?</h3>

<p><span class="interviewee">Alex</span>: The zombie, of course. <img src='http://michaelbox.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  And it’d have to beat out the ninja, seeing as the politician clearly wouldn’t make it to the final round.. and, well, I just don’t like pirates sometimes.</p>

<h3>Do you have any preferred styles of design or art?</h3>

<p><span class="interviewee">Alex</span>: Absolutely. Anything with some vector-y goodness in it and I’m more than sold.  Also, anything that’s got a vintage feel, or even something that’s “totally adorable” and appeals more so to children will always catch my eye.  So think vintage Disney (especially Disneyland attraction ads and signs) and maybe even my favorite collectables, Golden Books.  I go crazy for these.</p>

<h3>Although you are still very young in your career, can you recall any client/customer moments that made you go D: ?</h3>

<p><span class="interviewee">Alex</span>: When I was interning at a printing company, I was a customer service rep for mostly donation jobs. (why is it that anyone getting anything for free will always be disgustingly demanding, finicky, and on the occasion, insane?)  I’ve had a two hour+ phone call proofreading a brochure (there were only three paragraphs!). I’ve hand delivered pieces because a client told me he’d pick up the final product, then changed his mind. My favorite D: moment though, at my first job developing pictures, is when a customer accused me of ruining her negatives and making them.. blurry?</p>

<h3>If photoshop features or method tricks could report people for overuse and abuse, which one(s) would be able to report you?</h3>

<p><span class="interviewee">Alex</span>: How about.. undo? :p I don’t use Photoshop nearly as much as I should, but if we were talking about Illustrator.. Well, probably anything related to the pen tool. And live trace/live paint. And undo.</p>

<h3>Is there anything about being a student that you’ll immediately miss? *cough* adobe product discounts *cough cough*</h3>

<p><span class="interviewee">Alex</span>: Adobe product discounts!  I absolutely love being a student. I like learning, assignments, essays (love these actually) and lectures, I already know I’ll miss all of that.  But most of all, having a set schedule and things to do daily.. even if I’m stuck on campus till 5:30 am writing XSLT for the first time, working on research papers, or illustrating an eBook.</p>

<h3>Are there any areas where you wish your degree program(s) focused more on? less on?</h3>

<p><span class="interviewee">Alex</span>: I could write a novel for this answer unfortunately.  My degree was brand new, ever changing and confusing.  Professors were never able to give us a definition of New Media Publishing, saying it was “too new, there’s always something changing!” (You know, aka “we have no idea.”)  I wish my program offered more than two beginner design classes and one basic business class, employed professors who told us more than “I don’t know what you can do with your degree to be honest,” and was simply more organized in general.  Oh, and I really wish we didn’t have to literally beg professors to get into any interesting or worthwhile classes outside of our program.</p>

<h3>If you were a design super hero, who would you be and what would be your super power?</h3>

<cite>(Thank you <a href="http://twitter.com/designcoyote/" title="designcoyotes Twitter Profile">designcoyote (Twitter)</a> for this suggestion!)</cite>

<p><span class="interviewee">Alex</span>: I’d have to be Vector Girl!  Using mathematical formulas and specifications of geometric elements to fight crime (ha ha!) with my paths and lines..gun. And looking all around spiffy and clean and wonderful. Gonna need a sidekick though, anyone down to be Illustrator Boy? ;D</p>

<h3>Any final thoughts?</h3>

<p><span class="interviewee">Alex</span>: Thanks soso much for having me do this interview!  Beats all of those job interviews that seem to be missing in action any day of the week. <img src='http://michaelbox.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<p>And seriously, Illustrator Boy, whatchu think?!</p>
<hr />
<p> </p>
<p>The absolute greatest thing that all of you readers, who have been in the industry for awhile already, could do for Alex is to give her any advice you have for someone in her position. Think back to when you were in Alex’s position, what advice would you have loved to get from your peers? What do you wish you knew then that you know now? Please leave your thoughts in the comments below and I will make sure Alex reads it all. Follow her on twitter at her twitter profile <a href="http://twitter.com/cooxie/" title="cooxies Twitter Profile">cooxie (Twitter)</a>.</p>

<p>Related posts:<ol><li><a href='http://michaelbox.net/2010/06/23/my-interview-with-rachael-acklin/' rel='bookmark' title='Permanent Link: Do You Think You Know Rachael E.C. Acklin?'>Do You Think You Know Rachael E.C. Acklin?</a></li>
<li><a href='http://michaelbox.net/2010/06/10/my-interview-with-emma-taylor/' rel='bookmark' title='Permanent Link: Do You Think You Know Emma Taylor?'>Do You Think You Know Emma Taylor?</a></li>
<li><a href='http://michaelbox.net/2010/04/27/my-interview-with-grace-smith/' rel='bookmark' title='Permanent Link: Do you think you know Grace Smith?'>Do you think you know Grace Smith?</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=48jAOUAwWpY:qJBQlpyp_CQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/48jAOUAwWpY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Do You Think You Know Rachael E.C. Acklin?</title>
		<link>http://michaelbox.net/2010/06/23/my-interview-with-rachael-acklin/</link>
		<comments>http://michaelbox.net/2010/06/23/my-interview-with-rachael-acklin/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 15:30:47 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Web Design-Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[Rachael E.C. Acklin]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=181</guid>
		<description><![CDATA[It really should come as no surprise that I'd have an interview with Rachael at some point. If you've read over previous entries in the blog, *cough* My Time, So Far, as a Minion post *cough*, you know I have a long standing history of working with her on various projects. You can follow her [...]


Related posts:<ol><li><a href='http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/' rel='bookmark' title='Permanent Link: Do You Think You Know Alex Cook?'>Do You Think You Know Alex Cook?</a></li>
<li><a href='http://michaelbox.net/2010/06/10/my-interview-with-emma-taylor/' rel='bookmark' title='Permanent Link: Do You Think You Know Emma Taylor?'>Do You Think You Know Emma Taylor?</a></li>
<li><a href='http://michaelbox.net/2010/04/27/my-interview-with-grace-smith/' rel='bookmark' title='Permanent Link: Do you think you know Grace Smith?'>Do you think you know Grace Smith?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://caffeinatedelf.com/" title="Caffeinated Elf"><img src="http://michaelbox.net/wp-content/images/my-short-hair.png" alt="" title="Rachael E.C. Acklin" width="200" height="265" class="alignright size-full wp-image-182" /></a> It really should come as no surprise that I’d have an interview with Rachael at some point. If you’ve read over previous entries in the blog, *cough* <a href="http://michaelbox.net/2010/03/06/time-so-far-as-a-minion/" title="My Time, So Far, as a Minion…or What It’s Like To Work For An Over-hyper Elf">My Time, So Far, as a Minion</a> post *cough*, you know I have a long standing history of working with her on various projects. You can follow her on twitter at <a href="http://twitter.com/caffeinatedelf/" title="caffeinatedelfs Twitter Profile">caffeinatedelf (Twitter)</a> or find her at <a href="http://caffeinatedelf.com/" title="Caffeinated Elf">The Caffeinated Elf</a> It’s with that wonderful relationship that I am very happy to present her responses to the fifteen questions I posed to her. Lets get to them.<span id="more-181"></span>

</p>
<h3>Your identity and branding are based off of coffee and caffeine. How much do you drink on a productive day?</h3>

<p><span class="interviewee">Rachael E.C. Acklin</span>: I drink about two cups, if I’m paying attention enough to finish them before I forget they’re even there. I make a small pot of coffee in the morning, and it only holds about 2.5 mugs’ worth of coffee in it, so I end up washing about a half a cup down the drain when I rinse out the pot. I used to make a big 12-cup pot, but I never even drank half of it so it was a huge waste. I don’t believe my own hype enough to drink way more coffee than I actually can handle. <img src='http://michaelbox.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<h3>Why should someone take a drink of your “coffee” and hire you for all their design needs? What sets you apart from other brews?</h3>

<p><span class="interviewee">Rachael</span>: A very specific thing that sets my design style and work style apart from many other designers is that I really care about my clients’ success as it relates to the project I’m working on for them. I spend a lot of time talking with them, asking them questions to help their own creativity and idea generation processes. I also incorporate every piece of feedback that I get from them, whether I can actually deliver what they want, or can explain why something won’t work and give them a different suggestion. I’m not one of those designers that is so convinced they know their craft that the client is always wrong, and I don’t get so personally attached to each design that I get upset when the client needs me to change it. I am really proud of the way I’m able to build a trust-filled working relationship with my clients because of the way I do things.</p>

<h3>You’re planning a party at your favorite local coffee shop. Who would be some of your twitter cohosts for this gathering?</h3>

<p><span class="interviewee">Rachael</span>: OH MAN. There are so many fantastic people that I’d love to cohost a coffee party with: <a href="http://bigbrightbulb.com/" title="Big Bright Bulb">Crystal</a> (<a href="http://twitter.com/bigbrightbulb/" title="bigbrightbulbs Twitter Profile">bigbrightbulb (Twitter)</a>), <a href="http://www.adamkingstudio.com/" title="Adam King Studio">Adam</a> (<a href="http://twitter.com/adamkingstudio/" title="adamkingstudios Twitter Profile">adamkingstudio (Twitter)</a>), <a href="http://www.sarahski.com/" title="Sarah Smyczynski">Sarah</a> (<a href="http://twitter.com/leianajade/" title="leianajades Twitter Profile">leianajade (Twitter)</a>), <a href="http://www.entrepreneurialadvocate.com/" title="Entrepreneurial Advocate">Kyle</a> (<a href="http://twitter.com/kpdurand/" title="kpdurands Twitter Profile">kpdurand (Twitter)</a>), and <a href="http://andyhayes.com/" title="Andy Hayes">Andy</a> (<a href="http://twitter.com/andrewghayes/" title="andrewghayess Twitter Profile">andrewghayes (Twitter)</a>) are the first people who come to mind. And everyone else I talk to every week. THIS IS A TRICK QUESTION, HOW AM I SUPPOSED TO CHOOSE?!</p>

<h3>What are some of the most overcaffeinated and energetic fonts in your collection and can you describe any projects that you got to use one of them in?</h3>

<p><span class="interviewee">Rachael</span>: You know, I don’t really use very many overcaffeinated fonts. I like fonts that imply intelligence, strength, character, and occasional quirkiness. Recently, one of my favorite thing to do is pair a script font with a sans serif font. However, Scriptina and Georgia have become my brand fonts in the last several months, and I love how they compliment each other.</p>

<h3>What is your favorite coffee roast and from what country?</h3>

<p><span class="interviewee">Rachael</span>: Dark roasts taste the best to me, although hilariously, they contain less caffeine. HA HA HA. I’ve loved and enjoyed coffee from Africa and South America, but none are my favorites. They all taste marvelously perfect and distinctly different.</p>

<h3>You know 8-bit graphics are a bit trendy right now. Have you ever been tempted to fire up MS Paint or some other basic bitmap pixel editor and do some mockup work there? What type of project do you think this would actually be good for?</h3>

<p><span class="interviewee">Rachael</span>: Nope. For real. Maybe I’m not very good at following trends. <img src='http://michaelbox.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   However, I think that 8-bit graphics might look really sweet on a geek-style webcomic design, along with some hand-drawn illustrations.</p>

<h3>If money was not a question, what would you purchase or upgrade in order to achieve “the perfect setup” with your office space?</h3>

<p><span class="interviewee">Rachael</span>: I would scour the earth in search of the perfect ergonomic chair and desk combination that works for EXCESSIVELY SHORT PEOPLE who have EXCESSIVE SHOULDER PAIN from all that awesome design work. It’s so difficult to find chairs that work for you if you’re just over five feet tall!</p>

<h3>A ninja has just swiped your source of awesome and coffee. Do you call him a traitor to your ninja brethren or do you gather up your pirate crew on deck in order to pursue?</h3>

<p><span class="interviewee">Rachael</span>: First I am upset and I have a good cry. Then I gather up my crew and explain what’s going on, and tell them how I need their help. We find the ninja, find out what happened, and find a solution that works for everyone. Even horrible problems have solutions if you’re willing to work at finding them.</p>

<h3>What lessons do you want to pass on to new designers? Are there any that you wish you learned earlier?</h3>

<p><span class="interviewee">Rachael</span>: First lesson: don’t take jobs just because you need money; take jobs because they fit what you love to do. Second lesson: if you have a client that you cannot make happy no matter what you do, and you’ve actually tried everything and been honest, don’t be afraid to fire that client. Third lesson: you can’t please everyone, so stop trying; find your right people and stick with them. (All of these, I wish I’d known earlier than I learned them.)</p>

<h3>Have you ever found direct design influence in anything that one of your kids has created or drawn? If so, tell us about it.</h3>

<p><span class="interviewee">Rachael</span>: I haven’t been directly influenced yet, because I haven’t needed to put explosions, airplanes, dinosaurs, and aliens in a design yet. YET. However, their creativity never ceases to amaze me. It’s really fascinating what they will create with only a few sheets of plain white paper and a box of crayons.</p>

<h3>Did you ever hear back from William Shatner at all? I recall you trying to drum up support for you to redesign his website.</h3>

<p><span class="interviewee">Rachael</span>: No, the Shat never got back with me. KHAN!!!!!! But it was fun, trying to get him to respond. Also, I am actually more fond of him now than I was before, despite the fact that I had no contact with him whatsoever. The internets are so awesome like that.</p>

<h3>What are a few things from cubicle life that someone couldn’t pay you to miss?</h3>

<p><span class="interviewee">Rachael</span>: 1) Uncomfortable seating arrangements; 2) guilt over taking a needed break; 3) fluorescent lights; 4) lunch at my desk; 5) never knowing if I was doing a good enough job; 6) driving to work and back every single day.</p>

<h3>Whatever happened to the Caffeinated Podcast? Is that a project that never got to take off? or is it just dormant at the moment?</h3>

<p><span class="interviewee">Rachael</span>: It’s just dormant right now. One of my awesome friends, who is also a ninja for me sometimes, is going to team up with me and we’re going to bring it back, BABY.</p>

<h3>What are some stereotypes that you wish designers had?</h3>

<p><span class="interviewee">Rachael</span>: I wish that designers were known for good communication skills. I also wish that designers were known for caring about the client, not just the specific project being worked on.</p>

<h3>If you could, what coffee company would you purchase some stock in and why?</h3>

<p><span class="interviewee">Rachael</span>: I would find a coffee farmer in the third world who needs money to make his business bigger, and invest in that. I wouldn’t even want him to pay me back, like Kiva.org, even though the work they do is phenomenal. I would rather put money into something that can become a great and sustainable thing, than to buy stock and sell it later, honestly.</p>

<p>Related posts:<ol><li><a href='http://michaelbox.net/2010/07/08/my-interview-with-alex-cook/' rel='bookmark' title='Permanent Link: Do You Think You Know Alex Cook?'>Do You Think You Know Alex Cook?</a></li>
<li><a href='http://michaelbox.net/2010/06/10/my-interview-with-emma-taylor/' rel='bookmark' title='Permanent Link: Do You Think You Know Emma Taylor?'>Do You Think You Know Emma Taylor?</a></li>
<li><a href='http://michaelbox.net/2010/04/27/my-interview-with-grace-smith/' rel='bookmark' title='Permanent Link: Do you think you know Grace Smith?'>Do you think you know Grace Smith?</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=TkdFjbHsz9E:x4teLceSeGE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/TkdFjbHsz9E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/06/23/my-interview-with-rachael-acklin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Dear Planet Fedora</title>
		<link>http://michaelbox.net/2010/06/20/dear-planet-fedora/</link>
		<comments>http://michaelbox.net/2010/06/20/dear-planet-fedora/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 21:09:40 +0000</pubDate>
		<dc:creator>tw2113</dc:creator>
				<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Droid]]></category>

		<guid isPermaLink="false">http://michaelbox.net/?p=180</guid>
		<description><![CDATA[What would be your suggested apps for a Motorola Droid? I’m looking for general use, productivity in life, and web design/development in specific if possible. Let me know of your suggestions! I appreciate the help. No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[What would be your suggested apps for a Motorola Droid? I’m looking for general use, productivity in life, and web design/development in specific if possible. Let me know of your suggestions! I appreciate the help.

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/michaelbox?a=lW73SZGRnVE:-f1jljaloz0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/michaelbox?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/michaelbox/~4/lW73SZGRnVE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://michaelbox.net/2010/06/20/dear-planet-fedora/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
