Suggestions
James Buckhouse
Design Partner at Sequoia Capital
James Buckhouse is a Design Partner at Sequoia Capital, a prominent venture capital firm based in Silicon Valley. He is known for his expertise in design and storytelling, which he applies to support Sequoia's portfolio companies in their design, development, and marketing efforts. His approach emphasizes the importance of narrative in creating compelling products and experiences.
In addition to his role at Sequoia, Buckhouse is actively involved in teaching and sharing knowledge about design principles. He has taught at Stanford University, where he engages with students on topics related to design and storytelling.4 His LinkedIn posts reflect a commitment to exploring the intersection of design, mission-driven work, and personal values within the corporate environment.35
Buckhouse's background includes a unique blend of creative talent and leadership skills, enabling him to effectively communicate ideas and foster innovation within teams.1 His contributions to the field have garnered recognition from both peers and investors alike, highlighting his impact on the startup ecosystem.2
Highlights
Type Technique!
How do you set type for the web... when you don't know what the text will be (because it's being dynamically generated by AI) and and you /hate it/ when normal responsive type design leaves a ~lonely~ single word on the last line of text.
try this...
// utils.js
export function preventWidow(text) {
const words = text.split(" ");
if (words.length > 1) {
words[words.length - 2] += \u00A0${words.pop()}
; // Join the last two words with a non-breaking space
}
return words.join(" ");
}