SlideShare ist ein Scribd-Unternehmen logo
1 von 53
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Ähnlich wie 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
 

Ähnlich wie 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
 

Mehr von 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
 

Mehr von 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
 

Kürzlich hochgeladen

Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
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
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
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
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
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
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 

Kürzlich hochgeladen (20)

Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
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
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
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
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
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
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 

Sassy Stylesheets with SCSS