SlideShare ist ein Scribd-Unternehmen logo
1 von 32
Downloaden Sie, um offline zu lesen
TheUltimate(?)Guideto
ImageOptimisation.
StevenJones
@stompweb
Whyfocusonimages?
Issues.
1.FileSize
2.FileTypes
3.Imagesizes/proportions
4.DeliveryMethod
5.Appearance
6.Responsive
FileSize.
Problem#1
Imagesarebeingloadedontothesitedirectlyfromacamera’s
SDcard.
Reducethebaselinefilesizethatcanbeuploaded.
Imsanity:https://wordpress.org/plugins/imsanity/
Solution
FileSize.
Problem#2
Evenafterensuringthatimagesoutputonyourwebsiteare
nottoobig,filesizesarestilllarge.
Compressimagesinyourmedialibrary.
Kraken:https://wordpress.org/plugins/kraken-image-optimizer/
EWWWImageOptimizer:
https://wordpress.org/plugins/ewww-image-optimizer/
Solution
FileSize.
Problem#3
Imagesthatarepartofyourthemearen’toptimised.
UseataskrunnersuchasGulptoautomatethecompression
ofyourassets.
gulp-imagemin:
https://www.npmjs.com/package/gulp-imagemin/
Solution
FileTypes.
1.JPG
2.PNG
3.GIF
4.SVG
5.WEBP
FileTypes.
JPG-25KB PNG-50KB
FileTypes.
JPG-150KB PNG-20KB
Filesizes/proportions.
Problem
Thereisaspacefora700pxx400pximageonyoursitebut
yourclienthasuploadedimagesthatare2000pxx800px.
Useadd_image_size()tocreatedifferentimagesonupload.
Solution
Filesizes/proportions.
Filesizes/proportions.
add_image_size( 'wordpress-thumbnail', 200, 200, FALSE );add_image_size( 'wordpress-thumbnail', 200, 200, FALSE );
Filesizes/proportions.
add_image_size( 'wordpress-thumbnail', 200, 200, TRUE );
Filesizes/proportions.
add_image_size('wordpress-thumbnail',200,200,array('left','top' ) );
Filesizes/proportions.
Problem
Youhaveusedadd_image_size()butexistingimagesare
notthecorrectsize.
Regenerateimages.
RegenerateThumbnails:https://wordpress.org/plugins/regenerate-thumbnails/
Solution
Filesizes/proportions.
Problem
Youhave1000sofimagesinthemedialibrarybutonlyneed
acertainsizeforafewspecificimages.
Generateimageson-the-fly
WPThumb:https://wordpress.org/plugins/wp-thumb/
vt_resize():
https://www.seedprod.com/dynamically-resize-wordpress-images-on-the-fly/
Solution
DeliveryMethod.
Problem#1
Lotsofsmallimagesbeingloadedforlogosandiconsacross
thesite.
1.Deliverthemasoneimage(Sprite).
2.Useiconfonts
HTTP/2:http2demo.io
Solutions
DeliveryMethod.
Problem#2
Yourusersaredistributedaroundtheworldandimagesaren’t
loadingveryquicklytocustomersabroad.
Photon-partofJetpack
DeliverthemviaaContentDeliveryNetwork(CDN).
WPOffloadS3:
https://wordpress.org/plugins/amazon-s3-and-cloudfront/
Solution
Appearance.
Problem#1
Youhavelotsofimagesonthepagebutmostofthemare
belowthefold.
LazyLoadtheimages.
lazySizes:http://afarkas.github.io/lazysizes/
Solution
Appearance.
Problem#2
Youhavealotofimagesonyoursitethatiscontributing
toalargepagesize,includingaslider.
Revisitthedesignstage.Doyouneedasmanyimages?Is
theslideraddingvaluetoyoursite?
Solution
ResponsiveImages.
Problem#1
Ihaveanimagethatis800pxx400pxondesktopbutIonly
needittobe400pxx200pxonmobiledevices.
Problem#2
Iwanttobeabletoserveretinaimagestoretinadevices,but
nottonon-retinadevices.
Problem#3
IwanttoprovidedifferentimagesizesatdifferentscreenIwanttoprovidedifferentimagesizesatdifferentscreen
widthsa.k.a.artdirection
ResponsiveImages.
Solution#1,#2&#3
<picture></picture>
ResponsiveImages.
Solution#1(a)
<picture>
<source
media="(min-width:650px)"
srcset="images/featured-image.jpg">
<img
src="images/featured-image-small.jpg"
alt="Dyson">alt="Dyson">
</picture>
ResponsiveImages.
<?php
// Featured large (1000 x 600)
$image_large = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured' );
// Featured small (500 x 300)
$image_small = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured-small' );
?>
<picture><picture>
<source
media="(min-width: 650px)"
srcset="<?php echo $image_large[0]; ?>">
<img
src="<?php echo $image_small[0]; ?>"
alt="Dyson">
</picture></picture>
ResponsiveImages.
Solution#1(b)
Installthefeaturedplugintoprovidesupportforimagesinthe
WordPresseditor-mergedinfor4.4.
RICGResponsiveImages:
https://wordpress.org/plugins/ricg-responsive-images/
ResponsiveImages.
Solution#2
<picture>
<source
media="(min-width:650px)"
srcset="
images/featured-image.jpg,
images/featured-image@2x.jpg2x">
<img<img
src="
images/featured-image-small.jpg,
images/featured-image-small@2x.jpg2x"
alt="Dyson">
</picture>
ResponsiveImages.
Solution#3
<picture>
<source
media="(min-width:650px)"
srcset="images/featured-image-rectangle.jpg">
<img
src="images/featured-image-square.jpg"
alt="Dyson">alt="Dyson">
</picture>
ResponsiveImages.
<?php
// Featured Retina (2000 x 1200)
$image_retina = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured-retina' );
// Featured Large (1000 x 600)
$image_large = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured-large' );
// Featured small (500 x 300)
$image_small = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured-small' );$image_small = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured-small' );
?>
<picture>
<source
media="(min-width: 650px)"
srcset="
<?php echo $image_large[0]; ?>,
<?php echo $image_retina[0]; ?> 2x">
<img
src="<?php echo $image_small[0]; ?>"
srcset="<?php echo $image_largel[0]; ?> 2x"
alt="Dyson">
</picture>
ResponsiveImages.
<?php
// Featured rectangle (1000 x 600)
$image_rect = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured-rect' );
// Featured square (400 x 400)
$image_small = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'featured-square' );
?>
<picture><picture>
<source
media="(min-width: 650px)"
srcset="<?php echo $image_rect[0]; ?>">
<img
src="<?php echo $image_square[0]; ?>"
alt="Dyson">
</picture></picture>
ResponsiveImages.
Bonus-Fallbackimages
<picture>
<sourcetype="image/webp"srcset="images/dyson.webp">
<imgsrc="images/dyson.jpg"alt="Dyson">
</picture>
ResponsiveImages.
FurtherInformation
<picture>elementrequirespolyfillforolderbrowsers
#feature-respimgonSlack
FeaturedpluginmergedintoWP4.4
<picture>polyfill:
https://scottjehl.github.io/picturefill/
Questions?
@stompweb
BlogPost:
http://stomptheweb.co.uk/ultimate-guide-image-optimisation-wordpress

Weitere ähnliche Inhalte

Andere mochten auch

Ngay ca buffet cung khong hoan hao
Ngay ca buffet cung khong hoan haoNgay ca buffet cung khong hoan hao
Ngay ca buffet cung khong hoan haokhosachdientu2015
 
Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D
Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D
Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D jackmandvc
 
KỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNG
KỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNGKỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNG
KỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNGMasterSkills Institute
 
Dissertation Proposal
Dissertation ProposalDissertation Proposal
Dissertation ProposalMuhammad Riaz
 
Mapping Automotive SPICE: Achieving Higher Maturity &amp; Capability Levels
Mapping Automotive SPICE: Achieving Higher Maturity &amp; Capability LevelsMapping Automotive SPICE: Achieving Higher Maturity &amp; Capability Levels
Mapping Automotive SPICE: Achieving Higher Maturity &amp; Capability LevelsLuigi Buglione
 
tư duy làm thay đổi cuộc sống
tư duy làm thay đổi cuộc sốngtư duy làm thay đổi cuộc sống
tư duy làm thay đổi cuộc sốngwhitelotus2017
 
Creative strategy on Re-branding Burger King
Creative strategy on Re-branding Burger KingCreative strategy on Re-branding Burger King
Creative strategy on Re-branding Burger KingAhmad Fauzan
 
Gamifiez vous
Gamifiez vousGamifiez vous
Gamifiez vousFastory
 

Andere mochten auch (12)

Bi quyet ve huu som va giau
Bi quyet ve huu som va giauBi quyet ve huu som va giau
Bi quyet ve huu som va giau
 
Ngay ca buffet cung khong hoan hao
Ngay ca buffet cung khong hoan haoNgay ca buffet cung khong hoan hao
Ngay ca buffet cung khong hoan hao
 
Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D
Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D
Ai Lấy Miếng Pho Mát Của Tôi ? - Spencer Johnson M.D
 
Nguyen tac khoi nghiep pdf
Nguyen tac khoi nghiep pdfNguyen tac khoi nghiep pdf
Nguyen tac khoi nghiep pdf
 
KỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNG
KỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNGKỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNG
KỸ NĂNG ĐÀM PHÁN - THƯƠNG LƯỢNG
 
Lipidos
LipidosLipidos
Lipidos
 
Dissertation Proposal
Dissertation ProposalDissertation Proposal
Dissertation Proposal
 
Mapping Automotive SPICE: Achieving Higher Maturity &amp; Capability Levels
Mapping Automotive SPICE: Achieving Higher Maturity &amp; Capability LevelsMapping Automotive SPICE: Achieving Higher Maturity &amp; Capability Levels
Mapping Automotive SPICE: Achieving Higher Maturity &amp; Capability Levels
 
tư duy làm thay đổi cuộc sống
tư duy làm thay đổi cuộc sốngtư duy làm thay đổi cuộc sống
tư duy làm thay đổi cuộc sống
 
Creative strategy on Re-branding Burger King
Creative strategy on Re-branding Burger KingCreative strategy on Re-branding Burger King
Creative strategy on Re-branding Burger King
 
Raring Brochure
Raring BrochureRaring Brochure
Raring Brochure
 
Gamifiez vous
Gamifiez vousGamifiez vous
Gamifiez vous
 

Ähnlich wie Ultimate Guide to Image Optimisation in WordPress

Digital graphics pro forma
Digital graphics pro formaDigital graphics pro forma
Digital graphics pro formaJosh Highton
 
Its timetostopstalling mot_paris
Its timetostopstalling mot_parisIts timetostopstalling mot_paris
Its timetostopstalling mot_parisDoug Sillars
 
Its timetostopstalling gdgdusseldorf
Its timetostopstalling gdgdusseldorfIts timetostopstalling gdgdusseldorf
Its timetostopstalling gdgdusseldorfDoug Sillars
 
File types pro forma
File types pro formaFile types pro forma
File types pro formaCheekiBreeki
 
Optimizing jpgs with MS Office Picture Manager
Optimizing jpgs with MS Office Picture ManagerOptimizing jpgs with MS Office Picture Manager
Optimizing jpgs with MS Office Picture Managernewgraham
 
Its timetostopstalling sw_mobile_bristol
Its timetostopstalling sw_mobile_bristolIts timetostopstalling sw_mobile_bristol
Its timetostopstalling sw_mobile_bristolDoug Sillars
 
WordPress media library - Going Outside the Instructionsmedia library
WordPress media library - Going Outside the Instructionsmedia libraryWordPress media library - Going Outside the Instructionsmedia library
WordPress media library - Going Outside the Instructionsmedia libraryEasily Amused, Inc. & The WP Valet
 
Ux connect london_fastandbeautiful
Ux connect london_fastandbeautifulUx connect london_fastandbeautiful
Ux connect london_fastandbeautifulDoug Sillars
 
Its timetostopstalling swp_munich
Its timetostopstalling swp_munichIts timetostopstalling swp_munich
Its timetostopstalling swp_munichDoug Sillars
 
File types
File typesFile types
File typesDemi Jay
 
Edi ux fastandbeautiful
Edi ux fastandbeautifulEdi ux fastandbeautiful
Edi ux fastandbeautifulDoug Sillars
 
File types pro forma power point
File types pro forma power pointFile types pro forma power point
File types pro forma power pointbobtrelfa
 
File types pro forma power point
File types pro forma power pointFile types pro forma power point
File types pro forma power pointbobtrelfa
 
Imagesandvideo stockholm fastandbeautiful
Imagesandvideo stockholm fastandbeautifulImagesandvideo stockholm fastandbeautiful
Imagesandvideo stockholm fastandbeautifulDoug Sillars
 
Performance.now() fast but not furious
Performance.now()   fast but not furiousPerformance.now()   fast but not furious
Performance.now() fast but not furiousAnna Migas
 
Graphics case study.pptx (1)
Graphics case study.pptx (1)Graphics case study.pptx (1)
Graphics case study.pptx (1)Sam Hughes
 
Imagesandvideo stockholm webmeetup
Imagesandvideo stockholm webmeetupImagesandvideo stockholm webmeetup
Imagesandvideo stockholm webmeetupDoug Sillars
 
Fastandbeautiful novi sad
Fastandbeautiful novi sadFastandbeautiful novi sad
Fastandbeautiful novi sadDoug Sillars
 
Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012Bastian Grimm
 

Ähnlich wie Ultimate Guide to Image Optimisation in WordPress (20)

Digital graphics pro forma
Digital graphics pro formaDigital graphics pro forma
Digital graphics pro forma
 
Its timetostopstalling mot_paris
Its timetostopstalling mot_parisIts timetostopstalling mot_paris
Its timetostopstalling mot_paris
 
Its timetostopstalling gdgdusseldorf
Its timetostopstalling gdgdusseldorfIts timetostopstalling gdgdusseldorf
Its timetostopstalling gdgdusseldorf
 
File types pro forma
File types pro formaFile types pro forma
File types pro forma
 
Optimizing jpgs with MS Office Picture Manager
Optimizing jpgs with MS Office Picture ManagerOptimizing jpgs with MS Office Picture Manager
Optimizing jpgs with MS Office Picture Manager
 
Its timetostopstalling sw_mobile_bristol
Its timetostopstalling sw_mobile_bristolIts timetostopstalling sw_mobile_bristol
Its timetostopstalling sw_mobile_bristol
 
WordPress media library - Going Outside the Instructionsmedia library
WordPress media library - Going Outside the Instructionsmedia libraryWordPress media library - Going Outside the Instructionsmedia library
WordPress media library - Going Outside the Instructionsmedia library
 
Ux connect london_fastandbeautiful
Ux connect london_fastandbeautifulUx connect london_fastandbeautiful
Ux connect london_fastandbeautiful
 
Its timetostopstalling swp_munich
Its timetostopstalling swp_munichIts timetostopstalling swp_munich
Its timetostopstalling swp_munich
 
File types
File typesFile types
File types
 
Edi ux fastandbeautiful
Edi ux fastandbeautifulEdi ux fastandbeautiful
Edi ux fastandbeautiful
 
File types pro forma power point
File types pro forma power pointFile types pro forma power point
File types pro forma power point
 
File types pro forma power point
File types pro forma power pointFile types pro forma power point
File types pro forma power point
 
Imagesandvideo stockholm fastandbeautiful
Imagesandvideo stockholm fastandbeautifulImagesandvideo stockholm fastandbeautiful
Imagesandvideo stockholm fastandbeautiful
 
File types
File typesFile types
File types
 
Performance.now() fast but not furious
Performance.now()   fast but not furiousPerformance.now()   fast but not furious
Performance.now() fast but not furious
 
Graphics case study.pptx (1)
Graphics case study.pptx (1)Graphics case study.pptx (1)
Graphics case study.pptx (1)
 
Imagesandvideo stockholm webmeetup
Imagesandvideo stockholm webmeetupImagesandvideo stockholm webmeetup
Imagesandvideo stockholm webmeetup
 
Fastandbeautiful novi sad
Fastandbeautiful novi sadFastandbeautiful novi sad
Fastandbeautiful novi sad
 
Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012
 

Kürzlich hochgeladen

What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
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
 

Kürzlich hochgeladen (20)

What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your 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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
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
 

Ultimate Guide to Image Optimisation in WordPress