<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
    <channel>
        <title>Staydecent</title>
        <link>/</link>
        <description>Web, design &amp; sustainability</description>
        <pubDate>2012</pubDate>

                <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/staydecent" /><feedburner:info uri="staydecent" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
            <title>Comparing Responsive Image Proposals</title>
            <author>Adrian Unger</author>
            <pubDate>Fri, 11 May 2012 00:00:00 -0700</pubDate>
            <link>/articles/comparing-responsive-image-proposals</link>
            <guid>/articles/comparing-responsive-image-proposals</guid>
            <description>&lt;p class="big"&gt;Responsive Web Design has gained in usage and ease of use. But one, rather large, missing piece is responsive images.&lt;/p&gt;

&lt;p&gt;The &lt;a href="http://www.w3.org/community/respimg/"&gt;W3 Responsive Images Community Group&lt;/a&gt; and &lt;a href="http://www.whatwg.org/"&gt;WHATWG&lt;/a&gt; have been coming up with some ideas.&lt;/p&gt;

&lt;p&gt;I should preface this post as such: I very well may have a lack of understanding or even misunderstanding regarding HTML spec proposals. Also, If you're not aware of &lt;a href="http://www.alistapart.com/articles/responsive-web-design/"&gt;Responsive Web Design&lt;/a&gt;, this post won't be very interesting.&lt;/p&gt;

&lt;h2&gt;Two Proposals&lt;/h2&gt;

&lt;p&gt;As it stands there are two (popular) proposals for responsive images:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;img src="face-600-200@1.jpeg" alt=""
   set="face-600-200@1.jpeg  600w 200h 1x,
         face-600-200@2.jpeg 600w 200h 2x,
         face-icon.png       200w 200h"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;picture alt=""&amp;gt;
    &amp;lt;source src="mobile.jpg" /&amp;gt;
    &amp;lt;source src="large.jpg" media="min-width: 600px" /&amp;gt;
    &amp;lt;source src="large_1.5x-res.jpg" media="min-width: 600px, min-device-pixel-ratio: 1.5" /&amp;gt;
    &amp;lt;img src="mobile.jpg" /&amp;gt;
&amp;lt;/picture&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;With many voicing their preference for the latter. Mainly because:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It's easier to read&lt;/li&gt;
&lt;li&gt;It's familiar (see the &lt;code&gt;&amp;lt;video&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;source&amp;gt;&lt;/code&gt; tags)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And, I agree. But, &lt;a href="https://twitter.com/#!/zcorpan"&gt;Simon Pieters&lt;/a&gt; brings up some points on the &lt;a href="http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2012-May/035784.html"&gt;complexity of implementation&lt;/a&gt;. In brief, the &lt;code&gt;srcset&lt;/code&gt; attribute is easier to implement in the spec, and would  avoid some pitfalls that the &lt;code&gt;&amp;lt;picture&amp;gt;&lt;/code&gt; element would create for JavaScript developers. Read the above link for details.&lt;/p&gt;

&lt;h2&gt;Pick one&lt;/h2&gt;

&lt;p&gt;So, besides smaller semantic grievances, the main argument for each proposal is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;&amp;lt;picture&amp;gt;&lt;/code&gt; is easier to read and write as a developer&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;srcset&lt;/code&gt; attribute is easier to implement and would have less pitfalls for JavaScript developers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is no easy decision. And, in getting a little more familiar with the community discussions regarding new HTML specs, I have gained much respect for those involved.&lt;/p&gt;

&lt;p&gt;In the end, I still feel the &lt;code&gt;&amp;lt;picture&amp;gt;&lt;/code&gt; element fits better along the existing HTML spec and elements. If &lt;code&gt;srcset&lt;/code&gt; were to be implemented it would really be crossing a new boundary in terms of power given to an attribute&amp;mdash;which I don't currently support. &lt;code&gt;&amp;lt;picture&amp;gt;&lt;/code&gt; would take longer to implement, and JavaScript developers would have to be wary of creating bugs. But, I think friendly and familiar syntax outweighs both of those issues.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/275hQfl5Xuc" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>jQuery Multiline Text Input</title>
            <author>Adrian Unger</author>
            <pubDate>Fri, 20 Apr 2012 00:00:00 -0700</pubDate>
            <link>/bits/jquery-multiline-text-input</link>
            <guid>/bits/jquery-multiline-text-input</guid>
            <description>&lt;p class="big"&gt;A jQuery plugin that replaces a textarea with multiple text inputs, automatically appending a new input when the last is filled with content.&lt;/p&gt;

&lt;p&gt;I created this plugin as part of a provisionary coding task for an unnamed startup. The idea is to simplify server-side processing while having more control of the user input&amp;mdash;And, hopefully, a better experience for the user.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://i.imgur.com/ZBxbt.png" alt="Screenshot of a similar implementation by Google" title="Inspired by Google Profiles" /&gt;&lt;/p&gt;

&lt;h2&gt;The Concept&lt;/h2&gt;

&lt;p&gt;Instead of asking a user to enter each item (Ex. Places lived) on a new line or comma separating them within a textarea, each item is entered in an individual text input. But, we want to allow an indefinite amount of items and asking the user to click a button (to add another input) would be annoying. So, the plugin intelligently appends an empty text input as soon as the user starts typing the last input.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;But, how do you know how many inputs need to be processed on the server-side?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Good question! This is handled by the plugin on the client-side; the plugin combines all of the single line inputs back into a single textarea, with each item on a newline, before submitting the data.&lt;/p&gt;

&lt;h2&gt;Demonstration&lt;/h2&gt;

&lt;p&gt;Select the "Result" tab in the below JSFiddle frame to test-drive a basic example.&lt;/p&gt;

&lt;iframe style="width: 100%; height: 380px" src="http://jsfiddle.net/dQSNP/5/embedded/" allowfullscreen="allowfullscreen" frameborder="0"&gt;&lt;/iframe&gt;

&lt;h2&gt;Usage&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;$('textarea.multiline').multilineText();&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Check out the &lt;a href="https://github.com/staydecent/jQuery-MultilineText"&gt;GitHub Repo&lt;/a&gt; for more information and to grab the code.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/tveKtL5eBok" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>The Essence of Blogging</title>
            <author>Adrian Unger</author>
            <pubDate>Fri, 23 Mar 2012 00:00:00 -0700</pubDate>
            <link>/bits/essence-of-blogging</link>
            <guid>/bits/essence-of-blogging</guid>
            <description>&lt;p class="big"&gt;Inspired by Dustin Curtis' &lt;a href="http://svbtle.com/"&gt;Svbtle&lt;/a&gt; and the subsequent open-source project &lt;a href="https://github.com/NateW/obtvse"&gt;Obtvse&lt;/a&gt;, I took a shot at simplifying the blogging interface.&lt;/p&gt;

&lt;p&gt;Actually, even before Dustin &lt;a href="http://dcurt.is/codename-svbtle"&gt;unveiled&lt;/a&gt; the interface for Svbtle, the concept had inspired me&amp;mdash;with the three words &lt;em&gt;essence of blogging&lt;/em&gt; I began to think about what that meant to me. I took it to mean two types of posts, those which are ones purely written word, and those that are commentary on some link. The main difference being that the latter would have its' title link to the external source.&lt;/p&gt;

&lt;p&gt;So, I started dreaming up an interface that began with a single text field.&lt;/p&gt;

&lt;h2&gt;A demo of sorts&lt;/h2&gt;

&lt;p&gt;To catch the wave of this &lt;a href="http://news.ycombinator.com/item?id=3744237"&gt;fiasco&lt;/a&gt;, I tested out that interface concept today. So, the demo is limited to only the writing interface, though it can save the post data to &lt;em&gt;localStorage&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;View the demo &lt;a href="http://test.staydecent.webfactional.com/Gumblog/" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;Some notes:&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;I've only tested it on Chrome.&lt;/li&gt;
&lt;li&gt;Try pressing 'tab' or 'enter' ;)&lt;/li&gt;
&lt;li&gt;Try pasting a URL&lt;/li&gt;
&lt;li&gt;'DRAFT' and 'PUBLIC' do nothing&lt;/li&gt;
&lt;li&gt;type &lt;code&gt;clearPost()&lt;/code&gt; in console to clear localStorage data&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;A bit of an explanation&lt;/h2&gt;

&lt;p&gt;Like I said, the goal is to accommodate two types of posts, purely written word, and &lt;em&gt;link posts&lt;/em&gt;. The type of post is determined based on what you enter in the initial field (which is actually the title field). If a URL, we'll fetch the title from that page, and populate the title field with it (moving the URL to the link field). If the initial field is just text, we wait until you press &lt;em&gt;enter&lt;/em&gt; or &lt;em&gt;tab&lt;/em&gt; and generate a &lt;em&gt;local&lt;/em&gt; permalink for the post.&lt;/p&gt;

&lt;p&gt;In both cases, once the initial field is dealt with, we move the focus to the body field.&lt;/p&gt;

&lt;h2&gt;A note about the name&lt;/h2&gt;

&lt;p&gt;You may notice that the Demo comes with the title &lt;em&gt;Gumblog&lt;/em&gt;. It will eventually be working blog software, made purely to allow me to experiment with PHP 5.4, &lt;a href="http://pjax.heroku.com/"&gt;PJAX&lt;/a&gt; and this interface concept. You can view the base framework, Gum, &lt;a href="https://github.com/staydecent/Gum"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I would love to hear your thoughts about this interface concept. Feel free to reach out via email or Twitter.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/6mQIVwYX3-g" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Moving Off App Engine</title>
            <author>Adrian Unger</author>
            <pubDate>Fri, 24 Feb 2012 00:00:00 -0800</pubDate>
            <link>/articles/moving-off-app-engine</link>
            <guid>/articles/moving-off-app-engine</guid>
            <description>&lt;p class="big"&gt;Google App Engine provided a slew of learning, and allowed me to rapidly build my side-projects. But, it's time to move on.&lt;/p&gt;

&lt;p&gt;Google App Engine was exciting, and gave me an easy to run environment to learn Python. I built my portfolio and blog on GAE, as well as the original &lt;a href="http://fullioapp.com"&gt;Fullio App&lt;/a&gt; and the current &lt;a href="http://cookitlocal.com"&gt;Cook It Local&lt;/a&gt;. But, each of those projects, for their own reasons, has outgrown (or no longer feels at home) on Google App Engine. Let's go over the migration of each project!&lt;/p&gt;

&lt;h2&gt;Staydecent.ca&lt;/h2&gt;

&lt;p&gt;The GAE version of my website is pretty awesome. It's flexible, fast and allows me to update everything &lt;a href="http://www.staydecent.ca/bits/publishing-by-email-app-engine"&gt;by email&lt;/a&gt;. But, I also have a few static mini-sites for clients, fun projects and tests that I like to keep under the staydecent.ca domain. Uploading a folder of HTML and CSS isn't so simple on GAE compared to Apache. I also want to have my entire site backed up with Git. After finding &lt;a href="https://github.com/mojombo/jekyll"&gt;Jekyll&lt;/a&gt; inflexible (at least with my lack of Ruby knowledge) I spent a day building a &lt;a href="https://github.com/staydecent/staydecent.ca"&gt;ridiculous &lt;em&gt;build&lt;/em&gt; script&lt;/a&gt; for a static website. It seems to be working&amp;mdash;you're looking at it!&lt;/p&gt;

&lt;h2&gt;Fullio App&lt;/h2&gt;

&lt;p&gt;This was the most painful. Trying to get this idea out fast, while battling with actual client work, I hit a major roadblock with GAE. Fullio processes emails with large, full-sized image file attachments and uploads them to Amazon S3. GAE has (had?) a limit that prevented me from sending requests larger than 10 mb to S3. This just would not fly, as I wanted to allow people to host their mega-images. Failing to get Flask or Django (or Python for that matter) running smoothly on my Windows based laptop wasted days! So, I wrote a &lt;a href="https://github.com/staydecent/Mud"&gt;framework inspired by GAE's webapp&lt;/a&gt;, so even though I had to rewrite all the code, at least the concepts were the exact same. I also used &lt;a href="http://www.mongodb.org/"&gt;MongoDB&lt;/a&gt; to keep my data structures relatively the same. Fullio has seem some huge delays, but it's super close to a beta-launch. If you're interested, please bug me to get it out.&lt;/p&gt;

&lt;h2&gt;Cook It Local&lt;/h2&gt;

&lt;p&gt;Holy neglected project, Batman! Food, nature and sustainability seem to be my passions, so it's saddening to see this project sit idly by. Cook It Local, is an ever adapting idea, web app, resource, tool etc. to inspire people to eat and cook with local, seasonal ingredients. So, many mini-apps and components will end up existing. I don't feel GAE allows for rapid, frequent iterations. So, I am creating a set of libraries for rapid prototyping. The base of this endeavor starts with my HTTP router, &lt;a href="https://github.com/staydecent/Gum/blob/master/Gum.php"&gt;Gum&lt;/a&gt;. I'll soon have a post on &lt;em&gt;rapid prototyping with PHP&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;Closed platforms never win&lt;/h2&gt;

&lt;p&gt;Is that the lesson? Google App Engine is quite an amazing platform. The cost was basically zero to get my ideas up and running&amp;mdash;I've been hosting staydecent.ca for zero cost for over a year now. But, my current emphasis is on flexibility and so I'll continue to move away from App Engine.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/Jw3S6ZkJj70" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Responsive Web Design</title>
            <author>Adrian Unger</author>
            <pubDate>Sun, 12 Jun 2011 00:00:00 -0700</pubDate>
            <link>/articles/responsive-web-design</link>
            <guid>/articles/responsive-web-design</guid>
            <description>&lt;p class="big"&gt;The implementation and advocacy of responsive web
design is increasing, and possibly fully manifested in the web design
community. Are you taking part?&lt;/p&gt;

&lt;h3&gt;What Is Responsive Design?&lt;/h3&gt;

&lt;p&gt;Responsive web design, basically means your website responds to
different screen sizes. So, people browsing your site on a Smartphone,
Tablet, Netbook or Desktop all get a usable (and hopefully similar,
but not exact) experience.&lt;/p&gt;

&lt;h4&gt;Types of Responses&lt;/h4&gt;

&lt;p&gt;There are two main ways to respond to various screen sizes and
devices, with: &lt;em&gt;responsive designs&lt;/em&gt; or &lt;em&gt;adaptive designs&lt;/em&gt;. Responsive
design usually means a fluid grid, using percentages. See: &lt;a href="http://stephencaver.com/"&gt;Stephen
Caver's Portfolio&lt;/a&gt; and &lt;a href="http://www.miekd.com/"&gt;Maykel Loomans'
Blog&lt;/a&gt;. And, adaptive design usually means you
have fixed grid, that adapts (changes) depending on the screen size.
See: &lt;a href="http://colly.com/"&gt;Mr. Simon Collison&lt;/a&gt; and  &lt;a href="http://www.authenticjobs.com/"&gt;Authentic
Jobs&lt;/a&gt;. You could also use a combination
of both, sort of like my Blog that you’re reading now.&lt;/p&gt;

&lt;h3&gt;Media Queries&lt;/h3&gt;

&lt;p&gt;CSS3 media queries, quite literally, let you query different media
types, &lt;code&gt;screen&lt;/code&gt;, &lt;code&gt;print&lt;/code&gt; and &lt;code&gt;handheld&lt;/code&gt; as well as other helpful
properties such as &lt;code&gt;min-width&lt;/code&gt;, &lt;code&gt;max-width&lt;/code&gt;, &lt;code&gt;orientation&lt;/code&gt; and others.
&lt;strong&gt;Media queries easily let you define your CSS for any screen size by
querying the &lt;code&gt;min-width&lt;/code&gt; and &lt;code&gt;max-width&lt;/code&gt;.&lt;/strong&gt; So, all you really need to
know are the common screen widths. According to &lt;a href="https://twitter.com/#!/bryanrieger/status/75597655870406656"&gt;Bryan
Rieger&lt;/a&gt;
the “major breakpoints are 0-320, 320-720, 720+ with minor
breakpoints dependent on content and key devices (ie: 360, 480, 768,
etc).”&lt;/p&gt;

&lt;h4&gt;What Does This Mean?&lt;/h4&gt;

&lt;p&gt;In the below snippet, I have included the exact media queries that I
use, as well as a few (one, for now) examples from popular CSS
frameworks and authors.
&lt;script src="https://gist.github.com/1021805.js?file=media_queries.css"&gt;&lt;/script&gt;&lt;/p&gt;

&lt;p&gt;So, if you’re like me and usually develop a new grid for each
website you design (which, I highly recommend) those media queries are
really helpful in adjusting your design for specific devices and
screen widths. And, if you like using boilerplates/frameworks and
often design a 960px grid, &lt;a href="http://getskeleton.com"&gt;Skeleton&lt;/a&gt; is
great.&lt;/p&gt;

&lt;h3&gt;But How Should I Adjust My Design For Each Query&lt;/h3&gt;

&lt;p&gt;Obviously, you can’t just continuously shrink your column
widths—eventually you’d have content trying to fit into
20px columns! So, commonly, you'll end up dropping the number of
columns. If you’re full-width design has 6 blocks floating
together, you might have to drop that for each query: 4 blocks a row;
3 blocks a row; 2 blocks a row; everything in a single column.&lt;/p&gt;

&lt;h3&gt;That’s It!&lt;/h3&gt;

&lt;p&gt;Really. Responsive web design is not much work. I would say, for the
bare minimum, design your full width site, Ipad width of 768px and
mobile width of 320px.&lt;/p&gt;

&lt;p&gt;For corrections, comments and questions message me
&lt;a href="http://twitter.com/staydecent"&gt;@staydecent&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/CKxaN-u_NdE" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Omtask, A Simpler Task List</title>
            <author>Adrian Unger</author>
            <pubDate>Wed, 04 May 2011 00:00:00 -0700</pubDate>
            <link>/bits/omtask-simpler-task-list</link>
            <guid>/bits/omtask-simpler-task-list</guid>
            <description>&lt;p class="big"&gt;Omtask is an omnibox task manager for people that want
to finish tasks, not organize them.&lt;/p&gt;

&lt;h3&gt;Why Omtask?&lt;/h3&gt;

&lt;p&gt;When I came across &lt;a href="http://stevelosh.com/projects/t"&gt;Steve Losh's t&lt;/a&gt;,
I loved the idea of it. But, I also realised the extent of my
&lt;em&gt;bashing&lt;/em&gt; was updating git and svn repositories. Being mostly, a
front-end web developer—and addicted to the internet—I
spend a huge amount of time in my Web Browser, which happens to be
Chrome. &lt;em&gt;Hey, wait a minute! Aren't I able to run commands from
Chrome's address bar?&lt;/em&gt; Yes! So, I set out to implement the exact same
feature set as &lt;code&gt;t&lt;/code&gt; in a Google Chrome Extension.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Not Quite There&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;There is no marking tasks as &lt;em&gt;complete&lt;/em&gt; and editing still needs to be
added. But, you can add tasks, view them, and delete them. All from
the Omnibar (this is what Chrome calls its address bar)!
But, this is enough functionality for me to already begin using it. I
stopped using &lt;a href="http://taskthing.appspot.com"&gt;Task Thing&lt;/a&gt; awhile ago.&lt;/p&gt;

&lt;h3&gt;It's So Easy!&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;t Blog about omtask.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;There is no package yet, as I think it needs some more testing and
editing of tasks implemented. But, you can check out the source on
&lt;a href="https://github.com/staydecent/omtask"&gt;GitHub&lt;/a&gt;.
If you'd like to try it out right away, clone the repo, then on
Chrome's Extension page click &lt;em&gt;Developer Mode&lt;/em&gt; and &lt;em&gt;Load unpacked
extension&lt;/em&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/P95y1BHGvJM" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Managing Coworking</title>
            <author>Adrian Unger</author>
            <pubDate>Sat, 29 Jan 2011 00:00:00 -0800</pubDate>
            <link>/articles/managing-coworking</link>
            <guid>/articles/managing-coworking</guid>
            <description>&lt;p class="big"&gt;When I was working in a team of about ~15 at an
Advertising Agency, we were commonly trying to perfect how we all
interacted with each other.&lt;/p&gt;

&lt;p&gt;Building off of 37Signals concept that work doesn't get done at work,
we wanted to prevent intrusive chit-chatting and undelivered IMs. The
main problems were: &lt;strong&gt;Is this person currently in the office? What is
the person currently working on? Is this person available to talk
about current projects, new projects or other matters?&lt;/strong&gt; I recently
saw a &lt;a href="http://techcrunch.com/2011/01/05/yammer/"&gt;TechCrunch post&lt;/a&gt;
about &lt;a href="http://yammer.com"&gt;Yammer&lt;/a&gt; which was a potential solution to
those problems that never really worked. It's very hard to integrate
&lt;em&gt;yet another&lt;/em&gt; app into a teams workflow. We already had Basecamp,
Jira, Google Docs, IM, etc. so adding Yammer, which needed to be
consciously updated every time someone switch gears (left the office,
started a project, switched to another project, had a meeting), had a
high barrier for most people.&lt;/p&gt;

&lt;p&gt;Every team has a suite of apps they use to manage all of their
internal workings; the problem of perfecting internal interactions
shouldn't be handled by another app to add to the suite. Instead, we
should refine the way we access that suite of apps.&lt;/p&gt;

&lt;h3&gt;The Internal Start Page&lt;/h3&gt;

&lt;p&gt;Lots of you already use a start page for your web browsing and if
you're like me you probably have your business apps (time tracking,
invoicing etc.) pinned to your start page for easy access. This has
always helped me in remembering to sign into Basecamp and log my
hours, or check out the bug tracking app to see what should be
resolved today. But, it's not a perfect fit. This is where the
&lt;strong&gt;internal start page&lt;/strong&gt; comes in.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://lh5.ggpht.com/_OWzPdn_VEvM/TUR-UGUgvQI/AAAAAAAAAA0/yGQmXGploTE/s640/InternalStartPage.png" alt="Internal Start Page
porotype" /&gt;&lt;/p&gt;

&lt;p&gt;The above is a very simple prototype, that could potentially solve
this inter-office interaction problem. Like the &lt;em&gt;suite&lt;/em&gt; offered from
37Signals for accounts using more than one product, there is an area
containing unique icons for each app used by a team. This provides the
basis of an internal start page. Where it becomes useful in improving
interactions with coworker is the team list on the right (this layout
would only suffice for small &amp;lt; 25 person teams) where it shows all
members of the team, and their current status.&lt;/p&gt;

&lt;h3&gt;Where's The Magic?&lt;/h3&gt;

&lt;p&gt;On it's own, this is just the same nuisance as when we tried to use
Yammer—each person is required to update their status every time
the are busy, available, in office, on the phone, etc. The magic idea
is in the &lt;em&gt;portal&lt;/em&gt;. Each linked app would have API access (most web
based apps for teams have API's). When a person accesses an app and
does some kind of unique activity, the &lt;em&gt;start page&lt;/em&gt; would know,
automatically adjusting that person's status.&lt;/p&gt;

&lt;h3&gt;Why Am I Sharing This Idea?&lt;/h3&gt;

&lt;p&gt;This &lt;em&gt;internal start page&lt;/em&gt; idea would require a decent barrier to
setup each app and team member's account. It would also require a
decent amount of programming to make this work. And, could it &lt;em&gt;really&lt;/em&gt;
work? Let me know what you think
&lt;a href="http://twitter.com/staydecent"&gt;@staydecent&lt;/a&gt;!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/xZJ80EnCFiw" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Being Self Taught Revisted</title>
            <author>Adrian Unger</author>
            <pubDate>Wed, 05 Jan 2011 00:00:00 -0800</pubDate>
            <link>/articles/being-self-taught-revisted</link>
            <guid>/articles/being-self-taught-revisted</guid>
            <description>&lt;p class="big"&gt;A few weeks ago I posted about possible drawbacks of being a self-taught web developer and I got some really good feedback.&lt;/p&gt;

&lt;p&gt;The two main problems I illustrated were: &lt;strong&gt;How to your asses your own ability and properly convey it&lt;/strong&gt; and after assessing your ability &lt;strong&gt;how to properly determine the next step of progression.&lt;/strong&gt; I now think both problems are futile. I'm self-taught because I didn't agree with the requirements and structure of schools and assessments are inherently part of schooling&amp;mdash;So, why am I trying to assess myself?&lt;/p&gt;

&lt;p&gt;You can't just tell people you are an expert; that's for them to determine. Rather, show them what you do, and how it's helped people in the past.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;ldquo;I&amp;rsquo;ve never been asked for proof of my qualifications &amp;mdash; my work speaks for itself and the majority of my new work comes from current, happy clients telling others about me.&amp;rdquo; &amp;mdash; &lt;a href="http://www.drawar.com/posts/The-Unforeseen-Consequence-of-Being-Self-Taught#comment-9047"&gt;webecho&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;How to properly progress without assessment&lt;/h3&gt;

&lt;p&gt;Being a self-taught web developer, I already know how to keep up with a radically evolving industry. Where as, graduating from a rigid web design program, you may assume you have reached a certain level of knowledge and skill that will maintain your elligibility in getting work. But, &lt;strong&gt;Regardless of a formal or informal educational background in this field, the technology will permeate anyones&amp;rsquo; experience and knowledge if they don't constantly learn.&lt;/strong&gt; Being self-taught, I've become a proactive learner: When I wanted to know how to create a webpage I scoured the internet for tutorials, guides, blog posts and spec sheets.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;ldquo;An earnest personal motivation to learn is not something you pick up in a structured learning environment, and this skill will help you stay on top of trends and developments in the field.&amp;ldquo; &amp;mdash; &lt;a href="http://www.drawar.com/posts/The-Unforeseen-Consequence-of-Being-Self-Taught#comment-9046"&gt;eggNrice&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;However, being solely self-taught may not work for every field related to web design and develoment. When it comes to designers &lt;a href="http://www.drawar.com/posts/The-Unforeseen-Consequence-of-Being-Self-Taught#comment-9072"&gt;benek&lt;/a&gt; argues:&lt;/p&gt;

&lt;p&gt;&lt;q&gt;&amp;ldquo;[&amp;hellip;] having formal education in design is huge if you&amp;rsquo;re a designer. Most self-taught designers I see with little experience are just copying trendy tutorials online and they have no foundation in the principles of design.&amp;rdquo;&lt;/q&gt;&lt;/p&gt;

&lt;p&gt;Though, it's very possible one could also teach themselves the fundamentals. I suppose it's just more common place that purely self-taught designers often miss the foundation of good design.&lt;/p&gt;

&lt;p&gt;In the end, the educational background of someone shouldn't be the primary tell for their perceived ability. Your passion and hunger within your respective field guarantees much more. It's actually pretty prevalant in the design and web industry that a your work outweighs your educational experience.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/MNPXL9pVdbI" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>The Unforeseen Consequence of Being Self-Taught</title>
            <author>Adrian Unger</author>
            <pubDate>Sun, 12 Dec 2010 00:00:00 -0800</pubDate>
            <link>/articles/consequence-of-being-self-taught</link>
            <guid>/articles/consequence-of-being-self-taught</guid>
            <description>&lt;p class="big"&gt;I had yet to notice any drawbacks of working in a field where
I have either taught myself what I need to know or learned through work
experience. Until now.&lt;/p&gt;

&lt;p&gt;Hopefully you have realized, that I am a Web Designer &amp;amp; Developer. And,
I'll now let you know, that I learned nearly everything for this career with
trial &amp;amp; error and the internet. And, perhaps more surprising, I can
honestly say that my gateway into this career was playing a &lt;a href="http://en.wikipedia.org/wiki/Counter-Strike"&gt;popular&lt;/a&gt; computer game nearly nine years
ago.&lt;/p&gt;

&lt;h3&gt;Becoming A Self-Teacher&lt;/h3&gt;

&lt;p&gt;Sure, Counter-Strike itself was rather addicting but what really got my
attention was all those files (just left there for me to explore!) inside
the install directory. There were graphics, sounds, levels and even a unique
&lt;strong&gt;scripting language&lt;/strong&gt;! So, through the power of the internet, I taught
myself how to write Counter-Strike scripts. But, after finding or reading
about most of the exploits, scripting became dull—I wasn't actually
playing the game that much at this point, so there was no utility left. Soon
after, I discovered &lt;a href="http://en.wikipedia.org/wiki/Wallhack#Wallhacking"&gt;hacking&lt;/a&gt;. Naturally, I &lt;a href="http://www.gamedeception.net/"&gt;taught&lt;/a&gt; myself &lt;strong&gt;how to create multiplayer hacks&lt;/strong&gt;.
Actually, I even worked on some of most popular public cheats of a rather
limited time. From the amazing scripting community to the even more amazing
hacking communities, I found a viable way to learn whatever I was interested
in. And, I continue this approach even today.&lt;/p&gt;

&lt;h3&gt;Relevant Lessons&lt;/h3&gt;

&lt;p&gt;My foray into creating websites was &lt;a href="http://www.crunchbase.com/company/geocities"&gt;Geocities&lt;/a&gt;. Thankfully, I desired more
control and eventually learned HTML; my resource was the &lt;a href="http://www.htmlgoodies.com/primers/html/"&gt;HTML Goodies
Primers&lt;/a&gt;. Which, looking back on
it now, seems like a well structured lesson plan that could resemble what's
taught in school. Sadly, I can't recall what my main resource was for
learning CSS, but for PHP &lt;a href="http://tizag.com"&gt;Tizag&lt;/a&gt; covers the basics pretty
well. From that point, I had developed a strong enough base, that the rest
of my learning could be achieved by reading the &lt;a href="http://docs.python.org/"&gt;docs&lt;/a&gt; and &lt;a href="http://dev.w3.org/html5/spec/"&gt;spec sheets&lt;/a&gt; for
the technologies I was interested in.&lt;/p&gt;

&lt;h3&gt;The Problems&lt;/h3&gt;

&lt;p&gt;Recently, I was reading a bunch of the latest articles on &lt;a href="http://www.alistapart.com/"&gt;A List Apart&lt;/a&gt; and I noticed something I didn't have an answer
too. Which was, half the articles seemed useful and applicable while the
other half seemed obvious. My opinion is that A List Apart offers the
highest level of HTML (and similar technologies) understanding. Which lead
to my confusion: are only some of the articles aimed for professionals while
others are well-suited for beginners? Or, since after following the HTML
Goodies Primers I learned much of everything else &lt;em&gt;as it came up&lt;/em&gt; in actual
work experience, that my knowledge is scattered? Perhaps, I have an
understanding of some seemingly expert-level front-end development concepts,
while missing other, intermediate or even beginner-level concepts? At the
moment, I can't answer those questions. And, that brings up two problems:
&lt;strong&gt;Even though I spend almost every hour living inside Web Development, can I
claim expertise?&lt;/strong&gt; I don't have any physical or widely-accepted
&lt;em&gt;certification&lt;/em&gt;—just experience. This is a problem, because I don't
want to lie and I don't want to claim more than I mean. Another problem is,
where do I go from here? &lt;strong&gt;How do I determine what level of knowledge I have
of Web Development, and how do I properly determine the next step of
progression?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Is anyone else self-taught? Have you found any problems associated
with being self-taught? I'd love to hear from you either via [email](mailto:
comments@staydecent.ca) or &lt;a href="http://twitter.com/staydecent"&gt;Twitter&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/15dNdGfbYao" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>My First Visit To Seattle</title>
            <author>Adrian Unger</author>
            <pubDate>Sun, 28 Nov 2010 00:00:00 -0800</pubDate>
            <link>/articles/my-first-visit-to-seattle</link>
            <guid>/articles/my-first-visit-to-seattle</guid>
            <description>&lt;p class="big"&gt;Since I missed the chance to see one of my all-time favourite
people live, in Vancouver, I had an all-too-good reason to visit Seattle for
the first time.&lt;/p&gt;

&lt;p&gt;Grinderman, the newest project of Nick Cave and most of the Bad Seeds, is
finishing up their North American tour. It seems the show in Vancouver sold
out too fast for me and, without hesitation, caused me to buy tickets to the
Seattle show. Incredibly excited to see Nick Cave in the flesh—I just
can't help but enjoy &lt;em&gt;almost&lt;/em&gt; everything he produces—I was also
excited to visit Seattle for the first time. Which is a strange thing as I
have, thanks mostly in part by my Dad, seen more American soil than
Canadian.&lt;/p&gt;

&lt;h3&gt;Belltown&lt;/h3&gt;

&lt;p&gt;My girlfriend and I decided to stay at the Belltown Inn(in Belltown!), which
I booked through Hotels.ca. The process was easy enough, and it landed us
right in between the concert Venue and Pike Place Market. The Hotel itself
isn't much to talk about: it's clean; friendly staff; free bicycles;
whatever. Thanks to Hotels.ca we stayed one night at half price, but I can't
see myself going back at full price.&lt;/p&gt;

&lt;p&gt;Now, the neighbourhood of Belltown is pretty interesting. Though I haven't
seen much of Seattle(stayed within Belltown, West Edge and the Seattle
Centre) I came to like it immediately. Maybe because it's like Gastown but
not dark, dirty &amp;amp; depressing. Belltown is interesting because there is
no apparent sign of generic and duplicated business. Actually, from what I
saw, Seattle has far less fast-food joints and chain restaurants than
Vancouver(I'm probably thinking of Downtown and Gastown). I was
really surprised that I only came across two Starbucks, and yet both of them
had unique and rather interesting storefronts.&lt;/p&gt;

&lt;h3&gt;Eating&lt;/h3&gt;

&lt;p&gt;It was rather easy to find online restaurant recommendations for Seattle and
perhaps through instinct shortlisted about 6-8 for my Girlfriend and I to
choose from once there. Le Pichet easily got both of us excited and we went
for our first meal(brunch/lunch thing) there. Le Pichet serves traditional
and regional French food. We shared a plate of charcuterie and a Black Cod,
Orange &amp;amp; watercress salad. Awesome. It may not have been the best plate
of prepared meats I've had, but it was damn tasty, as was the bread and
salad. What I really enjoyed was the atmosphere: totally relaxed, subtle
decor, really attentive service and Massive Attack on the playlist.&lt;/p&gt;

&lt;p&gt;As a snack while browsing the Pike Place Market, I grabbed a BLT from Three
Sisters Cafe. Perhaps a bit pricey, but good ingredients and just made
simply. No fluff.&lt;/p&gt;

&lt;p&gt;For dinner, we went to the frequently recommended Zig Zag Cafe. First
impressions are tough, and it didn't go too well for this Cafe: a mentally
distant hostess, red lighting and purple velvet. Not my vibe. I think the
high-mark of this place is the drinks—the beverage menu is
massive—but we don't care much for this as we're more interested in
food. Oh well, we ordered the Boar Bacon Risotto and Full Quail. The food is 
well prepared and mostly flavourful. The risotto came with big cubes of Boar, 
which was great! But, Istill prefer a simple Mushroom risotto. The quail was 
good…just a bit boring. Maybe, if the skin was crispy, or there was more fat, 
or a tasty sauce all over it. But it was basically just a seasoned bird on top 
of some seasoned vegetables. Well made, but not exciting.&lt;/p&gt;

&lt;h3&gt;Grinderman&lt;/h3&gt;

&lt;p&gt;We caught Grinderman at the King Cat Theatre, a movie-theatre-turned-venue
which works quite well. I'm never really sure how to describe Grinderman.
I've heard the term, Garage Rock, thrown around. But it's not exactly the
sound I think of when I hear that term. Basically, they're a bunch of
bearded baddasses(and Nick) who've been playing music for at least 30 years.
Nick Cave's writings and lyrics are usually pretty dark and disturbing, but
Grinderman really pushes the dirt. The show was loud, dirty and full of
energy—they are just amazing to watch.&lt;/p&gt;

&lt;h3&gt;I'll be back&lt;/h3&gt;

&lt;p&gt;I &lt;em&gt;really&lt;/em&gt; enjoyed Seattle. I couldn't help but compare it to Vancouver and,
though my experience is limited, Seattle is a golden city to me right now.
It was just so relaxed: big sidewalks, much less inner city traffic, and
just so many &lt;strong&gt;unique&lt;/strong&gt; restaurants, cafe's, bars and shops. Walking
aimlessly, we never were far from yet another local food spot.&lt;/p&gt;

&lt;p&gt;Seattle is just easy.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/EFA8zJ35UBY" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Logicalism Over Minimalism</title>
            <author>Adrian Unger</author>
            <pubDate>Wed, 08 Sep 2010 00:00:00 -0700</pubDate>
            <link>/articles/logicalism-over-minimalism</link>
            <guid>/articles/logicalism-over-minimalism</guid>
            <description>&lt;p class="big"&gt;I don't subscribe to any sort of minimalist way of life. But, that word seems to have a meaning that I can often attest to my life. The funny thing about words and their meaning is that they aren't consistent across all means.&lt;/p&gt;

&lt;p&gt;In my very limited scope of &lt;a href="http://mnmal.org/"&gt;minimalist inspiration&lt;/a&gt;, &lt;em&gt;the word&lt;/em&gt; often is attributed to Apple—or the other way around. I mention this, firstly, because labeling and brands are things I attempt to avoid. Secondly, when I said &lt;em&gt;often&lt;/em&gt; I meant blindly and always. If anyone shares this limited scope with me, I would like to let them know: &lt;strong&gt;Minimalism is a jaded word with lost meaning, and is more keen to be a fad or popular tag.&lt;/strong&gt; And, on the reverse, Windows is hailed as the anti-christ of minimalism. Don't be fooled.&lt;/p&gt;

&lt;p&gt;In all senses and progressions of my life, I tend to believe I think about things logically. And especially when I started freelancing. I think logically about the way I &lt;strong&gt;work, and the devices used for work and communication; about food, where it comes from and how it's prepared; material items I own, like my clothing, furniture and other equipment&lt;/strong&gt;; and, basically anything else I deal with on a day-to-day basis.&lt;/p&gt;

&lt;p&gt;I'm going to split up each one of these things into separate posts. And, because Apple, computers and gadgets seemed to spark my definition debacle(maybe not quite &lt;em&gt;that&lt;/em&gt; serious), I will start there:&lt;/p&gt;

&lt;h3&gt;The End Of The Branded, Labeled Minimalism In The Office&lt;/h3&gt;

&lt;p&gt;These &lt;a href="http://mnmal.org/"&gt;blogs&lt;/a&gt; and &lt;a href="http://usesthis.com/"&gt;semi-popular internet figures&lt;/a&gt; will have you believe that you need to own 2 to 4 Apple made products to complete your minimalist
lifestyle. Now, they may not make this statement outright, but in their act of sharing their all-too-similar ways of life a very pretty, brushed-steel picture is painted. Actually, &lt;a href="http://www.flickr.com/photos/radiantmark/3267684305/" title="Laptop and desktop? Not very minimal"&gt;this picture&lt;/a&gt;. And, &lt;a href="http://www.vistaload.de/bilder/arbeitsp2.jpg" title="Laptop and desktop? Not very minimal"&gt;this one&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;In multiple, thousand-word essays these authors have shown that you &lt;em&gt;need&lt;/em&gt; an Ikea tabletop, some kind of fancy desk chair, the prominent desk lamp, a mac computer, a mighty mouse(such garbage), a cinema display, an iphone, a sleek dock, an ipod, an ipad, and no one cares anymore.&lt;/p&gt;

&lt;p&gt;In absolute, hellish contrast I am able to Design(even for print!), write markup, code(in multiple languages!), record, produce, take notes(&lt;em&gt;GASP&lt;/em&gt; without Word! And, without awesomely, cult loved "minimal" note taking apps exclusive for some other OS!) all with my…Windows 7 based laptop. Now, I'm not going to go into great detail about how &lt;strong&gt;you can work on windows just as minimally and simply as on a mac&lt;/strong&gt;. Because you're a grown-up, and you know that you can have a happy computing life without selling your soul to some &lt;a href="http://microsoft.com"&gt;corporation&lt;/a&gt; or &lt;a href="http://apple.com"&gt;brand&lt;/a&gt;. You don't have to do any one thing any one way, for the rest of your life and never fell that way of life. You can adapt. You can stop caring. You can still be efficient.&lt;/p&gt;

&lt;p&gt;Now, I'd like to believe that people will agree with me that this is a
rather unimpressive yet beautiful space to work in:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://imgur.com/16W6K.jpg" alt="My Current Workspace. I am still looking for a desk." class="photo" /&gt;&lt;/p&gt;

&lt;p&gt;And now, you may argue "it would look &lt;em&gt;even better&lt;/em&gt; with a macpro." And I retort "Suckas! I don't have an office—I just put my computer away in
its hiding place, when I'm finished working."&lt;/p&gt;

&lt;p&gt;And even now, you may think that I, the author, has gone astray, and lost his original point. But, I will emphasize that my point is to stop caring. This is so silly. If you &lt;strong&gt;honestly&lt;/strong&gt; believe that you cannot share the same minimalist lifestyle of simplicity and happiness and zen and organization and flowing water and grooveshark and starbucks and meetups with a Windows based machine in place of a Macintosh, then you should add the following disclaimer to your blog and every accompanying brand hugging post:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I am unwilling to be adaptable. I am unwilling to take matters into my own hand and consider all possibilities. I believe minimalism is always the easiest most obvious solution, and let the past dictate the future. I am set in stone. I am a minimalist without logic.&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/fj59WXUBIyQ" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Minor Update to Task Thing</title>
            <author>Adrian Unger</author>
            <pubDate>Wed, 01 Sep 2010 00:00:00 -0700</pubDate>
            <link>/bits/minor-update-task-thing</link>
            <guid>/bits/minor-update-task-thing</guid>
            <description>&lt;p class="big"&gt;While remaining rather minimal, Task Thing has a new
feature—more specifically a helpful piece of data is now
displayed on completed tasks.&lt;/p&gt;

&lt;p&gt;For anyone who is unaware, I created a little app called &lt;a href="http://taskthing.appspot.com"&gt;Task
Thing&lt;/a&gt; a &lt;a href="http://blog.staydecent.ca/entry/task-thing"&gt;few months
ago&lt;/a&gt;. It hasn't gained
much traction, but a couple people seem to be using it(Woo-ee!).&lt;/p&gt;

&lt;p&gt;With the hope that I will be more efficient and precise at tracking my
time, &lt;strong&gt;Task Thing now tells you how long it took for you to complete a
task&lt;/strong&gt;. This functionality was already implemented as Task Thing logs
the creation date and last modified date for each task. Using this
data, when a task is marked as completed(which logs the time of this
action) Task Thing displays that time relative to the time since
creation.&lt;/p&gt;

&lt;p&gt;Because I use Task Thing at a very micro scale—I only add tasks
that I am tackling that day, and usually as I begin working on
them—I can actually reference this &lt;em&gt;time to complete&lt;/em&gt; when
logging my hours for the day. Obviously, if I create a task one day,
ignore it for a few days, then work on it, and mark it complete, it's
not an accurate measure of &lt;strong&gt;actual time&lt;/strong&gt; committed to that task.
But, still an interesting piece of data. Maybe I should start logging
average time to complete tasks?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="http://taskthing.appspot.com"&gt;Try Task Thing today&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/if20FVEK25w" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Publishing By Email With Google App Engine</title>
            <author>Adrian Unger</author>
            <pubDate>Sat, 03 Jul 2010 00:00:00 -0700</pubDate>
            <link>/bits/publishing-by-email-app-engine</link>
            <guid>/bits/publishing-by-email-app-engine</guid>
            <description>&lt;p class="big"&gt;I really like the Posterous approach
to publishing online—I often write my ideas down in GMail. So I
decided to enable posting by email on my blog.&lt;/p&gt;

&lt;p&gt;The concept needs some work, but could very easily be adapted to a
multi-user environment. In that case, some serious security work would be
required. But for my personal blog, it should suffice.&lt;/p&gt;

&lt;h3&gt;How It Works&lt;/h3&gt;

&lt;p&gt;Google App Engine has amazing Email handling built in. Just check the
&lt;a href="http://code.google.com/appengine/docs/python/mail/"&gt;docs&lt;/a&gt;. Because of this,
not much code is required. Anyway, here's what I've accomplished:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Write posts in email&lt;/li&gt;
&lt;li&gt;Process those emails for &lt;em&gt;YAML Front Matter&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Continue using Markdown&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Pretty basic. I haven't got into checking attachments, but I don't think it
would be too much more work. As for the &lt;a href="http://wiki.github.com/mojombo/jekyll/yaml-front-matter"&gt;YAML Front Matter&lt;/a&gt;, a concept taken from &lt;a href="http://jekyllrb.com/"&gt;Jekyll&lt;/a&gt;, I follow &lt;a href="http://hunch.se/"&gt;Rasmus
Andersson's&lt;/a&gt; formatting exactly as it &lt;a href="http://github.com/rsms/gitblog/blob/master/docs/content.md"&gt;appears&lt;/a&gt; in &lt;a href="http://github.com/rsms/gitblog"&gt;Gitblog&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;How I Did It&lt;/h3&gt;

&lt;p&gt;I just read through those &lt;a href="http://code.google.com/appengine/docs/python/mail/"&gt;docs&lt;/a&gt; I mentioned above and
wrote an Email Handler. My blog has a very simple Entry handler, so saving
new entries is pretty easy.&lt;/p&gt;

&lt;script src="http://gist.github.com/462907.js?file=email.py"&gt;&lt;/script&gt;

&lt;p&gt;If you have any questions or input, message me on [Twitter](
http://twitter.com Staydecent on Twitter).&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/mHMlP3RA1xQ" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Installing App Engine On Windows</title>
            <author>Adrian Unger</author>
            <pubDate>Wed, 30 Jun 2010 00:00:00 -0700</pubDate>
            <link>/bits/installing-app-engine-on-windows</link>
            <guid>/bits/installing-app-engine-on-windows</guid>
            <description>&lt;p class="big"&gt;The most difficult part of installing Google App Engine on
Windows is the SSL module. But I've decided to compile a very simple guide
for the whole process.&lt;/p&gt;

&lt;p&gt;I am not going to cover any sort of usage guides. This is just a list to
installing everything required(on Windows) to deploy an App to the GAE
cloud.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Download &amp;amp; Install &lt;a href="http://www.python.org/download/releases/2.5"&gt;Python25)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Download &amp;amp; Install &lt;a href="http://code.google.com/appengine/downloads.html"&gt;App Engine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Download &amp;amp; Install &lt;a href="http://beautifulisbetterthanugly.com/s/uploads/python/ssl-1.15.win32-py2.5.exe"&gt;Python25 SSL Installer&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The hardest part: Installing the SSL Module. Python25, unlike 26 and
newer, does not come with the SSL Module and must be installed. The normal
route of &lt;code&gt;python setup.py install&lt;/code&gt; will produce errors. Something about
wrong compilers. There are &lt;a href="http://malei39.blogspot.com/2010/02/install-ssl-module-for-pyhon-254.html"&gt;tutorials&lt;/a&gt;
out there for installing all the dependencies manually. Luckily, someone has
created an installer exe. I have tested this on WindowsXP and Windows7 and
it works.&lt;/p&gt;

&lt;h3&gt;32bit Versus 64bit&lt;/h3&gt;

&lt;p&gt;Do not install the 64 bit version of Python on Windows. If you do you will
have to compile everything yourself. Including that installer, that
installer is 32bit only. I really don't know any benefit to installing the
64bit version of Python.&lt;/p&gt;

&lt;p&gt;Unless I am forgetting something, that is all you need.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/vYIjj04p5p0" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Wordpress Featured Post Slider</title>
            <author>Adrian Unger</author>
            <pubDate>Thu, 24 Jun 2010 00:00:00 -0700</pubDate>
            <link>/bits/wordpress-featured-post-slider</link>
            <guid>/bits/wordpress-featured-post-slider</guid>
            <description>&lt;p class="big"&gt;WordPress 3 is out: And it makes developing feature rich, user maintainable websites possible with the just the core.&lt;/p&gt;

&lt;p&gt;WordPress is already known for its ease of development, deployment &amp;amp; maintainability. Well, maybe not always the last one due to unmaintained plugins. This is addressed in WordPress 3.0 by &lt;a href="http://codex.wordpress.org/Version_3.0"&gt;adding&lt;/a&gt; to the expansive core. Anyway, here's an example of how to build a common blog feature with just core functions and some jQuery.&lt;/p&gt;

&lt;h3&gt;Featured Image Slider&lt;/h3&gt;

&lt;div class="aside"&gt;Note: Featured Image—as it's called within the admin UI—is synonymous with Post Thumbnail—as it's called in the function references.&lt;/div&gt;

&lt;p&gt;What is it? It's a way of showcasing all of the posts with a &lt;a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/"&gt;featured image&lt;/a&gt; in a simple slider (or other jQuery animation). All we have to do, is add support for post thumbnails and display them within the loop, and jQuery will handle the animation.&lt;/p&gt;

&lt;h3&gt;The WordPress Code&lt;/h3&gt;

&lt;p&gt;For a deeper explanation of post thumbnails, read &lt;a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/"&gt;Mark Jaquith's Post&lt;/a&gt;. For now, here is the code to add support and define the sizes of our post thumbnails:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 300, 100, true ); // Normal thumb size
add_image_size( 'featured-image', 900, 300, true ); // Slider size
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I displayed the slider on the homepage only, but pick a theme file and add the following within the loop:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;?php if (in_category('10') &amp;amp;&amp;amp; has_post_thumbnail()) : // Category 10 is my 'Featured' category ?&amp;gt;
&amp;lt;a href="&amp;lt;?php the_permalink() ?&amp;gt;" title="Permalink to &amp;lt;?php the_title() ?&amp;gt;" rel="bookmark"&amp;gt;
    &amp;lt;?php the_post_thumbnail('featured-image'); // Make sure you call the image size you defined in functions.php ?&amp;gt;
&amp;lt;/a&amp;gt;
&amp;lt;?php endif; ?&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;The jQuery Code&lt;/h3&gt;

&lt;p&gt;This is covered everywhere. You can use &lt;a href="http://sorgalla.com/projects/jcarousel/"&gt;jCarousel&lt;/a&gt; or any other jQuery(or other framework) plugin. Otherwise, check out my live &lt;a href="http://highfivecamp.com"&gt;implementation&lt;/a&gt; and feel free to view the source.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/n9qq_bqAPSc" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>Staying Productive With Task Thing</title>
            <author>Adrian Unger</author>
            <pubDate>Tue, 25 May 2010 00:00:00 -0700</pubDate>
            <link>/bits/task-thing</link>
            <guid>/bits/task-thing</guid>
            <description>&lt;p class="big"&gt;I have recently jumped back into the freelance world. And I need ways to stay productive.&lt;/p&gt;

&lt;h3&gt;Why I am freelancing&lt;/h3&gt;

&lt;p&gt;Growing sick of the &lt;em&gt;office&lt;/em&gt; &amp;amp; meetings &amp;amp; commuting &amp;amp; packed lunches &amp;amp; disagreements, I decided to get back into freelancing—effectively taking control of my life. The first day I sat down at my desk, I asked “What the fuck am I supposed to do today?” I needed a list of things(tasks) to keep me in check.&lt;/p&gt;

&lt;h3&gt;Available tools&lt;/h3&gt;

&lt;p&gt;Of course, the first thing I did was consider all of the to-do lists and task lists I have used in the past or just heard of(there are lots): &lt;a href="http://todoist.com/"&gt;Todoist&lt;/a&gt;, too much; &lt;a href="http://tadalist.com/"&gt;Ta-da List&lt;/a&gt;, I may as well used pen &amp;amp; paper; &lt;a href="http://teuxdeux.com/"&gt;Teux Deux&lt;/a&gt;, this was a close winner, but I don't like the multiple lists concept, or the small font-size. Naturally, if I wanted something I wouldn't complain about and could use every day, I needed to create my own.&lt;/p&gt;

&lt;h3&gt;Introducing Task Thing&lt;/h3&gt;

&lt;p&gt;This brings us to &lt;a href="http://taskthing.appspot.com"&gt;Task Thing&lt;/a&gt;! I would say this is very similar to Ta-da List, but with actual benefits over using just pen &amp;amp; paper. I say so because of drag &amp;amp; drop, inline editing and an understandable interface. Maybe I'm wrong, but feel free to &lt;a href="http://taskthing.appspot.com"&gt;give it a try&lt;/a&gt; yourself!&lt;/p&gt;

&lt;div style="background:url(http://taskthing.appspot.com/goods/png/screen.png);width:500px;height:200px;margin:0 auto 2em;-webkit-box-shadow: rgba(0, 0, 0, 0.199219) 0px 0px 15px;"&gt;&lt;/div&gt;

&lt;h3&gt;Building Task Thing&lt;/h3&gt;

&lt;p&gt;I built Task Thing over the better part of a day. This was possible because I was using a bunch of code I had written for another concept of mine(Hint: Panic Status Board). I won't go into too much detail, but Task Things' functionality is broken up into two models: list &amp;amp; task. The list model represents the page which gets one owner and any amount of tasks(owned by the same owner). A task has two editable fields, title &amp;amp; description as well as some other internal data(dates, priority, etc). Linking the tasks to the proper list is rather simple: the list attributes a unique slug and owner. When you view that list, you must login as the owner(logging in, you are redirected to your list). The tasks also have an owner field, which is matched with the list. Learning how to link different values in the App Engine datastore has been a lot of fun and so much lighter than MySQL joins. Also, I &lt;a href="http://noahstokes.com/"&gt;Ajaxed&lt;/a&gt; the shit out of it.&lt;/p&gt;

&lt;h3&gt;Staying Productive&lt;/h3&gt;

&lt;p&gt;Creating a task list was the first step I took in helping myself &lt;em&gt;stay productive&lt;/em&gt;, and I am sure there will be more. So, if you care, &lt;a href="http://feeds.feedburner.com/staydecent" title="the Staydecent™ Blog feed"&gt;check this blog often&lt;/a&gt; as I post more things.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/IgSCUD2SLdY" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>jQuery Random Each() Function</title>
            <author>Adrian Unger</author>
            <pubDate>Fri, 19 Mar 2010 00:00:00 -0700</pubDate>
            <link>/bits/jquery-random-each</link>
            <guid>/bits/jquery-random-each</guid>
            <description>&lt;p class="big"&gt;Fading in elements incrementally in order of the dom tree is cool, but so is fading in elements in random order.&lt;/p&gt;

&lt;p&gt;The former is pretty simple, you iterate through each element while setting a timeout for fading in:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$("div").each(function(i) {
    var e = $(this);
    e.fadeTo(0, 0.05);
    setTimeout(function(){
        e.fadeTo(250, 1);
    }, i*25);
});
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;code&gt;i&lt;/code&gt; is the index of each found element in order of the dom tree. As we get further down the tree the timeout is longer and longer—since the animation lasts longer than a couple timeouts the animations will overlap.&lt;/p&gt;

&lt;p&gt;To make it random, we still follow the dom tree in order, but we set the timeouts at differentiating lengths(randomly). Say we have 10 elements total, we can assume the indices are &lt;code&gt;0,1,2,3,4,5,6,7,8,9&lt;/code&gt;, We just need to sort those numbers randomly. Enter &lt;code&gt;randsort()&lt;/code&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function randsort(c) {
    var o = new Array();
    for (var i = 0; i &amp;lt; c; i++) {
        var n = Math.floor(Math.random()*c);
        if( jQuery.inArray(n, o) &amp;gt; 0 ) --i;
        else o.push(n);
    }
    return o;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;We pass the function the number of found elements and it loops through them creating new numbers(within the range of &lt;code&gt;c&lt;/code&gt;). To avoid duplicated numbers we use jQuery's &lt;code&gt;inArray&lt;/code&gt; and “skip” it if true. In the end, you have those indices in a random order. Moving along:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;var e = $('div') // The elements we're searching
var c = e.size() // Total number of those elements
var r = randsort(c) // an array of the element indices in random order
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now an ever so slight variance on that original each function:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;// the jQuery selector could be replaced with e
$("div").each(function(i) {
    var e = $(this);
    e.fadeTo(0, 0.05);
    setTimeout(function(){
        e.fadeTo(250, 1);
    }, r[i]*10);
});
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;So what's different? &lt;code&gt;r[i]*10&lt;/code&gt;. We are using the &lt;code&gt;i&lt;/code&gt; index to call the &lt;code&gt;r&lt;/code&gt; array in order, but since the values are a random representation of the element indices the timeouts differentiate. Boom!&lt;/p&gt;

&lt;p&gt;Check out a &lt;a href="http://staydecent.nfshost.com/demos/js/randomeach.htm"&gt;demo here.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/AEPGih6pJ3w" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>An Introduction</title>
            <author>Adrian Unger</author>
            <pubDate>Thu, 18 Mar 2010 00:00:00 -0700</pubDate>
            <link>/bits/intro</link>
            <guid>/bits/intro</guid>
            <description>&lt;p class="big"&gt;I have relaunched my website and launched my blog as a separate website. Here's how and why.&lt;/p&gt;

&lt;div class="clearfix"&gt;
&lt;div class="col size1of3"&gt;
&lt;h3&gt;In The Old Days&lt;/h3&gt;

&lt;p&gt;A few(or several) years back I had an account at a host named FreePGS, they offered PHP and MySQL at no cost! It housed numerous iterations of my homepage even up until Staydecent. FreePGS' offered service changed numerous times while I was there: From completely free, to $3 a year, to no longer accepting new accounts. Even when they started charging, I won a design contest and got to remain there for free, surviving through the death of FreePGS. In the end, I was plopped onto some reject GoDaddy reseller server that barely had enough power to load Plesk, while they asked me for $3 a year. Eventually, I stopped paying for that account.&lt;/p&gt;
&lt;/div&gt;

&lt;div class="col size1of3"&gt;
&lt;h3&gt;The Hiatus&lt;/h3&gt;

&lt;p&gt;I spent too much time researching hosts. Web Faction, Linode, Slicehost, PRGMR, all promising and none were a clear winner for me. So, I ended up with a static landing page for maybe a year? Anyway, I was serving this static page up on Nearly Free Speech, a pay for what you get service. Simple and cheap. Going back to those other hosts: the main reason I was considering them was because I wanted to learn the ins and outs of a VPS(or similarly free[as in freedom] service). But, VPS is dated and &lt;em&gt;The Cloud&lt;/em&gt; is in. So, I started playing around with Google App Engine.&lt;/p&gt;
&lt;/div&gt;

&lt;div class="col size1of3 last"&gt;
&lt;h3&gt;In The Cloud&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;Here's lookin’ at you, kid!&lt;/em&gt; What's that mean? Who cares, Rejoice! I built a Blog in Python on GAE.&lt;/p&gt;

&lt;p&gt;This blog is hosted on App Engine, but what about the portfolio? It's still on Nearly Free Speech, serving up static files. Why not? And, this is the first time I've split my blog away from the main site. Now, I have &lt;strong&gt;two&lt;/strong&gt; sites to mess around with, constantly!&lt;/p&gt;

&lt;p&gt;If you haven't noticed, or realized from this post: I change my website all the time. It constantly evolves as I learn new things and try new things with it. And so will this blog! I will try and be more consistent and make sure permalinks live on and keep downtime to a minimum. And, at least for now, the current Staydecent Blog and Staydecent Portfolio are not going to change much.&lt;/p&gt;

&lt;/div&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/ULFricc3E8A" height="1" width="1"/&gt;</description>
        </item>
                <item>
            <title>An Interview With Chris Allen</title>
            <author>Adrian Unger</author>
            <pubDate>Wed, 04 Feb 2009 00:00:00 -0800</pubDate>
            <link>/articles/interview-chris-allen</link>
            <guid>/articles/interview-chris-allen</guid>
            <description>&lt;p class="big"&gt;Chris Allen is a Vancouver based freelance Graphic Designer and Art Director, an Emily Carr Institute of Art and Design graduate and has strong roots in the Skateboarding industry.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Check out this interview I conducted with him to find out more!&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;img class="photo" src="http://lh6.ggpht.com/_Z_QjhvaYEE4/SYnvFY2fjTI/AAAAAAAAAKk/4fQwJrlXCRY/s800/c-allen02.jpg" /&gt;&lt;/p&gt;

&lt;h4&gt;Hey Chris, could you tell me a bit about your background(live, born, age, work, school, whatever!)?&lt;/h4&gt;

&lt;p&gt;Age 31; Work and live in Vancouver, BC Canada; Studied graphic design at ECIAD; Freelance designer currently working with Studio: Blackwell.&lt;/p&gt;

&lt;h4&gt;What do you think of Vancouver, in terms of graphic design work and whatever else stands out?&lt;/h4&gt;

&lt;p&gt;Vancouver is a beautiful city and [has] recently been rated as one of the worlds move livable cities. In regards to graphic design, I feel opportunity is a little lacking and as a result Vancouver has an over abundance of interactive studios and advertising agencies. Vancouver is not on the international radar of design hotspots by any means, but I feel confident in saying that good work is good work and can be produced anywhere. At the moment Vancouver seems to be working for me but [I] would love to experience living and working in a large city like London or New York.&lt;/p&gt;

&lt;h4&gt;Do you remember working for your first client? Anything to tell?&lt;/h4&gt;

&lt;p&gt;My fist client was a friend who required help in branding a small clothing line he was developing. With no formal training, technically or theoretically the intent was there and at the level we were operating it that was the most important thing. 
We knew what we wanted to do and how things should look it was just a matter of making it happen. No rationale, no theory—just make it look good. We photographed and produced a brand book/catalogue and developed a logo. It was all very simple but proved to be effective and as a result landing him the Urban Outfitters account.&lt;/p&gt;

&lt;blockquote class="col size2of5"&gt;We knew what we wanted to do and how things should look it was just a matter of making it happen. No rationale, no theory—just make it look good.&lt;/blockquote&gt;

&lt;h4&gt;I noticed your older work is largely based around the skateboarding and street cultures, how did that come about?&lt;/h4&gt;

&lt;p&gt;As a freelance designer I try and pursue projects that compliment and reflect my interest. Much like the work I did with Transworld Skateboarding. At that point of my life I was was heavily involved in skateboarding industry and also being a skateboarder myself it was only natural that I pursued work in which I was knowledgeable and had a love for. 
A Canadian friend of mine was the art director at Transworld in San Diego while I was attending Emily Carr. He contacted me to design an editorial feature figuring I could use the break, not to mention the cash. This proved to be a great way to get my feet wet in editorial design and also achieve a childhood dream of working at a skateboard magazine.&lt;/p&gt;

&lt;h4&gt;And now, your new work shows some great strategic branding, was this a natural progression moving to that kind of work? Which type of work do you prefer?&lt;/h4&gt;

&lt;p&gt;I think this is a natural progression for most designers. The more experience a designer gains the more knowledge they can apply to larger more complex projects. 
Honestly I prefer whatever project allows for the greatest opportunity for a new experience and a chance to create something I have not done before allowing me to constantly progress as a designer. My fear is doing the same thing over and over again, I think that is why I have been so reluctant to work in advertising, I am scared of the formula, the punch lines.&lt;/p&gt;

&lt;p&gt;&lt;img class="photo" src="http://lh4.ggpht.com/_Z_QjhvaYEE4/SYnvFd91AeI/AAAAAAAAAKs/lMtDTFxdFQM/s800/c-allen03.jpg" /&gt;
&lt;img class="photo" src="http://lh3.ggpht.com/_Z_QjhvaYEE4/SYnvFs-L51I/AAAAAAAAAK0/OuKUotaAeiE/s800/c-allen04.jpg" /&gt;&lt;/p&gt;

&lt;h4&gt;Are you able to tell us about any current or recent projects you are working on?&lt;/h4&gt;

&lt;p&gt;Currently I am working with Studio: Blackwell designing exhibition catalogues and artist monographs for the Gagosian Gallery and Rizzoli. Kelsey Blackwell is amazing and has taught me so many valuable lessons, not just with regards to design but theory and life itself. I feel honored to have such an incredible mentor.&lt;/p&gt;

&lt;h4&gt;What would be your ultimate dream project?&lt;/h4&gt;

&lt;p&gt;At this point I can't really give you a specific answer to that question. I guess my dream project would be to start a small publishing company and work remotely from a detached home studio with floor to ceiling glass in the middle of a forest.&lt;/p&gt;

&lt;h4&gt;What tracks, artists or albums are you listening to right now?&lt;/h4&gt;

&lt;p&gt;This is an interview in itself. The following are what I pulled off the records shelf in no particular order:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Led Zeppelin - II &lt;/li&gt;
&lt;li&gt;Booker T &amp;amp; The M.G.'s - Melting Pot &lt;/li&gt;
&lt;li&gt;Bob Dylan - Blood On The Tracks &lt;/li&gt;
&lt;li&gt;Black Sabbath - Sabbath Bloody Sabbath &lt;/li&gt;
&lt;li&gt;The Doors - Strange Days &lt;/li&gt;
&lt;li&gt;David Bowie - The Rise And Fall OF Ziggy Stardust And The Spiders From Mars &lt;/li&gt;
&lt;li&gt;Bill Withers - Still Bill &lt;/li&gt;
&lt;li&gt;Pink Floyd - Dark Side Of The Moon &lt;/li&gt;
&lt;li&gt;Heart - Little Queen &lt;/li&gt;
&lt;li&gt;Jane Birkin, Serge Gainsbourg - Self Titled &lt;/li&gt;
&lt;li&gt;Santana - Abraxas &lt;/li&gt;
&lt;li&gt;Unicorn - Tyrannosaurus Rex  &lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;Some Artists, designers, companies your into right now?&lt;/h4&gt;

&lt;p&gt;There are too many to list but I do find the following people although contemporary very interesting and influential: Storm Thorgerson (Hipgnosis), Bruce Mau Design, Spin, Build, Underline Studio, 2x4, Made Thought, Browns, Pentagram, Experimental Jetset, Non Format, Graphic Thought Facility, NB: Studio........&lt;/p&gt;

&lt;h4&gt;The essentials of every day life?&lt;/h4&gt;

&lt;p&gt;Family, my lovely girlfriend, friends, my animals, nature, food, music, photography, art and design.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Many thanks to Chris Allen for being my first interviewee! Please check out his &lt;a href="http://christopherallen.ca" target="_blank"&gt;website&lt;/a&gt; for more work and info.&lt;/em&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/staydecent/~4/vXcNsXTh_UA" height="1" width="1"/&gt;</description>
        </item>
            </channel>
</rss>

