<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
        <title><![CDATA[Meta Q]]></title>
        <link>http://themetaq.com</link>
        <description></description>
        <dc:language>en</dc:language>
        <dc:creator>Lindsay McComb</dc:creator>
        <dc:rights>Copyright 2012</dc:rights>
        <dc:date>2012-05-18T14:33:10+00:00</dc:date>
        <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
        
        
        <item>
            <title><![CDATA[Filtrify]]></title>
            <link>
                                http://themetaq.com/queue/filtrify            </link>
            <guid>
                                http://themetaq.com/queue/filtrify            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/filtrify.png" /><br /><br />                    Filtrify is a tag filtering plug-in for HTML5 and jQuery.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code,]]></dc:subject>
            <dc:date>2012-05-18T14:33:10+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[How to make a Ron Swanson bobblehead]]></title>
            <link>
                                http://themetaq.com/queue/how-to-make-a-ron-swanson-bobblehead            </link>
            <guid>
                                http://themetaq.com/queue/how-to-make-a-ron-swanson-bobblehead            </guid>
            <description>
                                                    <![CDATA[
                                        
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration, Cool Stuff, Tips,]]></dc:subject>
            <dc:date>2012-05-17T14:31:42+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Viral videos that will make you smarter]]></title>
            <link>
                                http://themetaq.com/queue/viral-videos-that-will-make-you-smarter            </link>
            <guid>
                                http://themetaq.com/queue/viral-videos-that-will-make-you-smarter            </guid>
            <description>
                                                    <![CDATA[
                                        Jason Silva repackages "stunning philosophical ideas" and makes them easier to understand. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration, Cool Stuff,]]></dc:subject>
            <dc:date>2012-05-16T14:29:36+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Ajax-EE: Sort and Order Data with ExpressionEngine and Ajax part two]]></title>
            <link>
                http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-two                            </link>
            <guid>
                http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-two                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/ajax-ee-parttwo-title.png" /><br /><br />
										<p>
	Last week I wrote about how to sort and order the output of an ExpressionEngine channel entries tag using URL segments as orderby and sort parameters. This week, I&rsquo;ll show you how to use a bit of jQuery Ajax to perform the sorting without reloading an entire page.</p>
<p>
	If you missed the <a href="http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-one">first article</a>, I recommend you go back and read it first, as it has some valuable tips for creating fallbacks for users who have JavaScript turned off.</p>
<p>
	An example of what we&rsquo;ll be creating in this article is <a href="http://themetaq.com/articleindex/">here</a>.</p>
<h3>
	Making it work with Ajax</h3>
<p>
	<br />
	When we left off with last week&rsquo;s article, Ajax-EE part one, we had a solid template for ordering and sorting entries using standard links. The code and markup in its entirety should look something like this:</p>
<pre>
&#123;embed=&#39;site/header&#39;&#125;&#10;&lt;h2&gt;Articles&lt;/h2&gt;&#10;&lt;table&gt;&#10;&lt;thead&gt;&#10;  &lt;tr&gt;&#10;    &#123;if segment_3 == "asc"&#125;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/date/desc&#39;&#125;"&gt;Date&lt;/a&gt;&lt;/th&gt;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/title/desc&#39;&#125;"&gt;Title&lt;/a&gt;&lt;/th&gt;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/username/desc&#39;&#125;"&gt;Author&lt;/a&gt;&lt;/th&gt;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/status/desc&#39;&#125;"&gt;Status&lt;/a&gt;&lt;/th&gt;&#10;    &#123;if:else&#125;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/date/asc&#39;&#125;"&gt;Date&lt;/a&gt;&lt;/th&gt;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/title/asc&#39;&#125;"&gt;Title&lt;/a&gt;&lt;/th&gt;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/username/asc&#39;&#125;"&gt;Author&lt;/a&gt;&lt;/th&gt;&#10;      &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/status/asc&#39;&#125;"&gt;Status&lt;/a&gt;&lt;/th&gt;&#10;    &#123;/if&#125;&#10;  &lt;/tr&gt;&#10;&lt;/thead&gt;&#10;&lt;tbody&gt;&#10;  &#123;exp:channel:entries channel="articles" dynamic="no"&#10;  orderby="&#123;segment_2&#125;"&#10;  sort="&#123;segment_3&#125;"&#10;  &#125;&#10;  &lt;tr&gt;&#10;    &lt;td&gt;&#123;entry_date format="%M %d, %Y"&#125;&lt;/td&gt;&#10;    &lt;td&gt;&#123;title&#125;&lt;/td&gt;&#10;    &lt;td&gt;&#123;author&#125;&lt;/td&gt;&#10;    &lt;td&gt;&#123;status&#125;&lt;/td&gt;&#10;    &lt;td&gt;&lt;a href="&#123;path=&#39;articles/&#123;url_title&#125;&#39;&#125;"&gt;View &amp;raquo;&lt;/a&gt;&lt;/td&gt;&#10;  &lt;/tr&gt;&#10;  &#123;/exp:channel:entries&#125;&#10;&lt;/tbody&gt;&#10;&lt;/table&gt;&#10;&#123;embed=&#39;site/footer&#39;&#125;</pre>
<div class="asidebg pull-right" style="undefined">
	<p>
		While we could write some jQuery that sifts through the HTMLand sorts the content in place, I&rsquo;m a big proponent of letting the server do as much of the heavy lifting as possible.</p>
</div>
<p>
	Now that we have data that&rsquo;s sort-able without the use of Ajax, let&rsquo;s smooth things out a bit with some jQuery! We still want to load sorted data, but let&rsquo;s do it without reloading the entire page.</p>
<h3>
	The Ajaxlist</h3>
<p>
	To accomplish this, I&rsquo;ll need a template that I can load up via Ajax but that only contains the channel entry tags and related markup. Luckily, I can reuse the code and markup I&rsquo;ve already created for the main template. I&rsquo;ll create a new template in the &ldquo;ajaxee&rdquo; template group called &ldquo;ajaxlist&rdquo; and populate it with the entry tags I used earlier:</p>
<pre>
&#123;exp:channel:entries channel="articles" dynamic="no" <span class="paint-green">orderby="&#123;segment_3&#125;" sort="&#123;segment_4&#125;"</span>&#125;&#10;  &lt;tr&gt;&#10;    &lt;td&gt;&#123;entry_date format="%M %d, %Y"&#125;&lt;/td&gt;&#10;    &lt;td&gt;&lt;a href="&#123;path=&#39;articles/&#123;url_title&#125;&#39;&#125;"&gt;&#123;title&#125;&lt;/a&gt;&lt;/td&gt;&#10;    &lt;td&gt;&#123;author&#125;&lt;/td&gt;&#10;    &lt;td&gt;&#123;status&#125;&lt;/td&gt;&#10;  &lt;/tr&gt;&#10;&#123;/exp:channel:entries&#125;</pre>
<p>
	The only difference from the main template is that I&rsquo;ve updated the orderby and sort parameters to use <span class="paint-green">&#123;segment_3&#125;</span> and <span class="paint-green">&#123;segment_4&#125;</span> instead of &#123;segment_2&#125; and &#123;segment_3&#125;. This is because when I make the Ajax call to this template, I&rsquo;ll need to also reference the template name in my URL.</p>
<p>
	The Ajax call we make will then look something like this:<em> /ajaxee/ajaxlist/orderby/sort</em></p>
<p>
	Next, let&rsquo;s jump back into the main template and add some classes to the table as well as to the sort links.&nbsp; Later I can easily select it from the jQuery.</p>
<h3>
	The Sortabletable</h3>
<p>
	For the table tag, I&rsquo;ll add a class of &ldquo;sortabletable&rdquo;:</p>
<pre>
&lt;table <span class="paint-green">class="sortabletable"</span>&gt;</pre>
<p>
	For each sort link, I&rsquo;m going to add a class of &ldquo;sort-trigger,&rdquo; for example:</p>
<pre>
&lt;a href="&#123;path=&#39;ajaxee/date/desc&#39;&#125;" <span class="paint-green">class="sort-trigger"</span>&gt;Date&lt;/a&gt;</pre>
<div class="asidebg pull-right" style="undefined">
	<p>
		You can read more about the totally 100% valid HTML 5 &lsquo;data-&lsquo; attribute over at <a href="http://html5doctor.com/html5-custom-data-attributes/">HTML 5 Doctor</a>.</p>
</div>
<p>
	In addition to these selector classes, I also need a way to define the orderby and sort values for each link. To do this I&rsquo;ll use data- attributes in my link tags &ndash; one for orderby and one for sort. For example, my Date link will become:</p>
<pre>
&lt;a href="&#123;path=&#39;ajaxee/date/desc&#39;&#125;" class="sort-trigger" <span class="paint-green">data-orderby="date" data-sort="desc"</span>&gt;Date&lt;/a&gt;</pre>
<p>
	I&rsquo;ll use these data- attributes to build a full path to the ajaxlist.hml template using Javascript in just a bit. For now, let&rsquo;s look at my entire updated table header section:</p>
<pre>
&#123;if segment_3 == "asc"&#125;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/date/desc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="date" data-sort="desc"</span>&gt;Date&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/title/desc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="title" data-sort="desc"</span>&gt;Title&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/username/desc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="username" data-sort="desc"</span>&gt;Author&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/status/desc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="status" data-sort="desc"</span>&gt;Status&lt;/a&gt;&lt;/th&gt;&#10;&#123;if:else&#125;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/date/asc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="date" data-sort="asc"</span>&gt;Date&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/title/asc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="title" data-sort="asc"</span>&gt;Title&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/username/asc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="username" data-sort="asc"</span>&gt;Author&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/status/asc&#39;&#125;" <span class="paint-green">class="sort-trigger" data-orderby="status" data-sort="asc"</span>&gt;Status&lt;/a&gt;&lt;/th&gt;&#10;&#123;/if&#125;</pre>
<h3>
	The Fistbump</h3>
<p>
	The final step is to add the jQuery that will make an Ajax call to ajaxlist.html and return output into our table body.&nbsp; I&rsquo;ll be sure to include jQuery in the header template first. Then, in the main template, after the table I&rsquo;ll add the following jQuery code. Read through the <span class="paint-green">// code comments</span> step by step to get a good sense of what the script is doing.</p>
<pre>
&lt;script type="text/javascript"&gt;&#10;    <span class="paint-green">// Once the document is ready</span>&#10;    $(document).ready(function()&#123;&#10;     &#10;      <span class="paint-green">// remember the table body as &lsquo;lz&rsquo;</span>&#10;      var lz = $(&#39;.sortabletable tbody&#39;);&#10;     &#10;      <span class="paint-green">// remember the sort triggers as &lsquo;st&rsquo;</span>&#10;      var st = $(&#39;.sort-trigger&#39;);&#10;     &#10;      <span class="paint-green">// then when a sort trigger is clicked...</span>&#10;      st.click(function()&#123;&#10;       &#10;        <span class="paint-green">// remember it&#39;s data-orderby and data-sort values as &lsquo;stOrderby&rsquo; and &lsquo;stSort&rsquo;</span>&#10;        var stOrderby = $(this).attr(&#39;data-orderby&#39;);&#10;        var stSort = $(this).attr(&#39;data-sort&#39;);&#10;       &#10;        <span class="paint-green">// build a full path using stOrderby and stSort</span>&#10;        var stTarget = &#39;/ajaxee/ajaxlist/&#39;+stOrderby+&#39;/&#39;+stSort+&#39;/&#39;;&#10;       &#10;        <span class="paint-green">// load up the ajaxlist template using stTarget and drop it into the lz</span>&#10;        lz.load(stTarget);&#10;       &#10;        <span class="paint-green">// if this links data-sort is asc</span>&#10;        if( stSort == &#39;asc&#39; )&#123;&#10;         &#10;          <span class="paint-green">// reverse it so it sorts desc next time</span>&#10;          $(this).attr(&#39;data-sort&#39;, &#39;desc&#39;);&#10;         &#10;        // otherwise it must be desc so &#10;        &#125; else &#123;&#10;         &#10;          <span class="paint-green">// reverse it so it sorts asc next time</span>&#10;          $(this).attr(&#39;data-sort&#39;, &#39;asc&#39;);&#10;         &#10;        &#125;;&#10;       &#10;        <span class="paint-green">// and, finally, prevent the default link behavior</span>&#10;        return false;&#10;       &#10;      &#125;);&#10;    &#125;);&#10;  &lt;/script&gt;</pre>
<p>
	This script loops through each link with a class of &ldquo;.sort-trigger&rdquo; and attaches an onclick function to it. Then, when the link is clicked, the function builds a full path to the ajaxlist template using the links&rsquo; data-orderby and data-sort values (e.g. /ajaxee/ajaxlist/title/desc). Next it loads up the ajaxlist template using the built path via Ajax and drops it into the table body. Last but not least, the function switches the clicked link&rsquo;s data-sort value so that the next time the user clicks that link the data will be sorted in the opposite direction.</p>
<p>
	Now, when we click on a table header link, we should see that the table is updated with sorted, ordered data.</p>
<p>
	Pump fist, say, &ldquo;Yeah!&rdquo; We&rsquo;re done. That&rsquo;s how we sort and order ExpressionEngine data on the fly with Ajax.</p>
<p>
	Questions? Let me know in the comments and I&rsquo;ll do my best to help you out.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-two"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Ajax-EE: Sort and Order Data with ExpressionEngine and Ajax part two+http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-two"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Code, ExpressionEngine, jQuery,]]></dc:subject>
            <dc:date>2012-05-15T15:03:18+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Multi-device layout patterns]]></title>
            <link>
                                http://themetaq.com/queue/multi-device-layout-patterns            </link>
            <guid>
                                http://themetaq.com/queue/multi-device-layout-patterns            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/device-layout-patterns.png" /><br /><br />                    Article by Luke Wroblewski on responsive design layout patterns.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code, CSS, HTML, Design, Design Process, Tips, Design Tips,]]></dc:subject>
            <dc:date>2012-05-15T15:01:07+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Social shopping: On the hunt with Svpply]]></title>
            <link>
                http://themetaq.com/articles/social-shopping-svpply                            </link>
            <guid>
                http://themetaq.com/articles/social-shopping-svpply                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/svpply.jpg" /><br /><br />
										<p class="intro">
	<a href="https://svpply.com">Svpply</a> is all about helping users share and discover products. It&#39;s a social, online retail "discovery" site,&nbsp; unofficially representing "over 70,000 stores and brands."</p>
<p>
	Follow friends and other users. Filter out results. Bookmark cool stuff that you may want to buy. Aspire to awesomeness AND get that rush of real-world consumption -- without spending a cent.</p>
<div class="pull-right-quote" style="undefined">
	<blockquote>
		<p>
			"Consumption is increasingly oriented toward virtual goods -- consuming YouTube videos, tweets and social networks, games and reality TV shows."<br />
			- Rick Bookstaber</p>
	</blockquote>
</div>
<h3>
	What makes it cool</h3>
<p>
	First of all, Svpply is well-designed, simple and uncluttered. &#39;Nuff said.</p>
<p>
	Second of all, it exposes you to smaller shops, higher-quality merchandise from artisans or from more local manufacturers. It&#39;s all about buying smarter and buying cooler.</p>
<p>
	Best of all, Svpply is designed to be all about the search. It&#39;s kind of about "ignor[ing] the act of buying," and instead "get[ing] lost in the visual joy of the hunt."</p>
<h3>
	Why does social shopping make sense?</h3>
<p>
	In a fantastic piece in <a href="http://www.theatlantic.com/technology/archive/2012/01/can-pinterest-and-svpply-help-you-reduce-your-consumption/251674/">The Atlantic</a>, Chris Tackett proposes a theory that social shopping is a perfect outlet for our hunting and gathering instincts.</p>
<p>
	Tackett quotes <a href="http://www.creditwritedowns.com/2012/01/bifurcated-society-technology-jobs.html">Rick Bookstaber</a>&nbsp;on the growing role of virtual markets, stating "consumption is increasingly oriented toward virtual goods -- consuming YouTube videos, tweets and social networks, games and reality TV shows."&nbsp;&nbsp; It&#39;s no longer all about conspicuous consumption, but about digital consumption and taste-making.</p>
<p>
	Just like when you actually buy something, just like when you actually consume something, you can get that rush of endorphins with the click of a mouse. Spot something online that has a nice design, or might be worth buying (for whatever reason), bookmark it and get that instant gratification.</p>
<div class="asidebg pull-right" style="undefined">
	<p>
		<strong>Check out some of the other bookmarking sites<br />
		and see how they stack up to Svpply:</strong></p>
	<ul>
		<li>
			<a href="http://pinterest.com/">Pinterest</a> - More DIY projects and recipes, less social shopping.</li>
		<li>
			<a href="https://gimmebar.com/">GimmeBar</a> - Bookmark it all - anything from articles to images.</li>
		<li>
			<a href="http://www.thefancy.com/">The Fancy</a> - If Facebook were only about clicking the "Like" button, and the word "like" was replaced with "Fancy it."</li>
		<li>
			<a href="http://www.lyst.com/">Ly.st</a> -&nbsp;Brands push tailorized fashion suggestions.</li>
		<li>
			<a href="http://sumally.com/">Sumally</a> - A Japanese version of Svpply?</li>
	</ul>
</div>
<p>
	Sure, if you really want it, you can buy it later.</p>
<p>
	But if a few days or weeks or months down the road, you revisit the product and decide you don&#39;t want it, then no harm done.</p>
<p>
	Even if you never buy any of the things you bookmark, these kinds of sites are a great way to show off your excellent taste, to find design inspiration and get pleasure from finding new things. Over and over again. Ad infinitum.</p>
<h3>
	A new kind of addiction?</h3>
<p>
	As Tackett aptly points out, "we get used to things." That new car or smartphone is exciting for awhile, but eventually the thrill is gone. With social shopping sites like Svpply, you can log in again and again and always find something new. The pleasure cycle never ends.</p>
<p>
	Whether it&#39;s a panacea for shopaholics or a new addiction, Svpply is just a really cool place for finding and sharing pretty things.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/social-shopping-svpply"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Social shopping: On the hunt with Svpply+http://themetaq.com/articles/social-shopping-svpply"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, Social Media,]]></dc:subject>
            <dc:date>2012-05-15T15:00:34+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: Communist]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-communist            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-communist            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/communistfont.png" /><br /><br />                    Communist font brings a classy serif to the masses. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-05-15T14:39:40+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Flexio]]></title>
            <link>
                                http://themetaq.com/queue/flexio            </link>
            <guid>
                                http://themetaq.com/queue/flexio            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/flexio.jpeg" /><br /><br />                    Flexio is an adorable solar-powered paper radio. Here's hoping its coolness outweighs the fact that it can only pick up one radio station.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration, Cool Stuff,]]></dc:subject>
            <dc:date>2012-05-14T15:01:36+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Punctuation marks you&#8217;ve probably never seen]]></title>
            <link>
                                http://themetaq.com/queue/punctuation-marks-youve-probably-never-seen            </link>
            <guid>
                                http://themetaq.com/queue/punctuation-marks-youve-probably-never-seen            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/punctuation-marks-the-exclamation-comma.jpeg" /><br /><br />                    The exclamation comma: Because sometimes you're too excited to end the sentence right there.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Tips,]]></dc:subject>
            <dc:date>2012-05-11T14:28:08+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[A brief history of drop caps]]></title>
            <link>
                                http://themetaq.com/queue/a-brief-history-of-drop-caps            </link>
            <guid>
                                http://themetaq.com/queue/a-brief-history-of-drop-caps            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/dropcap7_image_replacement.jpeg" /><br /><br />                    The ever brilliant <a href="http://www.smashingmagazine.com/2012/04/03/drop-caps-historical-use-and-current-best-practices/?utm_source=twitterfeed&utm_medium=twitter">Smashing Mag</a> dives into the history of the drop cap, and where it fits into web typography.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-05-09T15:23:11+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: Swiss Typefaces]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-swiss-typefaces            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-swiss-typefaces            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/swisstypefaces.png" /><br /><br />                    Free opentype file (OTF) of some pretty baller Schweizer Schriften.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-05-08T14:26:18+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Ajax-EE: Sort and Order Data with ExpressionEngine and Ajax part one]]></title>
            <link>
                http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-one                            </link>
            <guid>
                http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-one                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/ajax-ee-title.jpg" /><br /><br />
										<p class="intro">
	When working with large amounts of data entries we often find it useful to let users order and sort the output of channel tag entries on the fly without re-rendering an entire page.</p>
<p>
	Here I&rsquo;ll show a common way to accomplish this using Ajax and a typical set of ExpressionEngine channel tag entries.</p>
<h4>
	<strong>Making it work when it doesn&rsquo;t work.</strong></h4>
<p>
	The first step to making something work with Ajax is to make sure it works without Ajax. If a user doesn&rsquo;t have JavaScript enabled I want to be sure they can still sort entries. Those users will just have to load the entire page.</p>
<p>
	Let&rsquo;s start with a basic template that has a header, footer and content section. In the content section I&rsquo;ll add channel entry tags that loop through article entries. By default they&rsquo;ll be sorted by date in descending order. My template looks like this:</p>
<pre>
&#123;embed=&#39;site/header&#39;&#125;&#10;&lt;h2&gt;Articles&lt;/h2&gt;&#10;&lt;table&gt;&#10;&lt;thead&gt;&#10;&nbsp; &lt;tr&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;Date&lt;/th&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;Title&lt;/th&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;Author&lt;/th&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;Status&lt;/th&gt;&#10;&nbsp; &lt;/tr&gt;&#10;&lt;/thead&gt;&#10;&lt;tbody&gt;&#10;&nbsp; &#123;exp:channel:entries channel="articles" dynamic="no"&#125;&#10;&nbsp;&nbsp;&nbsp; &lt;tr&gt;&#10;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;&#123;entry_date format="%M %d, %Y"&#125;&lt;/td&gt;&#10;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a href="&#123;path=&#39;articles/&#123;url_title&#125;&#39;&#125;"&gt;&#123;title&#125;&lt;/a&gt;&lt;/td&gt;&#10;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;&#123;author&#125;&lt;/td&gt;&#10;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;&#123;status&#125;&lt;/td&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;&#10;&nbsp; &#123;/exp:channel:entries&#125;&#10;&lt;/tbody&gt;&#10;&lt;/table&gt;&#10;&#123;embed=&#39;site/footer&#39;&#125;</pre>
<br />
<p>
	Now I&rsquo;ll add links to the table headers with URL segments that will act as sort parameters that we use later:</p>
<pre>
&lt;thead&gt;&#10;&nbsp; &lt;tr&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/date/asc&#39;&#125;"&gt;Date&lt;/a&gt;&lt;/th&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/title/asc&#39;&#125;"&gt;Title&lt;/a&gt;&lt;/th&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/username/asc&#39;&#125;"&gt;Author&lt;/a&gt;&lt;/th&gt;&#10;&nbsp;&nbsp;&nbsp; &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/status/asc&#39;&#125;"&gt;Status&lt;/a&gt;&lt;/th&gt;&#10;&nbsp; &lt;/tr&gt;&#10;&lt;/thead&gt;</pre>
<p>
	<br />
	The links I&rsquo;ve added will point to the same template I&rsquo;m working in now but the second and third URL segments declare the <em>orderby</em> and <em>sort</em> parameters we&rsquo;ll use later. The following diagram illustrates how each segment is used.</p>
<p>
	<img alt="" src="/images/uploads/articles/url-segments.png" style="width: 428px; height: 169px; " /></p>
<p>
	Now, when the user clicks one of these links we can grab the orderby and sort segments from the URL and add them as parameters in our channel entries tag. I&rsquo;ll update that section to look like this:</p>
<pre>
&#123;exp:channel:entries channel="articles" dynamic="no"&#10;orderby="&#123;segment_2&#125;"&#10;sort="&#123;segment_3&#125;"&#10;&#125;&#10;&lt;tr&gt;&#10;&nbsp; &lt;td&gt;&#123;entry_date format="%M %d, %Y"&#125;&lt;/td&gt;&#10;&nbsp; &lt;td&gt;&#123;title&#125;&lt;/td&gt;&#10;&nbsp; &lt;td&gt;&#123;author&#125;&lt;/td&gt;&#10;&nbsp; &lt;td&gt;&#123;status&#125;&lt;/td&gt;&#10;&nbsp; &lt;td&gt;&lt;a href="&#123;path=&#39;articles/&#123;url_title&#125;&#39;&#125;"&gt;View &amp;raquo;&lt;/a&gt;&lt;/td&gt;&#10;&lt;/tr&gt;&#10;&#123;/exp:channel:entries&#125;</pre>
<br />
<p>
	Here I&rsquo;ve added two parameters to my opening channel entries tag: orderby and sort. In the orderby parameter I use &#123;segment_2&#125; as the value and in sort I use &#123;segment_3&#125;. When a user clicks any of the links in the table header the channel entries tag will use those URL segments to set orderby and sort. This also works well because if neither segment is available the tag just assumes the default; order by date in descending order.</p>
<p>
	One problem is that my table header links will still have &ldquo;asc&rdquo; as the sort value in their segments. So, in order to let the user switch the sort order, I can use an if/else statement to test for asc or desc in the url segment. I&rsquo;ll update my table header section like this:&nbsp;&nbsp;</p>
<pre>
&#123;if segment_3 == "asc"&#125;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/date/desc&#39;&#125;"&gt;Date&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/title/desc&#39;&#125;"&gt;Title&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/username/desc&#39;&#125;"&gt;Author&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/status/desc&#39;&#125;"&gt;Status&lt;/a&gt;&lt;/th&gt;&#10;&#123;if:else&#125;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/date/asc&#39;&#125;"&gt;Date&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/title/asc&#39;&#125;"&gt;Title&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/username/asc&#39;&#125;"&gt;Author&lt;/a&gt;&lt;/th&gt;&#10;  &lt;th&gt;&lt;a href="&#123;path=&#39;ajaxee/status/asc&#39;&#125;"&gt;Status&lt;/a&gt;&lt;/th&gt;&#10;&#123;/if&#125;</pre>
<p>
	This bit of code tests for &ldquo;asc&rdquo; in the third segment. If it&rsquo;s there we switch up the links to use &ldquo;desc.&rdquo; Now, for example, the user can click the date sort link once and the data will be sorted by date in ascending order. If the user clicks the date link once more consecutively, the data will be sorted by date but in descending order. This pattern will persist as long as the user is clicking the same table header link.</p>
<h4>
	<strong>Next Week: We Make it Ajaxee</strong></h4>
<p>
	This wraps up part one of using Ajax to sort and order entries in ExpressionEngine where we made sure that our sort and order functionality works without Ajax for those users who don&rsquo;t have JavaScript enabled. Feel free to ask any questions you might have so far in the comments below. See you next week!</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-one"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Ajax-EE: Sort and Order Data with ExpressionEngine and Ajax part one+http://themetaq.com/articles/ajax-ee-sort-and-order-data-with-expressionengine-and-ajax-part-one"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Code, ExpressionEngine,]]></dc:subject>
            <dc:date>2012-05-08T14:14:04+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Meta Q&amp;A: Eric Miller]]></title>
            <link>
                http://themetaq.com/articles/meta-qa-eric-miller                            </link>
            <guid>
                http://themetaq.com/articles/meta-qa-eric-miller                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/MetaQAEMDai.jpg" /><br /><br />
										<p>
	We&#39;ve had our share of cool EE-folks featured in our Meta Q&amp;As but <a href="https://twitter.com/#!/emdbrooklyn">Eric Miller</a> just exudes coolness. He used to be an in-house web designer for <a href="http://www.bmi.com/">BMI</a>. He writes for <a href="http://graphicdesign.about.com/">About.com&#39;s graphic design section</a>. He serves as a judge for the <a href="http://www.webbyawards.com/">Webby Awards</a>. Oh, and did we mention he&#39;s in Brooklyn?</p>
<p>
	Read on about how Miller makes graphic and web design just so darn cool.</p>
<p>
	<strong>MQ: Tell us about your work in 140 characters or less.</strong></p>
<p>
	<strong>EM: </strong><a href="http://ericmillerdesign.com/">Eric Miller Design</a> specializes in graphic design, web development, interfaces &amp; ExpressionEngine. We&#39;ve been creating websites since 1998.</p>
<p>
	<strong>MQ:&nbsp;How/why did you get into the web industry? Why do you stick with it?</strong></p>
<p>
	<strong>EM: </strong>I originally designed some websites for local businesses and campus clubs while in college, which led to a web design internship at BMI. That led to a full-time position, which I held for nine years, as the web designer and editor for<a href="http://bmi.com/"> bmi.com</a>. During that time I started taking on clients on the side, eventually going full-time with my own studio. I stuck with the web industry because it combined my passion for design (going back to painting, sculpting and drawing classes as a kid) with my interest in technology. I love building things that are easy to use.</p>
<div class="pull-right-quote" style="undefined">
	<blockquote>
		<p>
			"Work on your writing skills. If you are going to run your own web business, being a good writer is very important for drafting proposals, preparing contracts, helping clients with content strategy, blogging and even just composing coherent emails."</p>
	</blockquote>
</div>
<p>
	<strong>MQ:&nbsp;Why do you use ExpressionEngine?</strong></p>
<p>
	<strong>EM: </strong>I use ExpressionEngine because it lets me be a designer, without limitations, and because of its flexible nature. I can build anything for clients, either through existing add-ons, custom solutions or partnerships within the EE community.</p>
<p>
	<strong>MQ: What was the first EE site you ever worked on? What was that experience like?</strong></p>
<p>
	<strong>EM:&nbsp;</strong>The first EE site I worked on was <a href="http://www.bmi.com/">bmi.com</a>, since the company moved to EE while I was working there. It&#39;s a huge website with a wide variety of features, many of which required custom development. I&#39;m fortunate enough to still work on that site, now as a consultant. That experience allowed me to see the what can be done with EE, and adopt it as my CMS of choice for my clients.</p>
<p>
	<strong>MQ: What does a typical workday look like for you?</strong></p>
<p>
	<strong>EM: </strong>I often start my day off with my "Morning Mix" iTunes playlist. I check <a href="http://highrisehq.com/">Highrise</a> (which I use for project / contact management) for the day&#39;s tasks and do some email. From there, I don&#39;t really have a typical day as I may be working on current projects, following leads, marketing my business, writing or many other aspects of running a design business.</p>
<p>
	<strong>MQ: How do you stay passionate about your work? What do you do to refocus when you&#39;re having a bad day?</strong></p>
<p>
	<strong>EM:&nbsp;</strong>What keeps me passionate about my work is the variety of projects we take on. Recent project launches were focused on music, technology and the history of car racing, and I enjoy the challenges that come with working with different industries. If I need to refocus, I&#39;ll usually switch to a different type of work. Design vs. coding vs. doing something like writing a proposal require different mindsets. If I&#39;m not feeling creative, I switch gears and come back to something in a few hours. Or, just go for a bike ride or switch whatever music I&#39;m listening to.</p>
<div class="asidebg pull-right" style="undefined">
	<p>
		<strong>What&#39;s next for Eric Miller Design:</strong></p>
	<p>
		We&#39;re in the process of working with Solspace on the design of their next EE add-on, which has been a lot of fun.</p>
	<p>
		We recently launched an EE redesign of the Songwriters Hall of Fame website at <a href="http://songhall.org">http://songhall.org</a>. I&#39;ve been working for them for six years, so I was actually redesigning my own work, which was an interesting experience.<br />
		I am also the writer of the graphic design section of about.com at <a href="http://graphicdesign.about.com">graphicdesign.about.com</a>.</p>
</div>
<p>
	<strong>My favorite EE site I worked on is: </strong></p>
<p>
	<strong>EM: </strong>I loved working on the user interface and user experience design for the new <a href="http://www.enginehosting.com/">EngineHosting</a> sign-up and control panel. Another recent favorite is the one about the early days of car racing in America, <a href="http://vanderbiltcupraces.com">vanderbiltcupraces.com</a>. It allowed me to work with an amazing archive of photos, and in a vintage style that is different than a lot of my current work.</p>
<p>
	<strong>My favorite EE site someone else did is:</strong></p>
<p>
	<strong>EM:&nbsp;</strong><a href="http://www.campaignmonitor.com/">CampaignMonitor</a> is one of my favorite EE sites.</p>
<p>
	<strong>If I could change one thing about ExpressionEngine it would be:</strong></p>
<p>
	<strong>EM:&nbsp;</strong>The update process for EE and add-ons.</p>
<p>
	<strong>If I had once piece of advice for someone trying to break into the web industry it would be: </strong></p>
<p>
	<strong>EM:&nbsp;</strong>Work on your writing skills. If you are going to run your own web business, being a good writer is very important for drafting proposals, preparing contracts, helping clients with content strategy, blogging and even just composing coherent emails.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/meta-qa-eric-miller"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Meta Q&amp;A: Eric Miller+http://themetaq.com/articles/meta-qa-eric-miller"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Inspiration, People,]]></dc:subject>
            <dc:date>2012-05-08T06:27:53+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Glyphicons]]></title>
            <link>
                                http://themetaq.com/queue/glyphicons            </link>
            <guid>
                                http://themetaq.com/queue/glyphicons            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/glyphicons.png" /><br /><br />                    Glyphicons is a library of "precisely prepared monochromatic icons and symbols, created with an emphasis on simplicity and easy orientation." Because simplicity can be so lovely.
                    ]]>
                            </description>
            <dc:subject><![CDATA[]]></dc:subject>
            <dc:date>2012-05-07T14:18:44+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Inception chair]]></title>
            <link>
                                http://themetaq.com/queue/inception-chair            </link>
            <guid>
                                http://themetaq.com/queue/inception-chair            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/vc02.jpeg" /><br /><br />                    This puzzle-like nesting chair by Vivian Chiu may not be super functional, but it looks fantastic.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design,]]></dc:subject>
            <dc:date>2012-05-04T14:14:38+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Sketch]]></title>
            <link>
                                http://themetaq.com/queue/sketch            </link>
            <guid>
                                http://themetaq.com/queue/sketch            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/sketch.png" /><br /><br />                    Dying to know if anyone has tried Sketch, a "professional vector graphics app."  If you have, let us know in the comments!
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Design,]]></dc:subject>
            <dc:date>2012-05-04T14:09:36+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[What to do when the Internet is down]]></title>
            <link>
                                http://themetaq.com/queue/what-to-do-when-the-internet-is-down            </link>
            <guid>
                                http://themetaq.com/queue/what-to-do-when-the-internet-is-down            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/4015173_700b.jpeg" /><br /><br />                    Acceptance is always the first step.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration, Tips,]]></dc:subject>
            <dc:date>2012-05-03T14:07:41+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Simpsons&#8217; nuclear street art in Chernobyl]]></title>
            <link>
                                http://themetaq.com/queue/simpsons-nuclear-street-art-in-chernobyl            </link>
            <guid>
                                http://themetaq.com/queue/simpsons-nuclear-street-art-in-chernobyl            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/combo-simpsons-chernobyl-nuclear.jpeg" /><br /><br />                    It's pronounced "nu-cular."
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration,]]></dc:subject>
            <dc:date>2012-05-02T15:11:19+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Pantone swatches made into album covers]]></title>
            <link>
                                http://themetaq.com/queue/pantone-swatches-made-into-album-covers            </link>
            <guid>
                                http://themetaq.com/queue/pantone-swatches-made-into-album-covers            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/enhanced-buzz-17970-1335392951-4.jpeg" /><br /><br />                    The dark side of #FFFFFF.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration, Cool Stuff,]]></dc:subject>
            <dc:date>2012-05-02T14:02:06+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Pears]]></title>
            <link>
                                http://themetaq.com/queue/pears            </link>
            <guid>
                                http://themetaq.com/queue/pears            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/pears-screen.jpg" /><br /><br />                    Pears is an open source Wordpress theme by Dan Cederholm that lets you test and save html/css interface patterns on the fly. I've been thinking I need something like this for a long time. Long live the Cederholm!
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code, CSS, HTML,]]></dc:subject>
            <dc:date>2012-05-01T16:35:48+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: Mia Condensed]]></title>
            <link>
                                http://themetaq.com/queue/mia-condensed            </link>
            <guid>
                                http://themetaq.com/queue/mia-condensed            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/miacondensed.png" /><br /><br />                    Mia Condensed is an ultra thin and ultra cool sans serif font by Jeremy Pudlowski.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design,]]></dc:subject>
            <dc:date>2012-05-01T15:16:17+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Why should you use Instagram?]]></title>
            <link>
                http://themetaq.com/articles/why-should-you-use-instagram                            </link>
            <guid>
                http://themetaq.com/articles/why-should-you-use-instagram                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/whyshouldyouuseinstagram.png" /><br /><br />
										<h2>
	<strong>Business or pleasure, you decide</strong></h2>
<p>
	Hipsters and blurry <a href="http://mashable.com/2012/04/04/instagram-for-android-1m-downloads/">photo enthusiasts everywhere rejoiced</a> on April 3 as <a href="http://instagr.am/">Instagram</a> was finally made available to Android (OS) users.<strong>*</strong></p>
<p>
	Instagram allows users to take a picture, apply a digital filter, and share it on one or more social networking services like <a href="http://twitter.com">Twitter</a>, <a href="http://facebook.com">Facebook</a>, <a href="http://foursquare.com">Foursquare</a>, <a href="http://flickr.com">Flickr</a> or <a href="http://tumblr.com">Tumblr</a>. You can also simply post it to Instagram&#39;s network itself.</p>
<p>
	Instagram isn&#39;t just another photo site; its appeal lies in its aesthetic coolness. Photos are confined to a square shape, resonant of old Polaroid or Instamatic images (hence the name), and the digital filters help give images a more artistic feel. It&#39;s not only a great way to share and show what&#39;s going on, but it&#39;s also a way to show off your artistic chops.</p>
<p>
	Now that Instagram, the photo sharing, mobile-based social network, is available on both iPhone and Android platforms, you may be asking yourself if it&#39;s worth jumping on the Instagram bandwagon.</p>
<p>
	Depends. What do you want to use it for?</p>
<p>
	Instagram could be a great addition to your social media plan or another fun way to keep your loved ones in the loop. Business or pleasure -- you decide.</p>
<h3>
	Instagram use for sheer pleasure</h3>
<p>
	Instagram has a simple platform that is meant to be used on-the-go. In fact, Instagram was designed to only be used on-the-go, on mobile devices. You&#39;ve likely got your phone with you most or all of the time. Why not take a picture every now and then to keep friends and family in the loop? Instagram makes it easy and artsy with its built-in editing tools.</p>
<p>
	Here&#39;s how: Take pictures of _____________. Add filter for artsiness. Repeat as needed.</p>
<p>
	Here are a few ways you may want to take up Instagram for your personal use:</p>
<ul>
	<li>
		Food porn - take amazing shots of all the tasty things you eat and/or drink.</li>
	<li>
		Baby pics - make the photos that annoy your Facebook friends more tolerable.</li>
	<li>
		The sheer awesomeness of nature - The world outside is beautiful. And who doesn&#39;t love a good cloud shot?</li>
	<li>
		Funny things - Misspelled signs, goofy faces, hipster mustaches, double entendres, memes, and suchandsuch.</li>
	<li>
		Traveling - Show off all the places you will go.</li>
	<li>
		Making the mundane magnificent - Take pics of everyday objects and make them interesting.</li>
</ul>
<h3>
	Business: Instagram integration with a more serious side</h3>
<p>
	Engaging in social networks isn&#39;t always easy. It&#39;s hard to keep content fresh and up-to-date across all your various platforms. Luckly, Instagram isn&#39;t a whole new platform, so much as an "add-on" to your overall social media strategy. It&#39;s likely that you&#39;re already throwing a few images in on Twitter or FB of your brand&#39;s achievements and antics, (and if you&#39;re not, you really should to help your fans and followers see your more human side). Instead of sharing your images through Twitter (or <a href="http://twitpic.com/">TwitPic</a>, <a href="http://www.yfrog.com/">YFrog</a> or even<a href="http://lockerz.com/">&nbsp;Lockerz</a>) consider using Instagram.</p>
<p>
	Take a picture, do some light editing and share it through your social medium (or media) of choice.</p>
<h3>
	Tag it</h3>
<p>
	Just like on Twitter, you can jump into the conversation fray vis a vis tags. All about <a href="http://statigr.am/search/design">#design</a> or <a href="http://statigr.am/search/development">#development</a>? Showcase your current projects! Want to bring more traffic to your web-geekery site? Share your <a href="http://statigr.am/search/funny">#funny</a> pics or <a href="http://statigr.am/tag/photooftheday">#photooftheday</a>.</p>
<p>
	Find out who&#39;s tagging what on <a href="http://statigr.am/">Stati.gram</a>.</p>
<h3>
	Share it</h3>
<p>
	Social media is all about creating conversations and Instagram is just another tool. in your kit. Instagram has a great aesthetic, but it&#39;s not just about that; its about creating "visual status updates." It&#39;s exchanging images and ideas, it&#39;s finding people with common interests, and it&#39;s documenting the world around you. Instagram is visual social interaction.</p>
<p>
	Are you using Instagram for business or pleasure? Share your tips and ideas below.</p>
<p>
	&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/why-should-you-use-instagram"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Why should you use Instagram?+http://themetaq.com/articles/why-should-you-use-instagram"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, Social Media, Tips,]]></dc:subject>
            <dc:date>2012-05-01T15:01:51+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Hiring Secrets]]></title>
            <link>
                http://themetaq.com/articles/hiring-secrets                            </link>
            <guid>
                http://themetaq.com/articles/hiring-secrets                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/article-hiring-secrets.jpg" /><br /><br />
										<p class="intro">
	Q Digital Studio has a team of amazing people. I&rsquo;m not sure what the ratio of luck to hiring prowess is for achieving this awesomeness, but some conscientious effort is definitely involved. I&rsquo;m all about making it as easy as possible to find outstanding employees.</p>
<p class="intro">
	Here are a few tips to help you find your own outstanding employees &ndash; all without investing too much time and with only minimal stress (I promise).</p>
<h4>
	<strong>1. Ask simple questions i&#8203;n the job ad.</strong></h4>
<p>
	The first way I sift through the dross to find quality people <em>is through the ad itself.</em> Along with the job description, requirements and information on where to send a resume, I include a required set of questions. These are typically straightforward questions such as &ldquo;List the URLs for sites you&rsquo;ve worked on, and your role for each project.&rdquo; I learn a lot about people by how they answer these questions, AND if they can successfully follow directions. Using this filter makes it easy for me to eliminate the irrelevant applications and highlight the best ones.</p>
<h4>
	<strong>2. Accept only emails to a designated address.</strong></h4>
<div class="asidebg pull-right">
	<p>
		TIP: We have often used one-time only email addresses that are specific to a particular job position, e.g. webdesigner2011 @ company.com so that all applicants for a specific position are grouped together. In the offhand chance that the address is picked up by spam bots, we don&rsquo;t have to worry, since we won&rsquo;t need to use it again.</p>
</div>
<p>
	To keep things organized, I request that interested people apply only via email and only to a designated jobs email address. I don&rsquo;t want emails coming in to my email address, or through our website contact form, and certainly not by phone, facebook or snail mail. This also keeps the playing field level for all potential candidates, and it helps me keep everything organized.&nbsp;&nbsp;</p>
<h4>
	<strong>3. Don&rsquo;t worry about interviewing a lot of people.</strong></h4>
<p>
	Early on, when I was hiring one of our first employees, I made what I considered a &ldquo;short list&rdquo; of people to have initial phone interviews. My short list was eight people. Turns out, eight was way too many interviews. Besides taking up a lot of time and totally exhausting me, a number that large wasn&rsquo;t really necessary to filter out the top candidates. My list of top three candidates was unchanged after doing all eight of those phone calls. So now my current plan of action is to whittle down my top choices to three, maybe four people. If by chance those three don&rsquo;t impress me after a round of interviews, I can simply revisit the pool of applicants.&nbsp;</p>
<h4>
	<strong>4. Start with phone interviews.</strong></h4>
<p>
	Once I&rsquo;ve narrowed down my top choices, I like to get to know candidates better with phone interviews. It&rsquo;s easy to learn a lot about someone on the phone. Phone interviews are a nice way for people to shine without a lot of pressure. Being on the phone is also way more relaxing for me (and probably for most prospective candidates, too).</p>
<h4>
	<strong>5. Pay attention to your feelings.</strong></h4>
<p>
	There is probably some rule about not making snap decisions, but I can&rsquo;t remember what it is, and I don&rsquo;t follow it. First impressions and &ldquo;gut feeling&rdquo; have gone a long way in bringing the right people together at Q Digital Studio. Sometimes you&rsquo;ve just got to go with your gut. After my initial selection, based on email replies, and the phone interview, I generally have a pretty good idea of my top choices for an open position. However, if I have to convince myself that someone is the &ldquo;right person&rdquo; though, then, it&rsquo;s not right. It should just feel right. I want to be excited about someone joining the team.&nbsp;</p>
<h4>
	<strong>6. Try the top one or two candidates on a small project. </strong></h4>
<p>
	This step is critical. Even though I think I make an accurate assessment of a prospective employee through correspondence up to this point, there&rsquo;s nothing as instructive as actually working on a project together. This is the hardest step because it takes time and oversight. However, a little bit of time invested initially, pays off in the long run. This is an opportunity for my team and me to get to know the working style of potential employees. Are they responsive? How do they handle feedback? What is the quality of their work? It&rsquo;s also great for someone to know if they like working with us, saving potential headache down the road if we&rsquo;re not a good fit for each other.&nbsp;</p>
<h4>
	<strong>7. Don&rsquo;t get too caught up in the rules.&nbsp;</strong></h4>
<p>
	While I consider all of the above an integral part of the hiring process, I don&rsquo;t want to get too bogged down in steps and rules. After all, the process of getting to know people can be fun, and so can bringing new ideas and skills into the company. For example, it makes a very positive impression on me if someone sends a follow-up email after an interview. However, if they don&rsquo;t, I won&rsquo;t necessarily cross their name off the list.</p>
<p class="intro">
	Rules are made to be broken, right?&nbsp; What do you do to make finding and hiring great people as easy and effective as possible?</p>
<p>
	&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/hiring-secrets"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Hiring Secrets+http://themetaq.com/articles/hiring-secrets"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, Business Process, Tips,]]></dc:subject>
            <dc:date>2012-05-01T14:58:58+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Create circular motion with jQuery]]></title>
            <link>
                                http://themetaq.com/queue/create-circular-motion-with-jquery            </link>
            <guid>
                                http://themetaq.com/queue/create-circular-motion-with-jquery            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/CircularPortfolio.gif" /><br /><br />                    How to create a rounded content area with a main menu and a circulating sub-nav menu.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code,]]></dc:subject>
            <dc:date>2012-04-30T15:05:36+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Awesomely amazing Craigslist ad]]></title>
            <link>
                                http://themetaq.com/queue/awesomely-amazing-craigslist-ad            </link>
            <guid>
                                http://themetaq.com/queue/awesomely-amazing-craigslist-ad            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/enhanced-buzz-wide-28847-1335455062-2.jpeg" /><br /><br />                    You can bet that Pontiac sold.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration, Cool Stuff,]]></dc:subject>
            <dc:date>2012-04-30T14:00:57+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[This windmap will blow your mind]]></title>
            <link>
                                http://themetaq.com/queue/this-windmap-will-blow-your-mind            </link>
            <guid>
                                http://themetaq.com/queue/this-windmap-will-blow-your-mind            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/windmap.png" /><br /><br />                    At the intersection of science and art.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration,]]></dc:subject>
            <dc:date>2012-04-27T15:00:12+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Sunday is your most social day]]></title>
            <link>
                                http://themetaq.com/queue/sunday-is-your-most-social-day            </link>
            <guid>
                                http://themetaq.com/queue/sunday-is-your-most-social-day            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/weekend.png" /><br /><br />                    According to research from <a href="http://www.socialbakers.com/blog/466-get-ready-for-the-weekend-your-most-engaging-day-might-be-sunday/">Social Bakers</a>, Sunday is the day of the week when your social media fans/followers/whatever will most likely engage with your brand. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Social Media, Tips,]]></dc:subject>
            <dc:date>2012-04-25T14:54:28+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Are you a code hooker?]]></title>
            <link>
                http://themetaq.com/articles/are-you-a-hooker                            </link>
            <guid>
                http://themetaq.com/articles/are-you-a-hooker                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/areyouacodehooker.jpg" /><br /><br />
										<h2>
	<strong>Why you should use hooks in all your programming</strong></h2>
<p>
	One of my biggest concerns when it comes to development is with respect to <em>modifying another developer&#39;s code</em>. It&#39;s not that I&#39;m afraid to or I don&#39;t want to take the time to understand how it works, it&#39;s because it&#39;s not my <em>baby</em> and I just don&#39;t want to mess it up.</p>
<p>
	The second any developer touches the core of an application, the he or she who touched it, now <em>owns</em> it.</p>
<p>
	And by "own it" I mean that as soon as the core has been modified to do something it wasn&#39;t initially built to do, then the developer that changed the application is now responsible for making sure it continues to work.</p>
<h2>
	Keeping the core pristine</h2>
<p>
	If, six months down the road, something in the system starts acting up, it&#39;s the most recent developer&#39;s responsibility to fix it. After all, you can&#39;t expect the developers of the <em>original system</em> to support your changes. They probably have no clue what modifications you have made or how you&#39;ve implemented them.</p>
<p>
	If you need an application to work in a more custom manner than it was initially built for, you need to find a way to implement your changes while keeping its core pristine. Your ultimate goal should be to extend the system, not to modify it.&nbsp; Enter the concept of "hooks."</p>
<h2>
	Hooking</h2>
<p>
	In terms of programming, the concept of hooks (or hooking) has been around for quite awhile.</p>
<p>
	In its simplest form, a hook is an access point where a developer can intercept the execution of an application at a specific point, interject their own code which includes their desired behavior/functionality, and then allow the normal execution to continue &ndash; all the while, doing this outside of the original application itself.&nbsp;</p>
<p>
	With a well placed hook, developers can extend an application far beyond its original scope.&nbsp; Hooks can be used to make additional modifications to data before being inserted into a database, add additional features to an application, or change how the application works entirely.</p>
<h2>
	Hooking, ExpressionEngine and you</h2>
<p>
	ExpressionEngine is built with hooks all throughout its core. For a full list, visit see the ExpressionEngine <a href="http://expressionengine.com/user_guide/development/extension_hooks/index.html">Extension Hook Documentation</a> page.</p>
<p>
	These hooks give you the ability to modify or &#39;extend&#39; the standard functionality of ExpressionEngine so you can customize it to fit yours or your client&#39; .s specific needs.&nbsp; Most importantly, you can do this without making any changes to the core files.&nbsp; One of the advantages of developing this was is that you can run version updates without having to worry about destroying any core modifications you made.</p>
<p>
	In addition, by tapping into the native Extension Hook functionality of EE, if you ever need to troubleshoot the system, you can quickly disable or &#39;turn off&#39; your custom code to see if that&#39;s where the problems are coming from.</p>
<h2>
	What&#39;s awesome about the ExpressionEngine hooking system</h2>
<p>
	One of the aspects that I really like about the ExpressionEngine Extension Hook system is the fact that calls to hooks are made by creating records in the exp_extensions data table.&nbsp; I really like this approach for two main reasons:</p>
<h3>
	Cleanliness</h3>
<p>
	Personally, I like my code to be clean and contained.&nbsp; If I am developing a custom add-on for ExpressionEngine, I want all of the files stored in the expressionengines/third_party directory alone, or in the expressionengine/third_party and the themes/third_party directories.&nbsp; With the EE hooking system, the fact that you can call your scripts, execute your code, and do so without having to create a new file in the hooks directory (the CodeIgniter method) makes keeping your application clean a very easy process.</p>
<h3>
	Simplicity</h3>
<p>
	Configuring, activating, and disabling an Extension Hook is a breeze.&nbsp; If you are comfortable with PHP, tapping in to a hook is a very simple process.</p>
<h2>
	Taking hooks to the next level: apps</h2>
<p>
	Third Party add-ons developed for ExpressionEngine give you the ability to extract custom behavior from the system and truly make it the unique and powerful tool that your clients will love. But what about if you have an add-on that needs a slight tweak?&nbsp;</p>
<p>
	Many add-on developers (but not all) incorporate hooks into their applications.</p>
<p>
	Instead of making changes directly to the add-ons core files, first check the documentation to see if the developer has incorporated a hook. If they have, make use of it and see if you can extract your desired behavior through that access point first.</p>
<p>
	If they haven&#39;t included a hook in the system, or if you need one in a specific location, send the developer a message and ask if they would be willing to add one in. It never hurts to ask.</p>
<p>
	Are you a code "hooker?" Do you use hooks in your programming and have a tip to share? Let us know!</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/are-you-a-hooker"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Are you a code hooker?+http://themetaq.com/articles/are-you-a-hooker"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Code, ExpressionEngine, PHP, Code Process, Tips, Code Tips,]]></dc:subject>
            <dc:date>2012-04-24T16:01:45+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[How to be a brogrammer]]></title>
            <link>
                                http://themetaq.com/queue/how-to-be-a-brogrammer            </link>
            <guid>
                                http://themetaq.com/queue/how-to-be-a-brogrammer            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/brogrammer.jpeg" /><br /><br />                    There are many helpful answers to the question "How does a programmer become a brogrammer?" on Quora. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code,]]></dc:subject>
            <dc:date>2012-04-24T15:02:59+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Meta Q&amp;A: Jeff Hawkins]]></title>
            <link>
                http://themetaq.com/articles/meta-qa-jeff-hawkins                            </link>
            <guid>
                http://themetaq.com/articles/meta-qa-jeff-hawkins                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/MetaQAJeffHawkins.jpg" /><br /><br />
										<p>
	While on his "traditional Australian rite of passage" (and we don&#39;t mean a Walkabout) of "taking two-years off to work in the UK,"&nbsp;<a href="https://twitter.com/#!/jeffrhawkins">Jeff Hawkins</a> unlearned everything he ever knew about web design. But it actually turned out to be a good thing.</p>
<p>
	He embraced the new approach to web design and hasn&#39;t looked back.&nbsp;</p>
<p>
	Currently, he and his wife Kathryn, run <a href="http://hawkinsmultimedia.com/">Hawkins Multimedia</a> in the Portland, Maine area.</p>
<p>
	<strong>MQ: Tell us about your work in 140 characters or less.&#8232;</strong></p>
<p>
	<strong>JH: </strong>My wife and I run Hawkins Multimedia, a small agency focusing on custom content, content marketing, web design and development.&#8232;</p>
<p>
	<strong>MQ: How/why did you get into the web industry? Why do you stick with it?</strong></p>
<p>
	<strong>JH:&nbsp;</strong>I built my first website for my family&#700;s chocolate business in 1998 while I was at university. It was a pretty basic site, but it was enough to make me want to learn more. After I graduated in 2000 I went to work as the marketing manager for the <a href="http://www.spplus.com.au/">Southern Plumbing Plus</a> retail chain, where one of my duties was to design and develop a website for the company. They loved the site, and working on it became the biggest part of my job.</p>
<div class="pull-right-quote" style="undefined">
	<blockquote>
		<p>
			"The industry is evolving so rapidly that it is unrealistic to expect to be an expert at all the disciplines that make up the web industry. Find what you love to do and aim to be great at it."</p>
	</blockquote>
</div>
<p>
	In 2002 I left the job to do the traditional Australian rite-of-passage: the two-year working holiday in the UK. During that time I barely touched a computer, other than to send emails from internet cafes to family back home. While abroad I met my (now) wife Kathryn, and I relocated to the US in 2004 to live with her.</p>
<p>
	Once in the US I decided to work as a freelance web developer. I quickly discovered that between 2002-2004 there had been a huge shift in the industry away from table-based design towards modern web standards.</p>
<p>
	Two years away from the field (along with a pint or two of European beer) had made it easy for me to unlearn bad habits and embrace the new approach. I love to learn, so web development has been a great fit for me as it is always evolving.</p>
<p>
	<strong>MQ: Why do you use ExpressionEngine?</strong></p>
<p>
	<strong>JH:</strong> I use ExpressionEngine because it allows me to take on virtually any client project and know I have a tool that will allow me to get the job done right. A stock installation of EE can handle almost anything, but when you throw in the wealth of amazing third party add-ons, the first class support from EllisLab and the knowledge and professionalism of the community, you would be hard-pressed to find a better CMS.</p>
<p>
	<strong>MQ: What was the first EE site you ever worked on? What was that experience like?</strong></p>
<p>
	<strong>JH:&nbsp;</strong>The first EE site I ever worked on was TR150.org, a microsite for a Washington D.C. nonprofit, the Theodore Roosevelt Conservation Partnership. The site was to commemorate 150 years since the birth of Theodore Roosevelt and to showcase milestones in American conservation history, with a new article each day for 150 days. They had an unconventional design concept that I was originally going to attempt with Wordpress, but came across EE and was intrigued by its design and content agnostic premise.</p>
<p>
	I downloaded a copy of EE Core and armed myself with a copy of Michael Boyink&#700;s &ldquo;Building an ExpressionEngine Site,&rdquo; and found the process of building the site quite painless. I had used various CMSes before and even made my own simple PHP one, but EE was the first CMS that I found to be completely intuitive to my way of thinking.</p>
<p>
	<strong>MQ: What does a typical workday look like for you?</strong></p>
<p>
	<strong>JH:&nbsp;</strong>A typical workday for me generally starts with a quick scan of the #eecms hashtag on Twitter to see if there is anything new or interesting. After that I generally respond to any client emails and prepare any proposals that need to go out. Then I generally get working on whatever EE project I have going on at the moment.</p>
<p>
	<strong>MQ: How do you stay passionate about your work? What do you do to refocus when you&#39;re having a bad day?</strong></p>
<p>
	<strong>JH:&nbsp;</strong>There is so much innovation constantly going on in the web industry that I find it hard not to be excited about what is possible with the web as a communication medium. It also doesn&#700;t hurt that I am lucky enough to get to live and work in a beautiful and inspiring place like Maine.</p>
<p>
	My wife and I have a particularly delightful 2-year-old daughter, Leah, who is the perfect antidote to any bad day!</p>
<p>
	<strong>My favorite EE site I worked on is:&nbsp;</strong></p>
<p>
	<strong>JH:&nbsp;</strong>My favorite EE site I worked on (and continue to work on) would have to be <a href="http://gimundo.com">Gimundo.com</a>, a site dedicated to good news and uplifting content that my wife and I own and operate. I did the design and development and my wife is the editor and primary author.</p>
<div class="asidebg pull-right" style="undefined">
	<p>
		<strong>Upcoming Projects:</strong> I have begun working on a complete design and development overhaul of Gimundo.com. It is running on EE1.6.9 at the moment and that has proven to be rock-solid, but it is time to move forward to EE2. The site has received as many as 400,000 unique visitors a month and as many as 46,000 in a single day, and it never skipped a beat. I was nervous to upgrade to EE2 when there were some early stability issues and not all of the add-ons I used had an equivalent in EE2, but now that is no longer an issue. EE2 has matured an outstanding piece of software, and I am looking forward to using it for Gimundo.</p>
</div>
<p>
	<strong>My favorite EE site someone else did is:</strong></p>
<p>
	<strong>JH:&nbsp;</strong>My favorite EE site by someone else would have to be <a href="http://devot-ee.com/">Devot-ee.com</a>. Not only is it a great looking site, but I think it is a perfect example of the type of complex content and data heavy site that EE is suited for.</p>
<p>
	<strong>If I could change one thing about ExpressionEngine it would be:&nbsp;</strong></p>
<p>
	<strong>JH:&nbsp;</strong>If I could change one thing about EE it would be to improve the upgrading process. No matter how many times I do EE upgrades, I still find myself looking at a checklist for every step to make sure I don&#700;t miss anything.</p>
<p>
	<strong>If I had once piece of advice for someone trying to break into the web industry it would be:&nbsp;</strong></p>
<p>
	<strong>JH:&nbsp;</strong>While having a solid, broad understanding of the industry is essential, my advice would be to find your niche and specialize&ndash;be it front-end design and development, programming, content strategy, etc. The industry is evolving so rapidly that it is unrealistic to expect to be an expert at all the disciplines that make up the web industry. Find what you love to do and aim to be great at it.</p>
<p>
	&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/meta-qa-jeff-hawkins"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Meta Q&amp;A: Jeff Hawkins+http://themetaq.com/articles/meta-qa-jeff-hawkins"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Inspiration, People,]]></dc:subject>
            <dc:date>2012-04-24T15:00:22+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: COLLEGE]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-college            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-college            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/college.png" /><br /><br />                    College may not have an original look, but it is "darn collegiate."
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-04-24T14:58:05+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Creative Market: digital handcrafted goods]]></title>
            <link>
                                http://themetaq.com/queue/creative-market            </link>
            <guid>
                                http://themetaq.com/queue/creative-market            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/creative-market.png" /><br /><br />                    Marketplace for digitally made handcrafted stuff. Like icons, patterns, photoshop/illustrator brushes, UI/UX/wireframe elements, more. If you click this link you'll get a coupon to use in the shop for free stuff.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Illustration, Information Architecture,]]></dc:subject>
            <dc:date>2012-04-23T17:36:21+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Productive procrastination]]></title>
            <link>
                                http://themetaq.com/queue/productive-procrastination            </link>
            <guid>
                                http://themetaq.com/queue/productive-procrastination            </guid>
            <description>
                                                    <![CDATA[
                                        Fast Company shares tips on "structured procrastination." That's what I call Facebook.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Inspiration,]]></dc:subject>
            <dc:date>2012-04-23T15:44:52+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[The future of personal libraries]]></title>
            <link>
                                http://themetaq.com/queue/the-future-of-personal-libraries            </link>
            <guid>
                                http://themetaq.com/queue/the-future-of-personal-libraries            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/future-of-the-library.jpeg" /><br /><br />                    Personally, I'm a big fan of having all the books with none of the clutter.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration,]]></dc:subject>
            <dc:date>2012-04-20T14:27:04+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[What do you say to spec work?]]></title>
            <link>
                                http://themetaq.com/queue/what-do-you-say-to-spec-work            </link>
            <guid>
                                http://themetaq.com/queue/what-do-you-say-to-spec-work            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/say-no-to-pro-bono.png" /><br /><br />                    This pretty much sums up my response to spec work. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business,]]></dc:subject>
            <dc:date>2012-04-19T14:59:10+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Geek lit for kids]]></title>
            <link>
                                http://themetaq.com/queue/geek-lit-for-kids            </link>
            <guid>
                                http://themetaq.com/queue/geek-lit-for-kids            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/miraculous-journey-of-edward-tulane.jpeg" /><br /><br />                    Wired shares the "67 Books Every Geek Should Read to Their Kids Before Age 10." Above: <em>The Miraculous Journey of Edward Tulane</em>.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration,]]></dc:subject>
            <dc:date>2012-04-18T14:55:10+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Bad kerning]]></title>
            <link>
                                http://themetaq.com/queue/bad-kerning            </link>
            <guid>
                                http://themetaq.com/queue/bad-kerning            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/xkcd-kerning.png" /><br /><br />                    If you really hate someone, teach them to recognize bad kerning. (It's everywhere.) From the biting comic <a href="http://xkcd.com/">xkcd</a>.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-04-17T15:01:56+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Are you a digital native or a digital immigrant?]]></title>
            <link>
                http://themetaq.com/articles/are-you-a-digital-native-or-a-digital-immigrant                            </link>
            <guid>
                http://themetaq.com/articles/are-you-a-digital-native-or-a-digital-immigrant                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/digitalnative.jpg" /><br /><br />
										<h2>
	<strong>Why you should emigrate to technology land</strong></h2>
<p>
	I spend a lot of time on computers or computer-like technologies.</p>
<p>
	But these days, who doesn&#39;t?</p>
<p>
	Not only do I enjoy using computers at work, I also use said digital technologies in my free time.</p>
<p>
	As a writer and content specialist for a web design studio, my work is by the computer for the computer. But even when I&#39;m not working, I&#39;m always connected. I&#39;m on Twitter, Facebook, Skype, Instagram, Pinterest, Tumblr, and use a cadre of other websites and digital-based distractions on a daily basis.</p>
<p>
	I am a "digital native."</p>
<div class="pull-left-quote" style="undefined">
	<blockquote>
		<p>
			"If you want to learn something, learn it. Age be damned. It&#39;s about overcoming your fear."</p>
	</blockquote>
</div>
<p>
	I first heard the term "digital native" from my mother, of all people. She is extremely intelligent, well-educated, and terrified of Gmail.</p>
<p>
	As I was guiding her through the layout of her new work-related Gmail account, she expressed frustration at a system that apparently "makes no sense."</p>
<p>
	"It just comes easier for you, Linds, you&#39;re a digital native," she remarked.</p>
<p>
	My response: "Who on earth taught you that word?"</p>
<h3>
	<strong>A digital cop-out?</strong></h3>
<p>
	A digital native (and forgive me for grabbing this definition from <a href="http://en.wikipedia.org/wiki/Digital_native">Wikipedia</a>) is "a person who was born during or after the general introduction of digital technology and through interacting with digital technology from an early age, has a greater understanding of its concepts."</p>
<p>
	To me, the concept of a digital native seemed like a cop-out for people who don&#39;t want to try.</p>
<p>
	Here&#39;s what I hear: <em>Boo hoo, I wasn&#39;t exposed to computers when I was younger, so I just can&#39;t ever get it. I give up. I&#39;m a digital immigrant.</em></p>
<p>
	I do understand that it is more difficult for some people to understand technology that they&#39;re not used to, but I&#39;ve always felt that it had more to do with attitude than anything else. Anything is difficult if you don&#39;t try.</p>
<p>
	If you want to learn something, learn it. Age be damned. It&#39;s about overcoming your fear.</p>
<p class="caption">
	<strong>Caveat:</strong> Experience aside, early exposure most definitely changed my attitude towards computers, and consequently I&#39;ve never had to deal with any fear or anxiety toward using technology.</p>
<h3>
	<strong>A family that plays computers together, stays together</strong></h3>
<p>
	I was exposed to computers at a very young age. My father was a computer programmer in the 80s (and still is today). I have fond memories of him lugging home a bulky desktop on the weekends. He would let me and my brother play PacMan on it, a series of lines and dots in 8-bit green.</p>
<p>
	He later created a <a href="http://en.wikipedia.org/wiki/DOS">DOS</a> game menu for us, <em>C:FUN</em> where we could play computer games like <a href="http://en.wikipedia.org/wiki/Captain_Comic">Captain Comic</a>, <a href="http://en.wikipedia.org/wiki/Commander_keen">Commander Keen</a>, and <a href="http://www.giantbomb.com/the-playroom/61-3786/">The Playroom</a>. My dad and brothers and I still have in-jokes about <a href="http://en.wikipedia.org/wiki/Loom_(video_game)">Loom</a> and <a href="http://en.wikipedia.org/wiki/Space_Quest">Spacequest</a>. I&#39;m pretty sure that my baby brother (now 23) can&#39;t remember a time when we didn&#39;t have computers in our home.&nbsp;</p>
<p>
	I studied for my sixth grade Geography Bee by playing <a href="http://en.wikipedia.org/wiki/Carmen_Sandiego">Where in the World is Carmen San Diego?</a>&nbsp;(and made it to state).&nbsp;I fell in love with graphic design while perfecting birthday cards on <a href="http://en.wikipedia.org/wiki/The_Print_Shop">The Print Shop</a>. I got a gig at my college&#39;s newspaper thanks to my exposure to Adobe&nbsp;<a href="http://en.wikipedia.org/wiki/Adobe_PageMaker">PageMaker</a> (from working on my highschool newspaper). I wouldn&#39;t be where I was today without the exposure I had to computers.</p>
<p>
	My life is unequivically better, thanks to technology.</p>
<div class="pull-left-quote" style="undefined">
	<blockquote>
		<p>
			"As adults age, there is a definite tendency to gravitate toward the already beaten path, AKA the neuropath of least resistance. But neuroplasticity doesn&#39;t go away."</p>
	</blockquote>
</div>
<p>
	<strong>The digital divide is not necessarily always an age thing</strong></p>
<p>
	My parents are baby boomers through and through. Yet my father is tech savvy as-all-get-out and my mother is, well, not.</p>
<p>
	I believe that this isn&#39;t an age thing, so much as an attitude thing. My mom definitely, unequivocally, has the intelligence and wherewithal to understand technology. I think she, like many people (of all ages), has a mental block, or a bit of anxiety surrounding technology.</p>
<p>
	Children learn quickly, I won&#39;t argue that. They are sponges ready to take in new information.</p>
<p>
	And that as adults age, there is a definite tendency to gravitate toward the already beaten path, AKA the neuropath of least resistance. But <a href="http://en.wikipedia.org/wiki/Neuroplasticity">neuroplasticity</a> doesn&#39;t go away.</p>
<p>
	You can always learn new things. In fact, you should always be learning new things.</p>
<p>
	So what, you were already an adult when computers became big?</p>
<p>
	It doesn&#39;t mean that you can&#39;t learn how to use one, and that you can never be good at it. Take a class. Read a blog. Talk to your nephew or granddaughter. Or just give it the old college try.</p>
<h3>
	<strong>If a 93-year-old can email, then so can you</strong></h3>
<p>
	My grandmother is 93 years old. She grew up in a time where radio was the height of technology and has seen a lot of technological advances in her day.</p>
<p>
	While she&#39;s very clearly not a digital native, she&#39;s learning new things.</p>
<p>
	She emails me. She types up memos for an organization she&#39;s part of in Microsoft Word. She even uses Skype to keep in touch with me when I&#39;m abroad.</p>
<p>
	And while she has little to no interest&nbsp;Twitter or blogging, or smart phones, she&#39;s at least willing to listen to me blather about them and at the very least, she&#39;s willing to dip her toes into the technology pool.</p>
<h3>
	<strong>Dive in</strong></h3>
<p>
	Not all young people are digital natives. Heck, I have many peers who can&#39;t figure out how to change the margins on Word. These are people who fundamentally can&#39;t understand how to use Facebook.</p>
<p>
	Lots of adults are more tech savvy than children or even teens. I think it depends largely on education, personal interests and access to technology.</p>
<p>
	Do I consider myself a digital native? Yeah, I guess so. I like technology and I like learning new things. I use digital technologies to engage with the world and to challenge myself to grow personally. I might have a leg up on some, but it doesn&#39;t mean that the race is over. Or that a race even exists at all. If you want to learn how to use technology, then do it.</p>
<h3>
	All aboard for technology land, the brave new world</h3>
<p>
	So you&#39;re a digital immigrant. What&#39;s wrong with being an immigrant? I&#39;m pretty that America was founded by immigrants.&nbsp; And are you going to say that America isn&#39;t great? What kind of patriot are you? It takes some serious cajones to board a boat and emigrate to a foreign land.</p>
<p>
	Being an immigrant shows that you&#39;re brave enough to travel outside of your comfort zone and learn something new. And to that I say, "Get your ass on the boat."</p>
<p>
	You too, mom.</p>
<p>
	&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/are-you-a-digital-native-or-a-digital-immigrant"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Are you a digital native or a digital immigrant?+http://themetaq.com/articles/are-you-a-digital-native-or-a-digital-immigrant"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Inspiration, Tips,]]></dc:subject>
            <dc:date>2012-04-17T15:00:29+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Building a website: The design reference phase]]></title>
            <link>
                http://themetaq.com/articles/building-a-website-the-design-reference-phase                            </link>
            <guid>
                http://themetaq.com/articles/building-a-website-the-design-reference-phase                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/web-design-process.jpg" /><br /><br />
										<p class="intro">
	Building a website is a process. Literally. At <a href="http://qdigitalstudio.com/">Q Digital Studio</a>, it&rsquo;s a step-by-step process that keeps us organized and our clients in the loop. Every step of the way.</p>
<p class="intro">
	Before we write a single line of code or fire up Illustrator or Photoshop, it&rsquo;s important to get a sense of our client&rsquo;s design preferences. Our very first step in building a website is called the <em>design reference phase</em>.</p>
<h2>
	The first step in the design reference phase</h2>
<p>
	First, our project manager asks the client to send us any URLs of sites they like, sites that communicate their brand or sites that are their direct or potential competition. She also asks the client to point out the <em>specific elements</em> they like or dislike for each site.&nbsp;</p>
<p>
	This could be the header design, content layout, logo placement or a navigation element.</p>
<h2>
	Additional research</h2>
<p>
	We want to make sure our client&rsquo;s site pops.&nbsp;</p>
<p>
	So using their reference sites as a baseline, we spend some additional time researching other sample sites to throw into the mix. These are sites that share similar elements, are in the same industry or just have wicked awesome design.&nbsp;</p>
<p>
	Our favorite resources for design reference inspiration include a variety of books, magazines and online galleries.</p>
<p>
	&nbsp;The most recent go-to sources are:</p>
<ul>
	<li>
		<em><a href="http://www.gdusa.com/">GD Magazine</a></em></li>
	<li>
		<a href="http://thewebdesignersideabook.com/books/volume-2/">Patrick McNeil&rsquo;s <em>The Web Designer&#39;s Idea Book Volume 2</em></a></li>
	<li>
		<a href="http://www.thebestdesigns.com/">The Best Designs</a></li>
	<li>
		<a href="http://webcreme.com/">Web Creme</a></li>
	<li>
		<a href="http://mediaqueri.es/">Media Queries</a></li>
</ul>
<p>
	By the time we&rsquo;re through with the research we have anywhere from ten to twenty sites. The project manager and designer then review the list and whittle it down to their top five to eight picks, based on the client&rsquo;s preferences and needs.</p>
<h2>
	Presenting it in a PDF</h2>
<p>
	With the website &ldquo;finalists,&rdquo; we create a reference design PDF.&nbsp; This includes a screen grab for each site and a short description of the various elements the project manager and designer likes, in addition to a link to the site.</p>
<p>
	<img alt="Web Design Reference PDF" src="/images/uploads/articles/Web-Design-Reference-PDF.jpg" style="width: 588px; height: 434px;" /></p>
<p>
	Our project manager then reviews the reference design PDF with the client in more detail to get their feedback.</p>
<div class="asidebg pull-right">
	<p>
		<strong>Keep in mind</strong></p>
	<p>
		One complication worth mentioning is the <em>full screen grab</em>.</p>
	<p>
		Every once in a while, instead of focusing on certain <em>positive elements</em> we are trying to highlight in a site, a client gets lost in the <em>whole design</em>. They can&rsquo;t seem to see the good amidst the bad.</p>
	<p>
		For this we highly recommend not showing the client a whole page design.&nbsp; Instead, create a mood board. Just crop out the specific elements you want to focus on, and create a collage of the various parts and pieces of the page or pages you want to highlight.</p>
</div>
<h2>
	Home runs and strikeouts</h2>
<p>
	Sometimes we hit a home run with our research, and the client sees a site or two that is <em>exactly</em> what they are looking for. This then allows the designer to jump right into the next phase, designing the site.&nbsp;</p>
<p>
	However, such success isn&rsquo;t always the case.&nbsp; In fact, there have been times when the client has come back and let us know we totally missed the mark.</p>
<p>
	Try not to suffer too big of a blow to your self-esteem if this happens to you; this kind of feedback is actually very useful.</p>
<p>
	The beauty of the design reference phase is it allows the designer to get a sense of who the client is and what they think best communicates their brand without spending a lot of time creating designs and constantly going back to the drawing board.&nbsp;</p>
<p>
	Sure we have to do some additional design research and provide the client with a list of new reference sites to get their feedback on, but ultimately this takes way less time and provides us with much clearer direction. &nbsp;</p>
<p>
	When we do begin designing their site, we are confident of what direction we should take. <em>Every step of the way</em>.</p>
<p>
	What&rsquo;s your take on the design reference phase? What steps do you take to create a website?</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/building-a-website-the-design-reference-phase"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Building a website: The design reference phase+http://themetaq.com/articles/building-a-website-the-design-reference-phase"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Design, Design Process,]]></dc:subject>
            <dc:date>2012-04-17T14:59:28+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: Airplane!]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-airplane            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-airplane            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/airplane-banner.png" /><br /><br />                    Airplane is a retro lowercase font inspired by the jet-setting 1960s. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-04-17T14:56:09+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[A guide to Starbucks&#8217; WiFi users]]></title>
            <link>
                                http://themetaq.com/queue/a-guide-to-starbucks-wifi-users            </link>
            <guid>
                                http://themetaq.com/queue/a-guide-to-starbucks-wifi-users            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/1405.gif" /><br /><br />                    Everyone who will ever sip lattes and/or steal WiFi. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration,]]></dc:subject>
            <dc:date>2012-04-13T15:14:50+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Best calls to action for HTML emails]]></title>
            <link>
                                http://themetaq.com/queue/best-calls-to-action-for-html-emails            </link>
            <guid>
                                http://themetaq.com/queue/best-calls-to-action-for-html-emails            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/emails-with-arrows.png" /><br /><br />                    Readers of email newsletters are more likely to click a button with an arrow in it. Plus get more recommendations via this infographic from email testing software, Litmus.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Tips, Design Tips,]]></dc:subject>
            <dc:date>2012-04-12T15:00:54+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Bacon isn&#8217;t making you fat]]></title>
            <link>
                                http://themetaq.com/queue/bacon-isnt-making-you-fat            </link>
            <guid>
                                http://themetaq.com/queue/bacon-isnt-making-you-fat            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/carbs-are-killing-yo-large-1.jpeg" /><br /><br />                    It's pasta.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration,]]></dc:subject>
            <dc:date>2012-04-12T14:18:55+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[An infographic about infographics]]></title>
            <link>
                                http://themetaq.com/queue/infographic-about-infographics            </link>
            <guid>
                                http://themetaq.com/queue/infographic-about-infographics            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/infographicinfographic.jpeg" /><br /><br />                    Whoa. That's meta. Also, spam?
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, SEO,]]></dc:subject>
            <dc:date>2012-04-11T15:12:31+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Vintage Social Media Ads]]></title>
            <link>
                                http://themetaq.com/queue/vintage-social-media-ads            </link>
            <guid>
                                http://themetaq.com/queue/vintage-social-media-ads            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/vintage-twitter.jpg" /><br /><br />                    One of a series of ads from Brazilian firm Moma Propoganda.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Social Media, Design,]]></dc:subject>
            <dc:date>2012-04-10T15:01:31+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[A better way to preview entries in ExpressionEngine]]></title>
            <link>
                http://themetaq.com/articles/a-better-way-to-preview-entries-in-expressionengine                            </link>
            <guid>
                http://themetaq.com/articles/a-better-way-to-preview-entries-in-expressionengine                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/preview-entries.png" /><br /><br />
										<p class="intro">
	At Q Digital Studio we always set up entry preview functionality for our clients on ExpressionEngine sites we&rsquo;ve built. Clients want to preview entries before they&#39;re visible to the public so that they can make sure the entry&#39;s formatting is correct and that no mistakes were made.</p>
<p class="intro">
	There are a few add-ons and methods out there that let site admins preview their ExpressionEngine entries and they all <em>stink</em>. Here&rsquo;s why:</p>
<ul>
	<li style="margin-left: 0.25in; ">
		They make me create a second template specifically for previewing entries. That&rsquo;s twice the maintenance effort, and it&rsquo;s two templates that <em>almost</em> basically do the exact same thing.</li>
	<li style="margin-left: 0.25in; ">
		They make me embed one or more templates into the template that should have done the work in the first place. This leads to performance issues (and smelly breath).</li>
	<li style="margin-left: 0.25in; ">
		They make me use <em>if/else</em> logic and duplicate my entry loops. That&rsquo;s ugly in terms of performance and of maintenance. Not to mention it&rsquo;s just down right ugly to look at in the code.</li>
	<li style="margin-left: 0.25in; ">
		They make me pay. I generally enjoy paying for add-ons when they&rsquo;re worth it. But it&rsquo;s not worth the money when I know the solution isn&rsquo;t really that complicated.</li>
</ul>
<h3>
	<strong>Oh, but it is complicated.</strong></h3>
<p>
	Technically, all I need to do is set an entry loop&rsquo;s status parameter to &ldquo;open|closed&rdquo; if the user is an admin, or &ldquo;open&rdquo; if the user is not an admin. It just seems so simple and yet, because of this one wonderful thing called <em>parse order</em>, it&rsquo;s actually extremely difficult.</p>
<div class="asidebg pull-right" style="undefined">
	<p>
		If you haven&rsquo;t read Low&rsquo;s parse order publication, well, you need to right now:&nbsp; <a href="http://loweblog.com/downloads/ee-parse-order.pdf">http://loweblog.com/downloads/ee-parse-order.pdf</a></p>
</div>
<p>
	Since entry tags and preload replace variables are parsed pretty much before EVERYTHING ELSE you can&rsquo;t really do any variable setting or conditional statements to output the desired status value since they would all parse after the entry tag is done for the day.</p>
<p>
	So, this doesn&rsquo;t work:</p>
<pre>
<code>&#10;&#123;if group_id=="1"&#125;&#10;  &#123;preload_replace:preview_status="open|closed"&#125;&#10;&#123;if:else&#125;&#10;  &#123;preload_replace:preview_status="open"&#125;&#10;&#123;/if&#125;&#10;&#123;exp:channel:entries channel="news" status="&#123;preview_status&#125;"&#125;&#10;  &#123;title&#125;&#10;  Blah, blah&#10;&#123;/exp:channel:entries&#125;&#10;&#10;&#10;</code></pre>
<p>
	In fact, I tried snippeting, global value setting, kicking, crashing, banging and swearing before I ever found a reasonable solution.</p>
<p>
	But I did find one. And it&rsquo;s awesome. Read on.</p>
<h3>
	<strong>The runner up</strong></h3>
<p>
	Before I get into my number one solution for previewing entries, I think it&rsquo;s worth mentioning my number two solution. The runner up solution is to use <a href="https://twitter.com/#!/croxton">Mark Croxton</a>&rsquo;s free <a href="http://devot-ee.com/add-ons/switchee">Switchee</a> plugin. Switchee lets me create conditional statements in my templates but without the overhead, since the Switchee conditional will parse before the entry tags.</p>
<p>
	I could do something like this:</p>
<pre>
<code>&#10;&#123;exp:switchee variable="global:group_id"&#125;&#10;  &#123;case value="1"&#125;&#10;    &#123;exp:channel:entries channel="news" status="open|closed"&#125;&#10;      &#123;title&#125;&#10;      Blah, blah&#10;    &#123;/exp:channel:entries&#125;&#10;  &#123;/case&#125;&#10;  &#123;case default="yes"&#125;&#10;    &#123;exp:channel:entries channel="news" status="open"&#125;&#10;      &#123;title&#125;&#10;      Blah, blah&#10;    &#123;/exp:channel:entries&#125;&#10;  &#123;/case&#125;&#10;&#123;/exp:channel:entries&#125;&#10;&#10;&#10;</code></pre>
<div class="asidebg pull-right" style="undefined">
	<p>
		Switchee is actually a fantastic plug in, just not for what I&rsquo;m trying to do here. I suggest using it in place of standard EE conditionals wherever possible. Performance will soar.</p>
</div>
<p>
	Standard EE conditionals parse late in the game so even if a condition fails, EE still parses everything in it, which is too much overhead.</p>
<p>
	Switchee doesn&rsquo;t parse anything that fails and so it&rsquo;s a nicer solution, but the drawback of using Switchee, in this case, is that I still have to duplicate my entry tags.</p>
<h3>
	<strong>The big winner</strong></h3>
<p>
	Did I mention Mark Croxton made <a href="http://devot-ee.com/add-ons/switchee">Switchee</a>? Well, he also made a pretty little module called <a href="http://devot-ee.com/add-ons/stash">Stash</a> and, friends, it is gorgeous.</p>
<p>
	Stash lets me store variables or snippets of text and we can do it bright and early in the parsing order before the entry tag has even had its first cup of coffee.</p>
<p>
	In fact, with Stash, I can parse entire templates, ExpressionEngine tags and EE logic first thing in the morning; this pretty little module is quite the little go-getter.</p>
<p>
	Let&rsquo;s start by looking at Stash&rsquo;s more composed side:</p>
<pre>
<code>&#10;&#123;!-- Set a Variable  --&#125;&#10;&#123;exp:stash:set name="the_title"&#125;&#10;</code>    &lt;h1&gt;Operation Sinatra: The adventures of Rick Ellis&lt;/h1&gt;&#10;&#123;/exp:stash:set&#125;&#10;&#10;&#123;exp:stash:get name="the_title"&#125;&#10;&#10;</pre>
<p>
	Here I set a variable called &ldquo;the_title&rdquo; using &#123;exp:stash:set&#125; and later I&rsquo;ll call its output by using &#123;exp:stash:get&#125;.</p>
<p>
	However, for allowing admins to preview entries I&rsquo;ll have to get Stash a little revved up.</p>
<h3>
	<strong>Step one</strong></h3>
<p>
	Users are not required to Stash variables in the same template they call them in, which is good because, if I have different channels that need to be previewed, I really only want one place to set the various member group IDs, which get to see previews of the entries. Instead, I can create files that act as Stash variables.</p>
<p>
	First, I&rsquo;ll create a template group called functions and then set that group to be Stash&rsquo;s toolbox in my webroot <em>index.php</em>. Every HTML template that I put in the functions template group becomes a Stash variable.</p>
<p>
	I&rsquo;ll then place this in my webroot <em>index.php</em> file under the custom config section (I&rsquo;ll need to update the path to point to the template files or URIs on my server).</p>
<pre>
<code>&#10;$assign_to_config[&#39;stash_file_basepath&#39;] =&#10;     &#39;./templates/default_site/functions.group/&#39;;&#10;&#10;</code></pre>
<p>
	You can read more about this set up on Stash&#39;s documentation page:&nbsp;<a href="https://github.com/croxton/Stash/blob/master/docs/working_with_files.md">https://github.com/croxton/Stash/blob/master/docs/working_with_files.md</a></p>
<h3>
	<strong>Step two</strong></h3>
<p>
	Now I&rsquo;ll create an HTML template called <em>preview_status</em>. This name will also act as the name of my Stash variable when I call it later.</p>
<p>
	Inside of <em>preview_status.html</em> I need to perform the logic that tests whether or not the user is a member that can see closed entries. I have two members that are allowed preview status: Super Admins and Editors. In my case, their member group IDs are<em>1</em> and <em>6</em> so I&rsquo;ll enter this:</p>
<pre>
<code>&#10;&#123;if group_id == "1" || group_id == "6"&#125;open|closed&#123;if:else&#125;open&#123;/if&#125;&#10;&#10;&#10;</code></pre>
<p>
	Here I&rsquo;m saying, &ldquo;If the currently logged in user has a member group ID of 1 or 6, return &lsquo;open|closed,&rsquo; otherwise return &lsquo;open.&rsquo;&rdquo; Notice that I didn&rsquo;t put any white space in the return values, since I&rsquo;ll be outputting them as an entry parameter in the next step.</p>
<h3>
	<strong>Step three</strong></h3>
<p>
	Now I can take that preview_status Stash variable and output it into any other template I want to. In this case, I want Stash to grab the variable, parse all the tags and conditionals in it and then output the result.</p>
<p>
	Here&rsquo;s how:</p>
<pre>
<code>&#10;&#123;exp:stash:get&#10;    name="preview_status"&#10;    file="yes"&#10;    parse_tags="yes"&#10;    parse_conditionals="yes"&#10;&#125;&#10;&#10;&#10;</code></pre>
<p>
	Here I&rsquo;ve said, &ldquo;Get the stash variable whose name is &lsquo;preview_status&rsquo; and is a file and please parse the tags and the conditionals before you give anything back to me.&rdquo;</p>
<p>
	Thus, if the user is logged in the Stash variable will return &ldquo;open|closed&rdquo; and, if not, it will return &ldquo;open.&rdquo;</p>
<p>
	Now, to use this in an ExpressionEngine entry tag we simply do this:</p>
<pre>
<code>&#10;&#123;exp:channel:entries&#10;    channel="news"&#10;    status=&#39;&#123;exp:stash:get &#10;        name="preview_status"&#10;        file="yes"&#10;        parse_tags="yes"&#10;        parse_conditionals="yes"&#10;    &#125;&#39; &#10;    parse="inward"&#10;&#125;&#10;&#9;&#123;title&#125;&#10;        Blah, blah&#10;&#123;/exp:channel:entries&#125;&#10;&#10;&#10;</code></pre>
<p>
	This bit of code grabs entries in the channel whose status matches the output of the <em>preview_status</em> variable. One thing we must pay attention to is the <em>parse=&rdquo;inward&rdquo;</em> parameter that I&rsquo;ve added to the entry tag.</p>
<p>
	Anytime we want to use a plugin tag of any kind as an entry tag&rsquo;s parameter value we must add the <em>parse=&rdquo;inward&rdquo;</em> parameter, which, in a very simplified manner of speaking, tells ExpressionEngine to parse the entry tag after the add-on tags are parsed.</p>
<p>
	There it is.</p>
<p>
	Now, when the user is a Super Admin or an Editor, my entry loop will show open and closed entries. Otherwise the user only gets to see open entries.</p>
<h3>
	<strong>Final word</strong></h3>
<p>
	It&rsquo;s worth mentioning that, since I am technically using another template file to perform the conditional logic, the performance is going to take a hit. &nbsp;But, compared to other solutions, it&rsquo;s not much. With this solution I have one place to set member groups that have access to closed entries and it&rsquo;s available throughout all templates. I don&rsquo;t have to do any complex embedding or conditionals or duplicate entry tags.</p>
<p>
	Ultimately though, as I like to do with all my articles here on Meta Q, I hope to have introduced a great add-on and shared a few ideas for solving many of the possible problems you might come across while developing sites in ExpressionEngine.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/a-better-way-to-preview-entries-in-expressionengine"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=A better way to preview entries in ExpressionEngine+http://themetaq.com/articles/a-better-way-to-preview-entries-in-expressionengine"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Code, ExpressionEngine,]]></dc:subject>
            <dc:date>2012-04-10T14:03:58+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: It&#8217;s Slimbo!]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-its-slimbo            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-its-slimbo            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/15_slimbo005.jpeg" /><br /><br />                    Slimbo is a type experiment by Boris Schandert - an uber thin serif font.   
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-04-10T14:01:48+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Meta Q&amp;A: Erwin Heiser]]></title>
            <link>
                http://themetaq.com/articles/meta-qa-erwin-heiser                            </link>
            <guid>
                http://themetaq.com/articles/meta-qa-erwin-heiser                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/MetaQAEHeiser.jpg" /><br /><br />
										<p class="intro">
	Forget everything you know about Belgian ExpressionEngine developers.</p>
<p class="intro">
	Wait, you didn&#39;t know anything about Belgian ExpressionEngine developers to begin with? Perfect.</p>
<p class="intro" style="text-align: left; ">
	This week, Meta Q&amp;A heads to the Berchem district of Antwerp, Belgium to chat with the talented polyglot (Dutch, English, Spanish, HTML, PHP),&nbsp;<a href="https://twitter.com/#!/erwinheiser">Erwin Heiser</a> of <a href="http://www.stookstudio.com/">StookStudio</a>.</p>
<p>
	<strong>MQ: Tell us about your work in 140 characters or less.</strong></p>
<p>
	<strong>EH: </strong>Basically, I design and build websites and I&#39;m the go-to EE guy for a few design agencies. I like clean, minimal design and code.</p>
<p>
	<strong>MQ:How/why did you get into the web industry? Why do you stick with it?</strong></p>
<p>
	<strong>EH:</strong> My parents never bought me a Commodore64, which started a life-long fascination with computers.</p>
<p>
	Truth be told, I got into it because my girlfriend needed a website (it&#39;s always for a girl isn&#39;t it?).&nbsp;</p>
<p>
	At the time I was studying to be a translator (I have a Master&#39;s in translation Dutch-English-Spanish), and I thought to myself: Might as well learn HTML, CSS etc... while I&#39;m at it. One thing led to another and by the time I graduated I pretty much was set on continuing my web activities, so I started freelancing straight away and never looked back.&nbsp;</p>
<p>
	Working with ExpressionEngine has allowed me to travel and meet some interesting people I wouldn&#39;t have met otherwise. It&#39;s a constantly evolving industry so it never gets boring. I don&#39;t see myself doing anything else for the foreseeable future. If anything, I still have a lot to learn to perfect my craft.</p>
<div class="pull-right-quote" style="undefined">
	<blockquote>
		<p>
			"Try to love what you do and have a good time doing it.&nbsp;Remember you work to live, not live to work."&nbsp;</p>
	</blockquote>
</div>
<p>
	<strong>MQ:</strong>&nbsp;<strong>Why do you use ExpressionEngine?</strong></p>
<p>
	<strong>EH:</strong> I used pMachine on my girlfriend&#39;s website, so once that evolved into EE I just rolled with it. I soon decided, rather than learning a few CMSs, to focus on EE. I had built a few sites in Wordpress and Textpattern, but I just felt EE had them all beat.</p>
<p>
	<strong>MQ:</strong>&nbsp;What was the first EE site you ever worked on? What was that experience like?</p>
<p>
	<strong>EH:&nbsp;</strong>My first real one was a trilingual site for a hotel in Mallorca so for me at the time that was a major project. This was before the path variables method that&#39;s common these days (or the many multi-language add-ons that keep cropping up), so I used a suggestion from <a href="https://twitter.com/#!/shecodes">Sue Crocker</a> (a long-standing member of the EE community) and used some PHP in my templates along with segment variables to get it working. It was all pretty basic but it worked like a charm.</p>
<p>
	<strong>MQ: What does a typical workday look like for you?</strong></p>
<p>
	<strong>EH:&nbsp;</strong>There&#39;s no such thing as a "typical" work day when you freelance. I can spend a day locked in meetings, either through Skype or in real life, spend it coding a layout in CSS/HTML, do an EE set-up, collaborate with a designer etc...</p>
<p>
	It&#39;s the variety that keeps it interesting.</p>
<div class="asidebg pull-right" style="undefined">
	<h3>
		<strong>&nbsp;Belgian shoutouts<br />
		&nbsp;from Erwin:</strong></h3>
	<p>
		I want to mention a few fellow countrymen/women who are doing awesome work:</p>
	<ul>
		<li>
			<a href="http://www.antarcticstation.org/">Antarctic Station</a>&nbsp;by&nbsp;<a href="https://twitter.com/#!/jeromecoupe">@jeromecoupe</a></li>
		<li>
			<a href="http://strijkapose.com/nl/">Strijk A Pose</a>&nbsp;&nbsp;by&nbsp;<a href="https://twitter.com/#!/jdesramaults">@jdesramaults</a>&nbsp;<br />
			and&nbsp;<a href="https://twitter.com/#!/joggink">@joggink</a></li>
		<li>
			<a href="http://eurogroupforanimals.org/">Eurogroup for Animals</a>&nbsp;<br />
			by @<a href="https://twitter.com/#!/gluewebdesign">gluewebdesign</a></li>
		<li>
			<a href="http://www.evyquorn.be/">Quorn</a>&nbsp;&nbsp;by @<a href="https://twitter.com/#!/moonbeetle">moonbeetle</a></li>
		<li>
			<a href="http://www.belasilva.com/">Bela Silva</a>&nbsp;by @<a href="https://twitter.com/#!/benev">benev</a></li>
	</ul>
	<p>
		Having this kind of talent in the same small country as yourself really keeps you on your toes.</p>
</div>
<p>
	<strong>MQ: How do you stay passionate about your work? What do you do to refocus when you&#39;re having a bad day?</strong></p>
<p>
	<strong>EH:&nbsp;</strong>If you&#39;re not passionate about it, you won&#39;t last as a freelancer. Luckily it&#39;s pretty easy to be passionate about it because the industry is constantly evolving, so there&#39;s something new to learn every day. On a bad day I just switch off and do something else entirely. You have to get away from it all every now and then.</p>
<p>
	<strong>My favorite EE site I worked on is:&nbsp;</strong></p>
<p>
	<strong>EH:&nbsp;</strong>The website for the <a href="http://www.walry.be">Walry</a> bookstore because it&#39;s been running (and I&#39;ve been maintaining it) for quite a few years now. The people at the store really consider me one of their crew, so that&#39;s nice.</p>
<p>
	<strong>My favorite EE site someone else did is:&nbsp;</strong></p>
<p>
	<strong>EH:&nbsp;</strong>I thought the recently redesigned <a href="http://focuslabllc.com/">Focus Lab</a> site was about as perfect as an agency site can get, quite envious of that.&nbsp;</p>
<p>
	<strong>If I could change one thing about ExpressionEngine it would be:</strong></p>
<p>
	<strong>EH:&nbsp;</strong>The update process! That&#39;s the one thing where WordPress really shines.</p>
<p>
	<strong>If I had once piece of advice for someone trying to break into the web industry it would be:</strong></p>
<p>
	<strong>EH:&nbsp;</strong>I&#39;m pretty sure I&#39;m the last person you&#39;d want advice from, but I&#39;d say build a broad skillset but also try to find your niche, the one thing you excel at. Try to love what you do and have a good time doing it.&nbsp;Remember you work to live, not live to work.&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/meta-qa-erwin-heiser"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Meta Q&amp;A: Erwin Heiser+http://themetaq.com/articles/meta-qa-erwin-heiser"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Inspiration, People,]]></dc:subject>
            <dc:date>2012-04-10T13:55:41+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[HackerBooks]]></title>
            <link>
                                http://themetaq.com/queue/hackerbooks            </link>
            <guid>
                                http://themetaq.com/queue/hackerbooks            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/hackerbooks.png" /><br /><br />                    For all your "hacking" needs.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code,]]></dc:subject>
            <dc:date>2012-04-09T15:00:36+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Glow in the dark iPhone case]]></title>
            <link>
                                http://themetaq.com/queue/glow-in-the-dark-iphone-case            </link>
            <guid>
                                http://themetaq.com/queue/glow-in-the-dark-iphone-case            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/itron.jpeg" /><br /><br />                    Did anyone else immediately think of "Tron?"
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration,]]></dc:subject>
            <dc:date>2012-04-05T14:06:41+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Social media &#8220;gurus&#8221;]]></title>
            <link>
                                http://themetaq.com/queue/social-media-gurus            </link>
            <guid>
                                http://themetaq.com/queue/social-media-gurus            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/smguru.gif" /><br /><br />                    Social media takes real skills.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Social Media,]]></dc:subject>
            <dc:date>2012-04-04T14:06:08+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Instagr-android]]></title>
            <link>
                                http://themetaq.com/queue/instagr-android            </link>
            <guid>
                                http://themetaq.com/queue/instagr-android            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/Insta.jpeg" /><br /><br />                    Instagram is now available on Android platforms. <strong><a href="http://mashable.com/2012/04/04/instagram-for-android-1m-downloads/"> Mashable</a></strong> reports more than 1 million downloads in 24 hours.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Social Media,]]></dc:subject>
            <dc:date>2012-04-04T12:48:01+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[SEO under scrutiny: Reasons your Google search results are different than mine]]></title>
            <link>
                http://themetaq.com/articles/reasons-your-google-search-results-are-different-than-mine                            </link>
            <guid>
                http://themetaq.com/articles/reasons-your-google-search-results-are-different-than-mine                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/article-different-search-results.jpg" /><br /><br />
										<p class="intro">
	Google seeks to provide the best results for individual users. This means that they <em>want</em> and <em>expect</em> search results to be different from person to person and that people searching in the same office may see different search results.</p>
<p>
	This also means that the same person may see different results between his or her work computer and home computer. &nbsp;Here&rsquo;s why two people in the same room may (and probably will) see different results when running the same keyword search using Google.</p>
<h3>
	<strong>Location</strong></h3>
<p>
	Google attempts to automatically detect a user&rsquo;s location and provide <a href="http://support.google.com/websearch/bin/answer.py?hl=en&amp;answer=179386">customized results based on that location</a>. The factors for auto-detecting a location are based on IP address and Google Toolbar&rsquo;s My Location feature (if you use it). Users can also specify their preferred location, using a street address. Manually-set locations are saved in a user&rsquo;s browser cookie.</p>
<p>
	Location factors manifest most prominently when searching for things that have desirable geographically targeted results. Try searching for &ldquo;chinese food&rdquo; using Google and you&rsquo;ll likely get a map of nearby Chinese restaurants on the right side column as well as some local results appearing at the top of your list.</p>
<p>
	<em>Related, but different: Google country-specific Search Engines have been around for a while and display results targeted to those countries. You can experiment with different country&rsquo;s search results by searching for &ldquo;yoga&rdquo; on google.com (U.S.), google.co.uk (Britain) and google.ie (Ireland), or any other country-specific version of Google.</em></p>
<h3>
	<strong>Personalization</strong></h3>
<p>
	Google provides personalized results based on previous searches. When you&rsquo;re signed in to any of Google services, Google personalizes your results based on your account&rsquo;s web history.&nbsp;For example, if you often click on Amazon&rsquo;s links in your search results, Google will see that as a preference and start to show you Amazon links more often and in higher placements in your search results.</p>
<p>
	In addition to results based on your web history, Google now shows &ldquo;<a href="http://support.google.com/websearch/bin/answer.py?hl=en&amp;answer=1710607">Personal Results</a>&rdquo;&nbsp;when you&rsquo;re logged into your Google+ account. These are linked from the top of a standard search results page and are based on your personal search history as well as searches from your Google+ connections.&nbsp; So if your friend likes a particular Chinese restaurant, it&rsquo;s likely to come up higher in your search if you&rsquo;re logged into your Google account while searching.</p>
<p>
	Even when you&rsquo;re <em>not</em> signed in, Google still provides <a href="http://support.google.com/accounts/bin/answer.py?hl=en&amp;answer=54041">personalized search results based on past search information accessed via browser cookies</a>. Google stores your non-logged in search queries and clicked results for up to 180 days via cookies.</p>
<h3>
	<strong>Data Center</strong></h3>
<p>
	Based on a user&rsquo;s location, a keyword search is performed by one of <a href="http://www.google.com/about/datacenters/locations/index.html">Google&rsquo;s many data centers</a>. Google doesn&rsquo;t say exactly how many data centers it has, but there are <a href="http://www.quora.com/How-many-data-centers-does-Google-have#ans829618">at least <em>three dozen</em> reported data centers</a> (and likely several more) around the world.</p>
<p>
	While sharing the same search algorithm, Google&rsquo;s data centers may have some variance between them during updates. One data center may already have the newest search algorith while other data centers still have the older one running while propagation takes place.</p>
<p>
	And no, you won&rsquo;t always have your search performed by the same data center, even if you search from the same location every time. Google routes searches between data centers with their load balancers. While the out-of-sync algorithms are not as common of a factor, it does occur and can cause results to be different for hours or potentially days between data centers as the algorithm update occurs.</p>
<h3>
	<strong>Algorithm testing</strong></h3>
<p>
	Google is constantly testing algorithm changes on search users. <a href="http://www.wired.com/magazine/2010/02/ff_google_algorithm/">Potentially up to 40%</a> of all searches on Google are testing some algorithm variation. The way users respond to the search and subsequent browser history will factor into how such algorithm tweaks are used, understood and adopted.</p>
<p>
	If you&rsquo;re the subject of one of these random &ldquo;bucket tests,&rdquo; you will see different results than your coworker &ndash; even if you both are logged out of Google, have just cleared your cookies, and are searching from the same IP address.</p>
<h3>
	<strong>Summary</strong></h3>
<p>
	While you <em>don&rsquo;t have </em>control over which of Google&rsquo;s data center your searches are run through and if your search results are part of their algorithm testing, you do have control over your location and personalization &ndash; you can <a href="http://support.google.com/websearch/bin/answer.py?hl=en&amp;answer=179386">change your location settings</a> and even&nbsp;<a href="http://support.google.com/accounts/bin/answer.py?hl=en&amp;answer=54048#signedout">turn off of search history personalization</a>.&nbsp;</p>
<p>
	&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/reasons-your-google-search-results-are-different-than-mine"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=SEO under scrutiny: Reasons your Google search results are different than mine+http://themetaq.com/articles/reasons-your-google-search-results-are-different-than-mine"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, SEO,]]></dc:subject>
            <dc:date>2012-04-03T15:01:00+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Lego&#8217;s New Print Campaign]]></title>
            <link>
                                http://themetaq.com/queue/legos-new-print-campaign            </link>
            <guid>
                                http://themetaq.com/queue/legos-new-print-campaign            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/lego1_0.jpeg" /><br /><br />                    Checkout other beloved cartoon characters in lego form.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration, Cool Stuff,]]></dc:subject>
            <dc:date>2012-04-03T15:00:54+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Should you stay on board Pinterest?]]></title>
            <link>
                http://themetaq.com/articles/should-you-stay-on-board-pinterest                            </link>
            <guid>
                http://themetaq.com/articles/should-you-stay-on-board-pinterest                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/pinterestcopyrights.jpg" /><br /><br />
										<p>
	In wake of some serious concern and user outcry, <a href="http://pinterest.com/">Pinterest</a> has updated its <a href="http://pinterest.com/about/terms/">Terms of Service</a>, effective April 6, 2012.&nbsp;</p>
<p>
	The new TOS states that Pinterest no longer has the right to sell content and will actively remove images that encourage self-harm or self-abuse. These changes also include "easier to understand" language in the agreement. By stating that Pinterest in non-commercial, use of copyrighted material on the site now more likely to fall in the realm of fair use. But new Terms of Service don&#39;t change the fact that a copyright is still a copyright.</p>
<p>
	Sharing content that doesn&#39;t belong to you is essentially what makes the Internet go round. But what made users, bloggers and ultimately content creators so concerned was the fact that essentially, Pinterest&#39;s TOS provide you, the user, with all the responsibility (should you infringe on someone&#39;s copyright).</p>
<p>
	Compare the <strong>ALL CAPS</strong> liability sections in the user agreements from some of the big social media players:</p>
<div class="bdr-t-s mvm phm pbs bg-grey">
	<h3>
		<a href="http://pinterest.com/about/terms/">Pinterest</a></h3>
	<p class="caption">
		YOU ACKNOWLEDGE AND AGREE THAT, TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE ENTIRE RISK ARISING OUT OF YOUR ACCESS TO AND USE OF THE SERVICES, PINTEREST CONTENT, AND USER CONTENT REMAINS WITH YOU AND YOU USE THE SERVICES AT YOUR OWN RISK. YOU AGREE THAT NEITHER PINTEREST NOR ANY OTHER PARTY INVOLVED IN CREATING, PRODUCING, OR DELIVERING THE SERVICES WILL BE LIABLE FOR ANY INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, LOSS OF DATA OR LOSS OF GOODWILL, SERVICE INTERRUPTION, COMPUTER DAMAGE OR SYSTEM FAILURE OR THE COST OF SUBSTITUTE PRODUCTS OR SERVICES, ARISING OUT OF OR RELATED TO THESE TERMS OR FROM THE SERVICES, OR FROM THE USE OF OR INABILITY TO USE THE SERVICES, USER CONTENT, PINTEREST CONTENT, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE SERVICES OR OTHER PERSONS WITH WHOM YOU COMMUNICATE OR INTERACT AS A RESULT OF YOUR USE OF THE SERVICES, WHETHER BASED ON WARRANTY, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY, AND WHETHER OR NOT PINTEREST HAS BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
	<h3>
		<a href="http://www.tumblr.com/policy/en/terms_of_service">Tumblr</a></h3>
	<p class="caption">
		TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, TUMBLR, ITS DIRECTORS, OFFICERS, SHAREHOLDERS, EMPLOYEES, REPRESENTATIVES, CONSULTANTS, AGENTS, SUPPLIERS, AND/OR DISTRIBUTORS SHALL NOT BE LIABLE FOR: (A) ANY INDIRECT, INCIDENTAL, EXEMPLARY PUNITIVE, OR CONSEQUENTIAL DAMAGES OF ANY KIND WHATSOEVER; (B) LOSS OF: PROFITS, REVENUE, DATA, USE, GOOD-WILL, OR OTHER INTANGIBLE LOSSES; (C) DAMAGES RELATING TO YOUR ACCESS TO, USE OF, OR INABILITY TO ACCESS OR USE THE SERVICES; (D) DAMAGES RELATING TO ANY CONDUCT OR CONTENT OF ANY THIRD PARTY OR SUBSCRIBER USING THE SERVICES, INCLUDING WITHOUT LIMITATION, DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OR CONTENT; AND/OR (E) DAMAGES IN ANY MANNER RELATING TO ANY CONTENT. THIS LIMITATION APPLIES TO ALL CLAIMS, WHETHER BASED ON WARRANTY, CONTRACT, TORT, OR ANY OTHER LEGAL THEORY, WHETHER OR NOT TUMBLR HAS BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGE, AND FURTHER WHERE A REMEDY SET FORTH HEREIN IS FOUND TO HAVE FAILED ITS ESSENTIAL PURPOSE.</p>
	<h3>
		<a href="http://www.youtube.com/static?gl=US&amp;template=terms">YouTube</a></h3>
	<p class="caption">
		IN NO EVENT SHALL YOUTUBE, ITS OFFICERS, DIRECTORS, EMPLOYEES, OR AGENTS, BE LIABLE TO YOU FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE, OR CONSEQUENTIAL DAMAGES WHATSOEVER RESULTING FROM ANY (I) ERRORS, MISTAKES, OR INACCURACIES OF CONTENT, (II) PERSONAL INJURY OR PROPERTY DAMAGE, OF ANY NATURE WHATSOEVER, RESULTING FROM YOUR ACCESS TO AND USE OF OUR SERVICES, (III) ANY UNAUTHORIZED ACCESS TO OR USE OF OUR SECURE SERVERS AND/OR ANY AND ALL PERSONAL INFORMATION AND/OR FINANCIAL INFORMATION STORED THEREIN, (IV) ANY INTERRUPTION OR CESSATION OF TRANSMISSION TO OR FROM OUR SERVICES, (IV) ANY BUGS, VIRUSES, TROJAN HORSES, OR THE LIKE, WHICH MAY BE TRANSMITTED TO OR THROUGH OUR SERVICES BY ANY THIRD PARTY, AND/OR (V) ANY ERRORS OR OMISSIONS IN ANY CONTENT OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF YOUR USE OF ANY CONTENT POSTED, EMAILED, TRANSMITTED, OR OTHERWISE MADE AVAILABLE VIA THE SERVICES, WHETHER BASED ON WARRANTY, CONTRACT, TORT, OR ANY OTHER LEGAL THEORY, AND WHETHER OR NOT THE COMPANY IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE FOREGOING LIMITATION OF LIABILITY SHALL APPLY TO THE FULLEST EXTENT PERMITTED BY LAW IN THE APPLICABLE JURISDICTION.</p>
</div>
<p>
	Pinterest is just one of many other social media that offer no refuge or safety net from copyright infringement. Unless you&#39;re able to get permission for every piece of media you share or transmit on the Internet, or you only use original content, you&#39;re bound to be sailing into murky copyright waters.&nbsp;</p>
<p>
	<strong>However, there are a few things that you or your organization can do to make sure that your use of copyrighted work falls in the fair use category</strong>.</p>
<ul>
	<li>
		Don&#39;t claim ownership for a work that isn&#39;t yours.</li>
	<li>
		Don&#39;t try to make money off of a work or piece of work that doesn&#39;t belong to you.</li>
	<li>
		If something doesn&#39;t belong to you, always make sure to properly attribute who it does belong to. Don&#39;t transmit or share any materials that you can&#39;t find a source for.</li>
	<li>
		If possible use, only materials that have a Creative Commons license or that you have permission to use.</li>
</ul>
<p>
	<a href="http://www.chillingeffects.org/copyright/faq.cgi#QID736">Fair use</a> under United States law allows for the "reproduction and use of work, notwithstanding the rights of the author, for limited purposes such as criticism, comment, news reporting, teaching, scholarship, and research."</p>
<p>
	<strong>Going back to the original question, should you abandon the Pinterest ship?</strong></p>
<div class="asidebg pull-right" style="undefined">
	<p>
		<strong>Stem the flow of copyright infringement by stopping pins</strong></p>
	<p>
		Content owners who do not want their material shared on Pinterest can add a small piece of code that prevents users from "pinning" anything from that particular site.</p>
	<p>
		<em>&lt;meta name="pinterest" content="nopin" /&gt;</em></p>
	<p>
		A quick fix solution, yes, but it doesn&#39;t solve the larger issue of content usage on the Internet at large.</p>
</div>
<p>
	No.</p>
<p>
	Not unless you also abandon Tumblr, YouTube, Facebook, Twitter and pretty much the Internet in general.</p>
<p>
	Don&#39;t abandon ship, just be more responsible. If you always attribute the original source of content and don&#39;t try to profit from content that isn&#39;t yours, you&#39;re in fair use territory. If in doubt, don&#39;t Pin it or share it or blog it or Tweet it or whatever.</p>
<div>
	<p>
		The problem in all of this is that the Internet is too big, too much a life of its own to be reigned in now. If you put content on the Internet, don&#39;t expect it to just sit there. People will find it, people will use it. People may steal it.</p>
</div>
<p>
	Your responsibility lies in <em>how you use content and how your give credit to its owner and source.</em></p>
<p>
	&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/should-you-stay-on-board-pinterest"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Should you stay on board Pinterest?+http://themetaq.com/articles/should-you-stay-on-board-pinterest"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, Social Media,]]></dc:subject>
            <dc:date>2012-04-03T14:59:24+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: La Boheme]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-la-bohmea            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-la-bohmea            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/10.jpeg" /><br /><br />                    La Boheme is "an Art Deco font with a modern twist." Perfect for anything, well, Bohemian.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-04-03T14:56:36+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Letterpress effect in Adobe Illustrator]]></title>
            <link>
                                http://themetaq.com/queue/letterpress-effect-in-adobe-illustrator            </link>
            <guid>
                                http://themetaq.com/queue/letterpress-effect-in-adobe-illustrator            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/lp_final.jpg" /><br /><br />                    Create letterpress style text in Adobe Illustrator
                    ]]>
                            </description>
            <dc:subject><![CDATA[Tips, Design Tips,]]></dc:subject>
            <dc:date>2012-04-02T15:55:20+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[typo/graphic posters]]></title>
            <link>
                                http://themetaq.com/queue/typo-graphic-posters            </link>
            <guid>
                                http://themetaq.com/queue/typo-graphic-posters            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/typographicposters.jpg" /><br /><br />                    A collection of well designed posters with a typographic flair. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography, Inspiration, Favorite Sites,]]></dc:subject>
            <dc:date>2012-04-02T15:00:22+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[The Dead Words]]></title>
            <link>
                                http://themetaq.com/queue/the-dead-words            </link>
            <guid>
                                http://themetaq.com/queue/the-dead-words            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/deadwordspromo.jpg" /><br /><br />                    The Dead Words is a on going lettering project by Karen To. It's a collection of lettering for omitted words through out centuries. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography, Inspiration, Tips, Content Tips,]]></dc:subject>
            <dc:date>2012-04-02T00:02:34+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Cartographic birds]]></title>
            <link>
                                http://themetaq.com/queue/cartographic-birds            </link>
            <guid>
                                http://themetaq.com/queue/cartographic-birds            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/bird-2.jpeg" /><br /><br />                    Lovely birds and plants constructed from maps by <strong><a href="http://www.thisiscolossal.com/2012/01/cartographic-birds-by-claire-brewster/">Claire Brewster</a></strong>.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration,]]></dc:subject>
            <dc:date>2012-03-29T15:06:03+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Typography, deconstructed]]></title>
            <link>
                                http://themetaq.com/queue/typography-deconstructed            </link>
            <guid>
                                http://themetaq.com/queue/typography-deconstructed            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/typedecon-letterpress-poster1.jpeg" /><br /><br />                    A comprehensive (and stylish) guide to the anatomy of type.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Tips,]]></dc:subject>
            <dc:date>2012-03-28T14:05:31+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Typography Served]]></title>
            <link>
                                http://themetaq.com/queue/typography-served            </link>
            <guid>
                                http://themetaq.com/queue/typography-served            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/typography-served.jpg" /><br /><br />                    Served is a showcase of selected creative professionals' work from the Behance Network.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration, Favorite Sites,]]></dc:subject>
            <dc:date>2012-03-27T15:00:58+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[A quick guide to WAMP and MAMP installations]]></title>
            <link>
                http://themetaq.com/articles/quick-wamp-and-mamp                            </link>
            <guid>
                http://themetaq.com/articles/quick-wamp-and-mamp                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/wamp-mamp.png" /><br /><br />
										<p>
	In his article, "<a href="http://themetaq.com/articles/amp-up-your-development-process">Amp Up Your Development Process</a>"&nbsp;Meta Q&rsquo;s Terris Kremer talked about the advantages of running an AMP (Apache, MySQL, PHP) stack on your local system. With all of the awesome benefits you get from running your own web development environment, there is no reason not to. Really.</p>
<p>
	So I&rsquo;m picking up the AMP article torch and will walk you through the AMP stack installation process for both <b>Windows-</b> and <b>Mac</b>-based systems (feel free to skip to the section that applies to your machine).</p>
<p>
	As for my fellow Linux users, I generally assume that you are used to the "figure it out process" by now and know what to do. In the event that you run into problems, <a href="http://themetaq.com/contact/ask-meta-q">send me a message</a>. Let me know what&rsquo;s going on, what &ldquo;flavor&rdquo; of Linux you are using, and I&#39;ll walk you through the process.</p>
<h2>
	Mac AMP, aka MAMP</h2>
<p>
	Let me begin with full disclosure: While my primary system is not a Mac, I do have to admit that Apple has done a lot of things right when it comes to user experience. The installation process here is cake!</p>
<p>
	Let&rsquo;s get started.</p>
<p>
	To install MAMP you will first need to download the core files from the <a href="http://mamp.info">MAMP Website</a>.</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-download-screen(1).jpeg" /></p>
<p>
	When the file has finished downloading, the MAMP Installer should begin. If it doesn&#39;t start automatically, double click on the MAMP icon in your Downloads folder. You will see a screen like the one below:</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-installer-start.jpeg" style="width: 600px; height: 427px; " /></p>
<p>
	Click: <i>Continue</i></p>
<p>
	The next screen will provide you information about what the software will be installed. Take a second to read over it, and then click <i>Continue</i>.</p>
<p>
	&nbsp;</p>
<p>
	Next up is the <i>Software License Agreement</i>. "Read" this agreement, and if you accept the terms and conditions, click <i>Continue</i>.</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-installer-license.jpeg" style="width: 600px; height: 426px; " /></p>
<p>
	In the next screen you can choose which users have access to the MAMP Application after it has been installed. Select the users you want to be able to access MAMP and click <i>Continue</i>. My system only has one user so your screen may look a little different than the one shown below.</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-installer-users(1).jpeg" /></p>
<p>
	You are now ready to begin the installation process, click <i>Install</i>.</p>
<p>
	Depending on your system configuration, you may be asked to enter your Administrator username and password.</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-installer-install-it(1).jpeg" /></p>
<p>
	The installer will run, and about 30 seconds later you should see the following screen:</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-installer-install-complete(2).jpeg" style="width: 598px; height: 423px; " /></p>
<p>
	Seriously, that is all it takes...</p>
<p>
	<b>Now, lets fire it up!</b></p>
<p>
	In order to be able to run your local environment you first have to start up your MAMP Server. To do this, click on Applications &rarr; MAMP then select the <i>MAMP</i> application icon.</p>
<p>
	&nbsp;</p>
<p>
	After you have opened the MAMP Application you should see the following</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-server-control-start-stop.jpeg" style="width: 399px; height: 325px; " /></p>
<p>
	If <i>Apache Server</i> and <i>MySQL Server</i> appear in red like you see above, this means that the servers didn&#39;t start. Click <i>Start Servers</i>. Your system will "think" for a minute, and then the status of your servers should turn from red to green like so:</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-server-online.jpeg" style="width: 400px; height: 325px; " /></p>
<p>
	Your local server is now online!</p>
<p>
	Lets test it out really quick...</p>
<p>
	Click on the button that says <i>Open start page</i>. Your default browser should open and take you to a page that looks like this:</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-server-start-page(1).jpeg" /></p>
<p>
	This is the default page for your MAMP Server. It provides you information about the software you are running, your host information and it confirms that your system is online.</p>
<p>
	Let&rsquo;s finish this tutorial off by creating a simple project so you can see how your local web server works.</p>
<p>
	To begin, open up your Applications directory and navigate to MAMP. In this directory, you should see a folder called <i>htdocs</i>. This is your web directory. Any files you want your local web server to render need to be stored in this directory. Create a new folder inside of <i>htdocs</i> called "test."</p>
<p>
	Now, open TextEdit and at the very top of the document, enter the following:</p>
<div>
	<pre>
<code>&#10;  &lt;h1&gt;&#10;    &lt;?php echo "Hello World"; ?&gt;&#10;  &lt;/h1&gt;&#10;</code>&#10;</pre>
</div>
<p>
	Name the file "helloworld.php" and save it to the test folder you created above. Be sure you save the document as &ldquo;plain text&rdquo; and include the .php file extension.</p>
<p>
	Your MAMP/htdocs directory should now look like this:</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-server-with-helloworld.jpeg" style="width: 700px; height: 398px; " /></p>
<p>
	Now, open your favorite browser and point the URL to:</p>
<p>
	<code>http://localhost:8888/test/helloworld.php</code></p>
<p>
	You should see the following page:</p>
<p>
	<img alt="" src="/images/uploads/articles/mamp-server-helloworld-show(1).jpeg" /></p>
<p>
	And that&#39;s it. Your local server is now up and running. Drop in your web projects and start working away!</p>
<h2>
	Windows AMP, aka WAMP</h2>
<p>
	For all of the Windows users out there, let&rsquo;s do a quick installation of the WAMP Server so you can get your local environment up and running.</p>
<p>
	To begin, you will want to download the installation files from <a href="http://www.wampserver.com">WAMPserver.com</a>.</p>
<p>
	After the file has been downloaded, run the installer. If Windows requests permission for the installer to run, click <i>Yes</i> to give it approval.</p>
<p>
	When the installer launches, you will be greeted with a screen that looks like this:</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-install-1.jpg" style="width: 513px; height: 398px; " /></p>
<p>
	Click <i>Next</i> to begin the configuration process.</p>
<p>
	The <i>License Agreement</i> should appear on your screen. "Read" the terms of agreement. If you accept them, select <i>I accept the agreement</i> and click <i>Next</i>. INSERT IMAGE</p>
<p>
	You will now need to specify where you would like the core files for WampServer to be saved. For this installation, let&#39;s keep it simple and leave it set to the default location.</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-install-2.jpg" style="width: 513px; height: 398px; " /></p>
<p>
	WAMP will then ask what type of icons you would like to create for the software. Allow WAMP to create both a Desktop icon and a Quick Launch icon. You can delete these later if you want.</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-install-3.jpg" style="width: 513px; height: 398px; " /></p>
<p>
	Finally, click <i>Install</i>. WampServer will begin setting up the system.</p>
<p>
	After the installation process has completed, depending on your security settings, Vista and Windows 7 may display a "Windows Security Alert" message box like the one below:</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-install-5.jpg" style="width: 541px; height: 387px; " /></p>
<p>
	Make sure <i>Private networks such as my home or work network</i> is checked and <i>Public networks</i> is <b>unchecked</b>, then click <i>Allow access</i>.</p>
<p>
	After the installation process has completed, WampServer will request that you setup your PHP Mail Parameters. Leave these set to the default for now; you can change them later. Click <i>Next</i> to continue.</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-install-6.jpg" style="width: 513px; height: 398px; " /></p>
<p>
	The installation process is complete!</p>
<p>
	Be sure that the <i>Launch WampServer 2</i> now check box is <b>checked</b> and click <i>Finish</i>. At this point, WAMP should start automatically for you.</p>
<p>
	Onward to the fun part.</p>
<p>
	First, let&rsquo;s check to make the server is up and running. Open your favorite browser and point the URL to:</p>
<p>
	<code>http://localhost</code></p>
<p>
	You should see a window that looks like this:</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-run-1(1).jpg" /></p>
<p>
	If you get an <i>Unable to Connect</i> or a <i>Webpage not available</i> message, this most likely means that your server is not on. Go to your quick launch toolbar, click the WampServer icon, and then select <i>Start all Services</i>. Refresh your browser and hopefully everything should load.</p>
<p>
	Your server is now running. Let&rsquo;s create a quick and easy project.</p>
<p>
	Open up your Applications Folder and navigate to the WAMP directory (it should be in the root directory of your hard drive). In this directory, you should see a folder called "www." This is your "web directory." Any files you want your local webserver to render need to be stored in this directory.</p>
<p>
	Create a new folder inside of "www" called "test."</p>
<p>
	Now, open Notepad and at the very top of the document, enter the following:</p>
<div>
	<pre>
<code>&#10;  &lt;h1&gt;&#10;    &lt;?php echo "Hello World"; ?&gt;&#10;  &lt;/h1&gt;&#10;</code>&#10;</pre>
</div>
<p>
	Name the file "helloworld.php" and save it the "test" folder you created above. Be sure you save the document as plain text and include the .php file extension.</p>
<p>
	Your <i>c:\wamp\www</i> directory should now look like this:</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-run-2(1).jpg" /></p>
<p>
	Now, open your favorite browser and point the URL to:</p>
<p>
	<code>http://localhost/test/helloworld.php</code></p>
<p>
	You should see the following page:</p>
<p>
	<img alt="" src="/images/uploads/articles/wamp-run-3(1).jpg" /></p>
<p>
	And that&#39;s all there is to it!</p>
<p>
	Load up your web projects and start working on your local environment.</p>
<p>
	<b>Stuck on a step? Have a quick question? Leave a comment below or send a message.</b></p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/quick-wamp-and-mamp"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=A quick guide to WAMP and MAMP installations+http://themetaq.com/articles/quick-wamp-and-mamp"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Tips, Code Tips,]]></dc:subject>
            <dc:date>2012-03-27T14:59:52+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Meta Q&amp;A: Brian Litzinger]]></title>
            <link>
                http://themetaq.com/articles/meta-qa-brian-litzinger                            </link>
            <guid>
                http://themetaq.com/articles/meta-qa-brian-litzinger                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/MetaQBrianLitzinger.jpg" /><br /><br />
										<p>
	Bundle up and nerd out, folks. We&#39;re heading to Minnesota to chat with a project lead from <a href="http://nerdery.com/">The Nerdery,</a> Brian Litzinger (<a href="https://twitter.com/#!/litzinger">@litzinger</a> and&nbsp;<a href="https://twitter.com/#!/boldminded">@boldminded</a>). The Nerdery has website development and project collaboration "down to a science," and Litzinger is one of the many talented individuals that make being a web nerd look pretty darn cool.</p>
<p>
	<strong>MQ: Tell us about your work in 140 characters or less.</strong></p>
<p>
	<strong>BL: </strong>I am a project lead who focuses on EE and add-on development at <a href="http://www.nerdery.com/Bl">The Nerdery</a>. I like to solve real-world problems.</p>
<p>
	<strong>MQ: How/why did you get into the web industry? Why do you stick with it?</strong></p>
<div class="pull-right-quote" style="undefined">
	<blockquote>
		<p>
			"If I could change one thing about ExpressionEngine it would be:&nbsp;&nbsp;A built-in migration tool to easily sync a development site with production, and a production site with development. Something along the lines of Rails migrations would be sweet."</p>
	</blockquote>
</div>
<p>
	<strong>BL:</strong>&nbsp;I was in college for a graphic design, and spent a lot of time outside of my design classes teaching myself HTML and Flash animation.&nbsp;This was 1998-2001 so the "interweb" was all the rage, and I was naturally drawn to it.</p>
<p>
	<strong>MQ: Why do you use ExpressionEngine?</strong></p>
<p>
	<strong>BL:&nbsp;</strong>Because of its flexibility and the maturity and professionalism of the community.&nbsp;It pains me to use anything but EE these days, even with its quirks and flaws, it&#39;s still miles above other CMSs, and not to discredit EE itself, but the add-ons from the community attribute to a lot of this. EE was built with extensibility in mind from the start, not as an afterthought, and I think the EE community has taken advantage of it and delivered better add-ons than most other CMSs.</p>
<p>
	<strong>MQ: What was the first EE site you ever worked on? What was that experience like?</strong></p>
<p>
	<strong>BL:&nbsp;</strong>I had been exploring EE for a couple months while working as a front-end/PHP developer in 2008, but the first production site I did was for a local cycling company, <a href="http://twinsix.com/">twinsix.com</a>. It&#39;s the only freelance site I maintain to date. Prior to that site I used Wordpress or home brew content management systems, and I haven&#39;t looked back since.</p>
<p>
	<strong>MQ: What does a typical workday look like for you?</strong></p>
<p>
	<strong>BL:&nbsp;</strong>My days can range from eight hours of head-down programming, or little to no programming and assisting sales engineers with project quotes or assisting other developers with EE related tasks/issues and random meetings. I&#39;ve had a couple days where I&#39;ve billed time to 10 different projects. No two days are alike for me, which can be a good or bad thing&hellip; I haven&#39;t quite figured that out yet.</p>
<p>
	<strong>MQ: How do you stay passionate about your work? What do you do to refocus when you&#39;re having a bad day?</strong></p>
<div>
	<strong>BL:&nbsp;</strong>My add-ons keep me passionate about my career right now to be honest. I like my day job and the variety and challenges that come with it, but at the end of the day I&#39;m still working on someone else&#39;s project or problem. With my add-ons, I get to create whatever I want and how I want it. It&#39;s the closest thing I have to designing or creating art, which I haven&#39;t done in years. The add-ons are my art projects right now.</div>
<p>
	<strong>My favorite EE site I worked on is</strong>: I&#39;m going to have to say <a href="http://victaulic.com/">victaulic.com</a>&nbsp;even though I&#39;m going on nine months of working on it and am tired of looking at its code.&nbsp;Hopefully it&#39;ll be profiled on <a href="http://expressionengine.com/">expressionengine.com</a> soon, and you can read all about it. Describing what was done on it would be too long for this interview.</p>
<p>
	<strong>My favorite EE site someone else did is</strong>:&nbsp;I really like the <a href="http://visitphilly.com/">visitphilly.com</a> site by HappyCog. Those guys knock it out of the park every time.</p>
<p>
	<strong>If I could change one thing about ExpressionEngine it would be:&nbsp;</strong>&nbsp;A built-in migration tool to easily sync a development site with production, and a production site with development. Something along the lines of Rails migrations would be sweet. I already have solutions for multi-lingual and workflow issues, but migrations is one thing that elludes me and everyone else in the community right now, and is often requested of our "enterprise" level clients.</p>
<p>
	<strong>If I had once piece of advice for someone trying to break into the web industry it would be:&nbsp;</strong>Doing only what is required isn&#39;t going to cut it. Spend as much time as you can learning everything you can.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/meta-qa-brian-litzinger"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Meta Q&amp;A: Brian Litzinger+http://themetaq.com/articles/meta-qa-brian-litzinger"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Inspiration, People,]]></dc:subject>
            <dc:date>2012-03-27T14:58:09+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: What a Mench!]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-what-a-mench            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-what-a-mench            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/mensch.jpeg" /><br /><br />                    Mench is a condensed uppercase typeface for the comes with regular, thin, inline and bold weights.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-27T14:53:49+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[swissmiss: designer Tina Roth Eisenberg&#8217;s blog]]></title>
            <link>
                                http://themetaq.com/queue/swissmiss-designer-tina-roth-eisenbergs-blog            </link>
            <guid>
                                http://themetaq.com/queue/swissmiss-designer-tina-roth-eisenbergs-blog            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/swiss-miss-fonts.jpg" /><br /><br />                    It covers everything from art, branding, interface design, photography, typography and many other categories.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code, Design, Inspiration, Favorite Sites,]]></dc:subject>
            <dc:date>2012-03-26T15:00:43+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[PASS/PORT]]></title>
            <link>
                                http://themetaq.com/queue/pass-port            </link>
            <guid>
                                http://themetaq.com/queue/pass-port            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/5784c03ba679ab8a056ab0bf9891b527.jpeg" /><br /><br />                    PASS/PORT is a project by <a href="http://www.marwankaabour.com/">Marwan Kaabour</a> investigates the different parts of the travel process and how the passport is the very essence of restriction.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration,]]></dc:subject>
            <dc:date>2012-03-22T14:57:01+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[We Love Typography]]></title>
            <link>
                                http://themetaq.com/queue/we-love-typography            </link>
            <guid>
                                http://themetaq.com/queue/we-love-typography            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/cag-1.jpeg" /><br /><br />                    A sweet typography blog with amazing imagery and the ability to filter your search by color.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-20T15:00:38+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Meta Q Queue for you: The wait is over]]></title>
            <link>
                http://themetaq.com/articles/meta-q-queue-for-you                            </link>
            <guid>
                http://themetaq.com/articles/meta-q-queue-for-you                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/meta-q-queue2.jpg" /><br /><br />
										<blockquote>
	The wait is officially over. The Meta Q Queue is ready for <a href="http://themetaq.com/queue/submit">public submissions</a>, and we can&rsquo;t wait to hear from you.</blockquote>
<p>
	For those who aren&rsquo;t familiar with <a href="http://themetaq.com/queue">The Queue</a>, it was originally created around the idea that like all good designers and developers, we are constantly finding websites with great tips, inspiration, tutorials and things to tickle your funny bone.</p>
<div class="asidebg pull-right" style="undefined">
	<h3>
		<strong>Want more Queue?</strong></h3>
	<p>
		Check it out&nbsp;<a href="http://themetaq.com/queue">here</a>&nbsp;or visit individual contributors&rsquo; Queue streams for a more personalized experience.</p>
	<ul>
		<li>
			<a href="http://themetaq.com/queue/contributor/2">Susan Snipes</a></li>
		<li>
			<a href="http://themetaq.com/queue/contributor/4">Laura Riegel</a>&nbsp;&nbsp;</li>
		<li>
			<a href="http://themetaq.com/queue/contributor/5">Lindsay McComb</a></li>
		<li>
			<a href="http://themetaq.com/queue/contributor/3">Terris Kremer</a></li>
		<li>
			<a href="http://themetaq.com/queue/contributor/6">Clinton Reeves</a></li>
	</ul>
	<h3>
		<strong>Or better yet,&nbsp;<a href="http://themetaq.com/queue/submit">submit your own</a>&nbsp;Queue post!</strong></h3>
</div>
<p>
	We love being able to share what we love, but we also love collaborating. There are just way too many cool things on the Internet for us to find. That&rsquo;s where you come in. We&rsquo;re opening up the Queue for reader submissions.</p>
<p>
	See something cool that&rsquo;s design-y or tech-y? Share it <a href="http://themetaq.com/queue/submit">here</a>.</p>
<p>
	In honor of our new and improved Queue, I&rsquo;m revisiting some of the best Queue posts to date.</p>
<h2>
	<strong>The Best of The Queue</strong></h2>
<h3>
	Templates</h3>
<p>
	If you want to save time, 960 pixel grid templates are amazing. Visit <a href="http://www.robbiemanson.com/resources/960px-grid-templates/">robbiemanson.com</a> for a variety of free, downloadable Photoshop and Fireworks templates. Each template is based on a 960-pixel wide design and consists of anywhere from three to sixteen columns.</p>
<p>
	<br />
	<a href="http://www.robbiemanson.com/resources/960px-grid-templates/"><img alt="960 Grid Templates" src="/images/uploads/articles/960-grid-templates.jpg" style="border-width: 0px; border-style: solid;" /></a></p>
<h3>
	Placeholder Content Generators</h3>
<p>
	To keep clients focused on critiquing a prototype site&rsquo;s design and functionality verses the content, placeholder text and imagery are vital. Two great content generators are <a href="http://www.blindtextgenerator.com/lorem-ipsum">Blind Text Generator</a> and <a href="http://dummyimage.com/">Dynamic Dummy Image Generator</a>.</p>
<p>
	The <a href="http://www.blindtextgenerator.com/lorem-ipsum">Blind Text Generator</a> allows users to select the amount of dummy text they want, based off of either the number of words or characters. It also has the added bonus of letting users choose the number of paragraphs the text is divided into.</p>
<p>
	<br />
	<a href="http://www.blindtextgenerator.com/lorem-ipsum"><img alt="Blind Text Generator" src="/images/uploads/articles/blind-txt-generator.jpg" style="border-width: 0px; border-style: solid;" /></a></p>
<p>
	The <a href="http://dummyimage.com/">Dynamic Dummy Image Generator</a> allows users to input their own specs for placeholder images, including height, width, background color, foreground color, text and file format. Users don&rsquo;t even have to hit enter: &nbsp;the dummy image will automatically generate!</p>
<p>
	<br />
	<a href="http://dummyimage.com/"><img alt="Dynamic Dummy Image Generator" src="/images/uploads/articles/dummy-img-generator.jpg" style="width: 588px; height: 369px; border-width: 0px; border-style: solid;" /></a></p>
<h3>
	Design</h3>
<p>
	When looking for some fresh inspiration, <a href="http://heathersloane.com/">Heather Sloane&rsquo;s portfolio</a> is a great place to go. It&rsquo;s packed full of funky, original illustrations.</p>
<p>
	<a href="http://heathersloane.com/"><img alt="Heather Sloane's Portfolio" src="/images/uploads/articles/heather-sloane.jpg" style="width: 588px; height: 347px; border-width: 0px; border-style: solid;" /></a></p>
<p>
	For one of the most outstanding design showcases out there, check out <a href="http://www.thebestdesigns.com/">The Best Designs</a>. It&rsquo;s loaded with amazing website samples that are hip and trendy, but still translate well for client work.</p>
<p>
	<br />
	<a href="http://www.thebestdesigns.com/"><img alt="The Best Designs" src="/images/uploads/articles/the-best-designs.jpg" style="width: 588px; height: 462px; border-width: 0px; border-style: solid;" /></a></p>
<p>
	<a href="http://www.colourlovers.com/">COLOURlovers</a> is another favorite. It has everything related to color inspiration -- from color chips to already assembled color palettes. In the palette search form, users can type in a specific color, and up pops pages of palettes incorporating the color of choice.</p>
<p>
	<a href="http://www.colourlovers.com/"><img alt="COLOURlovers" src="/images/uploads/articles/colour-lovers(1).jpg" style="width: 587px; height: 441px; margin-left: 0px; margin-right: 0px;" /></a></p>
<h3>
	Coding</h3>
<p>
	For a classy jQuery slideshow, <a href="http://nivo.dev7studios.com/">Nivo Slider</a> can&rsquo;t be beat.&nbsp; The plugin is free for non-WordPress sites and is easy to install. It includes sixteen transitions, captions and directional controls.</p>
<p>
	<a href="http://nivo.dev7studios.com/"><img alt="Nivo Slider" src="/images/uploads/articles/nivo-slider(1).jpg" style="width: 588px; height: 342px; border-width: 0px; border-style: solid;" /></a></p>
<p>
	The <a href="http://css3generator.com/">CSS3 Generator</a> is a developer&rsquo;s best friend. Don&rsquo;t struggle to remember all the various lines of code used in CSS3 styles &ndash; simply fill out the different variable fields, and the generator will automatically create code for border radius, box and text shadow, RGBA, transitions, transforms and many other CSS3 styles.</p>
<p>
	<a href="http://css3generator.com/"><img alt="CSS3 Generator" src="/images/uploads/articles/css3-generator(1).jpg" style="border-width: 0px; border-style: solid;" /></a></p>
<p>
	For clients (or anyone, really) who dig background images that expand the full width and height of a browser&rsquo;s window, <a href="http://srobbin.com/jquery-plugins/backstretch/">Backstretch</a> is a must. It&rsquo;s an easy-to-use jQuery plugin developed by Scott Robinson that creates &ldquo;dynamically-resizing&rdquo; background images.</p>
<p>
	<br />
	<a href="http://srobbin.com/jquery-plugins/backstretch/"><img alt="Backstretch" src="/images/uploads/articles/backstretch.jpg" style="width: 588px; height: 210px; border-width: 0px; border-style: solid;" /></a></p>
<p>
	Last but not least, for mega drop-down menu know-how, check out <a href="http://net.tutsplus.com/tutorials/html-css-techniques/how-to-build-a-kick-butt-css3-mega-drop-down-menu/"><em>How to Build a Kick-Butt CSS3 Mega Drop-Down Menu</em></a> on Nettuts+. This article goes over all the nitty-gritty details needed to create a serious mega menu.</p>
<p>
	<a href="http://net.tutsplus.com/tutorials/html-css-techniques/how-to-build-a-kick-butt-css3-mega-drop-down-menu/"><img alt="How to Build a Kick-Butt CSS3 Mega Drop-Down Menu" src="/images/uploads/articles/mega-menu.jpg" style="width: 588px; height: 232px; border-width: 0px; border-style: solid;" /></a></p>
<h3>
	See something, say something:&nbsp;<strong><a href="http://themetaq.com/queue/submit">submit&nbsp;</a>an item for the Queue.</strong></h3>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/meta-q-queue-for-you"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Meta Q Queue for you: The wait is over+http://themetaq.com/articles/meta-q-queue-for-you"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Inspiration, Favorite Sites,]]></dc:subject>
            <dc:date>2012-03-20T15:00:02+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Do retweets mean endorsements?]]></title>
            <link>
                http://themetaq.com/articles/do-retweets-mean-endorsement                            </link>
            <guid>
                http://themetaq.com/articles/do-retweets-mean-endorsement                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/doRTsmeanendorsements.jpg" /><br /><br />
										<p class="intro">
	A young man in South Korea,&nbsp;<a href="https://twitter.com/#!/seouldecadence">Park Jeonggeun</a>, was detained in early February 2012 for retweeting the message "Long live Kim Jong-il" from the official account of the North Korean government.&nbsp;</p>
<p class="intro">
	Park, a political activist, also added a photo of a North Korean soldier altered to show what the <a href="http://www.bbc.co.uk/news/technology-16852438">BBC described</a> as "his own frowning face and a bottle of whiskey."&nbsp;The South Korean government has accused him of violating the National Security Law &ndash; which makes any act "benefiting the enemy" illegal. <a href="http://www.amnesty.org/">Amnesty International</a> has rallied behind Park calling the charges "simply ludicrous" and a "fail[ure] to understand sarcasm."&nbsp;</p>
<p class="intro">
	Was it totally clear that Park&#39;s retweet was not an endorsement of the North Korean regime? The verdict is still out.</p>
<p class="intro">
	Park is scheduled to go on trial in early March at the Suwon District Court in Seoul.</p>
<p class="intro">
	While most Twitter users won&#39;t face jailtime for tweets, Park&rsquo;s retweet brings up a larger issue, with applications both personally and professionally: <strong>Do retweets mean endorsements?</strong></p>
<h3>
	<strong>Short answer no, long answer yes with a but</strong></h3>
<p>
	In essence, a retweet (RT) is an implied endorsement. But it&rsquo;s also so much more than that. It&rsquo;s a way to interact with your followers. It&rsquo;s a way to disseminate information. It&rsquo;s a way to create dialogue. While retweets have become integral in how news and information are circulated online, it&rsquo;s <em>how</em> users retweet that matters.</p>
<p>
	In Twitter&rsquo;s unspoken etiquette, an RT generally means that another Twitter user finds your message worthy of resharing. Does that mean that the user agrees with the tweet? Not necessarily.</p>
<p>
	Even users who specifically state in their profiles that <em>retweets do not equal endorsements</em> may find their retweets misconstrued &ndash; many and most Twitter users are reading tweets on the go from smartphones or apps, and they aren&rsquo;t checking user profiles.</p>
<p>
	So how do you make sure your tweets aren&rsquo;t misconstrued? Context, my friends.</p>
<h3>
	<strong>How to succeed at retweeting without really trying</strong></h3>
<p>
	A retweet, without any personal comment, can easily be seen as full (albeit tacit) endorsement.</p>
<p>
	Most users view retweeting (and tweeting in general) as more of a "Hey you should check out this interesting piece of information" rather than any specific endorsement.</p>
<p>
	However, if it&rsquo;s possible that something <em>could be</em> misconstrued, <em>it will be</em>. Therefore, it&rsquo;s best to make it very clear what your motive is behind the retweet.</p>
<h3>
	<strong>Retweeting, AP style</strong></h3>
<p>
	The <a href="http://www.ap.org/">Associated Press (AP)</a> has a great <a href="http://www.ap.org/pages/about/pressreleases/documents/SocialMediaGuidelinesNov.2011.pdf">social media policy</a> for its employees&rsquo; personal accounts (policies that may be worth taking in mind for your organization&#39;s or personal Twitter account) and differentiates between naked or "unadorned" tweets (retweets sans comment) and reporting opinionated material. The difference lies in context, "colons and quote marks."</p>
<div class="bdr-t-s mvm phm pbs bg-grey">
	<p>
		<strong>From the AP 2011 Social Media Guideline:</strong></p>
	<p>
		A retweet with no comment of your own can easily be seen as a sign of approval of what you&rsquo;re relaying.</p>
	<p>
		<strong>Example</strong>:</p>
	<ul>
		<li>
			RT@jonescampaign smith&rsquo;s policies would destroy our schools</li>
		<li>
			RT@dailyeuropean at last, a euro plan that works bit.ly/xxxxx.</li>
	</ul>
</div>
<p>
	The above tweets are "naked" retweets with no comment, therefore implying endorsement.</p>
<p>
	However, with a little context, it&#39;s possible to make it clear that you&#39;re simply reporting something. To do so, add a comment and/or separate the tweet with colons or quotation marks.</p>
<div class="bdr-t-s mvm phm pbs bg-grey">
	<p>
		<strong>The AP Social Media Guideline goes on to say:</strong></p>
	<p>
		We can judiciously retweet opinionated material if we make clear we&rsquo;re simply reporting it, much as we would quote it in a story. Colons and quote marks help make the distinction:</p>
	<p>
		<strong>Example:</strong></p>
	<ul>
		<li>
			RT Jones campaign now denouncing smith on education:&nbsp; @jonescampaign smith&rsquo;s policies would destroy our schools</li>
		<li>
			RT big European paper praises euro plan: @dailyeuropean "at last, a euro plan that works" bit.ly/xxxxx.</li>
	</ul>
</div>
<h3>
	<strong>It&rsquo;s all about context</strong></h3>
<p>
	While most users won&rsquo;t find themselves in political hotwater over retweets (though do take care), it is important to keep in mind that Twitter is a very public extension of the person or organization behind it. Essentially, you are broadcasting how you want the world to see you.</p>
<p>
	Be aware of the pitfalls of retweeting without context or attribution and do so wisely. If you want to avoid confusion in a retweet&rsquo;s intention, make it very clear that this is another user&rsquo;s opinion.</p>
<h3>
	<strong>What do you think about retweets and endorsements?</strong></h3>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/do-retweets-mean-endorsement"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Do retweets mean endorsements?+http://themetaq.com/articles/do-retweets-mean-endorsement"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, Social Media, Tips,]]></dc:subject>
            <dc:date>2012-03-20T14:59:47+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: Nevis]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-nevis            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-nevis            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/nevis.jpeg" /><br /><br />                    Nevis is an "assertive and bold" sans serif font that still seems friendly. Even in all caps. 
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-20T14:51:49+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type for You: a typography blog]]></title>
            <link>
                                http://themetaq.com/queue/type-for-you-a-typography-blog            </link>
            <guid>
                                http://themetaq.com/queue/type-for-you-a-typography-blog            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/AlphabetTopography_Image02_760x470px.jpeg" /><br /><br />                    
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-19T15:00:13+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Let&#8217;s embark!]]></title>
            <link>
                                http://themetaq.com/queue/lets-embark            </link>
            <guid>
                                http://themetaq.com/queue/lets-embark            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/bg_featured.jpeg" /><br /><br />                    An awesome trip-planning app that works with or without an Internet or cellular connection.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Design, Inspiration,]]></dc:subject>
            <dc:date>2012-03-15T15:06:04+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Simplified subway maps]]></title>
            <link>
                                http://themetaq.com/queue/simplified-subway-maps            </link>
            <guid>
                                http://themetaq.com/queue/simplified-subway-maps            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/simplified-subway.jpeg" /><br /><br />                    Super-simplified subway line maps from Lineposter.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design,]]></dc:subject>
            <dc:date>2012-03-14T14:06:03+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[32 Inspiring Examples of Amazing Layout and Typography]]></title>
            <link>
                                http://themetaq.com/queue/32-inspiring-examples-of-amazing-layout-and-typography            </link>
            <guid>
                                http://themetaq.com/queue/32-inspiring-examples-of-amazing-layout-and-typography            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/04.png" /><br /><br />                    
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography, Inspiration, Cool Stuff,]]></dc:subject>
            <dc:date>2012-03-13T15:00:44+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Amp Up Your Development Process with an Apache, MySQL &amp; PHP stack]]></title>
            <link>
                http://themetaq.com/articles/amp-up-your-development-process                            </link>
            <guid>
                http://themetaq.com/articles/amp-up-your-development-process                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/amp-title.png" /><br /><br />
										<p class="intro">
	To all those web designers and front end developers out there that aren&#39;t running an AMP (<a href="http://www.apache.org/">Apache</a>, <a href="http://www.mysql.com/">MySQL</a>, <a href="http://www.php.net/">PHP</a>) package on your machine, here are a few reasons why you should drop everything right now and install one.</p>
<div class="asidebg pull-right">
	<p>
		<strong>Apache?</strong></p>
	<p>
		An open source Hyper Text Transfer Protocol server for modern operating systems. When you ask for something on the internet, Apache responds.</p>
	<p>
		<strong>MySQL?</strong></p>
	<p>
		An open source database and the world&#39;s most popular at that. When you want to store data on the web, MySQL know&#39;s what&#39;s up.</p>
	<p>
		<strong>PHP?</strong></p>
	<p>
		An open source scripting language that runs on the server, not in your browser. PHP knows how to speak Apache and MySQL quite well, so it fits right in our AMP stack.</p>
</div>
<h3>
	<strong>Easy and open source</strong></h3>
<p>
	The lovely open-sourcers of the world have created free and relatively easy to install packages for whatever type of machine you run on. There&#39;s <a href="http://www.mamp.info/">MAMP</a> for Mac users, <a href="http://www.wampserver.com/en/">WAMP</a> for Windows users, and <a href="http://www.lamphowto.com/">LAMP</a> for Linux users. <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is a package that works on all of them.</p>
<h3>
	<strong>Served locally</strong></h3>
<p>
	When you install an AMP package, you&#39;re setting up your machine to run much like the servers you use to send files through FTP. This means you can develop sites using MySQL databases and PHP applications right on your machine. Of course you still need to upload the files to a public server to make your site visible to world but, while you&rsquo;re developing and testing and breaking and fixing, local is <em>just better</em>.</p>
<h3>
	<strong>It&#39;s time to get time back</strong></h3>
<p>
	Without an AMP package, you can&#39;t really develop applications that use PHP or MySQL databases with files that sit on your local machines. Instead, you&rsquo;re stuck using FTP every time you want to make a change and want see the results. Waiting for a file to transfer takes precious time out of your life that you&#39;ll never get back and, although it might not seem like much to wait a few seconds, those seconds ad up over time.</p>
<h3>
	<strong>PHPeazy</strong></h3>
<p>
	While you can still save HTML files on your local machine and run them in a browser, PHP files need to run on a server. PHP is a server-side scripting language, after all. Even if you&rsquo;re not creating a complex PHP application, it&#39;s worth it to use PHP to attach partial files (like a header and footer) to your otherwise plain HTML files. This way you don&#39;t have to update more than one header or footer every time you want to make a change there (<a href="http://php.net/manual/en/function.include.php">See PHP includes</a>). Easy peazy!</p>
<h3>
	<strong>MySQL = My Database</strong></h3>
<p>
	More often than not, a dynamic site will need to store data in a database and, more often than not, it will be a MySQL database. So, of course, you may want to develop with a local MySQL database too. An AMP package will include <a href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a> (a graphical user interface for MySQL) that makes the set up, well, not so <em>nerdy</em>.</p>
<h3>
	<strong>The CMS</strong></h3>
<p>
	If you&rsquo;re developing with a PHP-based CMS (Content Management System) like Wordpress, Drupal, Joomla, or, Meta Q&rsquo;s favorite, ExpressionEngine, then you&#39;ll most certainly need a server running Apache, MySQL and PHP. With an AMP package installed on your local machine you can bring development home and install the CMS right on your machines.</p>
<h3>
	<strong>Offline? No big deal.</strong></h3>
<p>
	While wireless connections are becoming easier to find when you&rsquo;re out and about, there are still times when connecting to the Internet is simply not possible. If you&#39;re creating a site that uses PHP or MySQL, then having an AMP package makes it possible to work on it any time, anywhere. You can develop on an airplane or in the park. Perhaps you&#39;ve run out of coffee shop wireless minutes or you don&#39;t feel safe connecting to them at all. No problemo; you don&#39;t need a connection to run AMP.</p>
<h3>
	<strong>What are you still doing here?</strong></h3>
<p>
	Having an AMP package installed just makes sense. You&#39;ll cut development time, you don&#39;t have to worry about breaking something on a live site and you can develop a dynamic site anywhere, anytime. So, what are you still doing here? Go install your AMP package now.</p>
<p>
	If you need help getting your AMP package up and running, the Meta Q team is here to help. Ask a question in the comments below or send a direct message to us via the <a href="http://themetaq.com/contact/ask-meta-q">Ask Meta Q</a> page.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/amp-up-your-development-process"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Amp Up Your Development Process with an Apache, MySQL &amp; PHP stack+http://themetaq.com/articles/amp-up-your-development-process"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Code, Code Process,]]></dc:subject>
            <dc:date>2012-03-13T14:59:45+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Meta Q&amp;A: Caroline Blaker]]></title>
            <link>
                http://themetaq.com/articles/meta-qa-caroline-blaker                            </link>
            <guid>
                http://themetaq.com/articles/meta-qa-caroline-blaker                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/MetaQACarolineBlaker.jpg" /><br /><br />
										<p class="caption">
	<span style="color: rgb(68, 68, 68); font-family: proxima-nova-1, proxima-nova-2, sans-serif; font-size: 21px; line-height: 25px; text-align: left; ">We&#39;re excited to get to know more of the amazing ExpressionEngine community - all over the world. We&#39;re heading to Los Ranchos, NM to chat with&nbsp;Caroline Blaker&nbsp;of <a href="http://petroglyphcreative.com/">Petroglyph Creative</a> (<a href="https://twitter.com/#!/carolinecblaker">@carolinecblaker</a>, <a href="https://twitter.com/#!/artnweb">@artnweb</a>), where she creates "ExpressionEngine websites in an art studio environment." &nbsp;Blaker has turned</span><span style="color: rgb(68, 68, 68); font-family: proxima-nova-1, proxima-nova-2, sans-serif; font-size: 21px; line-height: 25px; text-align: left; ">&nbsp;development from a hobby into a real art form.</span></p>
<p>
	<strong>MQ: Tell us about your work in 140 characters or less.</strong></p>
<p>
	<strong>CB: </strong>I develop websites in ExpressionEngine and create art in the same space.</p>
<p>
	<strong>MQ: How/why did you get into the web industry? Why do you stick with it?</strong></p>
<p>
	<strong>CB:</strong> As soon as I graduated art school from Washington University in 2003, I became acutely aware of the current and future needs of a website [and that] as an artist &nbsp;[I would need] to reach the largest possible audience. I dove right back in at a nearby community college where I was able to learn the basics of web development in a certificate program - as well as that everything about the Internet was on the internet. Thereafter, the path became a game. I was constantly drawn to solve the next puzzle and reap the reward - a new technique, and a new puzzle. Within a couple of years, my first "real job" was a web content position. The hobby kept on going.</p>
<div class="pull-right-quote" style="undefined">
	<blockquote>
		<p>
			"Make [web design] a hobby first. It&#39;s compulsory to love what you do in this industry before you declare yourself a professional, and the way to do that is to grow your passion through work you find to do on your own."</p>
	</blockquote>
</div>
<p>
	<strong>MQ: Why do you use ExpressionEngine?</strong></p>
<p>
	<strong>CB:</strong> I was introduced to EE the way a lot of developers are - through the offices of employers who use it and require updates and new sites built in it. They threw me right in with no training, and a year later, I wrote my first add-on for version 1.6.7. Its ease of use, consistency of support, and stability made it a winner over other technologies I was learning about, like Ruby on Rails.</p>
<p>
	<strong>MQ: What was the first EE site you ever worked on? What was that experience like?</strong></p>
<p>
	<strong>CB: </strong>It was later switched out, but <a href="http://TimeShareRelief.com/">TimeShareRelief.com</a> was my first site. The experience was thick - it involved member-only areas and 50-field forms. I also made my share of mistakes, like using {edit} tags instead of {stat} tags for member information display.</p>
<p>
	<strong>MQ: What does a typical workday look like for you?</strong></p>
<p>
	<strong>CB:</strong>I get to the office around 10 each day and begin by focusing on in-house projects. This might include a newsletter, art, site updates for the business, or billing. After lunch I begin client work and will continue with that until the end of the day, usually six p.m.</p>
<p>
	<strong>MQ: How do you stay passionate about your work? What do you do to refocus when you&#39;re having a bad day?</strong></p>
<p>
	<strong>CB: </strong>This is where the art comes in. I paint, I create creative apps (like <a href="http://twitterscap.es/">http://twitterscap.es</a>) and enjoy focusing on these "other" aspects of my job. I don&#39;t have a lot of bad days though - plenty of stressful days, and plenty of days where I just want to quit - but none of them are bad. "Bad" would mean that I would prefer they never happened - that is seldom the case. Nearly always, the part of the day that could be thrown away as "bad" yields some kind of breakthrough that causes permanent learning or appreciation. That&#39;s never bad.</p>
<p>
	Still, it&#39;s important to remember that everyone needs to take time away, no matter what.</p>
<div class="asidebg pull-right" style="undefined">
	<h3>
		<strong>&nbsp;Upcoming Projects:</strong></h3>
	<p>
		"I&#39;ve been working with Levin Sadsad (<a href="http://okdomo.com/">okdomo.com</a>) on a few things but we&#39;re both looking forward to launching his new&nbsp;<a href="http://pvponline.com/">PVPOnline.com</a>&nbsp;as a migration from WordPress. Also, I&#39;m formalizing the hosting part of my business for the benefit of current and future clients, who want someone in charge of their hosting and domains - so small businesses and personal hosting (<a href="http://petroglyphhosting.com/">PetroglyphHosting.com</a>).</p>
	<p>
		Last but not least, I had my first gallery show as an artist, Friday, February 3 at High Desert Art and Frame in Albuquerque NM. I created six new paintings for this."&nbsp;</p>
</div>
<p>
	<strong>My favorite EE site I worked on is</strong>:&nbsp;<a href="http://PrettyIll.com/">PrettyIll.com</a> - It&#39;s a video blog and support site for people dealing with very acute and under-diagnosed medical issues. The supervisor/personality of the site is a person who also has these conditions, but is also a doctor.</p>
<p>
	<strong>My favorite EE site someone else did is</strong>:&nbsp;<a href="http://moblues.org/">http://moblues.org/</a> - Having spent some time in St. Louis myself, the aesthetic rings true to the region for me.</p>
<p>
	<strong>If I could change one thing about ExpressionEngine it would be:&nbsp;</strong>The update system. My favorite feature of some other CMS&#39;s are one-click update systems.&nbsp;</p>
<p>
	<strong>If I had once piece of advice for someone trying to break into the web industry it would be:</strong>&nbsp;Make it a hobby first. It&#39;s compulsory to love what you do in this industry before you declare yourself a professional, and the way to do that is to grow your passion through work you find to do on your own.</p>
<p>
	&nbsp;</p>
<p>
	&nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/meta-qa-caroline-blaker"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Meta Q&amp;A: Caroline Blaker+http://themetaq.com/articles/meta-qa-caroline-blaker"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Inspiration, People,]]></dc:subject>
            <dc:date>2012-03-13T14:58:55+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: Biscoito]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-biscoito            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-biscoito            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/c9b2bffe69540f97f5f3cd4c1a5c8e73.jpeg" /><br /><br />                    Biscoito is a self-proclaimed "handmade and funny" type. Agreed!
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-13T14:48:44+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Heather Sloane, Illustrator]]></title>
            <link>
                                http://themetaq.com/queue/heather-sloane-illustrator            </link>
            <guid>
                                http://themetaq.com/queue/heather-sloane-illustrator            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/toastlove.jpg" /><br /><br />                    An fun illustrator to follow, Heather's portfolio is packed full of unique illustrations.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Illustration, Inspiration, Favorite Sites,]]></dc:subject>
            <dc:date>2012-03-12T15:00:35+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[How to Google effectively]]></title>
            <link>
                                http://themetaq.com/queue/how-to-google-effectively            </link>
            <guid>
                                http://themetaq.com/queue/how-to-google-effectively            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/articles/howtogoogleit.png" /><br /><br />                    Cool tips, tricks and tools to help you get the most out of your favorite Search Engine - all in a handy (albeit long) infographic. Check out the full image <strong><a href="http://www.howtogeek.com/98698/improve-your-google-search-skills-infographic/">here</a></strong>.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, SEO, Tips,]]></dc:subject>
            <dc:date>2012-03-12T13:52:27+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Food for font]]></title>
            <link>
                                http://themetaq.com/queue/food-for-font            </link>
            <guid>
                                http://themetaq.com/queue/food-for-font            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/portada4.png" /><br /><br />                    Tasty type from <strong><a href="http://www.m-inspira.com/#">m-inspira</a></strong> .
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-08T14:06:19+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[PBS launches web art series]]></title>
            <link>
                                http://themetaq.com/queue/pbs-launches-web-art-series            </link>
            <guid>
                                http://themetaq.com/queue/pbs-launches-web-art-series            </guid>
            <description>
                                                    <![CDATA[
                                        PBS is running a 13-part, bi-weekly web series on experimental and non-traditional art forms and features interviews with well-known designers and artists
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-07T14:57:07+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Finding MojoMotor&#8217;s disappearing Control Panel]]></title>
            <link>
                http://themetaq.com/articles/finding-mojomotors-disappearing-control-panel                            </link>
            <guid>
                http://themetaq.com/articles/finding-mojomotors-disappearing-control-panel                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/mmdisappearingcp.jpg" /><br /><br />
										<p>
	MojoMotor is a great framework for projects that are smaller in scope or in budget, and its overall simplicity, combined with its affordable price and the phenomenal support provided by EllisLab makes it a fantastic CMS for a variety of sites.</p>
<p>
	But, (as with all systems), MojoMotor does have some quirks (or &ldquo;features&rdquo; if you prefer) which take a little getting used to at first. One of these quirks can be very frustrating and downright scary if you aren&#39;t expecting it. Specifically, I&#39;m talking about the &ldquo;disappearing Control Panel&rdquo; issue.</p>
<p>
	If you have yet to encounter this problem when working in MojoMotor, consider yourself lucky but realize that yes, it can happen to you, so be prepared.</p>
<p>
	If you have encountered this problem in the past, or are currently experiencing it, you know exactly what I&#39;m talking about. Whatever the case may be, hang tight, I&rsquo;ll walk you through the issue and help you find a solution.</p>
<h2>
	Understanding why your control panel &ldquo;disappeared&rdquo;</h2>
<p>
	Part of fixing any problem is figuring out what caused it to happen in the first place. MojoMotor&rsquo;s Control Panel is rendered through the use of jQuery and while this is a perfectly acceptable means of creating this feature, at times it can present some real challenges.</p>
<p>
	If you use jQuery for any additional elements within your website, its possible that a conflict will occur. If say, you&rsquo;re calling in additional jQuery libraries within your layouts, some of these calls might conflict with the libraries that MojoMotor depends on.</p>
<p>
	When a conflict like this happens, jQuery&#39;s built-in response is to stop code execution. This response, while understandable, means that important features on your site may not show up at all &ndash; important features like your Control Panel.</p>
<h2>
	Fixing the Problem</h2>
<p>
	So you&#39;ve lost the Control Panel. Now what? In order to get it back you have one of two options:</p>
<ol>
	<li>
		Reinstall MojoMotor</li>
	<li>
		Remove the offending code from the MojoMotor database</li>
</ol>
<h3>
	Reinstall MojoMotor</h3>
<p>
	If you have encountered this problem and you have not yet put too much work into the site, and most importantly, wouldn&#39;t have a problem <i>losing</i><i> </i><i>all</i><i> </i><i>of</i><i> </i><i>your</i><i> </i><i>work</i><i> </i><i>up</i><i> </i><i>to</i><i> </i><i>that</i><i> </i><i>point</i>, you can simply reinstall MojoMotor.</p>
<p>
	This will wipe out all of the data stored in the MojoMotor database and take you back to square one. The process can taken anywhere from 60 seconds to 5 minutes &ndash; depending on how comfortable you are with the framework. After a full reinstall, your Control Panel will reappear.</p>
<h3>
	Remove the offending code</h3>
<p>
	Of course, doing a complete rebuild of the framework, and in extension, losing all of the work you have put into the site up to that point, is not always a viable or practical option. If you&rsquo;re not willing to start over completely, the other option you have is to find the offending code and remove it from the database.</p>
<p>
	To begin searching for the offending code, you will need to log in to your Database Control Panel. For the majority of users, this means you will need to open up phpMyAdmin.</p>
<p>
	Depending on your website&rsquo;s hosting service, you will probably be greeted with a screen that looks like the following:</p>
<p>
	<img alt="" src="/images/uploads/articles/mm-db-tables-list.jpeg" style="width: 700px; height: 417px; " /></p>
<p>
	When you see this screen (or something similar), you will then need to select the database where your MojoMotor records are being stored.</p>
<p>
	After you have selected your MojoMotor database, you should see a screen with a list of tables. Depending on your initial configuration and any add ons you have installed, your table list may differ slightly from the one you see below:</p>
<p>
	<img alt="" src="/images/uploads/articles/mm-tables-list.jpeg" style="width: 700px; height: 420px; " /></p>
<p>
	From here, you will want to select the <i>mojo_layouts</i> table. Once you have selected this table, a list of all the layouts you have created for the site thus far should appear. In this tutorial I have decided to use the standard installation, so only one layout is displayed &ndash; you may have more.</p>
<p>
	<img alt="" src="/images/uploads/articles/mm-db-table-layouts.jpeg" style="width: 700px; height: 418px; " /></p>
<p>
	Think back to the layout you were working in right before your Control Panel disappeared. Find this layout in the list and then select &ldquo;Edit.&rdquo; A new screen will appear which looks like this: &nbsp; &nbsp;</p>
<p>
	<img alt="" src="/images/uploads/articles/mm-layouts-edit.jpeg" style="width: 700px; height: 416px; " /></p>
<p>
	From here, it&rsquo;s just a matter of locating the offending line of code from the <i>layout_content</i><i> </i>field, removing it, and then saving the revised content. You may have a good idea what piece of code is causing the problem &ndash; if you do, then it&rsquo;s simply a matter of removing it from the layout_content field, saving the changes and refreshing your site.</p>
<p>
	If you don&#39;t know or aren&rsquo;t 100% which line of code is causing the problem, I would recommend doing two things:</p>
<ol>
	<li>
		<p>
			Open a text document, copy and paste (make sure you don&#39;t <i>cut</i><i> </i><i>and</i><i> </i><i>paste</i>) the content into the text document (so you have a backup if you need it) then proceed to the next step.</p>
	</li>
	<li>
		<p>
			As discussed above, the cause of your problem is most likely related to a conflict in the jQuery. To find the source of the problem, remove each script tag within the layout one by one. After you have removed a script tag, save the changes and then refresh your site to see if the Control Panel appears. If it does, you found the problem! If it doesn&#39;t, the problem is still there. Add the script tag you just removed back in to the <i>layout_content</i> field, and move on to the next one. Continue by process of elimination until your Control Panel reappears.</p>
	</li>
</ol>
<p>
	Note: If you are following the steps above and not having any success, make sure you are logged in. If you aren&#39;t logged in, the Control Panel won&#39;t display &ndash; even if you fix the problem. &nbsp;</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/finding-mojomotors-disappearing-control-panel"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Finding MojoMotor&#8217;s disappearing Control Panel+http://themetaq.com/articles/finding-mojomotors-disappearing-control-panel"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Code, MojoMotor, Inspiration, Cool Stuff, Tips, Code Tips,]]></dc:subject>
            <dc:date>2012-03-06T15:00:56+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[A How-to for Creating Text Captions That Overlay Images with CSS]]></title>
            <link>
                                http://themetaq.com/queue/a-how-to-for-creating-text-captions-that-overlay-images-with-css            </link>
            <guid>
                                http://themetaq.com/queue/a-how-to-for-creating-text-captions-that-overlay-images-with-css            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/css-text-overlay-image.jpg" /><br /><br />                    Add a text caption to your images.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code, CSS, Tips, Code Tips,]]></dc:subject>
            <dc:date>2012-03-06T15:00:35+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[PayPal vs. PayDivvy: Why it pays to care]]></title>
            <link>
                http://themetaq.com/articles/paypal-vs-paydivvy                            </link>
            <guid>
                http://themetaq.com/articles/paypal-vs-paydivvy                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/paypalvspaydivvy2.jpg" /><br /><br />
										<p class="intro">
	I&#39;ve been looking for an alternative to <a href="http://paypal.com/">PayPal</a> since it made a huge grinch out of itself this past Christmas by shutting down <a href="http://www.regretsy.com/2011/12/06/sooner-or-later-youll-pay-pal/ ">Regretsy&#39;s</a>&nbsp;charity fund, claiming a misuse of the "Donate" button and resulting in a massive backlash and&nbsp;<a href="http://articles.cnn.com/2011-12-06/tech/tech_web_regretsy-paypal-gifts_1_paypal-refund-donations-holiday-gifts?_s=PM:TECH">PR nightmare</a>.&nbsp;</p>
<p class="intro">
	Though the error was fixed and the money matters settled (and Christmas was saved!), since then, I&#39;ve just never quite felt the same about using PayPal.</p>
<p class="intro">
	As such, I want to start phasing out PayPal as much as possible. Though I may still need it for a lot of online shopping transactions, in the realm of personal and person-to-person transfers, I&#39;ve found an alternative that so far seems like a better bet than PayPal. An that, my friends, is&nbsp;<a href="https://www.paydivvy.com/default.aspx">PayDivvy</a>.&nbsp;</p>
<div class="asidebg pull-right" style="undefined">
	<h3>
		<strong>&nbsp;PayDivvy Basics</strong></h3>
	<ul>
		<li>
			<strong>What you can use it for:</strong>&nbsp;paying bills, splitting bills with friends, sending money, building credit.</li>
		<li>
			<strong>Is it legit:</strong>&nbsp;Yep, your money is held in an FDIC-insured account and&nbsp;<a href="http://themetaq.com/adm/index.php?S=b2a9fdd2776eb8f3b5bac4cd317c0cc6d3c074f2&amp;D=cp&amp;C=content_publish&amp;M=entry_form&amp;channel_id=3&amp;entry_id=615">PayDivvy protects your information with bank-level security</a>.&nbsp;</li>
		<li>
			<strong>Payment methods:</strong>&nbsp;Visa, MasterCard, American Express, Discover, all U.S. bank accounts.</li>
		<li>
			<strong>Availability</strong>: Currently only for U.S. bank accounts, though international expansion is in the works.</li>
		<li>
			<strong>Collect $200:</strong>&nbsp;"Pinging" contacts send notifications that they need to pay their portion of a bill.&nbsp;</li>
		<li>
			<strong>Good credit</strong>: PayDivvy is directly connected to FICO and reports all positive bill payments to the major credit bureaus.</li>
	</ul>
</div>
<h3>
	<strong>What is PayDivvy?</strong></h3>
<p>
	PayDivvy is a social-centric bill pay system. It allows users to pay person-to-person, pay bills, and even split bills amongst users via the web or mobile applications.</p>
<p>
	According to PayDivvy, founder Mike Melby started working on the concept for PayDivvy after trying to find a way to better share, or divvy, monthly bills with his roommates. There was no solution out there "that addressed the social finance issues within personal finance," so Melby and business partner, Ray Tamblyn, created their own solution. Thus, PayDivvy was born.</p>
<h3>
	<strong>How it works:</strong></h3>
<p>
	Sign up, hook up your bank account (wait a few days for verification) and you&#39;re set. All PayDivvy services connected directly to your bank account are free - that means&nbsp; it&#39;s free to receive payments, e-bills and to pay and manage all your bills. If you want to pay with a debit or credit card, it will cost 3.5% per transaction.&nbsp;</p>
<p>
	The cool thing about PayDivvy is you can connect it to your Facebook account and use it to split bills with your friends or roomies or whatever. That would have been extremely helpful when I was in college, and also last week when ten of us went out for lunch.</p>
<p>
	The other feature I really like about PayDivvy (though I have yet to try it), is the bill pay. PayDivvy is directly hooked up to over 5,000 service providers (Comcast, AT&amp;T, Verizon, Visa, etc.) and you can send money to any business or person (like say, your landlord). And while my bank already has this feature, I&#39;m considering switching over to PayDivvy for my bills because it sends all positive bill payments to credit bureaus (who couldn&#39;t use a little credit boost) and it has a nice budget tracking feature that is nowhere near as annoying as <a href="https://www.mint.com/">Mint.com</a>.</p>
<h3>
	<strong>PayDivvy vs. PayPal</strong></h3>
<p>
	Now I&#39;m sure some of you are thinking, "Now hold on lady, PayPal is free to send money&nbsp; person-to-person." And you&#39;re right.</p>
<p>
	PayPal <em>is</em> free when you buy something or when you transfer bank account funds to another PayPal user (unless you use a debit or credit card in which case you pay 2.9% of total amount sent plus $.30 per transaction). In that sense they&#39;re about the same. PayPal does take 2-3% of the transactions from merchants and has fees for international transfers.&nbsp;</p>
<p>
	So why PayDivvy then?</p>
<p>
	PayPal wasn&#39;t always such a bad service. When it started over ten years ago, it was an easy way to send and receive money online. But then it just got too big for its britches.</p>
<p>
	As Adam Dachis put it in his <a href="http://lifehacker.com/5821634/why-you-should-ditch-paypal-and-use-these-other-services-to-send-people-money">Lifehacker.com</a>&nbsp;article on ditching PayPal, "But like it often happens when companies grow very large, they start to suck. They like to make poor decisions in the name of security, such as <a href="http://consumerist.com/2011/06/paypal-keeps-freelancers-pay-under-review-because-they-feel-like-it-1.html">holding your money under review for no reason</a>, <a href="http://consumerist.com/2011/02/paypal-resolves-dispute-in-your-favor-by-draining-your-checking-account.html">draining your checking account when you report fraud</a>,&nbsp;<a href="http://consumerist.com/2009/08/paypal-takes-bite-out-of-users-funds-calls-it-rolling-reserve.html">putting 20% of your money in a rolling reserve account without asking</a>, and <a href="http://www.aboutpaypal.org/">much more</a>."</p>
<p>
	PayDivvy on the other hand, is still small enough to care. And right now, that makes all the difference.</p>
<p>
	So far with PayDivvy, I&#39;ve received excellent service, have found that their contact and Twitter/Social Media team is extremely helpful and responsive, and most importantly, I&#39;ve not had any issues with my money.</p>
<p>
	Time may tell.</p>
<p>
	For now, PayDivvy is small enough to care and still seems to. As much as I&#39;d like to abandon PayPal completely, I can&#39;t. It&#39;s still pretty ubiquitous. But if I can use PayPal less, that&#39;s a step in the right direction. And, if I can find a company that isn&#39;t trying to screw me over every step of the way, that&#39;s even better. And that my friends, (at least for the time being) is PayDivvy.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/paypal-vs-paydivvy"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=PayPal vs. PayDivvy: Why it pays to care+http://themetaq.com/articles/paypal-vs-paydivvy"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, Reviews,]]></dc:subject>
            <dc:date>2012-03-06T14:59:08+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: Life is an Expressway]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-life-is-an-expressway            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-life-is-an-expressway            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/image.png" /><br /><br />                    Expressway is an Open Source sans serif created by Typodermic, a font company based in Japan.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-03-06T14:45:41+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Tips and Tricks]]></title>
            <link>
                                http://themetaq.com/queue/tips-and-tricks            </link>
            <guid>
                                http://themetaq.com/queue/tips-and-tricks            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/tips-tricks.jpg" /><br /><br />                    This site gives you the how to for creating various letters with accents, currency symbols, math symbols, other punction etc. on your Mac.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Tips, Content Tips,]]></dc:subject>
            <dc:date>2012-03-05T15:00:54+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Say hello to Spark]]></title>
            <link>
                                http://themetaq.com/queue/say-hello-to-spark            </link>
            <guid>
                                http://themetaq.com/queue/say-hello-to-spark            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/tablet.jpeg" /><br /><br />                    Spark is the first free software, Linux tablet.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code,]]></dc:subject>
            <dc:date>2012-03-01T14:57:02+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Portal themed iPad decals]]></title>
            <link>
                                http://themetaq.com/queue/portal-themed-ipad-decals            </link>
            <guid>
                                http://themetaq.com/queue/portal-themed-ipad-decals            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/Portal-Themed-iPad-Decals.jpeg" /><br /><br />                    Spectacular.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration, Cool Stuff,]]></dc:subject>
            <dc:date>2012-02-29T14:42:43+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Should you respond to Requests for Proposals?]]></title>
            <link>
                http://themetaq.com/articles/should-you-respond-to-rfps                            </link>
            <guid>
                http://themetaq.com/articles/should-you-respond-to-rfps                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/article-rfp.jpg" /><br /><br />
										<p class="intro">
	Should your firm respond to RFPs? Is it just a waste of valuable resources?</p>
<p>
	Earlier in my tenure running <a href="http://www.qdigitalstudio.com">my little web shop</a>,&nbsp;I replied to a lot of Requests for Proposals (RFPs). It was exciting. <em>For a while</em>.</p>
<p>
	It quickly became depressing when I put in a lot of time crafting responses, and was awarded hardly any of the projects. Over time, I realized that replying to lots of RFPs can be a huge waste of time. So, I&rsquo;ve narrowed down <em>when</em> and <em>why </em>I&rsquo;d reply to an RFP.</p>
<p>
	This process optimizes our little web shop&rsquo;s efforts, and results in a healthy percentage of projects awarded.</p>
<p>
	Any company looking to hire a web design/development firm is wise to put together an effective RFP or Request for Proposals. Companies are able to compare proposed features, pricing and experience of potential partners side-by-side. The spirit of competition can encourage vendors to do a better job and even keep pricing competitive. Sure, all of that sounds great for a client.</p>
<p>
	But what about the web shops replying to the RFPs? Is it good for them too?</p>
<p>
	<strong>Here are my rules of thumb for when and why you should (or should not) respond to RFPs.</strong></p>
<h3>
	I will submit a proposal if it has one or more of the following elements:</h3>
<ol>
	<li>
		<strong>Relationship</strong>. If I have an existing positive relationship with the client and I like them, I&rsquo;m in. If so, we have trust and rapport already built up. This can also potentially cut down on cost, since we don&rsquo;t have to go through the getting-to-know you phase. And because we know each other&rsquo;s working styles we create a very accurate estimate.</li>
	<li>
		<strong>Fit</strong>. When the client and project are in our sweet spot &ndash; meaning they fit our criteria for size, industry, project scope and technology &ndash; this makes submitting a proposal attractive. Why bother submitting a proposal if you&rsquo;re not that into the project or don&rsquo;t like that client?</li>
	<li>
		&nbsp;<strong>Connection</strong>. If I don&rsquo;t have an existing relationship but I have a connection to the client, I think it&rsquo;s an opportunity worth pursuing. The connection might be that someone on staff knows us from when they were at another firm, or a partner or colleague of theirs recommended us. Even a friendly or social connection is a good connection.</li>
	<li>
		<strong>Realistic expectations.</strong> A realistic timeframe and budget in an RFP make me happy. Or if neither are specifically identified, that&rsquo;s fine too. It shows that there&rsquo;s room to discuss.</li>
</ol>
<h3>
	I will not reply if&nbsp; an RFP includes one or more of the following elements:</h3>
<ol>
	<li>
		<strong>Spec work</strong>. If an RFP requires preliminary unpaid creative work, count me out. <a href="http://antispec.com/">This is spec work, and it&rsquo;s totally not cool</a>.&nbsp;</li>
	<li>
		<strong>Burden.</strong> If materials requested for the RFP are exceptionally onerous, I&rsquo;m not going to invest the time. While I&rsquo;m happy to provide a company profile, personnel profile, sample projects and the like, I don&rsquo;t think I should have to answer a 5-page questionnaire or write a dissertation.</li>
	<li>
		<strong>No connection</strong>. If I do not have any sort of connection with the client, even a tenuous one, I&rsquo;m going to opt out. At least one firm, probably a couple, have some connection to the client and already have a leg up. (Note: this doesn&rsquo;t mean if you have no connection you can&rsquo;t win a project from the RFP process, but over the long run it will greatly diminish your projects awarded percentage.)</li>
	<li>
		<strong>Formality</strong>. It&rsquo;s important to find out if the RFP process is a formality/requirement of an organization. Often organizations already have a vendor they plan to work with, and the RFP process is just a formality. I&rsquo;ve heard firsthand of this happening many times, and it&rsquo;s a true disappointment, especially when you&rsquo;ve put in a lot of time and energy to create a response.</li>
</ol>
<div class="asidebg pull-right" style="undefined">
	<p>
		<strong>TIPS:&nbsp;</strong>And to top it off, I&rsquo;ll let you in on a couple of my secrets in how to best reply to RFPs.</p>
	<ul>
		<li>
			<strong>Set up a call.</strong> If you&rsquo;re interested in responding to an RFP, but don&rsquo;t have a connection with the client, make one! Just ask to set up a quick phone call with someone in the organization. It will make you and your firm more memorable.</li>
		<li>
			<strong>Get in on the questions.</strong> If the company is going through a more formal bid process, and there is a timeframe for asking questions, submit one. Again, it gives you &nbsp;a little extra connection.</li>
	</ul>
</div>
<h3>
	I might reply, but I will be cautious if any of the following elements exist:</h3>
<ol>
	<li>
		<strong>Lowest bid.</strong>&nbsp;The RFP states they take the lowest bid that meets the project criteria. We submitted a proposal to an organization where we had previously worked with one of their people at a different company. When submitting a proposal, we knew the criteria for selection was lowest bid that met the requirements. However, their ceiling price point was much higher than our bid and I felt good about being 40% under that. We got that project.</li>
	<li>
		<strong>High volume</strong>. If the RFP was posted far and wide, and the organization is likely to get a heap of proposals (10+), I&rsquo;d be cautious about submitting. I wouldn&rsquo;t want my proposal to be lost in the mix.</li>
</ol>
<p class="intro">
	<em>Do you reply to RFPs? How do you decide which ones to reply to?</em></p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/should-you-respond-to-rfps"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Should you respond to Requests for Proposals?+http://themetaq.com/articles/should-you-respond-to-rfps"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Business, Business Process,]]></dc:subject>
            <dc:date>2012-02-28T15:01:19+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[BBC GEL: Global Experience Language]]></title>
            <link>
                                http://themetaq.com/queue/bbc-gel-global-experience-language            </link>
            <guid>
                                http://themetaq.com/queue/bbc-gel-global-experience-language            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/bbc-gel.png" /><br /><br />                    An impressive and comprehensive web styleguide by BBC for use in web, mobile and tablet called their Global Experience Language. Very cool that you can access the styleguide (PDF), download core components (ZIP of AI and PSD files) and view various web patterns, iconography and typography online. Great reference.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business, Business Process, Design, Design Process,]]></dc:subject>
            <dc:date>2012-02-28T15:00:20+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Mostinspired.com: a showcase of web designs]]></title>
            <link>
                                http://themetaq.com/queue/mostinspired.com-a-showcase-of-web-designs            </link>
            <guid>
                                http://themetaq.com/queue/mostinspired.com-a-showcase-of-web-designs            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/site-design-inspiration.jpg" /><br /><br />                    
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Inspiration, Cool Stuff, Favorite Sites,]]></dc:subject>
            <dc:date>2012-02-28T15:00:07+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Meta Q&amp;A: Angie Herrera]]></title>
            <link>
                http://themetaq.com/articles/meta-qa-angie-herrera                            </link>
            <guid>
                http://themetaq.com/articles/meta-qa-angie-herrera                            </guid>
            <description>
                                    <![CDATA[
                    <img src="/images/uploads/articles/MetaQAHerrera.png" /><br /><br />
										<p class="intro">
	We&#39;re excited to get to know more of the amazing ExpressionEngine community - all over the world. This week we head to Portland to chat with the very talented Angie Herrera (<a href="https://twitter.com/#!/420creative">@420Creative</a>), principal and creative director of&nbsp;<a href="http://420creative.com/">420 Creative</a>, where we find out what it&#39;s like to transition from print design to ExpressionEngine pro.</p>
<p>
	<strong>MQ:</strong> Tell us about your work in 140 characters or less.</p>
<p>
	<strong>AH:</strong> I work for 420 Creative, a design studio I started in 2003. Our work focuses on CMS-powered web design/dev, branding and Internet marketing.</p>
<p>
	<strong>MQ:&nbsp;</strong>How/why did you get into the web industry? Why do you stick with it?</p>
<p>
	<strong>AH:&nbsp;</strong>When I first started my business (when it was 100% me), I was primarily doing traditional graphic design (logos, print design, etc.). But more and more clients and prospects started inquiring about web design. I already had some web design experience and I couldn&#39;t pass up on the opportunities, so I started creating sites for clients and have been doing so ever since. I stick with it because, as it turns out, I love it. More so than print design and it&#39;s become the core of my business.</p>
<p>
	<strong>MQ:&nbsp;</strong>Why do you use ExpressionEngine?</p>
<p>
	<strong>AH:&nbsp;</strong>There are plenty of reasons! To name a few: its incredible flexibility and robustness to power virtually any kind of site; it&#39;s extensibility &ndash; even though I&#39;m no back-end developer, I know a lot can be built on top of it and the CodeIgniter framework; it&#39;s easy to tailor for clients so it works with their workflow and is easy for them to use.</p>
<p>
	<strong>MQ:&nbsp;</strong>What was the first EE site you ever worked on? What was that experience&nbsp;like?</p>
<p>
	<strong>AH:&nbsp;</strong>The very first EE site I ever worked on was for another web company that hired 420 Creative to build a CMS-driven site. At the time I was only aware of WordPress and one or two other platforms but none really fit the bill. I remembered reading about EE, checked it out and it fit perfectly. The experience was a bit daunting at first because I didn&#39;t get it right away. But I plugged away until I hit that infamous "lightbulb moment" and it was a breeze after that. I&#39;m sure if I were to look at that site&#39;s code now though, I&#39;d probably laugh myself to death.</p>
<p>
	<strong>MQ:&nbsp;</strong>What does a typical workday look like for you?</p>
<p>
	<strong>AH:&nbsp;</strong>It starts out with email and making sure all the new stuff is taken care of one way or another. Then I take a look at the to-do list and start working away (with lots of breaks in between). I spend a lot of time in Basecamp managing projects, as well as the regular apps for coding and designing. My workday is definitely nothing glamorous.</p>
<p>
	<strong>MQ:</strong>&nbsp;How do you stay passionate about your work? What do you do to refocus&nbsp;when you&#39;re having a bad day?</p>
<p>
	<strong>AH:&nbsp;</strong>The absolute best thing I do to stay passionate is to get away from work. For me, that means very little to no work on Fridays. If I do work, it&#39;s usually a phone call or two, or working on the business or personal projects. I have a relatively strict "no weekend work" policy as that&#39;s reserved for anything else. Once in a while I have to make an exception, but they&#39;re very, very rare. If I&#39;m having a bad day, I&#39;ll expend the energy from the frustration somehow &ndash; a walk, stretching, taking a TV break, whatever. Then I get back to it. Stepping away is key for me.</p>
<div class="pull-right-quote" style="undefined">
	<blockquote>
		<p>
			&ldquo;Never stop learning. The web, like most things, is constantly changing and evolving. Settling for &lsquo;good enough&rsquo; will leave you behind.&rdquo;</p>
	</blockquote>
</div>
<p>
	<strong>MQ:&nbsp;</strong>My favorite EE site I worked on is: _______</p>
<p>
	<strong>AH:&nbsp;</strong>This is a tough one; there&#39;s a good-sized handful that I thoroughly enjoyed. It&#39;s probably a tie between <a href="http://Tilteed.com/">Tilteed.com</a> and <a href="http://Nashelle.com/">Nashelle.com</a> &ndash; both e-commerce sites with their own set of challenges and both a lot of fun.</p>
<p>
	<strong>MQ:&nbsp;</strong>My favorite EE site someone else did is: _________</p>
<p>
	<strong>AH:&nbsp;</strong>Also a tough one, partly because there are plenty of great sites out there powered by EE. I think <a href="http://Mezzetta.com/">Mezzetta.com</a> tops my list though. Christopher Kennedy worked on it (the EE and cart portion if I recall) while he was at Shotwell. It helps that I love Mezzetta products.</p>
<p>
	<strong>MQ:</strong>&nbsp;If I could change one thing about ExpressionEngine it would be:__________</p>
<p>
	<strong>AH:&nbsp;</strong>The forums. Admittedly, I&#39;ve only worked on a couple of sites with the forum module, but they are a serious pain to theme. I would love to see them use the same template engine that everything else in EE does.</p>
<p>
	<strong>MQ:</strong>&nbsp;If I had once piece of advice for someone trying to break into the web&nbsp;industry it would be: ____________</p>
<p>
	<strong>AH:&nbsp;</strong>Never stop learning. The web, like most things, is constantly changing and evolving. Settling for "good enough" will leave you behind.</p>
											
											<a title="Share on Facebook" target="_blank" href="http://www.facebook.com/sharer.php?u=http://themetaq.com/articles/meta-qa-angie-herrera"><img src="http://themetaq.com/a/i/social/facebook-18x18.gif" /></a>
											<a title="Share on Twitter" class="twitter-share-button" target="_blank" href="http://twitter.com/home?status=Meta Q&amp;A: Angie Herrera+http://themetaq.com/articles/meta-qa-angie-herrera"><img src="http://themetaq.com/a/i/social/twitter-18x18.gif" /></a>                   ]]>
                                            </description>
            <dc:subject><![CDATA[Design,]]></dc:subject>
            <dc:date>2012-02-28T14:56:48+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Type Tuesday: League Gothic]]></title>
            <link>
                                http://themetaq.com/queue/type-tuesday-league-gothic            </link>
            <guid>
                                http://themetaq.com/queue/type-tuesday-league-gothic            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/league-gothic-1.png" /><br /><br />                    Presented by the League of Movable Type, League gothic is a beautiful Gothic font based on Alternate Gothic #1.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Design, Typography,]]></dc:subject>
            <dc:date>2012-02-28T14:43:16+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Looking for a unique laptop case?]]></title>
            <link>
                                http://themetaq.com/queue/looking-for-a-unique-laptop-case            </link>
            <guid>
                                http://themetaq.com/queue/looking-for-a-unique-laptop-case            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/case.jpg" /><br /><br />                    Check out this savy desgin as well as many other great office ideas at fromeurope.org.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration, Cool Stuff, Favorite Sites,]]></dc:subject>
            <dc:date>2012-02-27T15:00:54+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[An average day on Facebook]]></title>
            <link>
                                http://themetaq.com/queue/an-average-day-on-facebook            </link>
            <guid>
                                http://themetaq.com/queue/an-average-day-on-facebook            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/JESS3_AverageDayonFacebook.jpeg" /><br /><br />                    Yet another infographic about Facebook - but this one by JESS3 breaks it down in a cute and personal way.
                    ]]>
                            </description>
            <dc:subject><![CDATA[]]></dc:subject>
            <dc:date>2012-02-27T14:29:44+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Robot, by Jim Henson]]></title>
            <link>
                                http://themetaq.com/queue/robot-by-jim-henson            </link>
            <guid>
                                http://themetaq.com/queue/robot-by-jim-henson            </guid>
            <description>
                                                    <![CDATA[
                                        One of the Muppet master's early pieces, created for The Bell System in 1963.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration,]]></dc:subject>
            <dc:date>2012-02-24T14:18:31+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[CodeIgniter: Who needs Ruby?]]></title>
            <link>
                                http://themetaq.com/queue/codeigniter-who-needs-ruby            </link>
            <guid>
                                http://themetaq.com/queue/codeigniter-who-needs-ruby            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/who-needs-ruby.png" /><br /><br />                    Jamie Rumbelow’s: The Codeigniter Handbook is published and ready for your consumption.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Code, ExpressionEngine, PHP, Code Process,]]></dc:subject>
            <dc:date>2012-02-23T15:46:44+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Hotmail&#8217;s war on graymail]]></title>
            <link>
                                http://themetaq.com/queue/hotmails-war-on-graymail            </link>
            <guid>
                                http://themetaq.com/queue/hotmails-war-on-graymail            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/Hotmail-Graymail-940px.png" /><br /><br />                    Anyone with anyone email account that's been around more than a few months likely gets lots "graymail": unwanted mail users receive legitimately, like newsletters and such. Hotmail has a plan to deal with it. (From Litmus email testing and analytics.)
                    ]]>
                            </description>
            <dc:subject><![CDATA[Business,]]></dc:subject>
            <dc:date>2012-02-23T14:55:30+00:00</dc:date>
        </item>
        
        <item>
            <title><![CDATA[Make a Powerful Point]]></title>
            <link>
                                http://themetaq.com/queue/make-a-powerful-point            </link>
            <guid>
                                http://themetaq.com/queue/make-a-powerful-point            </guid>
            <description>
                                                    <![CDATA[
                    <img src="/images/uploads/queue/stephen-colbert-gives-you-the-best-presentation-tip-youll-ever-have.png" /><br /><br />                    Gavin McMahon's blog is all about making a powerful point when presenting information.
                    ]]>
                            </description>
            <dc:subject><![CDATA[Inspiration,]]></dc:subject>
            <dc:date>2012-02-22T14:42:09+00:00</dc:date>
        </item>
        
    </channel>
</rss>
