SlideShare a Scribd company logo
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

More Related Content

Viewers also liked

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
khosachdientu2015
 
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
khosachdientu2015
 
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
 
Nguyen tac khoi nghiep pdf
Nguyen tac khoi nghiep pdfNguyen tac khoi nghiep pdf
Nguyen tac khoi nghiep pdf
khosachdientu2015
 
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
MasterSkills Institute
 
Lipidos
LipidosLipidos
Dissertation Proposal
Dissertation ProposalDissertation Proposal
Dissertation Proposal
Muhammad 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 Levels
Luigi 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ống
whitelotus2017
 
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
Ahmad Fauzan
 
Gamifiez vous
Gamifiez vousGamifiez vous
Gamifiez vousFastory
 

Viewers also liked (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
 

Similar to Ultimate Guide to Image Optimisation in WordPress

Digital graphics pro forma
Digital graphics pro formaDigital graphics pro forma
Digital graphics pro forma
Josh Highton
 
Its timetostopstalling mot_paris
Its timetostopstalling mot_parisIts timetostopstalling mot_paris
Its timetostopstalling mot_paris
Doug Sillars
 
Its timetostopstalling gdgdusseldorf
Its timetostopstalling gdgdusseldorfIts timetostopstalling gdgdusseldorf
Its timetostopstalling gdgdusseldorf
Doug Sillars
 
File types pro forma
File types pro formaFile types pro forma
File types pro forma
CheekiBreeki
 
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_bristol
Doug 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 library
Easily Amused, Inc. & The WP Valet
 
Ux connect london_fastandbeautiful
Ux connect london_fastandbeautifulUx connect london_fastandbeautiful
Ux connect london_fastandbeautiful
Doug Sillars
 
Its timetostopstalling swp_munich
Its timetostopstalling swp_munichIts timetostopstalling swp_munich
Its timetostopstalling swp_munich
Doug Sillars
 
File types
File typesFile types
File types
Demi Jay
 
Edi ux fastandbeautiful
Edi ux fastandbeautifulEdi ux fastandbeautiful
Edi ux fastandbeautiful
Doug Sillars
 
File types pro forma power point
File types pro forma power pointFile types pro forma power point
File types pro forma power point
bobtrelfa
 
File types pro forma power point
File types pro forma power pointFile types pro forma power point
File types pro forma power point
bobtrelfa
 
Imagesandvideo stockholm fastandbeautiful
Imagesandvideo stockholm fastandbeautifulImagesandvideo stockholm fastandbeautiful
Imagesandvideo stockholm fastandbeautiful
Doug Sillars
 
File types
File typesFile types
File types
twilliams1992
 
Performance.now() fast but not furious
Performance.now()   fast but not furiousPerformance.now()   fast but not furious
Performance.now() fast but not furious
Anna 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 webmeetup
Doug Sillars
 
Fastandbeautiful novi sad
Fastandbeautiful novi sadFastandbeautiful novi sad
Fastandbeautiful novi sad
Doug Sillars
 
Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012
Bastian Grimm
 

Similar to 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
 

Recently uploaded

Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
Rohit Gautam
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
DianaGray10
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
SOFTTECHHUB
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 

Recently uploaded (20)

Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 

Ultimate Guide to Image Optimisation in WordPress