<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>Quasi Object Blog</title><link>http://quasiobject.com/blog</link><description>Blog covering web development, information architecture and interaction design</description><item><title>New Work from 2012</title><link>http://quasiobject.com/blog/58/new-work-from-2012/</link><description><![CDATA[<p>2012 was another good one. I worked with a lot of great people on great projects.</p>

<p>In the first half of the year, I lent a hand rolling out a reservations system for <a href="http://quasiobject.com/work/31/bojangles">Bojangles’</a>, contributed to the new <a href="http://quasiobject.com/work/32/mint-museum">Mint Museum</a> website and helped build out <a href="http://quasiobject.com/work/33/ride-rock-hill">Ride Rock Hill</a>.</p>

<p>The latter half of the year, I helped <a href="http://quasiobject.com/work/16/need-supply-co">Need Supply Co.</a> with a complete redesign and integration for their online store and blog. In December, <a href="http://quasiobject.com/work/34/samantha-crain">Samantha Crain</a> was in the market for a redesign. I rolled up my sleeves on some design work and then built out a nice responsive site that she can use for years to come. It felt good to see a entire project through from beginning to end.</p>

<p>Samantha's WordPress theme utilizes <a href="http://sass-lang.com/">Sass</a> to manage the site's CSS and makes it dead simple to completely change up styles to match the artwork of a new single, EP or full-length. That said, the site will be featuring her new record, <em>Kid Face</em>, for some time to come. Watch the ingenious video for "Never Going Back" on <a href="http://www.spin.com/articles/samantha-crain-never-going-back-video-flip-book">Spin</a>.</p>

<p>On the home front, I ported this site over to <a href="http://laravel.com/">Laravel 3</a> (and eventually to <a href="https://github.com/laravel/laravel/tree/develop">Laravel 4</a>). Overall, the design and content needed a little sprucing up. More importantly, the site is now responsive, since it's a good idea to practice what you preach.</p>

<p>As always, I look forward to the challenges of client work in 2013. Of course, I'd be lying if I didn't admit to having my own plans and schemes for the year. We'll see what shakes out between the ideas and the time for execution.</p>
]]></description><pubDate>Thu, 07 Feb 2013 11:15:00 -0500</pubDate><guid>http://quasiobject.com/blog/58/new-work-from-2012/</guid></item><item><title>New Work from 2011, Plans for 2012</title><link>http://quasiobject.com/blog/57/new-work-from-2011-plans-for-2012/</link><description><![CDATA[<p>Last year was a good one. I was lucky enough to work steadily throughout the year on some great projects. I've added some of said projects to the portfolio: <a href="http://quasiobject.com/work/27/sungard">SunGard</a>, <a href="http://quasiobject.com/work/31/bojangles">Bojangles'</a>, <a href="http://quasiobject.com/work/30/invue-power-up">InVue Power Up</a>, <a href="http://quasiobject.com/work/28/wire-rope-exchange">Wire Rope Exchange</a> and <a href="http://quasiobject.com/work/29/bam-architects">BAM Architects</a>. I can only hope for similar prosperity and clientele for 2012.</p>

<p>At the end of 2011, I made conscious effort to consolidate my focus. Accordingly, I've dropped several of my half-baked side projects and languishing domains. For the projects that made the cut, there are a few minor developments on the horizon and some grander plans, but I won't get into those until the time is right. As well, look for Quasi Object Labs here <del>soon</del> eventually.</p>

<p>Finally, I will breathe some new life into the blog this year. I realized that what is posted here doesn't have to be anguished over or amazingly articulate (not that any previous posts were either). Basically, whenever Twitter's 140 characters don't cut it, I'll probably post those thoughts here. Expect some cross-posting from <a href="http://forrst.com/people/quasiobject/posts">Forrst</a>, too.</p>
]]></description><pubDate>Mon, 02 Jan 2012 18:02:00 -0500</pubDate><guid>http://quasiobject.com/blog/57/new-work-from-2011-plans-for-2012/</guid></item><item><title>Updated Logo, Website</title><link>http://quasiobject.com/blog/55/updated-logo-website/</link><description><![CDATA[<p>I've been wanting to make a few tweaks to the Quasi Object logo for a while now. The original Q came from a font I created back in college and it didn't have the exactness I felt warranted by the services it represents, web development.</p>

<p>Accordingly, I rebuilt the logo based on a 4x6 grid, with each block as one unit. For the blocks with rounded corners, I further broke them down into a 4x4 grid and rounded the corner at 25%. Whether it needed to be done or not, it at least appeases the OCD gods (for now).</p>

<p>Of course, once I started fiddling with the logo, that made me want to take a look at the website. I ditched my homegrown setup for <a href="http://kohanaframework.org/">Kohana 3</a> and expanded the site out with <a href="http://quasiobject.com/">dedicated project pages</a>, <a href="http://quasiobject.com/about">an about page</a> and <a href="http://quasiobject.com/contact">a contact page</a>. The plan is to keep iterating on this throughout the year, but I wanted to start fresh for 2011.</p>

<p>Last but not least, I added all my notable work from 2010 <a href="http://quasiobject.com/">to the portfolio</a>. Out with the old, in with the new. Here's to a successful, productive 2011, everyone!</p>
]]></description><pubDate>Mon, 03 Jan 2011 13:32:00 -0500</pubDate><guid>http://quasiobject.com/blog/55/updated-logo-website/</guid></item><item><title>Allowing Flash Uploads Through Apache Authentication in .htaccess</title><link>http://quasiobject.com/blog/54/allowing-flash-uploads-through-apache-authentication-in-htaccess/</link><description><![CDATA[<p>Occasionally, I run into issues uploading files through Flash to a development or staging site protected by Apache authentication. I've seen all kinds of recommendations to bypass the authentication, but nothing ever worked.</p>

<p>Recently, I realized you can limit the authentication to GET requests only, which leaves POST requests completely open. As it does leave POST open, I would only suggest using it for a development or staging environment.</p>

<pre><code>&lt;Limit GET&gt;
AuthType Basic
AuthName "Restricted Files"
AuthUserFile /path/to/htpasswd
Require valid-user
&lt;/Limit&gt;
</code></pre>

<p>Since discovering the use of the <a href="http://httpd.apache.org/docs/1.3/mod/core.html#limit">&lt;Limit&gt;</a> directive in .htaccess, I've seen this workaround mentioned several other places, sometimes using the <a href="http://httpd.apache.org/docs/1.3/mod/core.html#limitexcept">&lt;LimitExcept&gt;</a> directive instead. &lt;LimitExcept&gt; produced an Internal Service Error for me, so I can't vouch for it. Nevertheless, as the information is somewhat buried in comment threads and forums littered around the web, I wanted to post it out in the open for other frustrated developers out there to find and use.</p>
]]></description><pubDate>Fri, 19 Nov 2010 13:04:33 -0500</pubDate><guid>http://quasiobject.com/blog/54/allowing-flash-uploads-through-apache-authentication-in-htaccess/</guid></item><item><title>Silent Uproar Search</title><link>http://quasiobject.com/blog/53/silent-uproar-search/</link><description><![CDATA[<p>I recently relaunched <a href="http://silentuproar.com">Silent Uproar</a> with some designs from art director and designer Clay Johnson at <a href="http://wearewith.com">With</a>. One of my favorite parts of the new design from Clay is the search overlay. When he first sent me the screen, I hadn't seen anything quite like it before and knew it might take people off guard, even with something as banal as a keyword search. Technically, it wouldn't have been possible without using <a href="http://www.w3.org/TR/css3-fonts/">@font-face</a> embedding and OFL typefaces like <a href="http://www.theleagueofmoveabletype.com/fonts/7-league-gothic">League Gothic</a>. Maybe it could be a tad clearer on the usability side (i.e., there's no submit button), but I was happy to put form over function in this case.</p>
]]></description><pubDate>Wed, 03 Nov 2010 12:05:00 -0400</pubDate><guid>http://quasiobject.com/blog/53/silent-uproar-search/</guid></item><item><title>Change is Coming</title><link>http://quasiobject.com/blog/52/change-is-coming/</link><description><![CDATA[<p>The longer you neglect something, the easier it is to neglect. Case in point: this blog hasn't been updated in over four months. Nevertheless, I've got about eight projects to add to the portfolio, a few tweaks and a possible face lift for this website. Not to mention, the handful of client and internal projects that are currently in progress.</p>

<p>Lately, I've been trying to be an active participant on <a href="http://forrst.com/">Forrst</a>, a new community for designers and developers. That community is motivating me to learn from and share more information with my peers. Hopefully, a steady stream of tips and snippets will again flow through these pages before too long.</p>

<p>How many times can I do these "it's been a while, I'll do better" posts before I'm the boy who cried wolf? I'll try not to make it a habit.</p>
]]></description><pubDate>Fri, 20 Aug 2010 17:49:03 -0400</pubDate><guid>http://quasiobject.com/blog/52/change-is-coming/</guid></item><item><title>Minor Yet Irritating Flash Bug in Mac Firefox 3.6</title><link>http://quasiobject.com/blog/51/minor-yet-irritating-flash-bug-in-mac-firefox-36/</link><description><![CDATA[<p>Shortly after upgrading to Firefox 3.6 on the Mac, I noticed a lot of Flash elements <a href="https://support.mozilla.com/en-US/forum/1/570657">offset by one pixel on the top and left</a>. I thought I was going crazy, until I downgraded to 3.5.x and it went away. I tried to find a workaround or explanation, but there was none. Like I said, minor yet irritating.</p>

<p>Apparently, it crops up if the elements are centered and if the browser window is sized to an even width. Thankfully, Mozilla now <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=550246">recognizes the bug</a>, it's become a priority and is working on a fix. (Note: this is not an issue with 'focus' or 'outline' CSS properties.)</p>

<p>Indeed, this is a minor issue, but if you have any Flash elements that are width or height sensitive, chances are they're affected to this bug. I posted this note to save any of you Mac Firefox folks out there the headache of tracking down this issue.</p>
]]></description><pubDate>Fri, 09 Apr 2010 12:33:51 -0400</pubDate><guid>http://quasiobject.com/blog/51/minor-yet-irritating-flash-bug-in-mac-firefox-36/</guid></item><item><title>Brantley Barefoot</title><link>http://quasiobject.com/blog/49/brantley-barefoot/</link><description><![CDATA[<p>Designer, art director and friend <a href="http://brantleybarefoot.com/">Brantley Barefoot</a> just launched a simple, new portfolio. I helped get him up and running, with ExpressionEngine as a back end. Toggle the background with "w" for some added fun.</p>
]]></description><pubDate>Tue, 06 Apr 2010 11:52:10 -0400</pubDate><guid>http://quasiobject.com/blog/49/brantley-barefoot/</guid></item><item><title>Is it 2010 Already?</title><link>http://quasiobject.com/blog/48/is-it-2010-already/</link><description><![CDATA[<p>Last time we talked it was November 2009. I've been slack on the blogging and slightly overwhelmed with work (which I'll never complain about, just stating the facts). For brevity's sake, I'll just provide the highlights.</p>

<p>I provided a little Flash and Papervision3D assistance to <a href="http://www.bignoise.com/">BigNoise</a> on the <a href="http://www.nascarhall.com/">NASCAR Hall of Fame</a> home page. Then, I worked with my pals at <a href="http://niceoutfit.com/">Nice Outfit</a>, handling development on a website for Los Angeles graffiti legend <a href="http://riskrock.com/">RISK</a>. After that, I helped launch a website and partnership with <a href="http://www.seriousandly.com/">Serious&amp;Ly</a> in Richmond, VA. Most recently, I built a website for African American string band <a href="http://www.carolinachocolatedrops.com/">Carolina Chocolate Drops</a> and Crips founding member <a href="http://gregbatmandavis.com/">Greg &#8220;Batman&#8221; Davis</a> (via <a href="http://www.rrockenterprises.com/">R. Rock Enterprises</a>).</p>

<p>On the horizon is a web app launch for <a href="http://novelope.com">Novelope</a>. With Serious&amp;Ly, there are projects ongoing for <a href="http://worklabs.com/">Work Labs'</a> new, internal collaborative app, <a href="http://labrats.com">Lab Rats</a>, and the launch of a digital media label, <a href="http://theacmethunderer.com">The Acme Thunderer</a>. As well, I'm gearing up for a few in-house projects and will make an effort to keep the blog fresh with content. 2010 already sounds busy &mdash; I hope I can keep up.</p>
]]></description><pubDate>Fri, 05 Mar 2010 12:38:26 -0500</pubDate><guid>http://quasiobject.com/blog/48/is-it-2010-already/</guid></item><item><title>Interaction Elasticity</title><link>http://quasiobject.com/blog/47/interaction-elasticity/</link><description><![CDATA[<p><a href="http://www.useit.com">Jakob Nielsen</a> occasionally drifts into utopian usability fantasies in which he tries to convince us that we should all stop using Flash and Photoshop. On the other hand, he occasionally publishes ideas that are valid.</p>

<p>I recently browsed a year-old article on <a href="http://www.useit.com/alertbox/interaction-elasticity.html">Interaction Elasticity</a> that contained this:</p>

<blockquote>
  <p>A path with 5 easy clicks is vastly superior to one with 3 difficult clicks. And a menu with 10 easily understood items is better than a menu with 7 obscure ones.</p>
</blockquote>

<p>To put this in context, I was debating the use of a dreaded drop-down menu when I came across said article. For me, Nielsen's quote argued against things like drop-down menus, since providing a clear logical navigation path to subpages (even with 2 to 3 clicks) would be usable, clean and better for information architecture.</p>

<p>Note: I'm downplaying the <a href="http://www.useit.com/alertbox/annoyances.html">traditional drop-down</a>. I think rollovers that are more akin to widgets or what Nielsen calls a <a href="http://www.useit.com/alertbox/mega-dropdown-menus.html">Mega Drop-Down</a> aren't so bad.</p>
]]></description><pubDate>Fri, 13 Nov 2009 00:34:56 -0500</pubDate><guid>http://quasiobject.com/blog/47/interaction-elasticity/</guid></item></channel></rss>