Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy

James Steinbach
James SteinbachSenior Front-End Developer
Breaking Free 
from Bootstrap 
Custom Responsive Grids 
with Sass Susy
Why Not Bootstrap? 
• Separation of powers
Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy
Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy
Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy
Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy
Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy
Why Not Bootstrap? 
• Separation of powers 
• Maintainability 
• Performance
A Better Way 
• Separate style from markup 
• Simple modular maintenance 
• Only write necessary CSS
Sass Grid Systems 
• Bourbon Neat 
• Singularity 
• Zen Grids 
• Susy
Neat vs. Susy 
Neat Susy 
Settings in variables Settings in map 
Global config Scope-able config 
LibSass / Ruby Ruby only * 
Mostly just columns Full “grid” support 
Includes MQ mixins Integrates w/ Breakpoint
Basic 
Susy Usage
Settings Map 
$susy: ( 
container: 50em, 
columns: 16, 
gutter: .25, 
output: isolate 
);
Setting a Container 
.container-element { 
@include container; 
} 
• Sets clear-fix 
• Sets max-width & centering margins
Setting Columns 
.primary { 
@include span(8); 
} 
.secondary { 
@include span(4 last); 
}
Mixin: span() 
[span] of [layout] at [location] 
(col count) (total cols) (# / keyword) 
@include span(4 of 12 at 4); 
@include span(4 of 8); 
@include span(4 last);
Advanced 
Susy Features
Nested Grids 
.primary { 
@include span(8); 
.block { 
@include with-layout(8) { 
@include span(4); 
} 
} 
}
Function: span() 
.primary { 
@include span(8 of 12); 
padding: 2em span(1 of 8); 
}
Function: gutter() 
.primary { 
@include span(12); 
padding: gutter() span(2); 
}
True “Grid” Layout 
.grid-item { 
@include gallery(3 of 12); 
} 
• Creates a grid with :nth-child floats 
handled correctly 
• No need for .row
Responsive Grids 
.primary { 
@include span(12); 
@include susy-breakpoint(480px, 
$susy) { 
@include span(6); 
} 
}
Responsive Grids 
.primary { 
@include span(12); // default 12 
@media (min-width: 480px) { 
@include with-layout(16) { 
@include span(8); 
} 
} 
}
Asymmetric Grids 
$susy: ( 
columns: 2 5 1 4 
); 
• A list of values generates columns at 
those proportions
Asymmetric Responsive 
Golden Ratio Grid
Resources 
Susy: susy.oddbird.net 
Zell Liew: zell-weekeat.com 
Learning Susy Book: bit.ly/zellsusy 
Breakpoint: breakpoint-sass.com 
My Article: sitepoint.com/sass-grids-neat-susy 
Grids: bit.ly/susygrid | bit.ly/bonusgrid 
Sassmeister: sassmeister.com
James Steinbach 
jamessteinbach.com 
jdsteinbach@gmail.com 
@jdsteinbach 
/jdsteinbach
CLT Sass 
cltsass.com 
info@cltsass.com 
@CLTSass
1 of 28

Recommended

Fasten RWD Development with Sass by
Fasten RWD Development with SassFasten RWD Development with Sass
Fasten RWD Development with SassSven Wolfermann
5.2K views84 slides
Adaptive theming using compass susy grid by
Adaptive theming using compass susy gridAdaptive theming using compass susy grid
Adaptive theming using compass susy gridsoovor
4.7K views46 slides
CSS Preprocessors: LESS is more or look SASS-y trying by
CSS Preprocessors: LESS is more or look SASS-y tryingCSS Preprocessors: LESS is more or look SASS-y trying
CSS Preprocessors: LESS is more or look SASS-y tryingJames Cryer
1.9K views19 slides
Write LESS. DO more. by
Write LESS. DO more.Write LESS. DO more.
Write LESS. DO more.Eugene Nor
658 views30 slides
Confoo: You can use CSS for that! by
Confoo: You can use CSS for that!Confoo: You can use CSS for that!
Confoo: You can use CSS for that!Rachel Andrew
1.5K views109 slides
CSS Grid vs. Flexbox by
CSS Grid vs. FlexboxCSS Grid vs. Flexbox
CSS Grid vs. FlexboxEcaterina Moraru (Valica)
1.7K views29 slides

More Related Content

What's hot

Perch, Patterns and Old Browsers by
Perch, Patterns and Old BrowsersPerch, Patterns and Old Browsers
Perch, Patterns and Old BrowsersRachel Andrew
1.8K views55 slides
GOTO Berlin - You can use CSS for that by
GOTO Berlin - You can use CSS for thatGOTO Berlin - You can use CSS for that
GOTO Berlin - You can use CSS for thatRachel Andrew
1.3K views110 slides
The Future of Frontend - what is new in CSS? by
The Future of Frontend - what is new in CSS?The Future of Frontend - what is new in CSS?
The Future of Frontend - what is new in CSS?Rachel Andrew
1.5K views50 slides
Css3 and gwt in perfect harmony by
Css3 and gwt in perfect harmonyCss3 and gwt in perfect harmony
Css3 and gwt in perfect harmonyArcbees
2.8K views115 slides
Solving Layout Problems with CSS Grid & Friends - NordicJS by
Solving Layout Problems with CSS Grid & Friends - NordicJSSolving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJSRachel Andrew
2.7K views85 slides
Introducing CSS Grid Layout by
Introducing CSS Grid LayoutIntroducing CSS Grid Layout
Introducing CSS Grid LayoutRachel Andrew
4.8K views143 slides

What's hot(20)

Perch, Patterns and Old Browsers by Rachel Andrew
Perch, Patterns and Old BrowsersPerch, Patterns and Old Browsers
Perch, Patterns and Old Browsers
Rachel Andrew1.8K views
GOTO Berlin - You can use CSS for that by Rachel Andrew
GOTO Berlin - You can use CSS for thatGOTO Berlin - You can use CSS for that
GOTO Berlin - You can use CSS for that
Rachel Andrew1.3K views
The Future of Frontend - what is new in CSS? by Rachel Andrew
The Future of Frontend - what is new in CSS?The Future of Frontend - what is new in CSS?
The Future of Frontend - what is new in CSS?
Rachel Andrew1.5K views
Css3 and gwt in perfect harmony by Arcbees
Css3 and gwt in perfect harmonyCss3 and gwt in perfect harmony
Css3 and gwt in perfect harmony
Arcbees2.8K views
Solving Layout Problems with CSS Grid & Friends - NordicJS by Rachel Andrew
Solving Layout Problems with CSS Grid & Friends - NordicJSSolving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJS
Rachel Andrew2.7K views
Introducing CSS Grid Layout by Rachel Andrew
Introducing CSS Grid LayoutIntroducing CSS Grid Layout
Introducing CSS Grid Layout
Rachel Andrew4.8K views
Laracon Online: Grid and Flexbox by Rachel Andrew
Laracon Online: Grid and FlexboxLaracon Online: Grid and Flexbox
Laracon Online: Grid and Flexbox
Rachel Andrew1.9K views
Confoo: The New CSS Layout by Rachel Andrew
Confoo: The New CSS LayoutConfoo: The New CSS Layout
Confoo: The New CSS Layout
Rachel Andrew1.2K views
CSS Grid Layout - All Things Open by Rachel Andrew
CSS Grid Layout - All Things OpenCSS Grid Layout - All Things Open
CSS Grid Layout - All Things Open
Rachel Andrew1.9K views
CSS3 meets GWT with GSS by jdramaix
CSS3 meets GWT with GSSCSS3 meets GWT with GSS
CSS3 meets GWT with GSS
jdramaix1.7K views
CSS Conf Budapest - New CSS Layout by Rachel Andrew
CSS Conf Budapest - New CSS LayoutCSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS Layout
Rachel Andrew965 views
CSS Grid Layout - An Event Apart Orlando by Rachel Andrew
CSS Grid Layout - An Event Apart OrlandoCSS Grid Layout - An Event Apart Orlando
CSS Grid Layout - An Event Apart Orlando
Rachel Andrew958 views
Open Web Camp: CSS3 Implementable Features by Estelle Weyl
Open Web Camp: CSS3 Implementable FeaturesOpen Web Camp: CSS3 Implementable Features
Open Web Camp: CSS3 Implementable Features
Estelle Weyl698 views
SASS is more than LESS by Itai Koren
SASS is more than LESSSASS is more than LESS
SASS is more than LESS
Itai Koren1.2K views
Render Conf: Start using CSS Grid Layout Today by Rachel Andrew
Render Conf: Start using CSS Grid Layout TodayRender Conf: Start using CSS Grid Layout Today
Render Conf: Start using CSS Grid Layout Today
Rachel Andrew3.6K views

Viewers also liked

Smarter Grids with Sass and Susy...and Wordpress! by
Smarter Grids with Sass and Susy...and Wordpress!Smarter Grids with Sass and Susy...and Wordpress!
Smarter Grids with Sass and Susy...and Wordpress!Michelle Barker
3.1K views71 slides
Smarter Grids with Sass and Susy by
Smarter Grids with Sass and SusySmarter Grids with Sass and Susy
Smarter Grids with Sass and SusyMichelle Barker
1.5K views39 slides
Twig tips and tricks by
Twig tips and tricksTwig tips and tricks
Twig tips and tricksJavier Eguiluz
199.3K views185 slides
SASS und SCSS - CSS effektiv schreiben by
SASS und SCSS - CSS effektiv schreibenSASS und SCSS - CSS effektiv schreiben
SASS und SCSS - CSS effektiv schreibenMartin Huber
23.6K views27 slides
Responsive and Fast by
Responsive and FastResponsive and Fast
Responsive and FastSven Wolfermann
701 views87 slides
HTML5 Essential Training by
HTML5 Essential TrainingHTML5 Essential Training
HTML5 Essential TrainingKaloyan Kosev
2.1K views23 slides

Viewers also liked(20)

Smarter Grids with Sass and Susy...and Wordpress! by Michelle Barker
Smarter Grids with Sass and Susy...and Wordpress!Smarter Grids with Sass and Susy...and Wordpress!
Smarter Grids with Sass and Susy...and Wordpress!
Michelle Barker3.1K views
Smarter Grids with Sass and Susy by Michelle Barker
Smarter Grids with Sass and SusySmarter Grids with Sass and Susy
Smarter Grids with Sass and Susy
Michelle Barker1.5K views
Twig tips and tricks by Javier Eguiluz
Twig tips and tricksTwig tips and tricks
Twig tips and tricks
Javier Eguiluz199.3K views
SASS und SCSS - CSS effektiv schreiben by Martin Huber
SASS und SCSS - CSS effektiv schreibenSASS und SCSS - CSS effektiv schreiben
SASS und SCSS - CSS effektiv schreiben
Martin Huber23.6K views
HTML5 Essential Training by Kaloyan Kosev
HTML5 Essential TrainingHTML5 Essential Training
HTML5 Essential Training
Kaloyan Kosev2.1K views
Responsive Web Design Workshop by Stewart Curry
Responsive Web Design WorkshopResponsive Web Design Workshop
Responsive Web Design Workshop
Stewart Curry4.2K views
БЭМ в Мануфактуре РИФ-Воронеж 2014 by Ivan Voischev
БЭМ в Мануфактуре РИФ-Воронеж 2014БЭМ в Мануфактуре РИФ-Воронеж 2014
БЭМ в Мануфактуре РИФ-Воронеж 2014
Ivan Voischev1.7K views
CALIDAD DE VIDA: EVALUACIÓN Y TRASTORNOS DEL ESPECTRO DEL AUTISMO by Pedro Roberto Casanova
CALIDAD DE VIDA: EVALUACIÓN Y TRASTORNOS DEL ESPECTRO DEL AUTISMOCALIDAD DE VIDA: EVALUACIÓN Y TRASTORNOS DEL ESPECTRO DEL AUTISMO
CALIDAD DE VIDA: EVALUACIÓN Y TRASTORNOS DEL ESPECTRO DEL AUTISMO
Sass/SCSS und Compass - CSS effektiver schreiben 2.0 by Martin Huber
Sass/SCSS und Compass - CSS effektiver schreiben 2.0Sass/SCSS und Compass - CSS effektiver schreiben 2.0
Sass/SCSS und Compass - CSS effektiver schreiben 2.0
Martin Huber4.9K views
Cous Cous Fest 2013 - XVI Festival dell'integrazione culturale - San Vito Lo ... by Claudio Taschera
Cous Cous Fest 2013 - XVI Festival dell'integrazione culturale - San Vito Lo ...Cous Cous Fest 2013 - XVI Festival dell'integrazione culturale - San Vito Lo ...
Cous Cous Fest 2013 - XVI Festival dell'integrazione culturale - San Vito Lo ...
Claudio Taschera853 views
Bootstrap grid system by Amr Salman
Bootstrap grid systemBootstrap grid system
Bootstrap grid system
Amr Salman860 views
ITCSS: Architettura scalabile a triangolo invertito by Fabrizio Cuscini
ITCSS: Architettura scalabile a triangolo invertitoITCSS: Architettura scalabile a triangolo invertito
ITCSS: Architettura scalabile a triangolo invertito
Fabrizio Cuscini1.1K views
Cous Cous Fest 2016 - Festival dell'integrazione culturale di San Vito Lo Capo by Claudio Taschera
Cous Cous Fest 2016 - Festival dell'integrazione culturale di San Vito Lo CapoCous Cous Fest 2016 - Festival dell'integrazione culturale di San Vito Lo Capo
Cous Cous Fest 2016 - Festival dell'integrazione culturale di San Vito Lo Capo
Claudio Taschera587 views
BEM It! for Brandwatch by Max Shirshin
BEM It! for BrandwatchBEM It! for Brandwatch
BEM It! for Brandwatch
Max Shirshin18.1K views
Gd johanamartinez by johamarbra
Gd johanamartinezGd johanamartinez
Gd johanamartinez
johamarbra248 views

Similar to Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy

LESS : The dynamic stylesheet language by
LESS : The dynamic stylesheet languageLESS : The dynamic stylesheet language
LESS : The dynamic stylesheet languageKatsunori Tanaka
3.3K views68 slides
The Grid - The Future of CSS Layout by
The Grid - The Future of CSS LayoutThe Grid - The Future of CSS Layout
The Grid - The Future of CSS LayoutRonny Siikaluoma
136 views84 slides
Laying out the future with grid & flexbox - Smashing Conf Freiburg by
Laying out the future with grid & flexbox - Smashing Conf FreiburgLaying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf FreiburgRachel Andrew
2.4K views112 slides
CSS Grid by
CSS GridCSS Grid
CSS GridDigital Surgeons
2.7K views33 slides
An Event Apart Nashville: CSS Grid Layout by
An Event Apart Nashville: CSS Grid LayoutAn Event Apart Nashville: CSS Grid Layout
An Event Apart Nashville: CSS Grid LayoutRachel Andrew
1.7K views138 slides
DevFest Nantes - Start Using CSS Grid Layout today by
DevFest Nantes - Start Using CSS Grid Layout todayDevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout todayRachel Andrew
1.1K views114 slides

Similar to Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy(20)

LESS : The dynamic stylesheet language by Katsunori Tanaka
LESS : The dynamic stylesheet languageLESS : The dynamic stylesheet language
LESS : The dynamic stylesheet language
Katsunori Tanaka3.3K views
Laying out the future with grid & flexbox - Smashing Conf Freiburg by Rachel Andrew
Laying out the future with grid & flexbox - Smashing Conf FreiburgLaying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf Freiburg
Rachel Andrew2.4K views
An Event Apart Nashville: CSS Grid Layout by Rachel Andrew
An Event Apart Nashville: CSS Grid LayoutAn Event Apart Nashville: CSS Grid Layout
An Event Apart Nashville: CSS Grid Layout
Rachel Andrew1.7K views
DevFest Nantes - Start Using CSS Grid Layout today by Rachel Andrew
DevFest Nantes - Start Using CSS Grid Layout todayDevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout today
Rachel Andrew1.1K views
Frontend United: Start using CSS Grid Layout today! by Rachel Andrew
Frontend United: Start using CSS Grid Layout today!Frontend United: Start using CSS Grid Layout today!
Frontend United: Start using CSS Grid Layout today!
Rachel Andrew2.2K views
Introduction to CSS Grid Layout by Rachel Andrew
Introduction to CSS Grid LayoutIntroduction to CSS Grid Layout
Introduction to CSS Grid Layout
Rachel Andrew3.6K views
Evergreen websites for Evergreen browsers by Rachel Andrew
Evergreen websites for Evergreen browsersEvergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsers
Rachel Andrew1.5K views
CSS Day: CSS Grid Layout by Rachel Andrew
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
Rachel Andrew9.6K views
CSS Grid Layout for Frontend NE by Rachel Andrew
CSS Grid Layout for Frontend NECSS Grid Layout for Frontend NE
CSS Grid Layout for Frontend NE
Rachel Andrew2.8K views
CSS Grid Layout by Rachel Andrew
CSS Grid LayoutCSS Grid Layout
CSS Grid Layout
Rachel Andrew128.2K views
CSS Grid Layout: An Event Apart Boston 2016 by Rachel Andrew
CSS Grid Layout: An Event Apart Boston 2016CSS Grid Layout: An Event Apart Boston 2016
CSS Grid Layout: An Event Apart Boston 2016
Rachel Andrew2.9K views
Devoxx Belgium: CSS Grid Layout by Rachel Andrew
Devoxx Belgium: CSS Grid LayoutDevoxx Belgium: CSS Grid Layout
Devoxx Belgium: CSS Grid Layout
Rachel Andrew1.2K views
CSS Grid Layout for Topconf, Linz by Rachel Andrew
CSS Grid Layout for Topconf, LinzCSS Grid Layout for Topconf, Linz
CSS Grid Layout for Topconf, Linz
Rachel Andrew185K views
AEA Chicago CSS Grid Layout by Rachel Andrew
AEA Chicago CSS Grid LayoutAEA Chicago CSS Grid Layout
AEA Chicago CSS Grid Layout
Rachel Andrew1.6K views
An Event Apart SF: CSS Grid Layout by Rachel Andrew
An Event Apart SF: CSS Grid LayoutAn Event Apart SF: CSS Grid Layout
An Event Apart SF: CSS Grid Layout
Rachel Andrew1.6K views
Grid and Flexbox - Smashing Conf SF by Rachel Andrew
Grid and Flexbox - Smashing Conf SFGrid and Flexbox - Smashing Conf SF
Grid and Flexbox - Smashing Conf SF
Rachel Andrew3.1K views
CSS Grid Layout. Specification overview. Implementation status and roadmap (B... by Igalia
CSS Grid Layout. Specification overview. Implementation status and roadmap (B...CSS Grid Layout. Specification overview. Implementation status and roadmap (B...
CSS Grid Layout. Specification overview. Implementation status and roadmap (B...
Igalia3.4K views

Recently uploaded

Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen... by
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...NUS-ISS
28 views70 slides
ChatGPT and AI for Web Developers by
ChatGPT and AI for Web DevelopersChatGPT and AI for Web Developers
ChatGPT and AI for Web DevelopersMaximiliano Firtman
181 views82 slides
Java Platform Approach 1.0 - Picnic Meetup by
Java Platform Approach 1.0 - Picnic MeetupJava Platform Approach 1.0 - Picnic Meetup
Java Platform Approach 1.0 - Picnic MeetupRick Ossendrijver
25 views39 slides
Special_edition_innovator_2023.pdf by
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdfWillDavies22
16 views6 slides
The Research Portal of Catalonia: Growing more (information) & more (services) by
The Research Portal of Catalonia: Growing more (information) & more (services)The Research Portal of Catalonia: Growing more (information) & more (services)
The Research Portal of Catalonia: Growing more (information) & more (services)CSUC - Consorci de Serveis Universitaris de Catalunya
73 views25 slides
Tunable Laser (1).pptx by
Tunable Laser (1).pptxTunable Laser (1).pptx
Tunable Laser (1).pptxHajira Mahmood
23 views37 slides

Recently uploaded(20)

Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen... by NUS-ISS
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
NUS-ISS28 views
Special_edition_innovator_2023.pdf by WillDavies22
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdf
WillDavies2216 views
Voice Logger - Telephony Integration Solution at Aegis by Nirmal Sharma
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at Aegis
Nirmal Sharma17 views
Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software225 views
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors by sugiuralab
TouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective SensorsTouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective Sensors
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors
sugiuralab15 views
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum... by NUS-ISS
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...
NUS-ISS34 views
.conf Go 2023 - Data analysis as a routine by Splunk
.conf Go 2023 - Data analysis as a routine.conf Go 2023 - Data analysis as a routine
.conf Go 2023 - Data analysis as a routine
Splunk93 views
STPI OctaNE CoE Brochure.pdf by madhurjyapb
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdf
madhurjyapb12 views
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze by NUS-ISS
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng TszeDigital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze
NUS-ISS19 views
How the World's Leading Independent Automotive Distributor is Reinventing Its... by NUS-ISS
How the World's Leading Independent Automotive Distributor is Reinventing Its...How the World's Leading Independent Automotive Distributor is Reinventing Its...
How the World's Leading Independent Automotive Distributor is Reinventing Its...
NUS-ISS15 views
Understanding GenAI/LLM and What is Google Offering - Felix Goh by NUS-ISS
Understanding GenAI/LLM and What is Google Offering - Felix GohUnderstanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix Goh
NUS-ISS41 views
PharoJS - Zürich Smalltalk Group Meetup November 2023 by Noury Bouraqadi
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023
Noury Bouraqadi120 views
AMAZON PRODUCT RESEARCH.pdf by JerikkLaureta
AMAZON PRODUCT RESEARCH.pdfAMAZON PRODUCT RESEARCH.pdf
AMAZON PRODUCT RESEARCH.pdf
JerikkLaureta15 views
The details of description: Techniques, tips, and tangents on alternative tex... by BookNet Canada
The details of description: Techniques, tips, and tangents on alternative tex...The details of description: Techniques, tips, and tangents on alternative tex...
The details of description: Techniques, tips, and tangents on alternative tex...
BookNet Canada121 views

Breaking Free from Bootstrap: Custom Responsive Grids with Sass Susy