SlideShare une entreprise Scribd logo
1  sur  53
Télécharger pour lire hors ligne
Sassy!
Stylesheets with SCSS
Kathryn Rotondo
@krotondo
This work is licensed under
http://creativecommons.org/licenses/by-nc-sa/3.0
Saturday, September 14, 13
What is
SCSS?
Saturday, September 14, 13
SASS
sass-lang.com/
Saturday, September 14, 13
SCSS:
Sassy CSS
Saturday, September 14, 13
A superset
of CSS3
Saturday, September 14, 13
Features
Variables
Mixins
Functions
Nesting
Inheritance
Saturday, September 14, 13
CSS pre-
processor
Saturday, September 14, 13
style.scss
style.css
Saturday, September 14, 13
Getting
Started
Saturday, September 14, 13
Ruby Gem
sass-lang.com/
download.html
Saturday, September 14, 13
Hammer
hammerformac.com
Saturday, September 14, 13
Ready to
Code!
Saturday, September 14, 13
Variables
constants
Saturday, September 14, 13
Declare Vars
$blue: #3bbfce;
$margin: 16px;
Saturday, September 14, 13
Use Vars
.border {
color: $blue;
margin:$margin;
}
Saturday, September 14, 13
Numbers
1.2
13
10px
Saturday, September 14, 13
Strings
“foo”
‘bar’
baz
Saturday, September 14, 13
Colors
blue
#04a3f9
Saturday, September 14, 13
Booleans
true
false
Saturday, September 14, 13
nulls
null
Saturday, September 14, 13
Lists
1.5em 1em 0 2em
Helvetica, Arial, ...
Saturday, September 14, 13
Mixins
reusable code
blocks
Saturday, September 14, 13
Declare Mixin
@mixin centered {
display:block;
margin-left:auto;
margin-right:auto;
}
Saturday, September 14, 13
Use Mixin
img {
@include: centered;
}
Saturday, September 14, 13
Vendor Prefix
@mixin border-radius {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
Saturday, September 14, 13
Vendor Prefix
@mixin border-radius {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
Saturday, September 14, 13
Better...
@mixin border-radius {
$radius: 5px;
-moz-border-radius: $radius;
-webkit-border-radius: $radius;
border-radius: $radius;
}
Saturday, September 14, 13
Arguments
@mixin border-radius ($radius) {
-moz-border-radius: $radius;
-webkit-border-radius: $radius;
border-radius: $radius;
}
Saturday, September 14, 13
Using Args
img {
@include border-radius(20px);
}
Saturday, September 14, 13
Arg Defaults
@mixin border-radius ($rad: 5px)
{
-moz-border-radius: $rad;
-webkit-border-radius: $rad;
border-radius: $rad;
}
Saturday, September 14, 13
Using Defaults
img {
@include border-radius;
}
Saturday, September 14, 13
Simplicity
@mixin drop-shadow ($args) {
-webkit-filter: drop-shadow($args);
-moz-filter: drop-shadow($args);
-ms-filter: drop-shadow ($args);
-o-filter: drop-shadow ($args);
filter: drop-shadow ($args);
}
Saturday, September 14, 13
Readability
@mixin box-shadow (
$h-shadow, $v-shadow, $blur, $color)
{
-moz-box-shadow: $h-shadow $v-shadow $blur $color;
-webkit-box-shadow: $h-shadow $v-shadow $blur $color;
box-shadow: $h-shadow $v-shadow $blur $color;
}
Saturday, September 14, 13
Functions
colors, math,
& more
Saturday, September 14, 13
Color Functions
rgb, rgba/hsl, hsla
lighten/darken
complement, invert
opacify, transparentize
... & more!
Saturday, September 14, 13
Color Functions
rgb, rgba/hsl, hsla
lighten/darken
complement, invert
opacify, transparentize
... & more!
Saturday, September 14, 13
Color Functions
rgb, rgba/hsl, hsla
lighten/darken
complement, invert
opacify, transparentize
... & more!
Saturday, September 14, 13
Color Functions
rgb, rgba/hsl, hsla
lighten/darken
complement, invert
opacify, transparentize
... & more!
Saturday, September 14, 13
Color Functions
rgb, rgba/hsl, hsla
lighten/darken
complement, invert
opacify, transparentize
... & more!
Saturday, September 14, 13
Function Use
h1 {
color:lighten($main-color, 20%);
}
h2 {
color:complement($main-color);
}
Saturday, September 14, 13
Basic Math
.border {
margin:$margin;
padding: $margin/2;
}
Saturday, September 14, 13
Math Functions
percentage
round, ceil, floor
min, max
abs
Saturday, September 14, 13
More Functions
http://sass-lang.com/
docs/yardoc/Sass/
Script/Functions.html
Saturday, September 14, 13
Nesting
keep like
with like
Saturday, September 14, 13
Before
a {
color: $link-color;
}
a:hover {
color: $link-hover-color;
}
Saturday, September 14, 13
Nesting
a {
color: $link-color;
&:hover {
color: $link-hover-color;
}
}
Saturday, September 14, 13
More Nesting
#nav {
a {
color:$nav-color;
&:hover {
color: $nav-hover-color;
}
}
}
Saturday, September 14, 13
Inheritance
avoid duplication
Saturday, September 14, 13
Inheritance
.error {
background: #fdd;
}
.badError {
@extend .error;
border-width: 3px;
}
Saturday, September 14, 13
Comments
// get removed
/* stay around */
Saturday, September 14, 13
Bourbon
A simple and lightweight mixin library for Sass.
bourbon.io
Saturday, September 14, 13
Bourbon Neat
A lightweight semantic grid
framework for Sass and Bourbon.
neat.bourbon.io/
Saturday, September 14, 13
Dank!
Kathryn Rotondo
kathrynrotondo.com
@krotondo
This work is licensed under
http://creativecommons.org/licenses/by-nc-sa/3.0
Saturday, September 14, 13

Contenu connexe

Similaire à Sassy Stylesheets with SCSS

Sassy! Stylesheets with SCSS by Kathryn Rotondo
Sassy! Stylesheets with SCSS by Kathryn RotondoSassy! Stylesheets with SCSS by Kathryn Rotondo
Sassy! Stylesheets with SCSS by Kathryn RotondoCodemotion
 
Eine kleine Einführung in SASS
Eine kleine Einführung in SASSEine kleine Einführung in SASS
Eine kleine Einführung in SASSAndreas Dantz
 
SassConf: It takes a village to raise a stylesheet
SassConf: It takes a village to raise a stylesheetSassConf: It takes a village to raise a stylesheet
SassConf: It takes a village to raise a stylesheetchriseppstein
 
Progressive Advancement, by way of progressive enhancement
Progressive Advancement, by way of progressive enhancementProgressive Advancement, by way of progressive enhancement
Progressive Advancement, by way of progressive enhancementPaul Irish
 
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and CompassBringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and CompassClaudina Sarahe
 
Zeno rocha - HTML5 APIs para Mobile
Zeno rocha - HTML5 APIs para MobileZeno rocha - HTML5 APIs para Mobile
Zeno rocha - HTML5 APIs para MobileiMasters
 
Recommender Systems with Ruby (adding machine learning, statistics, etc)
Recommender Systems with Ruby (adding machine learning, statistics, etc)Recommender Systems with Ruby (adding machine learning, statistics, etc)
Recommender Systems with Ruby (adding machine learning, statistics, etc)Marcel Caraciolo
 
Assets on Rails na Prática
Assets on Rails na PráticaAssets on Rails na Prática
Assets on Rails na PráticaRamon Bispo
 
Internationalization: Preparing Your WordPress Theme for the Rest of the World
Internationalization: Preparing Your WordPress Theme for the Rest of the WorldInternationalization: Preparing Your WordPress Theme for the Rest of the World
Internationalization: Preparing Your WordPress Theme for the Rest of the WorldLisa Sabin-Wilson
 
Ruby 2.0 / Rails 4.0, A selection of new features.
Ruby 2.0 / Rails 4.0, A selection of new features.Ruby 2.0 / Rails 4.0, A selection of new features.
Ruby 2.0 / Rails 4.0, A selection of new features.lrdesign
 
HTML5 e CSS3 - A nova novidade
HTML5 e CSS3 - A nova novidadeHTML5 e CSS3 - A nova novidade
HTML5 e CSS3 - A nova novidadeDiego Eis
 
CSS with LESS for #jd13nl
CSS with LESS for #jd13nlCSS with LESS for #jd13nl
CSS with LESS for #jd13nlHans Kuijpers
 
A Quick Introduction to Sinatra
A Quick Introduction to SinatraA Quick Introduction to Sinatra
A Quick Introduction to SinatraNick Plante
 
A Quick Introduction to Sinatra
A Quick Introduction to SinatraA Quick Introduction to Sinatra
A Quick Introduction to Sinatraguestbe060
 
Building Sencha Themes
Building Sencha ThemesBuilding Sencha Themes
Building Sencha ThemesSencha
 
Elasticsearch – mye mer enn søk! [JavaZone 2013]
Elasticsearch – mye mer enn søk! [JavaZone 2013]Elasticsearch – mye mer enn søk! [JavaZone 2013]
Elasticsearch – mye mer enn søk! [JavaZone 2013]foundsearch
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction SassZeeshan Ahmed
 
PechaKucha Less VS Sass
PechaKucha Less VS SassPechaKucha Less VS Sass
PechaKucha Less VS SassHoang Huynh
 
Introduction to SASS
Introduction to SASSIntroduction to SASS
Introduction to SASSJon Dean
 

Similaire à Sassy Stylesheets with SCSS (20)

Sassy! Stylesheets with SCSS by Kathryn Rotondo
Sassy! Stylesheets with SCSS by Kathryn RotondoSassy! Stylesheets with SCSS by Kathryn Rotondo
Sassy! Stylesheets with SCSS by Kathryn Rotondo
 
Eine kleine Einführung in SASS
Eine kleine Einführung in SASSEine kleine Einführung in SASS
Eine kleine Einführung in SASS
 
SassConf: It takes a village to raise a stylesheet
SassConf: It takes a village to raise a stylesheetSassConf: It takes a village to raise a stylesheet
SassConf: It takes a village to raise a stylesheet
 
Progressive Advancement, by way of progressive enhancement
Progressive Advancement, by way of progressive enhancementProgressive Advancement, by way of progressive enhancement
Progressive Advancement, by way of progressive enhancement
 
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and CompassBringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
 
Zeno rocha - HTML5 APIs para Mobile
Zeno rocha - HTML5 APIs para MobileZeno rocha - HTML5 APIs para Mobile
Zeno rocha - HTML5 APIs para Mobile
 
Recommender Systems with Ruby (adding machine learning, statistics, etc)
Recommender Systems with Ruby (adding machine learning, statistics, etc)Recommender Systems with Ruby (adding machine learning, statistics, etc)
Recommender Systems with Ruby (adding machine learning, statistics, etc)
 
Assets on Rails na Prática
Assets on Rails na PráticaAssets on Rails na Prática
Assets on Rails na Prática
 
Internationalization: Preparing Your WordPress Theme for the Rest of the World
Internationalization: Preparing Your WordPress Theme for the Rest of the WorldInternationalization: Preparing Your WordPress Theme for the Rest of the World
Internationalization: Preparing Your WordPress Theme for the Rest of the World
 
Ruby 2.0 / Rails 4.0, A selection of new features.
Ruby 2.0 / Rails 4.0, A selection of new features.Ruby 2.0 / Rails 4.0, A selection of new features.
Ruby 2.0 / Rails 4.0, A selection of new features.
 
HTML5 e CSS3 - A nova novidade
HTML5 e CSS3 - A nova novidadeHTML5 e CSS3 - A nova novidade
HTML5 e CSS3 - A nova novidade
 
CSS with LESS for #jd13nl
CSS with LESS for #jd13nlCSS with LESS for #jd13nl
CSS with LESS for #jd13nl
 
CSS Extenders
CSS ExtendersCSS Extenders
CSS Extenders
 
A Quick Introduction to Sinatra
A Quick Introduction to SinatraA Quick Introduction to Sinatra
A Quick Introduction to Sinatra
 
A Quick Introduction to Sinatra
A Quick Introduction to SinatraA Quick Introduction to Sinatra
A Quick Introduction to Sinatra
 
Building Sencha Themes
Building Sencha ThemesBuilding Sencha Themes
Building Sencha Themes
 
Elasticsearch – mye mer enn søk! [JavaZone 2013]
Elasticsearch – mye mer enn søk! [JavaZone 2013]Elasticsearch – mye mer enn søk! [JavaZone 2013]
Elasticsearch – mye mer enn søk! [JavaZone 2013]
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction Sass
 
PechaKucha Less VS Sass
PechaKucha Less VS SassPechaKucha Less VS Sass
PechaKucha Less VS Sass
 
Introduction to SASS
Introduction to SASSIntroduction to SASS
Introduction to SASS
 

Plus de Kathryn Rotondo

So Easy a Child Could Do It: Designing Mobile Apps for Kids
So Easy a Child Could Do It: Designing Mobile Apps for KidsSo Easy a Child Could Do It: Designing Mobile Apps for Kids
So Easy a Child Could Do It: Designing Mobile Apps for KidsKathryn Rotondo
 
Designing Apps for Little Fingers Devoxx France 2014
Designing Apps for Little Fingers Devoxx France 2014Designing Apps for Little Fingers Devoxx France 2014
Designing Apps for Little Fingers Devoxx France 2014Kathryn Rotondo
 
Designing Apps for Little Fingers Confoo Montreal Feb 2014
Designing Apps for Little Fingers Confoo Montreal Feb 2014Designing Apps for Little Fingers Confoo Montreal Feb 2014
Designing Apps for Little Fingers Confoo Montreal Feb 2014Kathryn Rotondo
 
So Easy a Child Could Do It: Designing Mobile Apps for Children
So Easy a Child Could Do It: Designing Mobile Apps for ChildrenSo Easy a Child Could Do It: Designing Mobile Apps for Children
So Easy a Child Could Do It: Designing Mobile Apps for ChildrenKathryn Rotondo
 
3 steps to better code review
3 steps to better code review3 steps to better code review
3 steps to better code reviewKathryn Rotondo
 
Code Review: An apple a day
Code Review: An apple a dayCode Review: An apple a day
Code Review: An apple a dayKathryn Rotondo
 
Get a Second Opinion with Code review
Get a Second Opinion with Code reviewGet a Second Opinion with Code review
Get a Second Opinion with Code reviewKathryn Rotondo
 
Get a Second Opinion with Code review
Get a Second Opinion with Code reviewGet a Second Opinion with Code review
Get a Second Opinion with Code reviewKathryn Rotondo
 
a litl SDK for flash and flex
a litl SDK for flash and flexa litl SDK for flash and flex
a litl SDK for flash and flexKathryn Rotondo
 

Plus de Kathryn Rotondo (10)

So Easy a Child Could Do It: Designing Mobile Apps for Kids
So Easy a Child Could Do It: Designing Mobile Apps for KidsSo Easy a Child Could Do It: Designing Mobile Apps for Kids
So Easy a Child Could Do It: Designing Mobile Apps for Kids
 
Fly A Visible Jet
Fly A Visible JetFly A Visible Jet
Fly A Visible Jet
 
Designing Apps for Little Fingers Devoxx France 2014
Designing Apps for Little Fingers Devoxx France 2014Designing Apps for Little Fingers Devoxx France 2014
Designing Apps for Little Fingers Devoxx France 2014
 
Designing Apps for Little Fingers Confoo Montreal Feb 2014
Designing Apps for Little Fingers Confoo Montreal Feb 2014Designing Apps for Little Fingers Confoo Montreal Feb 2014
Designing Apps for Little Fingers Confoo Montreal Feb 2014
 
So Easy a Child Could Do It: Designing Mobile Apps for Children
So Easy a Child Could Do It: Designing Mobile Apps for ChildrenSo Easy a Child Could Do It: Designing Mobile Apps for Children
So Easy a Child Could Do It: Designing Mobile Apps for Children
 
3 steps to better code review
3 steps to better code review3 steps to better code review
3 steps to better code review
 
Code Review: An apple a day
Code Review: An apple a dayCode Review: An apple a day
Code Review: An apple a day
 
Get a Second Opinion with Code review
Get a Second Opinion with Code reviewGet a Second Opinion with Code review
Get a Second Opinion with Code review
 
Get a Second Opinion with Code review
Get a Second Opinion with Code reviewGet a Second Opinion with Code review
Get a Second Opinion with Code review
 
a litl SDK for flash and flex
a litl SDK for flash and flexa litl SDK for flash and flex
a litl SDK for flash and flex
 

Dernier

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
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
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
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
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
 
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
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
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
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
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
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 

Dernier (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
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
 
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...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
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
 
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
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
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
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 

Sassy Stylesheets with SCSS