SlideShare a Scribd company logo
1 of 74
Download to read offline
Getting Sassy
with CSS
Julie Cameron
@jewlofthelotus
#SassyCSS
bit.ly/getting-sassy
DERP.
I <3 PAIR PROGRAMMING
Syntactically Awesome Stylesheets
NOT an
acronym…
Syntactically Awesome Stylesheets
NOT
SASS
dot com
“If you see something, say something.
Only you can prevent overcapitalization.”
Hampton Catlin, Creator Of Sass
Just don’t be a
#Sasshole
about it. :)
Welcome to the
Sass
community!!
What Is Sass?
1. An extension of CSS
SassScript Language. Fully CSS-compatible syntax.
What Is Sass?
1. An extension of CSS
SassScript Language. Fully CSS-compatible syntax.
2. A CSS preprocessor
SassScript MAGIC CSS
Where Did Sass Come From?
• 2007: Designed by
Hampton Catlin (Haml)
• Developed by Chris
Eppstein (Compass) and
Natalie Weizenbaum
Why Did They Make Sass?
Because vanilla CSS just
wasn’t cutting it any more.
Bert Bos, CSS Co-Inventor
CSS stops short of even more powerful
features […]. That is because these things
give power-users a lot of rope, but less
experienced users will unwittingly hang
themselves; or, more likely, be so scared
that they won’t even touch CSS.
“
What Does Sass Give
Us That CSS Doesn’t?
• Nesting
• Imports
• Variables
• Mixins
• Inheritance
• Functions
• Loops
• AWESOME
What Does Sass Give
Us That CSS Doesn’t?
• Reduced Repetition
• Cleaner Modularity
• Maintainability
• Scalability
• REAL PROGRAMMING!
Setup & Workflow
Sass Installation
Ruby
OS X? Lucky you, it’s preinstalled!
Windows? Try RubyInstaller.
Sass
$ gem install sass
Sass Installation
LibSass (C/C++)
sass-lang.com/libsass
Compiling Sass
Sass CSS
$ sass source.sass output.css
$ sass source_dir output_dir
MAGIC
Sass Is Watching You
$ sass —-watch source.sass:output.css
This is the best thing. Ever.
Gotchya: Colon vs. Space
Two Sass Syntaxes
Sassy CSS .scss
Default; Valid CSS == Valid SCSS
Indented .sass
Original syntax; Haml-esque
The Good Stuff
Or, Why You’ll Never Write Plain Old CSS Again.
NESTING
Nesting
HTML has a clear hierarchy - elements are nested.
We can apply the same concept in Sass.
HTML Sass
Nesting Output
MAGIC
Sass CSS
Nesting Gotchya
Mirroring HTML nesting is
SUPER easy.
MAGIC?
Overly verbose and overly specific.
General Rule:
No more than 2-3 levels deep
Sass
CSS
Nesting The Parent Selector
You can reference parent selector(s) with an &
MAGIC
Sass CSS
Nesting The Parent Selector
The & can follow other selectors, too!
MAGIC
Sass
CSS
Sass
Nesting The Parent Selector
You can also append a suffix to the &!
MAGIC
CSS
Nesting Media Queries
MAGIC
THIS IS FREAKING AWESOME.
Sass CSS
Note: Matching media queries will
not group together in the output.
IMPORTS
AND ORGANIZATION
Imports
CSS @import has always
meant an extra file download.
Sass (application.scss)
Sass modifies @import to
instead include the resource
during compilation, rather
than on the client side.
Imports File Structure
• project_awesome
• sass
• lib
• fontawesome.scss
• base.scss
• grid.scss
• application.scss
• css
Sass
Imports File Structure
• project_awesome
• sass
• lib
• fontawesome.scss
• base.scss
• grid.scss
• application.scss
• css
$ sass sass/application.scss css/application.css
Sass
Imports File Structure
• project_awesome
• sass
• lib
• fontawesome.scss
• base.scss
• grid.scss
• application.scss
• css
$ sass sass/application.scss css/application.css
Sass
• application.css
Imports File Structure
• project_awesome
• sass
• lib
• fontawesome.scss
• base.scss
• grid.scss
• application.scss
$ sass sass/ css/
Imports File Structure
• project_awesome
• sass
• lib
• fontawesome.scss
• base.scss
• grid.scss
• application.scss
$ sass sass/ css/
• project_awesome
• css
• lib
• fontawesome.css
• base.css
• grid.css
• application.css
MAGIC
Import Partials
• project_awesome
• sass
• lib
• _fontawesome.scss
• _base.scss
• _grid.scss
• application.scss
• print.css
$ sass sass/ css/
Import Partials
• project_awesome
• sass
• lib
• _fontawesome.scss
• _base.scss
• _grid.scss
• application.scss
• print.css
$ sass sass/ css/
MAGIC
• project_awesome
• sass
• …
• css
• application.css
• print.css
VARIABLES
Variables
WTF is
#531946?
#30162b?
#095179?
WAT?
Variables
Variables let you
reuse single values.
Sass
Variable Uses
colors
font sizes
font families
font paths
padding
margins
breakpoints
border-radius
pseudo content
shadows
gradients
SELECTORS!
LOGIC!
ALL THE THINGS!!!1!
Variable Data Types
Numbers
Strings
Colors
Lists
Booleans
Null
Maps
Sass
Variable Dynamics
• Mutable.
• Can be
interpolated.
• Have scopes.
Sass
MATH+
COLOR
Math
• + addition
• - subtraction
• * multiplication
• / division
• % modulus
Sass gives us basic math operations.
Sass
SassyCSS
Math Functions
• abs($num) - absolute value
• ceil($num) - round up to closest whole number
• floor($num) - round down to closest whole number
• percentage($num) - convert to percentage
• round($num) - round to closest whole number
• max($list) - maximum list value
• min($list) - minimum list value
Sass comes with a set of math functions.
Color Math
We can even use math to manipulate colors.
Sass
Color Functions
• rgba($hex, $alpha)
• lighten($color, $percent)
• darken($color, $percent)
• saturate($color, $percent)
• desaturate($color, $percent)
• mix($color1, $color2)
• grayscale($color)
• invert($color)
• complement($color)
• AND MANY MORE!
Sass comes with AWESOME color functions.
http://sassme.arc90.com
MIXINS
Mixins
Variables let you reuse single values
Mixins let you reuse blocks of styles
Mixins Use
CSS Sass
Mixins output their contents where they are called.
Mixin Output
Mixin Features
• argument defaults
• multiple arguments
• optional arguments
M
AGIC
CSS
Sass
Mixin Alternative?
Grouped OutputCSS
@EXTEND
INHERITANCE
@extend
Lets you group selectors
and styles together
MAGIC
Sass
CSS
Placeholders
Placeholders can be @extended but will
never compile to the CSS on their own
MAGIC
Sass
CSS
Plus Lots More WIN
Functions
Conditions
extra-light
Each Loops
For Loops
While Loops
Maps
Key-value pairs.
• Multiple assignment in loops.
• Lots of helper methods.
Demo Time
https://github.com/roytomeij/sassconf
Resources
Sass-Lang.com
The Sass Way
Sass For Web Designers
Assembling Sass
SassNews Newsletter
SassConf
SassConf 2013 Videos
SassMeister
Sass Style Guide
#teamSass
Closing Tips
• Take it one step at a time.
• Keep an eye on your output.
• Don’t nest too deeply.
• Mind your @mixins and @media queries.
• Careful with your @extends.
• Modularize all the things.
<3
Thank You!
Getting Sassy
with CSS
#SassyCSS
bit.ly/getting-sassy
Questions?

More Related Content

What's hot

10 Advanced CSS Techniques (You Wish You Knew More About)
10 Advanced CSS Techniques (You Wish You Knew More About)10 Advanced CSS Techniques (You Wish You Knew More About)
10 Advanced CSS Techniques (You Wish You Knew More About)Emily Lewis
 
Journey To The Front End World - Part2 - The Cosmetic
Journey To The Front End World - Part2 - The  CosmeticJourney To The Front End World - Part2 - The  Cosmetic
Journey To The Front End World - Part2 - The CosmeticIrfan Maulana
 
Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3Pascal Rettig
 
ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019
ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019
ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019European Collaboration Summit
 
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...Guillaume Kossi
 
CSS Walktrough Internship Course
CSS Walktrough Internship CourseCSS Walktrough Internship Course
CSS Walktrough Internship CourseZoltan Iszlai
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondDenise Jacobs
 
Mobile and Responsive Design with Sass
Mobile and Responsive Design with SassMobile and Responsive Design with Sass
Mobile and Responsive Design with Sassnyccamp
 
Getting SASSy with front end development
Getting SASSy with front end developmentGetting SASSy with front end development
Getting SASSy with front end developmentMatthew Carleton
 
Castro Chapter 7
Castro Chapter 7Castro Chapter 7
Castro Chapter 7Jeff Byrnes
 
Colors In CSS3
Colors In CSS3Colors In CSS3
Colors In CSS3Lea Verou
 
Sane CSS - A modern approach to CSS
Sane CSS - A modern approach to CSSSane CSS - A modern approach to CSS
Sane CSS - A modern approach to CSSLee Cheneler
 
Intro to html, css & sass
Intro to html, css & sassIntro to html, css & sass
Intro to html, css & sassSean Wolfe
 
Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...
Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...
Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...SlideTeam.net
 

What's hot (20)

Sass
SassSass
Sass
 
10 Advanced CSS Techniques (You Wish You Knew More About)
10 Advanced CSS Techniques (You Wish You Knew More About)10 Advanced CSS Techniques (You Wish You Knew More About)
10 Advanced CSS Techniques (You Wish You Knew More About)
 
Journey To The Front End World - Part2 - The Cosmetic
Journey To The Front End World - Part2 - The  CosmeticJourney To The Front End World - Part2 - The  Cosmetic
Journey To The Front End World - Part2 - The Cosmetic
 
Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3
 
ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019
ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019
ECS19 - Chris Kent - List Formatting in Office 365 and SharePoint 2019
 
Web 102 INtro to CSS
Web 102  INtro to CSSWeb 102  INtro to CSS
Web 102 INtro to CSS
 
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
 
Learn svg
Learn svgLearn svg
Learn svg
 
Intro to HTML + CSS
Intro to HTML + CSSIntro to HTML + CSS
Intro to HTML + CSS
 
CSS Walktrough Internship Course
CSS Walktrough Internship CourseCSS Walktrough Internship Course
CSS Walktrough Internship Course
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to Respond
 
Mobile and Responsive Design with Sass
Mobile and Responsive Design with SassMobile and Responsive Design with Sass
Mobile and Responsive Design with Sass
 
Css 3
Css 3Css 3
Css 3
 
Css 3
Css 3Css 3
Css 3
 
Getting SASSy with front end development
Getting SASSy with front end developmentGetting SASSy with front end development
Getting SASSy with front end development
 
Castro Chapter 7
Castro Chapter 7Castro Chapter 7
Castro Chapter 7
 
Colors In CSS3
Colors In CSS3Colors In CSS3
Colors In CSS3
 
Sane CSS - A modern approach to CSS
Sane CSS - A modern approach to CSSSane CSS - A modern approach to CSS
Sane CSS - A modern approach to CSS
 
Intro to html, css & sass
Intro to html, css & sassIntro to html, css & sass
Intro to html, css & sass
 
Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...
Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...
Cycle circular round jigsaw maze piece puzzle with center 4 powerpoint ppt te...
 

Viewers also liked

So You Think You Know Podcasting
So You Think You Know  PodcastingSo You Think You Know  Podcasting
So You Think You Know PodcastingCode Akron
 
Lessons learned from The Innovation Hub
Lessons learned from The Innovation HubLessons learned from The Innovation Hub
Lessons learned from The Innovation HubThe Creativity Hub
 
Professor John Higgins
Professor John Higgins Professor John Higgins
Professor John Higgins Investnet
 
30 60 90 Day Plan Format
30 60 90 Day Plan Format30 60 90 Day Plan Format
30 60 90 Day Plan FormatPeggy McKee
 
BVU Technology and Communications Summit Plenary Powerpoint
BVU Technology and Communications Summit Plenary PowerpointBVU Technology and Communications Summit Plenary Powerpoint
BVU Technology and Communications Summit Plenary PowerpointBVU
 
The Changing Role of IT Staff
The Changing Role of IT StaffThe Changing Role of IT Staff
The Changing Role of IT StaffBVU
 
LeadingAST.com - Sample 90 day leadership plan
LeadingAST.com - Sample 90 day leadership planLeadingAST.com - Sample 90 day leadership plan
LeadingAST.com - Sample 90 day leadership planMichael Weening
 

Viewers also liked (9)

So You Think You Know Podcasting
So You Think You Know  PodcastingSo You Think You Know  Podcasting
So You Think You Know Podcasting
 
Lessons learned from The Innovation Hub
Lessons learned from The Innovation HubLessons learned from The Innovation Hub
Lessons learned from The Innovation Hub
 
Professor John Higgins
Professor John Higgins Professor John Higgins
Professor John Higgins
 
Thinking Fast and Slow
Thinking Fast and SlowThinking Fast and Slow
Thinking Fast and Slow
 
Product Management 90 Day Plan
Product Management 90 Day PlanProduct Management 90 Day Plan
Product Management 90 Day Plan
 
30 60 90 Day Plan Format
30 60 90 Day Plan Format30 60 90 Day Plan Format
30 60 90 Day Plan Format
 
BVU Technology and Communications Summit Plenary Powerpoint
BVU Technology and Communications Summit Plenary PowerpointBVU Technology and Communications Summit Plenary Powerpoint
BVU Technology and Communications Summit Plenary Powerpoint
 
The Changing Role of IT Staff
The Changing Role of IT StaffThe Changing Role of IT Staff
The Changing Role of IT Staff
 
LeadingAST.com - Sample 90 day leadership plan
LeadingAST.com - Sample 90 day leadership planLeadingAST.com - Sample 90 day leadership plan
LeadingAST.com - Sample 90 day leadership plan
 

Similar to Getting Sassy with CSS

Sass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqSass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqDignitasDigital1
 
DrupalCamp Chattanooga - September 2014 - Sass 101
DrupalCamp Chattanooga - September 2014 - Sass 101DrupalCamp Chattanooga - September 2014 - Sass 101
DrupalCamp Chattanooga - September 2014 - Sass 101Eric Sembrat
 
Intro to Sass for WordPress Developers
Intro to Sass for WordPress DevelopersIntro to Sass for WordPress Developers
Intro to Sass for WordPress DevelopersSuzette Franck
 
Sass that CSS
Sass that CSSSass that CSS
Sass that CSSTrish Ang
 
The sass way - Yatendra Bhardwaj
The sass way - Yatendra BhardwajThe sass way - Yatendra Bhardwaj
The sass way - Yatendra BhardwajYatendra Bhardwaj
 
Bliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionBliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionIrfan Maulana
 
SASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, GreensockSASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, GreensockMarco Pinheiro
 
European SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint SassyEuropean SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint SassyStefan Bauer
 
CSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassCSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassLucien Lee
 
Atlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass Topics
Atlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass TopicsAtlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass Topics
Atlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass TopicsEric Sembrat
 
SASS is more than LESS
SASS is more than LESSSASS is more than LESS
SASS is more than LESSItai Koren
 
SCSS Implementation
SCSS ImplementationSCSS Implementation
SCSS ImplementationAmey Parab
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction SassZeeshan Ahmed
 
Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?sharjeet
 

Similar to Getting Sassy with CSS (20)

Sass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqSass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by Shafeeq
 
DrupalCamp Chattanooga - September 2014 - Sass 101
DrupalCamp Chattanooga - September 2014 - Sass 101DrupalCamp Chattanooga - September 2014 - Sass 101
DrupalCamp Chattanooga - September 2014 - Sass 101
 
Intro to Sass for WordPress Developers
Intro to Sass for WordPress DevelopersIntro to Sass for WordPress Developers
Intro to Sass for WordPress Developers
 
Sass that CSS
Sass that CSSSass that CSS
Sass that CSS
 
Sass_Cubet seminar
Sass_Cubet seminarSass_Cubet seminar
Sass_Cubet seminar
 
The sass way - Yatendra Bhardwaj
The sass way - Yatendra BhardwajThe sass way - Yatendra Bhardwaj
The sass way - Yatendra Bhardwaj
 
UNIT 3.ppt
UNIT 3.pptUNIT 3.ppt
UNIT 3.ppt
 
Bliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionBliblidotcom - SASS Introduction
Bliblidotcom - SASS Introduction
 
SASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, GreensockSASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, Greensock
 
European SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint SassyEuropean SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint Sassy
 
CSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassCSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & Compass
 
Atlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass Topics
Atlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass TopicsAtlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass Topics
Atlanta Drupal User's Group - April 2015 - Sasstronauts: Advanced Sass Topics
 
Sass
SassSass
Sass
 
CSS3
CSS3CSS3
CSS3
 
SASS is more than LESS
SASS is more than LESSSASS is more than LESS
SASS is more than LESS
 
SCSS Implementation
SCSS ImplementationSCSS Implementation
SCSS Implementation
 
SASS Preprocessor
SASS PreprocessorSASS Preprocessor
SASS Preprocessor
 
Make your CSS beautiful again
Make your CSS beautiful againMake your CSS beautiful again
Make your CSS beautiful again
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction Sass
 
Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?Why are we using Sass to create Grid Frameworks?
Why are we using Sass to create Grid Frameworks?
 

More from Julie Cameron

Growing a Thriving and Engaged Remote Team
Growing a Thriving and Engaged Remote TeamGrowing a Thriving and Engaged Remote Team
Growing a Thriving and Engaged Remote TeamJulie Cameron
 
Yoga & mindfulness for people who stare at computers all day
Yoga & mindfulness for people who stare at computers all dayYoga & mindfulness for people who stare at computers all day
Yoga & mindfulness for people who stare at computers all dayJulie Cameron
 
Lifesaving, Timesaving, Sanity-saving HOTKEYS!
Lifesaving, Timesaving, Sanity-saving HOTKEYS!Lifesaving, Timesaving, Sanity-saving HOTKEYS!
Lifesaving, Timesaving, Sanity-saving HOTKEYS!Julie Cameron
 
On Entering Open Source
On Entering Open SourceOn Entering Open Source
On Entering Open SourceJulie Cameron
 
Decoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSSDecoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSSJulie Cameron
 
Intro to OOCSS Workshop
Intro to OOCSS WorkshopIntro to OOCSS Workshop
Intro to OOCSS WorkshopJulie Cameron
 
OOCSS Lightening Talk
OOCSS Lightening TalkOOCSS Lightening Talk
OOCSS Lightening TalkJulie Cameron
 

More from Julie Cameron (7)

Growing a Thriving and Engaged Remote Team
Growing a Thriving and Engaged Remote TeamGrowing a Thriving and Engaged Remote Team
Growing a Thriving and Engaged Remote Team
 
Yoga & mindfulness for people who stare at computers all day
Yoga & mindfulness for people who stare at computers all dayYoga & mindfulness for people who stare at computers all day
Yoga & mindfulness for people who stare at computers all day
 
Lifesaving, Timesaving, Sanity-saving HOTKEYS!
Lifesaving, Timesaving, Sanity-saving HOTKEYS!Lifesaving, Timesaving, Sanity-saving HOTKEYS!
Lifesaving, Timesaving, Sanity-saving HOTKEYS!
 
On Entering Open Source
On Entering Open SourceOn Entering Open Source
On Entering Open Source
 
Decoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSSDecoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSS
 
Intro to OOCSS Workshop
Intro to OOCSS WorkshopIntro to OOCSS Workshop
Intro to OOCSS Workshop
 
OOCSS Lightening Talk
OOCSS Lightening TalkOOCSS Lightening Talk
OOCSS Lightening Talk
 

Recently uploaded

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMKumar Satyam
 
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
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
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
 
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
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 

Recently uploaded (20)

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
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
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
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
 
+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...
 
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...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 

Getting Sassy with CSS