SlideShare una empresa de Scribd logo
1 de 32
SUPERCHARGED
HTML &
CSS
JAVA
PYTHON
RUBY
PHP
SCALA
…
REST API
JAVASCRIPT
HTML
CSS
HAML
HTML Abstraction Markup
Languaje
$ gem install haml
$ haml input.haml output.html
!!! 5
%html
%head
%title Homepage
%body#home
%h1 Bienvenidos
%p Esto es un párrafo de texto
%ul.menu
%li Primer elemento
%li Segundo elemento
<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
</head>
<body id=“home”>
<h1>Bienvenidos</h1>
<p>Esto es un párrafo de texto</p>
<ul class='menu'>
<li>Primer elemento</li>
<li>Segundo elemento</li>
</ul>
</body>
</html>
JADE
Node Template Engine
$ npm install jade
doctype
html
head
title Homepage
body#home
h1 Bienvenidos
p Esto es un párrafo de texto
ul.menu
li Primer elemento
li Segundo elemento
<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
</head>
<body id=“home”>
<h1>Bienvenidos</h1>
<p>Esto es un párrafo de texto</p>
<ul class='menu'>
<li>Primer elemento</li>
<li>Segundo elemento</li>
</ul>
</body>
</html>
header.jade
head
title My Site
script(src=js/app.js)
footer.jade index.jade
doctype
html
include head
body
h1 Bienvenidos
p Párrafo
ul
li Link 1
li Link 2
include footer
footer
p Copyright 2013
template inheritance
JADE
layout.jade
doctype
html
head
title My Site
block script
body
block content
block footer
index.jade about-me.jade
extends layout
block script
script(src=js/app.js)
block content
h1 Bienvenidos
p Este es mi sitio
block footer
footer
p Copyright 2013
block support with extends
JADE
extends layout
block content
h1 Sobre mi
p Mi nombre es Max
p Vivo en Buenos Aires
block footer
footer
p Copyright 2013
layout.jade
doctype
html
head
title My Site
block script
script(src=js/jquery.js)
body
block content
article
h1 My Site
block footer
footer
p Copyright 2013
block append / prepend
JADE
extends layout
block append script
script(src=js/app.js)
block prepend content
nav
ul
li.active home.html
li about-me.html
li archive.html
index.jade
LESS
The Dynamic Stylesheet
Language
$ npm install less
$ lessc style.less style.css
style.less
@color: #FC0;
@border-width: 2px;
@border-style: solid;
div {
border: @border-width @border-style
@color;
}
variables
LESS
div { border: 2px solid #FC0; }
style.css
style.less
header {
color: black;
h1 {
background-color: gray;
color: white;
}
nav {
background-color: blue;
color: white;
ul {
list-style-type: none;
}
}
}
nested rules
LESS
header { color: black; }
header h1 {
background-color: gray;
color: white;
}
header nav {
background-color: blue;
color: white;
}
header nav ul {
list-style-type: none;
}
style.css
style.less
.bordered {
border-top: 1px dotted black;
border-bottom: 2px solid black;
}
button {
background-color: red;
color: white;
.bordered;
}
mixins
LESS
button {
background-color: red;
color: white;
border-top: 1px dotted black;
border-bottom: 2px solid black;
}
style.css
style.less
.border-radius(@radius) {
border-radius: @radius;
-moz-border-radius: @radius;
-webkit-border-radius: @radius;
}
button {
background-color: red;
color: white;
.border-radius(4px);
}
label { .border-radius(6px); }
parametric mixins
LESS
button {
background-color: red;
color: white;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
label {
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
style.css
style.less
@page-width: 960px;
@aside-width: 200px;
@gutter: 10px;
@margin: @gutter;
@content-width: @page-width – ( @aside-width + (2 * @margin + @gutter )); //630px
.wrapper {
width: @page-width;
margin: @margin;
article { width: @content-width; float:left;}
aside { width: @aside-width; margin-left:@gutter; float:right;}
footer { clear:both; margin-top: @gutter; }
}
math
LESS
style.less
@color: red;
button {
background-color: @color;
&:hover {background-color: darken(@color, 10%);
}
label {
color: @color;
border: 1px solid @color;
background-color: lighten(@color, 30%);
}
built-in functions
LESS
style.less
@import “reset.css”;
@import “grid.less”;
@import “colors.less”;
@import “icons.less”;
header { color: @color; }
article { width: @page-width; }
aside {width: @aside-width; }
i.new { background-image: @icon-new; }
imports
LESS
(content of reset.css)
(content of grid.less)
(content of colors.less)
(content of icons.less)
header { color: black; }
article { width: 960px; }
aside {width: 240px; }
i.new { background-image: new.png; }
style.css
SASS
Syntactically Awesome
Stylesheets
$ gem install sass
$ sass --watch style.scss style.css
style.scss
$color: red;
@mixin bordered {
border-top: 1px dotted black;
border-bottom: 2px solid black;
}
button {
color: $color;
@include bordered;
}
variables & mixins
SASS
button {
color: red;
border-top: 1px dotted black;
border-bottom: 2px solid black;
}
style.css
style.scss
@mixin font-color($bgc){
@if $bgc == white {
color: black;
} @else if $bgc == black {
color: white;
} @else {
color: blue;
}
}
$background: yellow;
button {
background-color: $background;
@include font-color($background);
}
LESS
conditional if/else
SASS
$ gem install compass
$ compass create /path/to/project
style.scss
@import “compass”;
button { @include border-radius(4px); }
label { @include box-shadow(red 2px 2px 10px); }
@include font-face(„Open Sans‟,
font-files(“fonts/opensans.ttf”, “fonts/opensans.otf”))
);
p { font-family: “Open Sans”, Helvetica}
LESS
COMPASS
SASS
style.scss
@import “bourbon”;
section { @include clearfix; }
div.logo { @include hide-text; background-image: url(logo.png); }
h1 { font-size: em(12); }
#{$all-text-inputs} { border: 1px solid green; }
LESS
BOURBON
SASS
TOOLS
devs just wanna have fun
Scout
http://mhs.github.io/scout-app/
Compass.app
http://compass.handlino.com/
Livereload
http://livereload.com/
Less.app
http://incident57.com/less
SimpLESS
http://wearekiss.com/simpless Codekit
http://incident57.com/codekit/
thanks ;)
max kraszewski
@minimalart

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

html-css
html-csshtml-css
html-css
 
Web Design Course: CSS lecture 4
Web Design Course: CSS  lecture 4Web Design Course: CSS  lecture 4
Web Design Course: CSS lecture 4
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
 
Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Cascading Style Sheets - Part 02
Cascading Style Sheets - Part 02Cascading Style Sheets - Part 02
Cascading Style Sheets - Part 02
 
Css
CssCss
Css
 
Css
CssCss
Css
 
Css Basics
Css BasicsCss Basics
Css Basics
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
IPW 3rd Course - CSS
IPW 3rd Course - CSSIPW 3rd Course - CSS
IPW 3rd Course - CSS
 
HTML 5 Simple Tutorial Part 1
HTML 5 Simple Tutorial Part 1HTML 5 Simple Tutorial Part 1
HTML 5 Simple Tutorial Part 1
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Styling with CSS
Styling with CSSStyling with CSS
Styling with CSS
 
Css.html
Css.htmlCss.html
Css.html
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
Css notes
Css notesCss notes
Css notes
 

Destacado

Основы CSS препроцессоров и их использование в WordPress
Основы CSS препроцессоров и их использование в WordPressОсновы CSS препроцессоров и их использование в WordPress
Основы CSS препроцессоров и их использование в WordPressDmitry Mayorov
 
Introducción al elemento canvas de HTML5
Introducción al elemento canvas de HTML5Introducción al elemento canvas de HTML5
Introducción al elemento canvas de HTML5intelligenia S.L.
 
2 reglas de_inversion_alternativas
2 reglas de_inversion_alternativas2 reglas de_inversion_alternativas
2 reglas de_inversion_alternativasMarcelo Delpino
 
Taller 1 p1 grupo3 deily lopez 11 a
Taller 1 p1 grupo3  deily lopez 11 aTaller 1 p1 grupo3  deily lopez 11 a
Taller 1 p1 grupo3 deily lopez 11 aDeisy Pestana
 
Analisis De Inversiones
Analisis De InversionesAnalisis De Inversiones
Analisis De Inversionesnitro1100
 
7 Ross7 Valor Presente Neto Y Presupuesto De Capital
7 Ross7   Valor Presente Neto Y Presupuesto De Capital7 Ross7   Valor Presente Neto Y Presupuesto De Capital
7 Ross7 Valor Presente Neto Y Presupuesto De Capitalcarloscatacora
 
tecnicas de evaluacion del capital
tecnicas de evaluacion del capitaltecnicas de evaluacion del capital
tecnicas de evaluacion del capitalmanchasek
 
1.finanzas gerenciales
1.finanzas gerenciales1.finanzas gerenciales
1.finanzas gerencialesvlady2511
 
HTML5 Enfoque Semantico
HTML5 Enfoque SemanticoHTML5 Enfoque Semantico
HTML5 Enfoque SemanticoMax Kraszewski
 
Evaluacion de Inversiones - Cuarta Sesion
Evaluacion de Inversiones - Cuarta SesionEvaluacion de Inversiones - Cuarta Sesion
Evaluacion de Inversiones - Cuarta SesionHector Javier
 
Introducción al desarrollo web frontend
Introducción al desarrollo web frontendIntroducción al desarrollo web frontend
Introducción al desarrollo web frontendMax Kraszewski
 
Evaluacion de Proyectos. Análisis Económico Financiero
Evaluacion de Proyectos. Análisis Económico FinancieroEvaluacion de Proyectos. Análisis Económico Financiero
Evaluacion de Proyectos. Análisis Económico FinancieroUniversidad Nacional de Loja
 

Destacado (20)

Основы CSS препроцессоров и их использование в WordPress
Основы CSS препроцессоров и их использование в WordPressОсновы CSS препроцессоров и их использование в WordPress
Основы CSS препроцессоров и их использование в WordPress
 
Introducción al elemento canvas de HTML5
Introducción al elemento canvas de HTML5Introducción al elemento canvas de HTML5
Introducción al elemento canvas de HTML5
 
2 reglas de_inversion_alternativas
2 reglas de_inversion_alternativas2 reglas de_inversion_alternativas
2 reglas de_inversion_alternativas
 
Taller 1 p1 grupo3 deily lopez 11 a
Taller 1 p1 grupo3  deily lopez 11 aTaller 1 p1 grupo3  deily lopez 11 a
Taller 1 p1 grupo3 deily lopez 11 a
 
Api
ApiApi
Api
 
01 presentacion fep etapas
01 presentacion fep etapas01 presentacion fep etapas
01 presentacion fep etapas
 
Steve Job
Steve JobSteve Job
Steve Job
 
Analisis De Inversiones
Analisis De InversionesAnalisis De Inversiones
Analisis De Inversiones
 
7 Ross7 Valor Presente Neto Y Presupuesto De Capital
7 Ross7   Valor Presente Neto Y Presupuesto De Capital7 Ross7   Valor Presente Neto Y Presupuesto De Capital
7 Ross7 Valor Presente Neto Y Presupuesto De Capital
 
tecnicas de evaluacion del capital
tecnicas de evaluacion del capitaltecnicas de evaluacion del capital
tecnicas de evaluacion del capital
 
Contabilidad Avanzada
Contabilidad AvanzadaContabilidad Avanzada
Contabilidad Avanzada
 
1.finanzas gerenciales
1.finanzas gerenciales1.finanzas gerenciales
1.finanzas gerenciales
 
HTML5 Enfoque Semantico
HTML5 Enfoque SemanticoHTML5 Enfoque Semantico
HTML5 Enfoque Semantico
 
Gerencia financiera costo de capital
Gerencia financiera costo de capitalGerencia financiera costo de capital
Gerencia financiera costo de capital
 
Análisis y selección de inversiones, por Òscar Elvira
Análisis y selección de inversiones, por Òscar ElviraAnálisis y selección de inversiones, por Òscar Elvira
Análisis y selección de inversiones, por Òscar Elvira
 
Evaluacion de Inversiones - Cuarta Sesion
Evaluacion de Inversiones - Cuarta SesionEvaluacion de Inversiones - Cuarta Sesion
Evaluacion de Inversiones - Cuarta Sesion
 
Tema 5
Tema 5Tema 5
Tema 5
 
Introducción al desarrollo web frontend
Introducción al desarrollo web frontendIntroducción al desarrollo web frontend
Introducción al desarrollo web frontend
 
Evaluacion de Proyectos. Análisis Económico Financiero
Evaluacion de Proyectos. Análisis Económico FinancieroEvaluacion de Proyectos. Análisis Económico Financiero
Evaluacion de Proyectos. Análisis Económico Financiero
 
Presupuesto de capital
Presupuesto de capitalPresupuesto de capital
Presupuesto de capital
 

Similar a Supercharge HTML, CSS & more with powerful preprocessor languages

Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehrBeyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehrJens-Christian Fischer
 
Xlrays online web tutorials
Xlrays online web tutorialsXlrays online web tutorials
Xlrays online web tutorialsYogesh Gupta
 
LessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG MeetingLessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG MeetingMyles Braithwaite
 
Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本a5494535
 
2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdf2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdfBdBangladesh
 
McrFRED 39 | CSS Processors
McrFRED 39 | CSS ProcessorsMcrFRED 39 | CSS Processors
McrFRED 39 | CSS ProcessorsTristan Ashley
 
Css 2c (2) (1) (1) (2)
Css 2c (2) (1) (1) (2)Css 2c (2) (1) (1) (2)
Css 2c (2) (1) (1) (2)gng542
 
Work and play with SASS & Compass
Work and play with SASS & CompassWork and play with SASS & Compass
Work and play with SASS & CompassAndreas Dantz
 
Theme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copieTheme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copieRafaela Souza
 
Theme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copieTheme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copieRafaela Souza
 

Similar a Supercharge HTML, CSS & more with powerful preprocessor languages (20)

Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehrBeyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
 
Xlrays online web tutorials
Xlrays online web tutorialsXlrays online web tutorials
Xlrays online web tutorials
 
LessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG MeetingLessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG Meeting
 
Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本
 
2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdf2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdf
 
Dfdf
DfdfDfdf
Dfdf
 
Dfdf
DfdfDfdf
Dfdf
 
McrFRED 39 | CSS Processors
McrFRED 39 | CSS ProcessorsMcrFRED 39 | CSS Processors
McrFRED 39 | CSS Processors
 
Css 2c (2) (1) (1) (2)
Css 2c (2) (1) (1) (2)Css 2c (2) (1) (1) (2)
Css 2c (2) (1) (1) (2)
 
CSS for Ebooks
CSS for EbooksCSS for Ebooks
CSS for Ebooks
 
Theme04
Theme04Theme04
Theme04
 
Css tips & tricks
Css tips & tricksCss tips & tricks
Css tips & tricks
 
Work and play with SASS & Compass
Work and play with SASS & CompassWork and play with SASS & Compass
Work and play with SASS & Compass
 
Day of code
Day of codeDay of code
Day of code
 
Html advance
Html advanceHtml advance
Html advance
 
HTML-Advance.pptx
HTML-Advance.pptxHTML-Advance.pptx
HTML-Advance.pptx
 
CSS Extenders
CSS ExtendersCSS Extenders
CSS Extenders
 
Theme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copieTheme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copie
 
Theme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copieTheme futura suicida não use como base e nem copie
Theme futura suicida não use como base e nem copie
 
Tmx9
Tmx9Tmx9
Tmx9
 

Más de Max Kraszewski

Más de Max Kraszewski (6)

Gestión ágil de proyectos
Gestión ágil de proyectosGestión ágil de proyectos
Gestión ágil de proyectos
 
Desarrollo web inteligente
Desarrollo web inteligenteDesarrollo web inteligente
Desarrollo web inteligente
 
Educabot
EducabotEducabot
Educabot
 
PSICOFXP 2009
PSICOFXP 2009PSICOFXP 2009
PSICOFXP 2009
 
Sitios Web Rápidos y Furiosos
Sitios Web Rápidos y FuriososSitios Web Rápidos y Furiosos
Sitios Web Rápidos y Furiosos
 
Negocios 2.0
Negocios 2.0Negocios 2.0
Negocios 2.0
 

Último

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
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
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...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
 
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
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - 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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 

Último (20)

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
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...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
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
 
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
 
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...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - 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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 

Supercharge HTML, CSS & more with powerful preprocessor languages