Small Numbers, Great Design

Over at Sub­trac­tion, Khoi Vinh (Design Direc­tor of NYTimes.com) has a post on Great Num­bers, Not So Great Design. His basic point is that big­ger design stu­dios are not bet­ter, and that small­er stu­dios tend to be your best bet for good design. As a very small design shop here (two peo­ple!) I must of course agree. If my wife and I can’t com­mu­ni­cate and get in the flow with you, we have prob­lems larg­er than mere mis­com­mu­ni­ca­tion! Here’s the leadin to Khoi’s article/rant, which I sug­gest you go read:

Let me admit a real prej­u­dice that I have, and maybe you can try to con­vince me that I’m wrong: it’s my belief that you just can’t get great design out of a design agency with a staff larg­er than a dozen or two. Design doesn’t scale well, in my opin­ion, or at least it doesn’t do so easily.

This craft, and what­ev­er pre­ten­sions to art it can pull off, rests so much on the effi­cien­cy of trans­fer­ring ideas from the brain to the hand. This means that in its ide­al form, it works best when prac­ticed by a sin­gle per­son. The per­fect design staff is a sin­gle design­er who can con­ceive of and exe­cute an idea from start to fin­ish — a straight shot from the right brain to the wrist — main­tain­ing the same coher­ent cre­ative vision throughout.

Of course, as an eco­nom­ic mat­ter, this is imprac­ti­cal. For design to work as a busi­ness, it almost always has to scale to some degree. The small­er the scale, though, the more effi­cient the prac­tice of design; trans­mit­ting ideas among a small num­ber of peo­ple is much more effec­tive than trans­mit­ting them among a large number.

One Million Domains

The dot-ca top-lev­el domain (TLD) has just sur­passed 1,000,000 domains, and to cel­e­brate, the Cana­di­an Inter­net Reg­is­tra­tion Author­i­ty (CIRA) has launched the One Mil­lion Domains cam­paign. Soma Design was fea­tured in this pro­mo­tion­al site along­side many oth­er inter­est­ing uses of the dot-ca TLD.

I was also recent­ly inter­viewed by IT Busi­ness in con­nec­tion with this cam­paign, which was a pleas­ant expe­ri­ence. Lat­er in the same arti­cle, it is claimed that 3 in 4 Cana­di­ans pre­fer a dot-ca web­site when shop­ping online. That means that you have an instant “in” with your fel­low Cana­di­ans, if that is indeed your tar­get market.

All in all, I’m quite hap­py to be on the dot-ca domain, and look for­ward to the inter­est­ing oppor­tu­ni­ties afford­ed by being sure that every dot-ca domain is owned by a Cana­di­an indi­vid­ual or business.

WordPress 2.5 Released

It’s real­ly out now. WP 2.5 boasts a com­plete­ly redesigned admin­is­tra­tion inter­face, a new media uploader, built-in avatar sup­port and much more. I’ve been using the release can­di­dates on my per­son­al blog for the past two weeks already and it’s sol­id. This site will be updat­ed soon.

Go down­load it from WordPress.org, and admire their over­hauled design while you’re there.

Con­grats to the Word­Press team and Hap­py Cog on a job well done!

WordPress 2.5 Released (Almost)

If you stick around this site for any length of time, you’ll know that I’m a big fan of Word­Press, the fan­tas­tic open-source blog­ging and CMS plat­form. I’ve got­ten to know it’s (most­ly) intel­li­gent meth­ods of oper­a­tion over the last year and a bit, and I must say that I’m impressed.

But Word­Press 2.5 rep­re­sents a big step for­ward in usabil­i­ty. The admin­is­tra­tion area has under­gone a com­plete redesign, mak­ing for a bet­ter user expe­ri­ence when doing the impor­tant tasks of con­tent man­age­ment. Today the Word­Press devel­op­ment team announced Release Can­di­date 1 of v2.5, and take you on a tour of the high­lights of the new user inter­face, includ­ing a new rich text edi­tor, bet­ter filed upload­ing (includ­ing mul­ti-file upload­ing), a new gallery fea­ture, auto-updat­ing of plu­g­ins, and more.

I’ll be mov­ing this site over very soon.

WordPress & Google Analytics Tip

One thing that always used to bug me when I was surf­ing my own sites was that I was inflat­ing my site sta­tis­tics. This is espe­cial­ly the case when I go through a bunch of posts to check for fac­tu­al and gram­mat­i­cal issues. I’m inter­est­ed in know­ing when oth­er peo­ple are access­ing my old posts, but I don’t my ana­lyt­ics pack­age to mis­take me for them! So, I hacked togeth­er a bit of Word­Press solu­tion that will ensure that I don’t get served the Google Ana­lyt­ics track­ing script when I view the pages. Here’s the code: expla­na­tion to follow.

<?php
if ( !is_user_logged_in() && (get_bloginfo('home') == "http://yourblogurl.com") ) { ?>
 
Google Analytics code goes here.
 
<?php } ?>

The if() state­ment is what dri­ves this code, check­ing first­ly that the per­son view­ing the page is not a logged-in user. Then it adds a sec­ond line of defense against serv­ing the ana­lyt­ics code when I’m devel­op­ing on my local machine. It ensures that the page is being served by your pro­duc­tion serv­er (fill in what­ev­er your blog’s home url hap­pens to be) so that your local devel­op­ment also does­n’t inflate your pageviews.

Of course, this would work with any ana­lyt­ics code. Just insert this snip­pet wher­ev­er the track­ing code is sup­posed to go, and you should be all set!