SlideShare uma empresa Scribd logo
1 de 132
Baixar para ler offline
Stop Hitting
Yourself:CSS
Design Patterns
that
Scale
@klamping
What works for
BIG
Doesn’t work for
small
Because we build for small
Because we build for small
We struggle
with BIG
ScaleThe ability to
reuse add fix
ScaleThe ability to
CODE
reuse add fix
ScaleThe ability to
CODE
reuse add fix
ScaleThe ability to
CODE
Reuse Code
Specific code
is too specific
Name Required
Error
Name Required
Error
#E9F2F9
Name Required
Error
#E9F2F9
#9CC4E4
<div class="error">
<h1>Error:</h1>
<p>Name Required</p>
</div>
.error h1 {
color: #E9F2F9;
}
.error p {
color: #9CC4E4;
}
But is it reusable?
Simple and
Semantic
Think
Think
Things I hate:
•Lists
•Irony
•Clichés
My Life
Things I hate:
•Lists
•Irony
•Clichés
My Life #E9F2F9
#9CC4E4
<div id="content">
<h1>My Life</h1>
<aside>
<h2>Things I Hate</h2>
<ul>
<li>Lists</li>
<li>Irony</li>
<li>Clichés</li>
</ul>
</aside>
</div>
.error h1,
#content h2 {...}
.error p,
#content li {...}
<div class="error box">
<h1 class="box-title">...</h1>
<p class="box-content">...</p>
</div>
.box .box-title {...}
.box .box-content {...}
<div id="content">
<h1>My Life</h1>
<aside class="box">
<h2 class="box-title">...</h2>
<ul class="box-content">
<li>Lists</li>
<li>Irony</li>
<li>Clichés</li>
</ul>
</aside>
</div>
<div id="content">
<h1>My Life</h1>
<aside class="box">
<h2 class="box-title">...</h2>
<ul class="box-content">
<li>Lists</li>
<li>Irony</li>
<li>Clichés</li>
</ul>
</aside>
</div>
Design
outsideyour needs
Design
outsideyour needs
Abstract your CSS,
just like other code
Design
outsideyour needs
Build components,
not implementations
Design
outsideyour needs
Literally,
think outside the box
Design
outsideyour needs
No “Magic Numbers”
.site-title {
height: 30px;
}
.site-title {
height: 30px;
}
.site-title {
min-height: 30px;
}
.site-title {
min-height: 30px;
}
.site-title {
min-height: 30px;
}
css-tricks.com/magic-numbers-in-css/
Documentation,
Examples, Styleguide
Component
Dashboards
Component List
Documentation
Examples
Code Sample
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
Structure
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
Description
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
Variations
Add Code
Specificity
One ID to rule them all
<div id="content">
<h1>One does not simply:</h1>
<ul>
<li>Walk into Mordor</li>
<li>Override an ID</li>
</ul>
</div>
<div id="content">
<h1>One does not simply:</h1>
<ul>
<li>Walk into Mordor</li>
<li>Override an ID</li>
</ul>
</div>
<div id="content">
<h1>One does not simply:</h1>
<ul>
<li>Walk into Mordor</li>
<li>Override an ID</li>
</ul>
</div>
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
<div id="content">
...
<aside id="related">
<h2>Other overused memes:</h2>
<ul>
<li>What if I told you...</li>
<li>I don’t always...</li>
<li>Keep calm...</li>
</ul>
</aside>
...
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
Override
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
IDs
<div id="content">
...
<aside id="related">
<div class="warning">
<h2>This post contains:</h2>
<ul>
<li>Vulgarity</li>
<li>Grumpy Cats</li>
</ul>
</div>
...
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
#content #related .warning ul {
margin-left: 10px;
}
#content #related .warning ul li {
background: none;
list-style: disc;
}
<div class="content">
<h1>One does not simply:</h1>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
<div class="content">
<h1>One does not simply:</h1>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
What?!
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
<div class="content">
...
<aside class="related">
<h2>Other overused memes:</h2>
<ul class="rage-list">
<li class="item">...</li>
<li class="item">...</li>
<li class="item">...</li>
</ul>
</aside>
...
.content .list {...}
.content .list .item {...}
.rage-list .item {
background: url(rage-face.png);
}
.content .list {...}
.content .list .item {...}
.rage-list .item {
background: url(rage-face.png);
}
Look Ma!
No Overrides
<div class="content">
...
<aside class="related">
<div class="warning">
<h2>This post contains:</h2>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
...
<div class="content">
...
<aside class="related">
<div class="warning">
<h2>This post contains:</h2>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
...
.content .list {...}
.content .list .item {...}
.rage-list .item {...}
.warning .list .item {
list-style: disc;
}
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
#content #related .warning ul {
margin-left: 10px;
}
#content #related .warning ul li {
background: none;
list-style: disc;
}
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
Shorter Selectors
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
Less Code
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
Less Duplication
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
More Re-use
Write to
Re-write
Fix Bugs
http://xkcd.com/1172/
Fixing Bugs
Fixing Bugs
not the fall that
kills you
bug
^It’s
the sudden stop
Fixing Bugs
backwards compatibility^
It’s
Fear of Regression
Fear of Regression
is a friction
Fear of Regression
slows progress
Fear of Regression
stifles innovation
Fear of Regression
is what stops you
No Fear
Version your code
Don’t Push
Let teams pull
But I only have one
CSS file!
One file per
component
But I only have one
CSS file!
Man, I hate
this solution...
but it works ”
“
Man,
this solution
is messed up;
what does it
even do? ”
“
div {
background/**/: blue;
}
div {
background/**/: blue;
}
Hack or fat-finger?
div {
#color: blue;
}
div {
#color: blue;
}
Huh?
CSSDoc
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
color: blue;
height :12px; }
p{ color:#339;}
div {
color: #0F0;
height: 12px;
}
p {
color: #339;
}
Use Design
Patterns
You already know
them
Leave out
the details
that don’t
matter
Build a
pattern
library
Don’t start
an arms
race with
selectors
Version your
CSS and
live free
again
Document
your
intentions
Treat style
with respect
SMACSS
OOCSS
CreditsFont Awesome by Dave Gandy
http://fortawesome.github.com/Font-Awesome
Inconsolata Font
http://www.levien.com/type/myfonts/inconsolata.html
Kudos to Michael P. Gilbert
http://www.mpgilbert.com/
Thanks
@klamping

Mais conteúdo relacionado

Último

[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 

Último (20)

[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 

Destaque

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destaque (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Stop Hitting Yourself: CSS Design Patterns that Scale