SlideShare uma empresa Scribd logo
1 de 113
Baixar para ler offline
Take full control of your edit screens
Cleaner & more predictable front-end
Charge more for your work!
Nutshell
IN A
<div class="row callout-wrap">
<div class="thirdcol first co-1">
<div class="callout-title">
Upcoming Events
</div>
<div class="callout-img">
<img src="images/callout-horse-white.png">
</div>
<div class="callout-tagline-wrap">
<p>Spend a day at the</p>
<p class="emph">races</p>
<a class="callout-button">Race Schedule >></a>
</div>
</div>
<div class="thirdcol co-2">
<div class="callout-title">
Farmer's Market
</div>
<div class="callout-img">
<img src="images/callout-wheat.png">
</div>
<div class="callout-tagline-wrap">
<p>Now with longer</p>
<p class="emph">hours</p>
<a class="callout-button">Market Info >></a>
</div>
</div>
<div class="thirdcol last co-3">
<div class="callout-title">
Available Services
</div>
<div class="callout-img">
<img src="images/callout-campfire.png">
</div>
<div class="callout-tagline-wrap">
<p>We have so much</p>
<p class="emph">more</p>
<a class="callout-button">What we offer >></a>
</div>
</div>
</div>
Callouts
Callouts
3
1
2
ACCESS TO YOUR THEME’S PHP
BASIC THEMING PRACTICES
BASIC-ER PHP SYNTAX
FIELD 1: BACKGROUND IMAGE
FIELD 2:
HEADLINE
FIELD 3:
TEXT
FIELD 4:
CALL TO ACTION
BUTTON TEXT
FIELD 5:
BUTTON LINK
<div class=“inner-container”
style=“background: url(/images/
flamesbg.jpg) no-repeat center
center; background-size: cover;”>
</div>
<img src=“/images/flames-logo.png”
alt=“Flames logo”>
<h1>The Calgary Flames have made
the playoffs!</h1>
<p>Tickets will be made available to
non-season ticket holders via a lottery
system. Sign up today!</p>
<a class=“button” href=“http://
www.calgaryflames.com/tickets”>
I WANT TO BE PART OF THE C OF RED
</a>
FIELD 1: BACKGROUND IMAGE
FIELD 2:
HEADLINE
FIELD 3:
TEXT
FIELD 4:
CALL TO ACTION
BUTTON TEXT
FIELD 5:
BUTTON LINK
Flames Background
flames_background
Flames Background
flames_background
Flames Headline
flames_headline
Flames Text
flames_text
Flames Button Text
flames_button_text
Flames Link
flames_link
<?php /*Template Name: Home*/ ?>
<?php get_header(); ?>
<div class="row">
<div class="page-content">
<h2> <?php the_title(); ?> </h2>
<?php the_content(); ?>
</div>
</div>
<?php get_footer(); ?>
<?php /*Template Name: Home*/ ?>
<?php get_header(); ?>
<?php get_footer(); ?>
<div class="inner-container" style="background: url(/images/flames-bg.jpg)” no-
repeat center center; background-size: cover;">
<img src="/images/flames-logo.png" alt="Flames logo">
<h1>
The Calgary Flames have made the playoffs!
</h1>
<p>
Tickets will be made available to non-season ticket holders via a lottery
system. Sign up today!
</p>
<a class="button" href="http://www.calgaryflames.com/tickets">
I WANT TO BE PART OF THE C OF RED
</a>
</div>
<?php the_field('field_name'); ?>
<?php the_title(); ?>
<?php the_content(); ?>
WORDPRESS TEMPLATE TAGS
ACF FIELD TAGS
<?php get_header(); ?>
<?php /*Template Name: Home*/ ?>
<?php get_footer(); ?>
<div class="inner-container" style="background: url(/images/flames-bg.jpg)”
no-repeat center center; background-size: cover;">
<img src="/images/flames-logo.png" alt="Flames logo">
<h1>
The Calgary Flames have made the playoffs!
</h1>
<p>
Tickets will be made available to non-season ticket holders via a lottery system. Sign up today!
</p>
<a class="button" href="http://buildstudio.ca/acftalk/order-tickets">
I WANT TO BE PART OF THE C OF RED
</a>
</div>
<?php get_header(); ?>
<?php /*Template Name: Home*/ ?>
<?php get_footer(); ?>
<div class="inner-container" style="background: url(<?php the_field('flames_background'); ?>)”
no-repeat center center; background-size: cover;">
<img src="/images/flames-logo.png" alt="Flames logo">
<h1>
<?php the_field('flames_headline'); ?>
</h1>
<p>
<?php the_field('flames_text'); ?>
</p>
<a class="button" href="<?php the_field('flames_link'); ?>">
<?php the_field(‘flames_button_text'); ?>
</a>
</div>
Beat the Canucks! Make them cry!
Woohoo!!!!!!!
We made the playoffs, baby!
Beat the Canucks! Make them cry!
Woohoo!!!!!!!
We made the playoffs, baby!
BRING ON THE DUCKS
Holy Crap We Did It
The Flames Have Advanced to the Second Round!
Holy Crap We Did It
The Flames Have Advanced to the Second Round
BRING ON THE DUCKS
FIELD 1:
PLAYER
PHOTO
FIELD 2:
PLAYER
NAME
FIELD 3:
PLAYER
POSITION
Players
Players
Flames Players
flames_players
Flames Players
flames_players
Flames Players
flames_players
Flames Players
flames_players
Player Photo
player_photo
Flames Players
Player Name
player_name
Flames Players
Player Position
player_position
Players
Flames Players
flames_players
Flames Players
flames_players
Add Player
Add Player
<div class="inner-container">
<img src="/images/flames-logo.png"
alt="Flames logo">
<h1>Flames Players</h1>
<div class="bio">
<img src="images/glencross.jpg">
<div class="bio-text">
<h2>Curtis Glencross</h2>
<p>Left Wing</p>
</div>
</div>
<div class="bio">
<img src="images/hiller.jpg">
<div class="bio-text">
<h2>Jonas Hiller</h2>
<p>Goaltender</p>
</div>
</div>
<div class="bio">
<img src="images/monahan.jpg">
<div class="bio-text">
<h2>Sean Monahan</h2>
<p>Center</p>
</div>
</div>
</div>
if(get_field('repeater_field_name')):
while(has_sub_field('repeater_field_name')): ?>
<?php
<!--subfield 1 content--> <?php the_sub_field('sub_field_1'); ?>
<!--subfield 2 content--> <?php the_sub_field('sub_field_2'); ?>
<?php endwhile; ?>
<?php endif; ?>
if(have_posts())
while(have_posts()): the_post(); ?>
<?php
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
ONE EXAMPLE OF THE WORDPRESS LOOP
THE ACF REPEATER LOOP
Players
Flames Players
flames_players
if(get_field('repeater_field_name')):
while(has_sub_field('repeater_field_name')): ?>
<?php
<!--subfield 1 content--> <?php the_sub_field('sub_field_1'); ?>
<!--subfield 2 content--> <?php the_sub_field('sub_field_2'); ?>
<?php endwhile; ?>
<?php endif; ?>
if(get_field(‘flames_players')):
while(has_sub_field('flames_players')): ?>
<?php
<!--subfield 1 content--> <?php the_sub_field('sub_field_1'); ?>
<!--subfield 2 content--> <?php the_sub_field('sub_field_2'); ?>
<?php endwhile; ?>
<?php endif; ?>
<div class="bio">
<img src="images/glencross.jpg">
<div class="bio-text">
<h2>Curtis Glencross</h2>
<p>Left Wing</p>
</div>
</div>
if(get_field('flames_players')):
while(has_sub_field('flames_players')): ?>
<?php
<?php endwhile; ?>
<?php endif; ?>
<div class="bio">
<img src="<?php the_sub_field(‘player_photo'); ?>">
<div class="bio-text">
<h2><?php the_sub_field(‘player_name'); ?></h2>
<p><?php the_sub_field(‘player_position’); ?></p>
</div>
</div>
if(get_field('flames_players')):
while(has_sub_field('flames_players')): ?>
<?php
<?php endwhile; ?>
<?php endif; ?>
if(get_field('flames_players')):
while(has_sub_field('flames_players')): ?>
<?php endwhile; ?>
<?php endif; ?>
<div class="bio">
<img src="<?php echo get_sub_field(‘player_photo'); ?>">
<div class="bio-text">
<h2><?php echo get_sub_field(‘player_name'); ?></h2>
<p><?php echo get_sub_field(‘player_position'); ?></p>
</div>
</div>
<div class="inner-container">
<img src="/images/flames-logo.png"
alt="Flames logo">
<h1>Flames Players</h1>
<?php get_header(); ?>
<?php get_footer(); ?>
<?php /*Template Name: Players*/ ?>
Players
Players
Players
Players
Curtis Glencross Left Wing
Players
Jonas Hiller Goaltender
Players
Sean Monahan Centre
Players
Players
Players
Players
Sam Bennett Centre
Global fields in a custom options area
Global fields in a custom options area
Calls to Action
Calls to Action
Money
MAKE MORE
Edits are made when you
want them, not when I
can do them
Money
MAKE MORE
I can now be hit by a bus
Money
MAKE MORE
One less thing to train staff
Money
MAKE MORE
Hiring requirements just
became a little more
relaxed
Money
MAKE MORE
Say goodbye to the
minimum charge
Money
MAKE MORE
Take Full Control of Your Edit Screens
Take Full Control of Your Edit Screens

Mais conteúdo relacionado

Mais procurados

zynga-online.facebook.html
zynga-online.facebook.htmlzynga-online.facebook.html
zynga-online.facebook.htmladmin999
 
Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Remy Sharp
 
Odoo - CMS performances optimization
Odoo - CMS performances optimizationOdoo - CMS performances optimization
Odoo - CMS performances optimizationOdoo
 
The project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerThe project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerAndrei Hortúa
 
Private slideshow
Private slideshowPrivate slideshow
Private slideshowsblackman
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQueryRemy Sharp
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Joao Lucas Santana
 
Using of TDD practices for Magento
Using of TDD practices for MagentoUsing of TDD practices for Magento
Using of TDD practices for MagentoIvan Chepurnyi
 
Zf2 how arrays will save your project
Zf2   how arrays will save your projectZf2   how arrays will save your project
Zf2 how arrays will save your projectMichelangelo van Dam
 
Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Bernhard Schussek
 

Mais procurados (19)

Symfony 1, mi viejo amigo
Symfony 1, mi viejo amigoSymfony 1, mi viejo amigo
Symfony 1, mi viejo amigo
 
1cst
1cst1cst
1cst
 
zynga-online.facebook.html
zynga-online.facebook.htmlzynga-online.facebook.html
zynga-online.facebook.html
 
Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)
 
Odoo - CMS performances optimization
Odoo - CMS performances optimizationOdoo - CMS performances optimization
Odoo - CMS performances optimization
 
The project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerThe project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicer
 
Articulo java web
Articulo java webArticulo java web
Articulo java web
 
Java script programms
Java script programmsJava script programms
Java script programms
 
Images and PWA in magento
Images and PWA in magentoImages and PWA in magento
Images and PWA in magento
 
Private slideshow
Private slideshowPrivate slideshow
Private slideshow
 
Gae
GaeGae
Gae
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQuery
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
 
Using of TDD practices for Magento
Using of TDD practices for MagentoUsing of TDD practices for Magento
Using of TDD practices for Magento
 
hellowired_instructions
hellowired_instructionshellowired_instructions
hellowired_instructions
 
Zf2 how arrays will save your project
Zf2   how arrays will save your projectZf2   how arrays will save your project
Zf2 how arrays will save your project
 
Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Best Practice Testing with Lime 2
Best Practice Testing with Lime 2
 
Dev004奚江華
Dev004奚江華Dev004奚江華
Dev004奚江華
 
HTML5 - Pedro Rosa
HTML5 - Pedro RosaHTML5 - Pedro Rosa
HTML5 - Pedro Rosa
 

Destaque

Cover letter
Cover letterCover letter
Cover letterAqsa Ijaz
 
Unit name: Feelings.
Unit name: Feelings.Unit name: Feelings.
Unit name: Feelings.İrem Topal
 
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์Jiraporn Onlaor
 
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.Alexis Aguilera
 
Bewitched and bothered
Bewitched and botheredBewitched and bothered
Bewitched and botheredEvlchemist
 

Destaque (6)

Cover letter
Cover letterCover letter
Cover letter
 
Unit name: Feelings.
Unit name: Feelings.Unit name: Feelings.
Unit name: Feelings.
 
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
 
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
 
Asbestos In Your Home Infographic
Asbestos In Your Home InfographicAsbestos In Your Home Infographic
Asbestos In Your Home Infographic
 
Bewitched and bothered
Bewitched and botheredBewitched and bothered
Bewitched and bothered
 

Semelhante a Take Full Control of Your Edit Screens

Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal formJulio Pari
 
Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal formJulio Pari
 
Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) ThemingPINGV
 
Vue.js - zastosowanie i budowa komponentów
Vue.js - zastosowanie i budowa komponentówVue.js - zastosowanie i budowa komponentów
Vue.js - zastosowanie i budowa komponentówLaravel Poland MeetUp
 
Copy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazaCopy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazahelgawerth
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special documentLan Nguyen
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special documentLan Nguyen
 
Featured posts
Featured postsFeatured posts
Featured postsaidee58
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!Coulawrence
 
Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Daniel Downs
 
Implement rich snippets in your webshop
Implement rich snippets in your webshopImplement rich snippets in your webshop
Implement rich snippets in your webshopArjen Miedema
 
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...Al-Mamun Sarkar
 

Semelhante a Take Full Control of Your Edit Screens (20)

Front end ++: seo e flexbox
Front end ++: seo e flexboxFront end ++: seo e flexbox
Front end ++: seo e flexbox
 
20110820 header new style
20110820 header new style20110820 header new style
20110820 header new style
 
Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal form
 
Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal form
 
Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) Theming
 
Vue.js - zastosowanie i budowa komponentów
Vue.js - zastosowanie i budowa komponentówVue.js - zastosowanie i budowa komponentów
Vue.js - zastosowanie i budowa komponentów
 
Copy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazaCopy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plaza
 
laboratorio
laboratoriolaboratorio
laboratorio
 
Upload[1]
Upload[1]Upload[1]
Upload[1]
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
 
Admin footer
Admin footerAdmin footer
Admin footer
 
Featured posts
Featured postsFeatured posts
Featured posts
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
 
Zen
ZenZen
Zen
 
Zen based theming
Zen based themingZen based theming
Zen based theming
 
Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.
 
Implement rich snippets in your webshop
Implement rich snippets in your webshopImplement rich snippets in your webshop
Implement rich snippets in your webshop
 
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
 
Stole16
Stole16Stole16
Stole16
 

Último

SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Último (20)

SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

Take Full Control of Your Edit Screens