I kept meaning to write up a blog post about my Smashing Conf reflections, but six months later and I have yet to do so. Accepting my fate as a slacker when it comes to this site, I'm just going to dump my (slightly edited) notes from the conference. If you have any questions, reach out to me via email or Twitter!
Smashing Conf was a lot of fun, and San Francisco is a wonderful city to visit. I'm looking forward to attending again this year!
Smashing Conf SF 2016
Workshop Notes
- Responsive design is the pain point
- Avoid media queries with flexbox
- When you start designing, donât start with the page
- Forces you to think about components / responsive behaviors
- Takes a lot of time to design this without a result (have to finish to receive feedback)
- Forces you to think about components / responsive behaviors
- Visual Inventory to inform direction
- Project asset hub, sorted chronologically
- All documents related to the project go here
- Pattern libraries help maintain projects over time
- On redlines: âThe worst thing as a designer is when the developer gets creativeâ
- Takes a ton of time to create redlines
- With pattern libraries, you just describe component patterns - much easier / faster, leaves more time for design
- Names in a pattern library are very important
- Establishing Modularity
- Vocabulary - need to be understood and used day to day
- Grammar - identify simple rules on how parts fit together
- âVertical spacing for a module is always proportional to the line-height of the base font sizeâ
- Language - Design as assembly of flexible, distinct, modules
- PageLayers - allows you to export HTML+CSS -> Photoshop as layers
- lonelyplanet/rizzo - good open source tool for remote teams
- salesforce-ux/theo
- Donât hide elements you want to drive traffic to (hamburger menus)
- Navigation is used to get an idea of what the page is about, not just to navigate
- Hamburger menus are often opened, menus read, and then closed to get an idea of what type of content is on the site
- Put a close icon where the menu icon is; so if you open, you can click again to close without moving the mouse
- Big usability win
â|= â
menu becomesâx |=â
- http://responsive-jp.com
- Great way to think about design challenges
- Bottom middle is where the most common navigation elements should go
- Easiest to get at for the user across mobile / tablet screen sizes
- Responsively size icons + logos
- Change them at different breakpoints
- viget.com/inspire article on this
- Favicon is a good place to convey state too
- WhatsApp displays a red alert on their favicon when offline, normal when online
- Use for production / staging server identification
- pamelafox tweet
- For complex responsive designs, use canvas instead of svg (maps, seating charts, musical charts)
- Codepen for âadaptive mapâ (iframe vs image loading based on screen size)
- Reorder elements using flexbox value in media queries
margin-top: auto;
works on flexbox items now (drops to bottom)- Use @supports (display:flex) or @supports not (display: flex)
- use currentColor to define color dependent items - very well supported
- ie, to set a buttonâs border / icon color based on text color
- Modular load - render first 1,000 pixels, then load the rest
- Use async/defer on scripts always
- Javascript window/document.visibilityState
- guardian/frontend
- Aim for a speedindex of under 1000 (webpagetest)
- HTML5 preload for initial article (js script to insert a link to it at the end of the page)
- Delay webfonts for a large perf increase
Day One
- Offline, but tweet (#smashingconf or @smashingmag) and use slack đ
- Proper Etiquette For The Advancement of Design by Dan Mall
- Dark Dining
- Being a great graphic designer isnât enough
- You need the proper setup
- You need to bring everyone along with you on the journey
- Three parts
- Bad News
- All design projects start here
- Weâre wasting money, weâre being inefficient, we look bad
- Good News
- Research (talk to people)
- Three questions
- Why redesign the site?
- Why redesign the site now?
- How will we know if the new site is better than the old site?
- Three questions
- We can prioritize your goals
- Determine objectives
- Articulate what success looks like
- Objectives & Key Results
- Objectives are vague, Key Results are measurable and defined
- Improve Usability -> 25% faster initial page load + Double people who agree with âsite is easy to useâ in survey
- Objectives & Key Results
- Design doesnât always require âdesignâ tools
- Map out pattern libraries in a google spreadsheet, not code or sketch. Everyone can participate
- We can move quickly
- Itâs easier to revise than create
- Be the first to visualize it
- OKR-based designs
- Element collages
- Explain why, not what
- Other notes
- Read about the creatorâs purpose when choosing a font (ie, Graphik)
- FF Quadrat
- Research (talk to people)
- So what?
- It makes people invested
- Bad News
- Atoms, Modules, and other Fancy Particles by Alla Kholmatova
- Brad Frost: Atoms > Modules > Organisms > Templates > Pages
- Pattern Library
- What is a system?
- Donella H. Meadows - Thinking in Systems
- A system is more than a collection of elements
- Purpose of a Design System
- Produce coherent patterns that facilitate / encourage certain types of behaviour
- Connections
- Semantic
- Start with the language, not the interface
- Name things based on their global function
- Name things collaboratively and refer to them by their names
- Shared vocabulary
- Structural
- Organisms (Standalones)
- Molecules (Helpers)
- Structure matters less than it being shared and understood
- Semantic
- CSS for Software Engineers for CSS Developers by Harry Roberts
- Writing CSS in a style borrowing from Software Engineers
- DRY (Donât Repeat Yourself) / Single Source of Truth
- DRY is what you do, Single Source of Truth is what you get
- SST means key data should only exist once (makes modifications simpler)
- DRY is important in source, not production
- Avoid going too far; donât DRY if itâs repeated coincidentally
- Repetition is better than incorrect abstraction
- Single Responsibility Principle
- Do one thing only, and do it well
- Easier to reason about
- Easier composability
- Separation of Concerns
- Donât write DOM-like selectors
- âheader nav ul li a {âŠ}â makes assumptions about DOM layout
- Donât bind CSS onto data-* attributes
- Donât bind JS onto CSS classes
- Only bind CSS onto CSS-based classes only
- Writing CSS in JS Modules violates this
- Donât write DOM-like selectors
- Immutability
- An object canât be changed after itâs created
- Helps debugging
- Makes things predictable
- Reduces cognitive overhead
- ie, setting â.col-6â to 50% on large screens and 100% on small screens violates this
- .col-6 and .col6@sm instead
- Use !important on utility classes, since it should trump all else
- Often run into specificity issues. Block = center align, with an h2 left align - the block takes precedence.
- Cyclomatic Complexity
- The number of branches in a decision tree
- A form of static analysis
- Counting number of paths through a program
- The higher the complexity the worse it is
- div.main section h1 a span {âŠ} is bad - we only care about the span
- Use .text-highlight instead!
- Deeply nested selectors are bad
- The Open/Closed Principle
- Very very useful for group projects and legacy code
- Everything should be open for extension, but closed for modification
- Never change anything at its source
- Creates a domino effect
- Visual regressions
- Easier to track the knock-on effects
- Only change to correct errors; new features or changed features should be in a new class
- Everything is opt in
- Safe way to make changes
- Creates a safety contract - not only does it require a CSS change, need to opt in on the markup side as well
- Metaphor: it takes two keys to fire nuke
- Orthogonality
- Reduces interdependence
- Improves composability
- Separates concerns
- Good litmus test: can we reorder imports?
- The implication is they donât rely on one another
- Hallmarks of a flexible and modular system
- Will it nest?
- Can things be combined in the DOM?
- Well-scoped selectors improve
- Tools
- Immutable CSS
- Link for Grid System information being tweeted out (personal or @smashingconf?)
- Beyond the Browser by Tom Giannattasio
- Mandarin is most commonly spoken language @ 850m speakers
- HTML sites are at 1 Billion (not pages, sites)
- Benefits of a hybrid app
- Donât need to worry about different browsers; you define the box
- One central code base
- Vibrant community
- Performance benefits - not competing for resources
- Electron
- cool color scheme
- Be careful with file systems; you have full control
- Osaka font
- attasi.com/hybrid
- Photoshop is dead! Editing Images in CSS by Una Kravets
- Lots of cool color Math
- http://una.im/CSSgram
- arttheweb.com
- Yesterdayâs Perf Best-Practices are Todayâs HTTP/2 Anti-Patterns by Ilya Grigorik
- http://istlsfastyet.com
- Itâs here, support is pretty good
- All modern browsers support it
- Requires TLS connection (secure)
- ~62% of TLS requests are HTTP/2
- Server support is pretty good as well
- What is HTTP/2?
- Protocol for low-latency transport of content
- Improve end-user perceived latency
- Address the âhead of the lineâ blocking
- Not require multiple connections
- Retain semantics of HTTP/1.1
- Four important concepts
- One TCP connection
- Request -> Stream
- Streams are multiplexed
- Streams are prioritized
- Can say âput x% on this resource, y% on this other resourceâ
- Fine grained control
- Can declare dependencies
- Not yet exposed to developers, but will be soon
- Binary framing layer
- Prioritization
- Flow Control
- Server Push
- Header compression (HPACK)
- Can mirror benefits of websockets (or do better!)
- Protocol for low-latency transport of content
- Radio consumes a ton of energy (polling is really bad for battery)
- HTTP/1.x and HTTP/2
- If third party services are doing this (analytics), audit and remove it
- Reduce DNS lookups
- HTTP/1.x and HTTP/2
- Unresolved names block requests
- Reuse TCP Connections
- HTTP/1.x and HTTP/2
- Connections are expensive - HTTP/2 is really important especially since a single TLS connection
- Use a Content Delivery Network
- HTTP/1.x and HTTP/2
- Page rendering is latency-bound (most of the time)
- Minimize number of HTTP Redirects
- HTTP/1.x and HTTP/2
- Each redirect restarts the fetch process
- Eliminate Unnecessary Request Bytes
- HTTP/1.x and HTTP/2 (HPACK helps)
- Unnecessary metadata (eg headers) add up quickly
- Compress Assets During Transfer
- HTTP/1.x and HTTP/2
- Cache Resources on the Client
- HTTP/1.x and HTTP/2
- Eliminate Unnecessary Resources
- HTTP/1.x and HTTP/2
- So whatâs different for HTTP/2?
- Parallelism is limited by number of connections (in practice, on HTTP/1.x itâs six connections at a time per origin)
- Domain sharding isnât a silver bullet. Abuse of sharding leads to congestion, retransmissions, etc.
- In practice, you should have two domain shards - anything higher ends up causing more harm than benefit
- Domain Sharding is really bad for HTTP/2, since you get rid of prioritization and lose out on HPACK compression benefits
- tl;dr: HTTP/1.x = 2 domain shards, HTTP/2 = no domain sharding
- HTTP/2 can coalesce connections on your behalf if Hosts resolve to the same IP and if valid TLS certs for each
- HTTP/1.1 -> opens new connections to each origin
- HTTP/2 -> reuses the same connection for altName origins
- Another technique is reducing requests
- Concatenation is a popular technique
- Parallelism workaround, improved compression in HTTP/1.1
- Delays processing and execution, expensive cache invalidations
- Single byte change forces full fetch, redundant data transfers on update
- Should I ship 100+ modules?
- Probably not!
- Each request has own overhead on the client, eg dispatching an IPC querying the cache.
- ~dozens of files that provide optimal tradeoff between cache reuse and request overhead.
- Thousands of files shipped to client is a bad idea; be wary of extremes.
- Think from the angle of cache invalidation
- Inlining is another popular solutions
- These canât be cached independently
- Breaks resource multiplexing and prioritization of HTTP/2
- Use server push instead
- Very helpful when user requests page + js + image, return the three files instead of a full round trip saying ârequest these other files as wellâ
- Concatenation is a popular technique
- Domain sharding isnât a silver bullet. Abuse of sharding leads to congestion, retransmissions, etc.
- Parallelism is limited by number of connections (in practice, on HTTP/1.x itâs six connections at a time per origin)
- Vision, Hearing, and the Brain: 10 Things About Perception by Susan Weinschenk
- Peripheral Vision Gives the Gist of the Scene
- Peripheral vision tells us if we are where we think we are
- Central Vision vs Peripheral Vision especially noticeable on a large monitor
- Eye tracking only measures central vision
- Peripheral Vision âdecidesâ where you look next
- Three Questions
- You check into a hotel on a trip, vintage old fashioned hotel, faucet looks like the two +âs. You want lukewarm water to come out
- My A: Turn clockwise, 90deg on hot 45deg cold
- Needle 1/4 of the way down a meter, what way do you turn knob?
- My A: Clockwise
- You have a circle divided by four quadrants, what would you label them? (A/B/C/D where?)
- My A: Upper right A, bottom right B, bottom left C, top left D
- You check into a hotel on a trip, vintage old fashioned hotel, faucet looks like the two +âs. You want lukewarm water to come out
- Three Questions
- People Have Mental Models
- Your mental model makes sense, most reasonable people will share it. It feels right
- Not true!
- Your mental model makes sense, most reasonable people will share it. It feels right
- There are Generational Differences in Tech Expectations
- What tech you used before puberty shapes you
- The median age of someone in the US is 37
- On the planet, itâs 29.9
- In Africa, ranges from 14-20 to 20-25
- Myth or truth? More Americans >65 than <14
- Myth: 60mil for under 14, 20% -
- You May not Be your Target Audience
- Some Things Change and Some Things Stay the Same
- Neuroplasticity
- Sex And Social Always Sells
- Snapchat!
- Transience Is Coming More Valued
- Snapchat again!
- Cell Phones are Stand-Ins For Our Entire Social Network
- We WILL Have Relationships with Robots
- Japan is exploring this right now to deal with population age issues
- âBrobotsâ
- Peripheral Vision Gives the Gist of the Scene
- Addicted to Community by Jeff Atwood
- Programmers love to argue, theyâre very good at rules lawyering
- Our generation got into programming through games (this is fun, Iâll create my own) but now itâs Minecraft
- The best way to learn is to teach
- How to talk so kids will listen & listen so kids will talk
- Recommended book
- Itâs not about problem solving, itâs about empathy
- This is very hard for engineers
- Itâs not about the Nail
- Forums and stories outlasted the games they were about
- The forum game is fun and long-lasting
- Another book, 59 seconds
- Imagine a negative experience. Whatâs more helpful, talking or writing
- Writing encourages the creation of a story, a structure helps people make sense of what happened to them. Resulted in a better outcome
- Imagine a negative experience. Whatâs more helpful, talking or writing
- Stack Overflow displays Reminders as people work help resist temptation
- Just in time reminder to do the right thing and be who you want to be
- Check your emotions
- Discourse reminders users posting short posts they can use emoji reactions
Day Two
- Mystery Speaker
- The Web Image Problem and How to Solve It by Christian Heilmann
- A picture is not worth a thousand words - ask the visually impaired
- The problem is that weâve become picture mad on the web
- Inspirational Obesity
- Mobile, Tablets, Great Hardware and Fast Connections result in no empathy for users who have less
- This is who we should be working for
- You canât control the userâs platform
- Maintenance
- Bait and Switch - Jason Fried is here instead for an interview
- Basecampâs secret is simplification
- Making something people can use, trust, and worked well
- The ârealâ key to success
- People in the tech world get bored of tools very easily, but small businesses donât
- Tech people arenât looking for tools to use, but for things to experiment with
- Most people donât want five or six different products, but want something that packages everything they need together
- A DIY toolkit is expensive, and only appealing to tech experimenters
- An interop layer / API isnât a problem Basecamp cares about - itâs for smaller businesses with less than ten people
- 98% of businesses are small businesses - theyâre a huge market
- A weird thing in the tech world is world domination, whatâs the point?
- Donât worry about what everyone else is doing, focus on what works for you
- Over-collaboration reduces efficiency
- Remote works well since it reduces interruptions
- Overlap just a few hours a day
- Basecamp doesnât have meetings since theyâre a waste of time (meeting defined as 4+)
- Meetings need agendas and to be organized
- Basecamp handles standups automatically, so people can figure out what goes on on their own time
- Forced standups are terrible
- Basecamp does a social week twice a year for remote workers, since face to face time is very important
- Better than video chat, but thatâs still important
- Facebook and Twitter are modern day smoke-breaks
- The idea remote workers are screwing around and people in the office arenât is wrong
- 40 hours per worker is enough to do a good job. âWorking at 7 or 8? Fuck thatâ
- As affluent tech industry workers, we should use our position to push for greater social benefits (ie, I have a kid - Iâd like to work from home twice per week)
- Everyone is chasing rather than asking themselves whatâs important
- Jason is a big fan of just right, just enough (whatâs wrong with 10% growth a year compared to 50%? Nothing!)
- Breeding a generation of web users who expect content for free is haunting us, and will come back to haunt us even more
- Stock is ephemeral - Basecamp focuses on experiences and things like that, which they published on Medium
- The Web Image Problem and How to Solve It by Christian Heilmann
- What We Talk About When We Talk About Web Performance by Patty Toland
- Filament Group - design and front-end code, good content
- Presentation linked on Twitter
- Average web page size has more than tripled in the past five years
- Coincides with better screens and better networks, though
- 2G Network Speeds not limited to the third world
- The vast majority (Asia + Africa) are limited to 2G right now
- Will continue to be a major concern up until ~2021
- Speed issues arenât limited to slower networks
- Website visitors care more about speed than anything else on the webpage
- High end machines donât always mean a high end network (planes, trains, etc)
- âNot Really Our Problemâ
- Read Tammy Everts for performance impacts (primarily retail industry)
- Google has done a lot of mobile performance work
- Pew Research Center has been doing studies about behaviour with technologies
- WebPageTest has been an incredible game changer
- Time is Money
- People get frustrated with anything over 2 seconds
- This is neuroscience, not entitlement
- In retail, this is very very apparent - 2s is the commerce sweet spot
- 1s faster = +27% increase in conversions
- 25% of customers leave within 4s, >50% after 8s if waiting
- Smartphones lead conversion, but only if theyâre fast
- The prevalence of mobile-only shoppers is rapidly growing
- Cell phones and smartphones and tablets are growing dramatically, other devices flat or declining
- 77% of cell internet users say they experience slow speeds
- 15% do not have Javascript-enabled devices (Americans)
- 19% of American Adults are smartphone dependent, or have no other internet access
- Growing among younger, minority, lower income populations
- Ads on Mobile devices are absolutely fatal
- They should be looked at extensively and avoided by any means
- One of the worst things you can do for performance
- Environmental Impacts
- Cell Networks are energy hogs
- Equivalent of 5 million cars on the road in 2015
- Things that download in the background unnecessarily (ads, trackers) are having a huge impact
- \$80 billion wasted in power with âuselessâ downloads
- 2x Compression Experiment
- Make the image 1.4-2x of expected size
- Progressive checked
- Adjust quality to 25-45%
- Touch of blur to help with compression algo but not enough to be visible
- So, for a 2x image make it 4x and really compress it
- This gets an image down to about half the size
- This image works for both SD and HD screens! No need for a @2x version
- Again, slides are up on Twitter with these details
- Audit JS - is it needed? For all pages?
- âCut the mustardâ test - test for support before loading resources
- Use a fallback font and intelligent loading to prevent Flash of Invisible Text (use Flash of Unstyled Text instead)
- Utilize Lazy Loading first, deferred loading sparingly
- Only when -absolutely certain- they will be seen
- Loading should be opt-in
- Load Super low-res images (~2-3k each) on page load, and lazy load higher quality images as the user scrolls
- For a 48 product grid, initial page size dropped from 2mb to 450k
- Only with explicit action will the user download the full 2mb now
- Sites are beginning to get sued over accessibility issues
- Netflix and Target hit with ~\$800k settlements
- Filament Group - design and front-end code, good content
- Living Design Systems by Jina Bolton
- Designing for Scale and Configuration
- Lessons learned on first app
- Where are the icons? What color is this border?
- At the time, they were using redlines
- This doesnât scale at enterprise level
- Redlines design pages, not products
- A fractured process leads to a fractured UX
- Style guides are all the rage
- http://styleguides.io
- The key is keeping style guide current and useful
- Salesforce1 Style guide presented as a nice example
- Partners and customers want to look and feel like salesforce to ease transition for customers
- Needed resources and tools to get things done âin the official salesforce wayâ
- Zombie Style Guides are a thing
- Successful style guides MUST be living
- A style guide is an artifact of design process. A design system is a living thing that exists in an ecosystem
- http://salesforce.com/designsystem
- Consistent with Salesforce lightning UI
- Great design systems are usable by entire team - @mdo
- Works for different team models
- Solitary - one person
- Centralized - one central team produces and others consume
- Federated - multiple teams collaborate
- Cyclical - design system informs product design, product design informs design system
- A design system isnât a project, itâs a product serving products
- Should have a roadmap
- Should be doing user research
- Having a clear vision is very important
- Priority order is a key part
- Drive design decisions with design principles
- At salesforceâŠ
- Clarity
- Efficiency
- Consistency
- Beauty
- After Salesforce founded principles, it did a UI inventory
- Standardized and consolidated everything
- Took component notes
- List people involved, open ended questions
- At salesforceâŠ
- Many styleguides list colors, but donât show what theyâre used for
- Visual differentiation, components, etc
- How do you push updates / keep design system agnostic?
- Single Source of Truth
- Assets are stored in a repo and updates are pushed everywhere
- Design tokens
- Atoms of design system
- Helps scale across native and web
- Font weights, sizes, shadows, spacing, sizing, z-indexes
- Instead of listing values, you list tokens (variable names)
- Created a tool called
theo
(Open Source)- Converts to Lightning, Sass, Less, Stylus, JSON, XML, Color Swatches
- Accounts for style differences
- Achieves goal of being Framework Agnostic
- No more hard coded values!
- Empowers developers to focus on logic and not checking for styleguide adherence
- clarity > brevity for naming
- Namespaced classes with scoping option
- .sldsâbutton__stuffâhere
- Namespaced classes with scoping option
- Make things only as you need it (be lean!)
- Single Source of Truth
- Design systems and tokens can free designers to focus on bigger picture like user flows (small decisions like spacing are dictated by design tokens)
- How do you lower the bar for adoption?
- Minimize dependencies
- No JavaScript
- Decision made since things need to work in Lightning React Angular jQuery etc
- List states, but donât dictate how state changes in anything other than extensive documentation (ie, show Default and Active and describe how and when that changes in detail but donât actually write the JS)
- Support three versions
- Current, Previous, Future
- Key bit is Deprecation
- In Styleguide, add flags to highlight things that are deprecated
- Sass Deprecate tool
- Define what version youâre using in variable, and a mixin to show deprecation version + message
- Gives confidence when deprecating
- Lots of open source tools available
- Slack channel on http://designsystems.herokuapp.com available for more discussion
- The JAM Stack by Mat Biilmann
- The new front-end stack
- Git centric workflow, front-end build tools, API Economy
- Git has taken down FTP
- Git centric workflow, front-end build tools, API Economy
- The Old Stack
- Breaking down in terms of security, reliability, and performance
- ~70% of all wordpress installs are vulnerable to known exploits (WP powers 25% of internet)
- Breaking down in terms of security, reliability, and performance
- Stopped paying attention; not very applicable for us.
- Talking about static JSON created during build that you grab with JS and turn into a functional site.
- Argues it isnât dynamic, but canât be considered a static site either
- The new front-end stack
- Alice in Web Animation API Land by Rachel Nabors
- Web Animations API
- Connects CSS Transitions, CSS Animations, SMIL
- Core Concepts
- The Timing Model and Animation Model
- The When and the What
- The Web Animation API is time based
- Timelines let us shift time backwards/forward, scaled, reversed, paused, repeated
- Stateless Animation
- Frame rate independent
- Direction agnostic
- Seek-able
- An animation connects a single tween to a timeline
- An animation is like a dvd player and a KeyframeEffect is a dvd
- Traditional Animation
- Keys are drawings; in-betweens connects Keyframes.
- Flash shortens these as âtweensâ
- KeyFrameEffect tells the animation what something looks like at any given point in time
- KeyframeEffect Constructor
- The Timing Model and Animation Model
- Web Animations API
- Crafting a Creative Culture by Jeffrey Veen
- Equanimity - a state of emotional stability, especially in a difficult situation
- Grace under pressure
- Typekit encountered a failure; had to deal with it
- Six devs who could figure it out were sequestered in a room with a dedicated comms person. No interruptions allowed no one could go in, comms person would come out and update the team as necessary
- Removed business decisions from tech problems - fix it, weâll worry about the details later
- Moral support!
- Everything is connected and everything breaks
- Design needs to account for this
- Everything is user experience
- Teams need to be built around that
- Teams thrive with equanimity
- Googleâs Project Aristotle
- No signal found for successful teams until they looked at psychological
- Turned out to be psychological safety
- âA sense of confidence that the team will not embarrass, reject, or punish someone for speaking upâ
- Our notion of work comes from factories
- Donât create tension, donât try to control team members. Amplify what you find compelling - keep environment relaxed, but focused.
- Environment not just office, but culture and things like that
- âMeetings - the practical alternative to workâ
- Meeting zero: group chat
- Group chat has micro confidence boosters (pats on the backs, good jobs, gifs, reactions) that build a culture of trust
- Product Review
- Optional attendance, mandatory participation
- Not a forum for expressing opinions
- Bad: I donât like that blue
- Better: Why is that blue?
- Great: Is color important here?
- Working session for a group is identified as a divergent or convergent meeting
- Divergence - brainstorming, limitless possibility, âyes andâ
- Convergence - Evaluating feasibility, acknowledge constraints, drive towards consensus
- Be clear upfront about what kind of feedback youâre looking for
- More exposure to users = better design instincts
- More exposure to great work = better design vocabulary
- This gives people a sense of good taste
- Meeting Two: The Postmortem :(
- No one brings the site down on purpose
- Fundamental attribution error
- Human tendency to look at attributes of person rather than circumstances. âThat guy is an idiot for bring the site downâ instead of âwhy didnât we catch this in code review?â
- Sakichi Toyoda
- âThe Five âWhyâsâ - ask why five times to get to the core of the problem
- Ask why until you get to the root cause, generally five times
- We measure projects in weeks
- We measure priorities in months
- We measure vision in years
- Everyone should say âmy work supports this mission and hereâs howâ
- Purpose is timeless
- Japanese concept of Ikigai (çăçČæ)
- Purpose
- If you can quickly say âthis is how my work connects to xâ lived longer (around 7 years longer)
- raison dâĂȘtre
- divine will
- nirvana
- Equanimity - a state of emotional stability, especially in a difficult situation
- My Handbook by Mark Boulton
- Zeitgeist
- Distributed, Devolved, Degrading
- CERN
- Management Style: Marginal Gains
- Look at everything, small things add up quickly
- Opposite: Marginal degradation