Summary Of An Event Apart DC Day 1

The Event Apart conference series is the top-notch gathering for people who make websites. Making its way across various cities in the U.S., the Event Apart tour stopped in Washington, D.C., which I was fortunate enough to attend. The speakers themselves were amazing but interacting with the attendees in real-time during the talks opened a whole new level to the experience. Below are some of the best tweets I curated from each of the sessions. All of which came from afeedapart.com, the official feed aggregator for An Event Apart.

Web 2.1: The Medium Comes of Age by Jeffery Zeldman

Zeldman started things off with a presentation covering the history of communication from the printing press to HTML5, and everything in between. In 2010, standards based design is no longer fringe, HTML5/CSS3 are viable technologies, and the mobile web is taking shape.

  • The death of the web is greatly exaggerated. @tomkruk
  • If the web is dead, then print must be mummified. @Merlaak
  • “There are 241 newsgroups on 1986. 240 are porn…” @grum_dot_com
  • Zeldman calls the telegraph The Victorian Internet @eduiconf
  • R. Cailliau – leading man’s best friend. Worked with Tim Berners-Lee to invent the web. @mad_sunshine
  • 1991 AOL… remember 9600 baud modem? = yuck @lavinia
  • “there’s a history of the internet being ugly and being designed by people who can’t design their way out of a paper bag” @ashleyjoost
  • 1993. Mosaic. We’ve come a long way. #aea http://yfrog.com/jcem8mj @eTapWeb
  • I remember using MOSAIC on my Amiga 500, wondering why “forms” are not showing… @tomkruk
  • And you had to PAY for Netscape @cityrider49
  • Netscape Gold FTW! @tomkruk
  • Zeldman breaking down landmark moments in web history: “1995 brings us the tiled background” @mattmediadc
  • “IE no longer sucks, IE is awesome” – Zeldman, #aea … hear it from the man! @franksedivy
  • 1998 — internet traffic doubles every 100 days @ashleyjoost
  • the phrase “best viewed…” should be left to history @cityrider49
  • dot com bust = coming off a coke bender @tonyvia
  • 2000 dot com bubble burst brought us benefits: people were forced to learn standards, improve their skills to make a difference. @mihswat
  • The CSS Zen Garden changed my professional career… Design for the web became a whole different concept @mattmediadc
  • “you can’t burn every house down because we have this new idea for architecture” @TheTroz
  • XHTML 2.0 was burning every house in the world just to propose a new architecture. @mihswat
  • “HTML5. You keep using that word. I do not think it means what you think it means.” @eTapWeb

Object Oriented CSS by Nicole Sullivan

Nicole developed a technique for managing CSS called Object Oriented CSS. The basic premise is to recognize visual patterns and mark them up consistently. Consistent markup results in more compact and efficient CSS code to style which in turn results in more manageable code and faster performing websites.

  • If you write CSS for any site of significant size or traffic you MUST hear @stubbornella talk on OOCSS. This is my second time listen. @aebsr
  • Reason for CSS optimization, CSS Blocks progressive rendering @eduiconf
  • 42% of Alexa’s Top 1000 don’t gzip CSS. 44% have more than 2 files. 56% serve with cookies. 62% don’t minify. 21% have > 100k of CSS. @mihswat
  • “Our sites are choking on the amount of CSS we’re throwing over the wire.” @eTapWeb
  • OOCSS makes me intellectually erect @grum_dot_com
  • Object oriented CSS sound a lot more complicated than it really is. @kingkool68
  • wow around May 2009 FaceBook had over 700 CSS files that totaled more than 1.9Mb @160mph
  • “If you fighting your CSS, your architecture failed” @franksedivy
  • Facebook has all of their headings bold. Non-bolded headings looked weird to users. @kingkool68
  • People aren’t viewing your home page or reading your about section anymore. It’s all Google hit-and-runs, and it’s changing our design. @brian_klaas
  • Css objects were better for humungo sites like Facebook. Seems overkill for smaller, simple sites. @kingkool68
  • Dust-me Selectors to find unused css. http://www.sitepoint.com/dustmeselectors/ @chrismjones
  • A ‘giant pink heading’ should not become a ‘small blue heading’ when placed in another part of the site. @phej
  • Elements should be styled globally, avoiding area-dependent declarations in CSS. Rules should be predictable, avoid overwriting them. @mihswat
  • Love how @stubbornella uses the story of the lady who swallowed a fly in relation to CSS @candiRSX
  • Writing CSS to correct previous bad CSS is the legacy of the old woman who swallowed a fly. It makes sense when @stubbornella says it. @achellios
  • Nicole Sullivan’s Grids on github – http://wiki.github.com/stubbornella/oocss/grids @Merlaak
  • Classing elements with element names (“.h1”) is one step removed from or similar. @jgarber
  • hmmmm…not sure about @stubbornella rec. on eg h3.h6 Isn’t that sort of hacky? Shouldn’t we re-examine design first? @ryanhoonlaverty
  • Among Alexa’s Top 1000, there’s a site with 511 declarations setting styles for h1-h6. Facebook used to have 958. @mihswat
  • After a CSS rewrite, there were only 25 declarations. @mihswat
  • Amen to the underscore hack. I use it all the time. @kingkool68
  • Avoid styling IDs. IDs are for JavaScript. @mihswat
  • styling IDs messes up specificity @eduiconf
  • “You should definitely suffer if you use hacks” @chrismjones
  • Not sure about this ‘not styling IDs’ and have class driven styles .that on top of the things aren’t semantic (.h1, .h2 etc…) … :/ @franksedivy
  • “AVOID !IMPORTANT – except on leaf nodes” Good advice!! @JudyBad
  • “I try to get specificity out-of-the-way so my cascade can really shine.” @andysherry
  • agree with not using !important, disagree with not styling IDs. style IDs if they’re used sparingly or if “lead nodes”. @courcelan
  • Styling using IDs, !importants, and too many nested elements is like fighting whose CSS rules are going to win. @mihswat
  • who knew? the way I wrote CSS as a n00b was on the right path – lots of class selectors and few element/ID selectors! @raelehman
  • I think OO CSS takes the art and craft away from CSS and gets it ready for consumers world! :( @franksedivy
  • The blinking cursor says, “You don’t remember anything.” (Referring to the command line) @Merlaak
  • Find and replace is really why I use Dreamweaver as my coding tool of choice. No need to figure out grep. @kingkool68
  • See how many times a declaration if when your css from command line. grep -r font-size . | wc -l @chrismjones
  • Hmm, @stubbornella‘s OO approach to CSS preso has some good QA tricks, but her philosophy has too much scaffolding for general use @talbs
  • Feeling a little weird about @stubbornella‘s approach to object-oriented CSS, but liking some ideas about finding duplication. @graphicsgirl
  • OOCSS sounds like the best approach for Facebook, but not most sites we design and build. @graphicsgirl
  • afraid newbs will get the wrong idea with @stubbornella‘s methodology and not consider scale/context/semantics @talbs
  • I found taking the general idea from this presentation and building a custom framework for our approach to build sites worked great @aeaattendee
  • Looking at CSS in a way I never have thanks to @stubbornella @TheTroz
  • Facebook reduced CSS size by 19% and HTML size by 44% after optimizations @mihswat
  • * and _ hacks > conditional statements @160mph
  • Been using OOCSS for the past year and a half. Have never found a site that did not benefit. @chrismjones

The CSS3 Experience by Dan Cederholm

Dan emphasizes that sites don’t need to look and behave exactly the same in every browser. Case in point, he owns http://dowebsitesneedtolookexactlythesameineverybrowser.com/ and http://dowebsitesneedtobeexperiencedexactlythesameineverybrowser.com/. CSS3 is available in modern browsers today and suitable for non-critical elements of a design. His presentation consisted of several demos showcasing how CSS3 could be used to sweeten interfaces.

Mobile First! by Luke Wroblewski

Luke covered designing Web applications for mobile platforms first before the desktop. This helps you focus a website down to its bare essentials and functionality. The mobile web is exploding, and in some cases, is the only access someone has to the Internet.

  • “Web products should be designed for mobile first, even if no mobile version is planned.” @eTapWeb
  • desktop internet devices: 1 billion, mobile devices: 10 billion @tonyvia
  • “50% of people who were new to the web last year were on mobile devices.” @eTapWeb
  • Why build mobile first? More growth and future users. @tyrale
  • Mobile Web growth has outpaced desktop Web growth 8x. Smartphone sales will pass PC sales in 2011. @mihswat
  • Mobile is the new black @JudyBad
  • Great mobile products are created never ported. @kingkool68
  • mobile stats from #lukew http://lukew.com/ff/ @eduiconf
  • “27% of searches on Yelp! come from 4% of users (i.e. the users who access Yelp! via iPhone.)” @zeldman
  • “Designing for mobile forces you to focus and prioritize.” @eTapWeb
  • Moving from desktop to mobile… First remove 80% of the crap @tyrale
  • Design for mobile first and you will get down to the things that matter. @mad_sunshine
  • “everything else on this page needs to pixelate and die.” @courcelan
  • Mobile devices’ limited screen size makes you focus on what’s important – main features, straight communication. @mihswat
  • Use vector to design for the web, build with css3 it will scale automagically! @tyrale
  • Mobile design is all about adaption @kingkool68
  • for mobile, make the content the UI @rkunboxed
  • 100ms delay results in 1% sales loss for Amazon ($191 Million) @eduiconf
  • Google says 500ms delay drops search traffic by 20%. Wonder what our 8,000ms server hangs do. Cough. @itmaybejj
  • optimize for mobile:speed eg, eliminate redirects & use app cache for local content storage @dinalew
  • Mobile is quick bursts, and mostly at home on usage. @tyrale
  • Your mobile is with you all the time, so designing for mobile means designing something that can be used all the time. @zeldman
  • Only make content and web apps that are useful to people *all the time @halvorson
  • People spend only about 2 to 4 seconds on a webpage using a mobile device. Optimize your site for this behavior. @mihswat
  • design = constraining until an elegant solution presents itself @lavinia
  • Many users will interact with mobile devices using one hand and one thumb (one-handed touch), so the UI has to be simple. @jessicaivins
  • 1 million per day = touch based phone purchase @lavinia
  • mobile: must accommodate “french fry fingers” @JudyBad
  • wow. ‘1.1 billion consumers with Nokia devices in 2009’ @westerndave
  • 8-10mm = average human finger pad , so design for 9mm touch area @lavinia
  • touch me = Touch Gesture Reference Guide http://www.lukew.com/ff/entry.asp?1071 @westerndave
  • Hovers are not intentional, clicks are @eduiconf
  • great stat: People spend only about 2 to 4 seconds on a webpage using a mobile device. Optimize your site for this behavior. @lavinia
  • Hovers are not intentional. Just because a user’s mouse has paused somewhere doesn’t mean they expect to see a menu. @zeldman
  • most devices use wifi for location (gps is narly indoors) @lavinia
  • Yes! Hover cannot be considered an intentional interaction on a mobile device. I activate them accidentally on my *desktop*. @kissane
  • Yelp’s augmented reality feature boosted their sustained traffic by 40 to 50 percent @mihswat
  • Wonderful presentation from Luke Wroblewski. This really jives with a lot of stuff that get talked about in IxD these days. @iwilsonjr

Message and Medium: Better Content by Design by Kristina Halvorson

Kristina sure knows how to develop a killer content strategy. A website’s message carries through to other places on the web than just the main website. Customer support, social media, and meta data should all echo the tone of the main message. And there is a lot more to a good content strategy than determining what text goes on the front page. How will this content be produced? Who will update it? How often will we add new content?

  • Kristina Halvorson (@halvorson) asked us to sing Happy Birthday to her son. How sweet… @shiota
  • @halvorson on two of my favorite topics: teeth & content strategy! @dinalew
  • haha. User-scented content. “Smells like user.” @ryanhoonlaverty
  • Content strategy plans for the creation, delivery, and governance of content that people care about. @eTapWeb
  • website content: stop talking about what you do and talk about what your users want. hello user-centered content @dinalew
  • content requirements ≠ content strategy @tonyvia
  • content strategy = content (substance + structure) & people (workflow + governance) @tonyvia
  • messaging is not a mission statement, brand promise or tagline @eduiconf
  • nobody cares about your mission statement [so true!] @tonyvia
  • First second visiting a website is an emotional response @kingkool68
  • user forms an impression of your site in ONE SECOND (load time + design) & decides to trust you or not within 10 seconds @tonyvia
  • In 1 second user should have an emotional response. 10 seconds, understand your primary message. 2 minutes, secondary msg. @eTapWeb
  • Reminded of how some of the traditional #ux roles/deliverables can suffocate copywriters’ creativity/skills. Preach on, @havlorson. @talbs
  • Include maintenance requirements for key pages – great content strategy idea @graphicsgirl
  • Consistency inspires trust in your readers. @JudyBad
  • consistency inspires trust in your readers @lavinia
  • Visiting every page of your site with its main message in mind helps to see if you’re communicating it the right way with consistency @mihswat
  • #aea is really driving home the importance to collaboration across roles/disciplines to tackle those important grey areas of an experience! @talbs
  • And your FAQ page is inconsistent. Where’s the fun, Ben & Jerry? @mad_sunshine
  • pet peeve: “contact us” page hiding phone/address 10 layers deep. after all, that’s all we want from “contact us” page 99% of the time @sarahdippity
  • Workflow and governance are crucial for good content strategy. @kingkool68
  • “whats our facebook strategy?” “that depends… what are you trying to do, who’s going to do [keep up with it]?” hear, hear. @courcelan
  • What is your social media strategy? Is it successfully delivering your message? Or do you have a Twitter just for the sake of it? @mihswat
  • Page descriptions. Tweets. Facebook posts. Google results. Your message should be consistently delivered everywhere. @mihswat
  • @halvorson‘s talks on content strategy are ALWAYS timely and poignant. Maybe because content strategy is a never-ending struggle… @ryanhoonlaverty

Anatomy of a Design Decision by Jared Spool

Jared pointed out that every site on the web came to be from a series of decisions. He has identified 5 styles to design decisions and when each style might be appropriate for a given project. Oh and university homepages feature images of girls under trees way too much.

  • Seen it before, but it’s easy to forget just how awesome http://havenworks.com/ is… @davidocoulter
  • “it validates” – Jared Spool (sarcastically referring to havenworks.com) @SethBlanchard
  • “Someone actually designed this on purpose. This way.” – @jmspool on a particularly egregious web design specimen. @alykat
  • Sites like havenworks.com or arngren.net went over design decisions. Now that’s something to think about. @shiota
  • Jared is talking about the famous 37signals vs. Donald Norman “celebrity deathmatch”. @shiota
  • “Self design works great when you’re designing something for your own use, or for use by people just like you.” @eTapWeb
  • Crappy and unhelpful error messages are the perfect way to frustrate your user. @shiota
  • Unintentional design happens on its own. Works great if user will put up with whatever or we don’t care about support costs. @eTapWeb
  • Airline websites: helping AEA speakers make their point since 2005 @ryanhoonlaverty
  • “Genius design: when we’ve previously learned what users need. We’re solving the same problems repeatedly.” @eTapWeb
  • “Activity Focused Design: designing for new activities unfamiliar to us.” @eTapWeb
  • Well @jmspool‘s talk includes a reference to @lingscars‘ website www.lingscars.com… and well, just check it out. @hellogeri
  • Jared is comparing Six Flags map to Disney World’s map. Both amusement parks, yet totally different maps. Each with its own focus. @mihswat
  • Disney. Someone has thought about what happens between the rides. Thinking about the experience. @mad_sunshine
  • experience is the stuff that happens around usage. @lavinia
  • “User experience is what happens in between activities” @simplebits
  • University website traps — girl under trees. WOW! So many of them… @mad_sunshine
  • OMG I can’t search – the search box is on the left [side]! @raelehman
  • Rule #17: Always put the search box in the upper right @grum_dot_com
  • Hmm. design style guides and guidelines never work. @mad_sunshine
  • Informed Decisions > Rule-based Decisions @160mph
  • Rule-based decisions prevent thinking. Informed decisions require thinking. @sarahdippity
  • Design is about the exception cases. If everything was always the same, we would not be interested in this work. @beep
  • Instead of spreading dogmas/methodologies, try spreading tricks/techniques. People will learn, think, and won’t struggle with rules @mihswat

Leave a Comment of Your Own