Frank Chimero on how we talk about design behaviors:

We need to work as a community to develop a language of transformation so we can talk to one another. And we probably need to steal these words from places like animation, theater, puppetry, dance, and choreography.

Words matter. They are abstractions, too—an interface to thought and understanding by communication. The words we use mold our perception of our work and the world around us. They become a frame, just like the interfaces we design.

I can’t agree more on with Frank about this. Having to prototype something because we aren’t able to accurately describe the behavior isn’t a great place to find ourselves in.

Source

Frank is also making another print run of his book, The Shape of Design. I suggest picking up a copy if you can, or it’s free to read online or download as an e-pub.

All Is Fair in Love and Twitter

It’s one of Silicon Valley’s great oddities that start-up founders refer to themselves as “entrepreneurs.” More often than not, the people who come up with company ideas have no understanding of how to run a business or turn a profit. Partly as a result, the relationship between the entrepreneurs, who have the ideas, and the venture capitalists, who finance them, can become tense.

Nick talks about the history Twitter, it’s founders, and how it got to where it is today. I’m very curious to know how much of this story is true—but regardless it’s an incredibly fun read.

Source

WordPress 3.7 – “Basie”

Updates while you sleep: With WordPress 3.7, you don’t have to lift a finger to apply maintenance and security updates. Most sites are now able to automatically apply these updates in the background. The update process also has been made even more reliable and secure, with dozens of new checks and safeguards.

This is a huge feature and another great reason to be developing on WordPress. It’s amazing to see how far this platform has come.

Source

The Compass approach to vendor prefixes and graceful degradation:

CSS features that can degrade gracefully (E.g. border-radius) are set by default to adhere to the $graceful-usage-threshold variable. This variable defaults to 0.1 which means that when 0.1% of users (1 in 1,000) would be affected by removing the prefix for that feature, it will be removed.

Source

This is one of the main reasons I continue to use Compass instead of SASS by itself. It’s a very smart system that derives its use threshold variables off of Can I Use data.

UPDATE: I use vanilla sass now days in combination with Autoprefixer.