SlideShare a Scribd company logo
1 of 72
Download to read offline
Falling to Pieces
The Componentization

of the Web
Style is important.
Thinking in Pages
Wired Redesign
Blog Design
#header h1, #header h2 { font-size:13px; font-weigh… }
#header h1 { color: #680; float:right; padding-b…}
#header h2 { float:left; padding:18px 20px; posi…}
#header h2 img { position:absolute; left:0; top:0; }
#header h2 a { text-decoration:none; color:#333; }
#main .article.inside h1 { text-transform:uppercase;…}
#comments .comment .meta .authorname { text-transfo… }
#comments .comment .meta .commentnumber a { float: … }
#main .article.inside h1 { text-transform:uppercase;…}
#sidebar h2 { text-transfo… }
#comments .comment .meta .commentnumber a { float: … }
OOCSS,
SMACSS, BEM
What does it mean
to be modular?
A module is “each of a set of
standardized parts or independent
units that can be used to construct
a more complex structure.”
–Dictionary
What hurdles are
there to being truly
independent?
• Inheritance

• Cascade

• Browser Default Styling

• Putting modules/components together
Inheritance
• Typography

e.g. color, font-size, font-family

• List Styles

e.g. list-style

• Table Styles 

e.g. border-collapse
• A Good Thing ™
Cascade
The cascade is how the
browser decides what
properties to apply when you
have multiple rules declared
on the same element.
• Don’t write multiple rules for the same element

• Inline styles

• Create a structured layering system to prevent
conflicts
Browser Defaults
<button class="button">
.button {

border:1px solid purple;

padding: 5px 10px;

color: pink;

}
<a href="/" class="button">
text-decoration: none;
Putting Modules
Together
Send
Cancel Send
.button + .button { 

margin-left: 10px; 

}
Cancel Send
SendEmail
.button + .button,

.input + .button { 

margin-left: 10px; 

}
* + * { 

margin-left: 10px; 

}
Send SubscribeEmail
http://snk.ms/26
• Separate layout from module

• Micro layout classes
<span class=“layout-inline”>
<input><button>Send</button>
</span>
<span class=“layout-inline”>
<button>Subscribe</button>
</span>
<input><button>Send</button>
<button class=“u-margin-left-
small”>Subscribe</button>
Oh, right.
SMACSS.
Visualizing related
things makes it easier
to see disparities
Design has a cost.
Every piece of
design ends up in
code.
• Reduce the intersections

• Simplify selectors

• Need to be able to understand cascade
Pros
• Requires diligence

• No tooling

Cons
Atomic CSS/
Functional CSS
“Atomic CSS, like inline
styles, offers single-
purpose units of style,
but applied via classes.”
<div class="Bgc(#0280ae.5) C(#fff) P(20px)">
Lorem ipsum
</div>
Human-powered
CSS optimization
Optimizing CSS is
hard
• Need to know rendered HTML to know what CSS
will be applied

• Need to be able to know how HTML will change via
JavaScript

• Need to be able to understand cascade
JavaScript Eats
the World
React.render(
<XUIButton type={type}>
My Button!
</XUIButton>
);
var XUIButton = React.createClass({
render: function() {
return (
<button className="{this.props.type}">
{this.props.children}
</button>
);
}
});
var myStyle = {
color: '#FFF',
backgroundColor: '#330000'
}
var XUIButton = React.createClass({
render: function() {
return (
<button style="{myStyle}">
{this.props.children}
</button>
);
}
• Styled Components 

http://snk.ms/28

• CSS Modules

http://snk.ms/29
• Tooling avoids namespacing and cascade issues

• CSS embedded with JS allows easier visualization/
understanding of how the component and the styles for
the component are linked

• Bundling CSS and HTML with JS has potential for
cohesive understanding and enable optimization

• Automate what SMACSS/BEM does through convention
Pros
• Handling CSS’s state management at the JS level
can cause performance issues or require
workarounds

• Like everything else, the solutions don’t understand
the HTML and have no way to optimize 

• Side effects when working outside of tooling
ecosystem
Cons
Web Components
• Templates

• Shadow DOM

• Custom Elements

• HTML Imports
• Web Components can be used across JavaScript
frameworks

GE did this: http://snk.ms/2a

• Shadow DOM avoids cascade and namespacing
issues
Pros
• No performance tooling (yet)

• For now, cross-browser support is spotty and
requires polyfills that don’t behave the same
Cons
• Think about standardized and modular design.

• Frameworks like React can help.

• Web Components are coming. (So is winter.)
Thank you.

http://snook.ca/

@snookca

More Related Content

What's hot

A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comA brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comapplicake
 
I feel the need... the need for SPEED
I feel the need... the need for SPEEDI feel the need... the need for SPEED
I feel the need... the need for SPEEDdarrenthedev
 
Roll Your Own CSS Framework
Roll Your Own CSS FrameworkRoll Your Own CSS Framework
Roll Your Own CSS FrameworkMike Aparicio
 
Be German About Your Frontend
Be German About Your FrontendBe German About Your Frontend
Be German About Your FrontendArush Sehgal
 
DEFINE FRAME AND FRAME SET WITH A EXAMPLE
DEFINE FRAME AND FRAME SET WITH A EXAMPLEDEFINE FRAME AND FRAME SET WITH A EXAMPLE
DEFINE FRAME AND FRAME SET WITH A EXAMPLEVaibhav Sinha
 
Our first eZPublish mobile website
Our first eZPublish mobile websiteOur first eZPublish mobile website
Our first eZPublish mobile websiteMirko Battisti
 
Making Your Own CSS Framework
Making Your Own CSS FrameworkMaking Your Own CSS Framework
Making Your Own CSS FrameworkDan Sagisser
 
Html & Css presentation
Html  & Css presentation Html  & Css presentation
Html & Css presentation joilrahat
 
20111129 modernizr
20111129 modernizr20111129 modernizr
20111129 modernizrbrooky-yen
 
How to develop a CSS Framework
How to develop a CSS FrameworkHow to develop a CSS Framework
How to develop a CSS FrameworkOlivier Besson
 
Web Components
Web ComponentsWeb Components
Web ComponentsLoc Nguyen
 
Copy & Paste Design Hacks To Take Your Blog to the Next Level
Copy & Paste Design Hacks To Take Your Blog to the Next LevelCopy & Paste Design Hacks To Take Your Blog to the Next Level
Copy & Paste Design Hacks To Take Your Blog to the Next LevelWishpond
 
#4 - CSS Selectors, CSS3 and Web typography
#4 - CSS Selectors, CSS3 and Web typography#4 - CSS Selectors, CSS3 and Web typography
#4 - CSS Selectors, CSS3 and Web typographyiloveigloo
 
Sass: The Future of Stylesheets
Sass: The Future of StylesheetsSass: The Future of Stylesheets
Sass: The Future of Stylesheetschriseppstein
 

What's hot (20)

CSS in JS for CSS lovers
CSS in JS for CSS loversCSS in JS for CSS lovers
CSS in JS for CSS lovers
 
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comA brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
 
I feel the need... the need for SPEED
I feel the need... the need for SPEEDI feel the need... the need for SPEED
I feel the need... the need for SPEED
 
BBUI
BBUIBBUI
BBUI
 
Roll Your Own CSS Framework
Roll Your Own CSS FrameworkRoll Your Own CSS Framework
Roll Your Own CSS Framework
 
Css3
Css3Css3
Css3
 
Be German About Your Frontend
Be German About Your FrontendBe German About Your Frontend
Be German About Your Frontend
 
DEFINE FRAME AND FRAME SET WITH A EXAMPLE
DEFINE FRAME AND FRAME SET WITH A EXAMPLEDEFINE FRAME AND FRAME SET WITH A EXAMPLE
DEFINE FRAME AND FRAME SET WITH A EXAMPLE
 
Our first eZPublish mobile website
Our first eZPublish mobile websiteOur first eZPublish mobile website
Our first eZPublish mobile website
 
Making Your Own CSS Framework
Making Your Own CSS FrameworkMaking Your Own CSS Framework
Making Your Own CSS Framework
 
Html & Css presentation
Html  & Css presentation Html  & Css presentation
Html & Css presentation
 
20111129 modernizr
20111129 modernizr20111129 modernizr
20111129 modernizr
 
How to develop a CSS Framework
How to develop a CSS FrameworkHow to develop a CSS Framework
How to develop a CSS Framework
 
Web Components
Web ComponentsWeb Components
Web Components
 
Copy & Paste Design Hacks To Take Your Blog to the Next Level
Copy & Paste Design Hacks To Take Your Blog to the Next LevelCopy & Paste Design Hacks To Take Your Blog to the Next Level
Copy & Paste Design Hacks To Take Your Blog to the Next Level
 
corazon
corazoncorazon
corazon
 
#4 - CSS Selectors, CSS3 and Web typography
#4 - CSS Selectors, CSS3 and Web typography#4 - CSS Selectors, CSS3 and Web typography
#4 - CSS Selectors, CSS3 and Web typography
 
Sass: The Future of Stylesheets
Sass: The Future of StylesheetsSass: The Future of Stylesheets
Sass: The Future of Stylesheets
 
Test-proof CSS
Test-proof CSSTest-proof CSS
Test-proof CSS
 
Css introduction
Css  introductionCss  introduction
Css introduction
 

Similar to Jonathan Snook - Falling to pieces: the componentization of the web

The Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookThe Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookFuture Insights
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Erin M. Kidwell
 
Highly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSHighly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSZoe Gillenwater
 
HTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.pptHTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.pptraghavanp4
 
A complete html and css guidelines for beginners
A complete html and css guidelines for beginnersA complete html and css guidelines for beginners
A complete html and css guidelines for beginnersSurendra kumar
 
CSC103 Web Technologies: HTML, CSS, JS
CSC103 Web Technologies: HTML, CSS, JSCSC103 Web Technologies: HTML, CSS, JS
CSC103 Web Technologies: HTML, CSS, JSRichard Homa
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/jsKnoldus Inc.
 
Wordpress Themes From Scratch
Wordpress Themes From ScratchWordpress Themes From Scratch
Wordpress Themes From ScratchJason Wehmhoener
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksNathan Smith
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic templatevathur
 
CSS For Coders
CSS For CodersCSS For Coders
CSS For Codersggfergu
 
Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?Alexandra Lo Cascio
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewDiacode
 
Html5 elements-Kip Academy
Html5 elements-Kip AcademyHtml5 elements-Kip Academy
Html5 elements-Kip Academykip academy
 

Similar to Jonathan Snook - Falling to pieces: the componentization of the web (20)

The Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookThe Future is Modular, Jonathan Snook
The Future is Modular, Jonathan Snook
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
 
Highly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSHighly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSS
 
SMACSS Workshop
SMACSS WorkshopSMACSS Workshop
SMACSS Workshop
 
HTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.pptHTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.ppt
 
css.ppt
css.pptcss.ppt
css.ppt
 
css.ppt
css.pptcss.ppt
css.ppt
 
A complete html and css guidelines for beginners
A complete html and css guidelines for beginnersA complete html and css guidelines for beginners
A complete html and css guidelines for beginners
 
Overview of PHP and MYSQL
Overview of PHP and MYSQLOverview of PHP and MYSQL
Overview of PHP and MYSQL
 
CSC103 Web Technologies: HTML, CSS, JS
CSC103 Web Technologies: HTML, CSS, JSCSC103 Web Technologies: HTML, CSS, JS
CSC103 Web Technologies: HTML, CSS, JS
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
 
Wordpress Themes From Scratch
Wordpress Themes From ScratchWordpress Themes From Scratch
Wordpress Themes From Scratch
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
 
Critical Rendering Path
Critical Rendering PathCritical Rendering Path
Critical Rendering Path
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
 
CSS For Coders
CSS For CodersCSS For Coders
CSS For Coders
 
Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overview
 
Html5 elements-Kip Academy
Html5 elements-Kip AcademyHtml5 elements-Kip Academy
Html5 elements-Kip Academy
 

More from Turing Fest

Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...
Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...
Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...Turing Fest
 
Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...
Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...
Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...Turing Fest
 
Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...
Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...
Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...Turing Fest
 
Check Warner — Building with Diversity (Turing Fest 2018)
Check Warner — Building with Diversity (Turing Fest 2018)Check Warner — Building with Diversity (Turing Fest 2018)
Check Warner — Building with Diversity (Turing Fest 2018)Turing Fest
 
Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...
Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...
Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...Turing Fest
 
Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...
Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...
Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...Turing Fest
 
Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)
Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)
Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)Turing Fest
 
Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)
Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)
Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)Turing Fest
 
Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)
Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)
Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)Turing Fest
 
Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...
Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...
Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...Turing Fest
 
Amy Zima — Killing Products (Turing Fest 2018)
Amy Zima — Killing Products (Turing Fest 2018)Amy Zima — Killing Products (Turing Fest 2018)
Amy Zima — Killing Products (Turing Fest 2018)Turing Fest
 
Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...
Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...
Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...Turing Fest
 
Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)
Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)
Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)Turing Fest
 
Rebecca Moore — Self-Disrupt for Growth
Rebecca Moore — Self-Disrupt for GrowthRebecca Moore — Self-Disrupt for Growth
Rebecca Moore — Self-Disrupt for GrowthTuring Fest
 
Roan Lavery — Driving Growth vs. Building Core Value
Roan Lavery — Driving Growth vs. Building Core ValueRoan Lavery — Driving Growth vs. Building Core Value
Roan Lavery — Driving Growth vs. Building Core ValueTuring Fest
 
Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)
Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)
Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)Turing Fest
 
Martin Eriksson — You Are All Product Managers (Turing Fest 2018)
Martin Eriksson — You Are All Product Managers (Turing Fest 2018)Martin Eriksson — You Are All Product Managers (Turing Fest 2018)
Martin Eriksson — You Are All Product Managers (Turing Fest 2018)Turing Fest
 
Oli Gardner - Data-Driven Design
Oli Gardner - Data-Driven DesignOli Gardner - Data-Driven Design
Oli Gardner - Data-Driven DesignTuring Fest
 
Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...
Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...
Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...Turing Fest
 
Lisa Myers - How to Make Your Wishlist Piece of Coverage Come True
Lisa Myers - How to Make Your Wishlist Piece of Coverage Come TrueLisa Myers - How to Make Your Wishlist Piece of Coverage Come True
Lisa Myers - How to Make Your Wishlist Piece of Coverage Come TrueTuring Fest
 

More from Turing Fest (20)

Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...
Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...
Ivana McConnell — Ethics, Software and Identity in the Age of Data (Turing Fe...
 
Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...
Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...
Paul Campbell — A Modern Approach to Third-Party Embedded Widgets (Turing Fes...
 
Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...
Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...
Sam Noble — Blink & You’ll Miss It: The Ever Changing Landscape of Paid Media...
 
Check Warner — Building with Diversity (Turing Fest 2018)
Check Warner — Building with Diversity (Turing Fest 2018)Check Warner — Building with Diversity (Turing Fest 2018)
Check Warner — Building with Diversity (Turing Fest 2018)
 
Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...
Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...
Mike McQuaid — How to Not Fail at Using Open-Source Software in Your Organisa...
 
Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...
Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...
Mark Logan —The Real Reasons Start-ups and Scale-ups Fail (And What to Do Abo...
 
Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)
Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)
Ed Fry — Data-Driven Growth: Lies, Lawyers & Outsized Results (Turing Fest 2018)
 
Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)
Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)
Colin Burns — "Peak Web" UX Design: What to do next...? (Turing Fest 2018)
 
Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)
Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)
Miloš Lalić — The Continuous Search for Product/Market Fit (Turing Fest 2018)
 
Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...
Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...
Patrick Campbell — Our Fundamental Strategy of Building a Business is Broken ...
 
Amy Zima — Killing Products (Turing Fest 2018)
Amy Zima — Killing Products (Turing Fest 2018)Amy Zima — Killing Products (Turing Fest 2018)
Amy Zima — Killing Products (Turing Fest 2018)
 
Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...
Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...
Fabrizio Ballarini — Scaling Organic Growth by Building Products (Turing Fest...
 
Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)
Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)
Edgar Rouwenhorst — Marketing as a Growth Driver (Turing Fest 2018)
 
Rebecca Moore — Self-Disrupt for Growth
Rebecca Moore — Self-Disrupt for GrowthRebecca Moore — Self-Disrupt for Growth
Rebecca Moore — Self-Disrupt for Growth
 
Roan Lavery — Driving Growth vs. Building Core Value
Roan Lavery — Driving Growth vs. Building Core ValueRoan Lavery — Driving Growth vs. Building Core Value
Roan Lavery — Driving Growth vs. Building Core Value
 
Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)
Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)
Susan Ramonat — Blockchain Unraveled (Turing Fest 2018)
 
Martin Eriksson — You Are All Product Managers (Turing Fest 2018)
Martin Eriksson — You Are All Product Managers (Turing Fest 2018)Martin Eriksson — You Are All Product Managers (Turing Fest 2018)
Martin Eriksson — You Are All Product Managers (Turing Fest 2018)
 
Oli Gardner - Data-Driven Design
Oli Gardner - Data-Driven DesignOli Gardner - Data-Driven Design
Oli Gardner - Data-Driven Design
 
Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...
Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...
Rand Fishkin - The State of SEO & How to Survive Google’s Trojan Horsing of t...
 
Lisa Myers - How to Make Your Wishlist Piece of Coverage Come True
Lisa Myers - How to Make Your Wishlist Piece of Coverage Come TrueLisa Myers - How to Make Your Wishlist Piece of Coverage Come True
Lisa Myers - How to Make Your Wishlist Piece of Coverage Come True
 

Recently uploaded

Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfIdiosysTechnologies1
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Cizo Technology Services
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationBradBedford3
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Mater
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Natan Silnitsky
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Angel Borroy López
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfFerryKemperman
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaHanief Utama
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 

Recently uploaded (20)

Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdf
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion Application
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdf
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief Utama
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 

Jonathan Snook - Falling to pieces: the componentization of the web