1. Driver's Seat

    Growing tired of my current crop of wallpapers, I set out to create something non-distracting and easy on the eyes, and that I could leave up for a while and not get burnt out on. So far, I’m about one month in, it’s still up and I’m not yet tired of it — your mileage may vary. Named after those perforated, breathable seats found in many automobiles, here’s Driver’s Seat:

    Included are both Apple-branded and plain versions in the following sizes:

    • 1920x1200 (Cinema Display)
    • 1400x900 (15” MacBook Pro)
    • 1200x800 (13” MacBook [Pro])
    • 320x480 (iPhone)
    Published
    Jan 29
  2. Whatever work you do when you are procrastinating from other things is probably what you should be doing for the rest of your life.

    Published
    Jan 20
  3. Optimized for Small Screens

    Before launching this site, I had plans to create two alternate optimized versions: one for iPhone, iPod touch, and devices that run Android (for simplicity, I’ll refer to this version collectively as iPhone-optimized), and one for all other mobile devices. Shortly before taking off for the holidays, I wrapped them up and they’re now live (iPhone-optimized, mobile-optimized). The iPhone-optimized site incorporates the fantastic jQTouch by David Kaneda while the mobile-optimized site is much more simple.

    iPhone-Optimized Site

    I’ve been keeping tabs on jQTouch for a while now and was glad to finally take it for a spin. For those in the dark, it’s a jQuery plugin that provides a powerful framework for quickly building mobile web applications. While not limited to use on iPhones and iPod touches (it’s geared to work just as well on Android-powered and other capable devices with WebKit-based browsers, though I can’t test and confirm), the interface, included themes, and experience are based heavily on that of the iPhone OS.

    With the help of jQTouch, I was able to build an iPhone-optimized counterpart that retains all the same content from the full site relatively quickly and without duplication of content. The about page copy, work entries including their image sets, Tumblr posts, and contact form — it’s all there.

    Integrating Into CakePHP

    Since the main site is built with CakePHP, implementing an alternate iPhone layout was, well, cake. First, the layout (located in views/layouts/iphone.ctp) is triggered in the AppController’s beforeFilter method when the sub-domain, i.mightydream.com, is accessed; here I also set a globally-available variable called is_iphone to true which is helpful later in the individual controller actions:

    class AppController extends Controller {
    	...
    	
    	function beforeFilter() {
    		if ($this->Session->host == 'i.mightydream.com') {
    			$this->layout = 'iphone';
    			$this->is_iphone = true;
    		}
    	}
    }

    Now, it’s business-as-usual in Cake with a minor addition to each controller action that also renders a view for the iPhone-optimized site. Each interior page in the iPhone interface is loaded on-the-fly via Ajax to help keep the initial payload down; these requests are made using the same URL structure as the main site (e.g. /about, /work, /work/giftag) and, thus, use the same controller actions. If the previously-set variable, is_iphone, is true, the iPhone view is rendered instead of the normal view:

    class WorksController extends Controller {
    	...
    	
    	function index() {
    		$work = $this->Work->find('all');
    		$this->set('work', $work);
    		
    		if ($this->is_iphone) $this->render('iphone/index', 'ajax');
    	}
    }

    The addition of the ajax parameter used in the render method causes the view to be rendered by itself without a surrounding layout. And that’s it. These examples are simplified, but at the most basic level this is how I provide an alternate layout.

    Styling It

    I started with the “Apple” theme included with jQTouch and made various tweaks to fit my own preferences and needs. I cleaned up a few minor pieces that were slightly off, added a tilted arrow for links that open in a new window, and added style support for the spinner shown as sub-pages are loaded via Ajax (which is all of them). Now that it’s up and running, perhaps my next urge will be to bring it more in-line with the full site, design-wise.

    I also took advantage of jQTouch’s simple support for bookmarking sites on the home screen. When bookmarked, you’ll see a custom icon, a loading screen, and true full-screen support which ditches the Mobile Safari address and tool bars.

    Image Galleries

    For the image gallery in each work entry, I used a modified version of the jQTouch extention, jQTouch-Gallery, by Ryan McKillen. It provides a nice interface similar to the native iPhone photo gallery including tapping once to toggle the title and navigation bars for a full-screen view.

    It was also a breeze to implement and I had to make only a few minor modifications: (1) I rearranged the contents of the title bar, and (2) I changed the look of the navigation bar. The transitions I’d like to bring more in-line with the native UI (sliding only the image instead of flipping the image including the title/navigation bars), but that’s all for another day.

    Handling Auto-Redirects

    There’s much discussion surrounding how to handle directing visitors to companion mobile site(s). I settled on the approach of automatically redirecting mobile users to the appropriate site, then providing a way to view the full site. On the iPhone-optimized site, tapping the View Full Site button on the home page will take the user to the full site and remember this preference for 30 days by setting a cookie. Revisiting the iPhone-optimized site directly will reset this preference and return the auto-redirect behavior to normal. The code in question also sits in the AppController’s beforeFilter:

    class AppController extends Controller {
    	...
    	
    	function beforeFilter() {
    		if ($this->Session->host == 'i.mightydream.com') {
    			...
    		}
    		else if ($this->Session->host == 'm.mightydream.com') {
    			...
    		}
    		// or force layout for mobile agents
    		else if ($this->RequestHandler->isMobile()) {
    			// iPhone & Android
    			if ((stripos($_SERVER['HTTP_USER_AGENT'], 'iPhone') || stripos($_SERVER['HTTP_USER_AGENT'], 'Android'))) {
    				// if the iPhone cookie is simply not set or the user has not tapped "View Full Site", redirect to iPhone site
    				if (!isset($_COOKIE['MDRM_iPHONE']) || (isset($_COOKIE['MDRM_iPHONE']) && (bool)$_COOKIE['MDRM_iPHONE'] != false)) {
    					header('Location: i.mightydream.com');
    				}
    			}
    			// mobile
    			else {
    				header('Location: m.mightydream.com');
    			}
    		}
    	}
    }

    Mobile-Optimized Site

    The mobile-optimized site doesn’t need much explanation—it’s simply the raw HTML of the full site with the CSS stripped out. I don’t believe many people will see/use this, therefore I didn’t put much effort into it. It’s here more for the “see, there’s a mobile version, too” factor.

    Published
    Jan 7
  4. Delta boarding pass redesigned by Tyler Thompson. More here: Redesigning the Boarding Pass (via @awilkinson)

    Delta boarding pass redesigned by Tyler Thompson. More here: Redesigning the Boarding Pass (via @awilkinson)

    Published
    Jan 4
  5. The worst thing you can do to anybody trying to be creative is to demand participation in their vision.

    Published
    Dec 19
  6. chrisbowler:

A smart looking app by the team at overcommitted, Tripmix is a nice idea wrapped in a great UI.
[ via @motherfuton ]

    chrisbowler:

    A smart looking app by the team at overcommitted, Tripmix is a nice idea wrapped in a great UI.

    [ via @motherfuton ]

    Published
    Dec 18
  7. [Flash 9 is required to listen to audio.]

    Outasight - Catch Me If You Can

    Off Outasight’s free mixtape, Further, in preparation for his near-future full-length, From Here to Eternity. I’ve only recently become aware of this guy, but I’m diggin’ the rap/soul hybrid over gritty, sample-based beats.

    Outasight - Further

    Published
    Dec 17
  8. Quick File-Sharing Apps

    Lately, there’s been an explosion of quick file-sharing apps bursting onto the scene. Droplr, Cloud, and TinyGrab stick out the most to me and of them I’ve used Droplr and TinyGrab. Cloud is still in invite-only phase, but according to Chris Bowler, it shares many similarities with Droplr and, in the end, he prefers Droplr.

    Droplr is well-designed (both the app and web interface), quick, and unobtrusive. You simply drop any file on the app icon and voila! — a short link is generated and automatically copied to the clipboard. When visited, an ad accompanies the shared file, but they’re supplied by Fusion which gets a pass in my book.

    TinyGrab works a little differently. First off, it’s limited to sharing screenshots, but it actively watches for the native OS screenshot key command (both Mac and Windows supported) and instantly uploads the image and generates a short link. One particularly nice feature of TinyGrab is that it lets you use your own personal server space to host your images, though it’s not required.

    (This isn’t meant to be a full-fledged review post, especially since I haven’t used one of them. Just merely some linkage for a nice Thursday.)

    Droplr

    Cloud

    TinyGrab

    Published
    Dec 17
  9. Letter Cups
Part of my personal iPhone photography collection (see original post).

    Letter Cups

    Part of my personal iPhone photography collection (see original post).

    Published
    Dec 17
  10. Design is a problem-solving activity. It provides a means of clarifying, synthesizing, and dramatizing a word, a picture, a product, or an event. A serious barrier to the realization of good design, however, are the layers of management inherent in any bureaucratic structure. […] At issue, it seems, is neither malevolence nor stupidity, but human frailty.

    Paul Rand on The Politics of Design
    Published
    Dec 17

About Me.

Eric Grossnickle

Hi, I'm a freelance interface designer and developer in California. I use this tumblelog to post and reblog things I find interesting.