MIT Personas shows you how the Internet sees you
Entering your name into the text field unleashes a natural language processing engine that profiles your online identity. When it’s finished, you end up with a colorful, visual representation of your Internet persona. To really understand it, you need to give it a try.
Jeff is a Chicago web and user interface designer, screencaster and Head First-er. He’s a founding partner at Loudpixel—a small collaborative that helps companies make better communication and design decisions on the web. Read more →
18 Aug
11 Aug
Design patterns collection on Flickr
A great collection of UI design patterns from Chris Messina. He also has a bunch of other collections for design inspiration in his Flickr photostream.
7 Aug
Free fonts
A nice rundown of free typefaces you can use in your next design project. I really dig Tiresias Infopoint.
3 Aug
The White Balance Project
A collection of white balancing photos (most featuring yours truly) Allie took while working through her photography classes.
31 Jul
Custom taxonomies in Wordpress 2.8
Justin Tadlock explains how to modify your theme’s functions.php file to allow for custom taxonomies and enabling you to organize content like /people/jeff-siarto or /meat/porterhouse. Thanks to Brad for pointing this out.
27 Jul
301 Domain Redirects
One of the most reused snippets of code I write is a bit of Apache configuration that I put in my .htaccess file to do Google-friendly 301 redirects. I typically use them for two purposes: First, to redirect traffic to my active site from other URLs that I own (sometimes my site is listed as jeffsiarto.com). And second, to kill the www in front of my domains (read more on the www debate).
301 redirects tell the browser that a page has moved permanently and will force search engines to update their records and drop the old URL—avoiding duplicate content problems.
Redirect traffic from an old domain to a new domain
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^olddomain.com [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [r=301,NC]
Redirect traffic that uses the www subdomain
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
22 Jul
Spaceship Collaborative
A new Chicago start-up founded by Jacob DeHart (of Threadless fame) and his wife Mischa focused on creating fun and innovative projects that raise the bar for communities and services. This is also the crew behind the soon-to-be awesome foodie site Culinary Culture.
17 Jul
HTML 5 Weekly Review #3
It was another slow week on the HTML 5 spec front but not without some great discussion from the Zeldman camp. In lieu of any real breaking news, I’ve provided some interesting links to more reading on HTML 5:
HTML 5 Drag and Drop
A write-up on the features and usage of HTML 5 drag and drop in Firefox 3.5.
23 Essential HTML 5 Resources
Another list of resources and people to follow regarding HTML 5.
HTML 5: Good News/Bad News
If you’re still a little confused and overwhelmed with everything that’s going on with HTML 5, XHTML and future of the web, David at ODF Tools has written a post that may help clear things up.
Site of the Week: An Event Apart
The redesign of An Event Apart was done by Eric Meyer and the folks at Happy Cog. It’s been up since the beginning of the year and was one of the first higher-profile sites to switch to an HTML 5 DOCTYPE. Eric goes into more detail here about why he used HTML 5.
16 Jul
Rubber Bandit
A beautifully designed and built rubber band gun complete with interchangeable barrels and packaging that features the Archer typeface from H&FJ. Check out the schematics too.
13 Jul
HTML 5 Weekly Review #2
This week in HTML 5: Say goodbye to Ogg Theora, John Resig on HTML 5 parsing and Edge Rails switches its DOCTYPE.
No Specified Video Codec for HTML 5
ZDNet reports that HTML 5 author Ian Hickson has decided to drop support for the open source Ogg Theora video codec format as well as Apple’s H.264 format. Both are being pulled because of opposition from other browser vendors and Hickson’s approach to vendor involvement in writing the new spec. This means that HTML 5 will not specify a codec for use with the video element.
HTML 5 Parsing
John Resig talks about one of the most widely supported sections of the HTML 5 spec: document parsing.
New Rails DOCTYPE
In a recent commit, the main scaffolding template files in Rails were switched to the HTML 5 DOCTYPE. A short discussion of the changes can be found on Hacker News.
Site of the Week: UX London
The guys at Clearleft have done a great job recently in showing that HTML 5 is mature enough to be used on productions sites. Not only do they use it on their own site, but the design they did for the UX London conference features HTML 5 as well.
MIT mobile website
I’ve always thought that MIT had one of the most interesting academic websites. Their mobile site and full-screen counterpart are no exception.
iPhone web design gallery
A nice gallery of websites optimized for viewing on the iPhone.
12 Jul
Snow Stack: 3D visual effects using web standards
Amazing 3D effects with OS X Snow Leopard and Webkit using only HTML, CSS and JavaScript. Flash and Silverlight must be losing sleep at night.
8 Jul
HTML 5 browser implementation wiki
A good summary of current browser support for HTML 5. It’s a wiki so check back often for updates or help contribute by adding your own.
The Learner’s Journey in practice
O’Reilly Editor Brian Sawyer talks about the Learner’s Journey and the process the Head First team uses to get to a finished title.
