SlideShare a Scribd company logo
1 of 64
Download to read offline
HIGH-RESOLUTION MONITORS
Make Your User Interfaces Scale with the Future
Agenda
   Introduction
   Some broken apps
   Scaling modes
   Testing your apps
   Swing tips
What is DPI
              width




   height




                      Artwork by Studiomx.eu
What is DPI
              13.3 inch




   8.3 inch




                          Artwork by Studiomx.eu
What is DPI
               1280 pixels




  800 pixels




                             Artwork by Studiomx.eu
What is DPI
                        1280 pixels / 13.3 inch




  800 pixels /
   8.3 inch




                 1280 pixels / 13.3 inch = 96 pixels per inch
                 800 pixels / 8.3 inch = 96 pixels per inch


                                                                Artwork by Studiomx.eu
Pixels vs. points
   Example: Printing
     Translating   a logical “point” to multiple ink “pixels”
   Desktop publishing point – 1/72 of an inch
   As displays become denser, this translation
    becomes necessary as well
   12-point font should always be 1/6 of an inch
    under different DPI conditions
Different pixel size, same point size

                 12 points




       300 DPI               96 DPI
Pixels, points, and your display

   Points
     logical unit of layout
     (text, controls, primitive drawing)

   Pixels
       literal physical unit of display
   Scale factor
       how points are converted to pixels for your specific
        hardware
What is High DPI?
QSXGA – Quad Super eXtended Graphics Array

 13.3 inch by 16.6 inch
 2048 pixels by 2560 pixels
 154 DPI
 Priced in $13.000-15.000 range




  Planar                Eizo           Barco        WIDE
 Dome C5i           Radiforce G51   Coronis 5MP   IF2105MP
What is High DPI?
WQUXGA – Wide Quad Ultra eXtended Graphics Array

 18.8 inch by 11.8 inch
 3840 pixels by 2400 pixels
 204 DPI
 Priced at around $9.000

 IDTech MD22292 series

 sold as:
 •IBM T220, T221
 •Iiyama AQU5611DTBK
 •ViewSonic VP2290b
 •ADTX MD22292B



 Toshiba will produce a WQUXGA monitor in Q2 2008
High DPI – beyond the desktop

   Sony W810i      Apple iPhone
   148 DPI         163 DPI




   Sony W810i      Apple iPod Nano
   200 DPI         204 DPI




   Amazon Kindle   Nokia N770
   167 DPI         225 DPI
Point Of Sale / Presentation




www.microsoft.com/dynamics/pos
www.visualbusiness.com.au
www.komtelpe.biz
www.posmagic.com.au
What does this have to do with me?

   Even jump from 96 DPI to 120 DPI can break
    visuals
   Convergence with handhelds (200+ DPI)
   Point of sale systems (touch screens)
   Presentations and demos
   Hardware always gets cheaper…
Broken applications
Let’s see a few applications
scaled to 150-200%
Windows XP - run
Windows XP - Paint
Windows Vista – Photoshop CS3
Windows Vista - Minesweeper
Ubuntu 8.04 – Eclipse 3.4m5
Ubuntu 8.04 - archiver
Ubuntu 8.04 – Firefox 3 beta 5
Mac OS X Leopard - Acorn
Mac OS X Leopard - Photoshop
UI scaling modes
Magnification
Application scaling
Framework scaling
Magnification
   simplest option
   fuzzy
   best choice for legacy apps
Magnification




http://developer.apple.com/documentation/UserExperience/Conceptual/HiDPIOverview/
HiDPIConcepts/chapter_2_section_1.html
Magnification – Mac OS X
Magnification – Windows Vista
Application Scaling
Applications that don’t use modern native
UI libs (WPF / Cocoa)

Applications that use UI toolkits that don’t
provide magnification / toolkit scaling
(Swing on non-Mac platforms)
What should be scaled?

 Icons
 Control visuals and inner metrics

 Inter control layout

 Custom application painting
Scaling Icons




                Hard to
                 See

                 Understand

                 Operate
Scaling icons
   Icon bundles
     Multiplefiles
     “Archive” format – ICO (Win), ICNS (Mac)

     “Layered” format – TIFF

   Vector icons – SVG, PDF
Icons – Multiple Versions




    16*16, 22*22, 32*32, 48*48, 64*64, 128*128 + SVG
                                            Artwork by Crystal and Oxygen
Scaling Controls
Internal Metrics




   Borders
Internal Metrics




   Borders
   Focus ring margin
Internal Metrics




   Borders
   Focus ring margin
   Focus ring
Internal Metrics




   Borders             Focus ring insets
   Focus ring margin
   Focus ring
Internal Metrics




   Borders             Focus ring insets
   Focus ring margin   Icon text gap
   Focus ring
Using Scalable Units For Control
Layout – Vista approach




   http://msdn2.microsoft.com/en-us/library/aa511453.aspx
Dialog Units

   The vertical dialog box unit is equivalent to the
    character height.
   The horizontal dialog box unit is equivalent to the
    average character width of the dialog box's font.

   The average character width is calculated by
    finding the average text extent of the alphabetic
    character set.




         http://support.microsoft.com/kb/145994/en-us
Preserving Inter-Control Alignment
Preserving Inter-Control Alignment




       Degraded user experience
Inter-Control Alignment
Inter-Control Alignment
Scaling custom app visuals
Framework Scaling
most exhaustive option
requires deep integration from graphics
drivers to the widget toolkit
minimal changes to "modern" apps
Framework Scaling




http://developer.apple.com/documentation/UserExperience/Conceptual/HiDPIOverview/
HiDPIConcepts/chapter_2_section_1.html
Framework scaling – Mac OS X
Framework scaling – Vista
Framework scaling – back to pixels

   Sometimes the default scaling isn’t right
     Per-pixelcustom art (Google map tiles)
     Custom controls

     Custom views where physical size fidelity matters
      (show 1 inch, irrespective of DPI)
   Obtain the “scale factor”
   Apply an “inverse” affine transform to get back
    to the “device” coordinate space
Testing your app
   Changing the DPI setting for testing
    purposes
      Windows Vista

      Mac OS X

      Ubuntu with Gnome

      Ubuntu with KDE
Windows Vista
   Display -> Personalize -> Adjust Font Size
    (DPI)
Mac OS X Leopard
   /Developer/Applications/Graphics Tools/Quartz
    Debug.app
     Tools   -> Show User Interface Resolution
Ubuntu 8.04 Gnome
   System -> Preferences -> Appearance ->
    Fonts -> Details
Ubuntu 8.04 KDE 4.0
   Computer -> System Settings -> Appearance -
    > Fonts
Swing Recommendations
   Don’t hard-code pixel values
   Bundling multiple images from existing icon
    sets (Tango, Oxygen, Crystal, …)
   Use SVG and Apache Batik
     UseFlamingo transcoder on SVG images for
     pure Java2D rendering code
   JGoodies Plastic / Substance / Nimbus LAFs
   JGoodies Form layout manager with dialog
    units
   MiG layout manager with logical pixels
Swing Recommendations -
Windows
   Use Toolkit.getScreenResolution() to
    convert pixels to points
   OS-specific properties to query desktop
    font settings
     win.defaultGUI.font

     win.icon.font
Swing Recommendations - Linux

   Use Toolkit.getScreenResolution() to
    convert pixels to points
   OS-specific properties under Gnome to
    query desktop font settings
     gnome.Gtk/FontName

     gnome.Xft/DPI
Swing Recommendations – Mac
OS X
   OS-specific property
     apple.awt.UIScaleFactor

     Use  inverse affine transform in
      paintComponent()
   Translating the affine transform to avoid
    pixel cracks
     Using the modulo of the scaled vs. unscaled
      coordinate space
     Published example forthcoming
One more thing…
Multi-display, multi-resolution
Related sessions
   TS-6096 – Nimbus: The New Face of
    Swing. Thursday 10:50AM
   BOF-6101 – Nimbus: Beyond the Basics.
    Thursday 7:30PM
   TS-4928 - Creating Simple to Advanced
    Swing and SWT Layouts Easily with MiG
    Layout. Friday 1:30PM
Kirill Grouchnikov, Amdocs Inc.
Mike Swingler, Apple Inc.

More Related Content

What's hot

Best Monitor for Video & Photo editing
Best Monitor for Video & Photo editingBest Monitor for Video & Photo editing
Best Monitor for Video & Photo editingEIZO INDIA
 
Android App Development 08 : Support Multiple Devices
Android App Development 08 : Support Multiple DevicesAndroid App Development 08 : Support Multiple Devices
Android App Development 08 : Support Multiple DevicesAnuchit Chalothorn
 
Designing Android apps for multiple screens
Designing Android apps for multiple screensDesigning Android apps for multiple screens
Designing Android apps for multiple screensAbhijeet Dutta
 
Adobe photoshop extended cs5 [old version]
Adobe photoshop extended cs5 [old version]Adobe photoshop extended cs5 [old version]
Adobe photoshop extended cs5 [old version]Kimetenthray
 
P1 powerpoint presentation
P1 powerpoint presentationP1 powerpoint presentation
P1 powerpoint presentationAishahBegum
 
Graphic hardware and software
Graphic hardware and softwareGraphic hardware and software
Graphic hardware and softwarerafhat
 
Animation software by Er. Suvisha Gupta
Animation software by Er. Suvisha GuptaAnimation software by Er. Suvisha Gupta
Animation software by Er. Suvisha GuptaSuvisha Gupta
 
Amd future of gp us - campus party
Amd   future of gp us - campus partyAmd   future of gp us - campus party
Amd future of gp us - campus partyCampus Party Brasil
 

What's hot (12)

Best Monitor for Video & Photo editing
Best Monitor for Video & Photo editingBest Monitor for Video & Photo editing
Best Monitor for Video & Photo editing
 
Hp envy
Hp  envyHp  envy
Hp envy
 
Android App Development 08 : Support Multiple Devices
Android App Development 08 : Support Multiple DevicesAndroid App Development 08 : Support Multiple Devices
Android App Development 08 : Support Multiple Devices
 
Designing Android apps for multiple screens
Designing Android apps for multiple screensDesigning Android apps for multiple screens
Designing Android apps for multiple screens
 
pscs3vqp_excerpt
pscs3vqp_excerptpscs3vqp_excerpt
pscs3vqp_excerpt
 
Presenter's tools: Software & Hardware
Presenter's tools: Software & HardwarePresenter's tools: Software & Hardware
Presenter's tools: Software & Hardware
 
Adobe photoshop extended cs5 [old version]
Adobe photoshop extended cs5 [old version]Adobe photoshop extended cs5 [old version]
Adobe photoshop extended cs5 [old version]
 
P1 powerpoint presentation
P1 powerpoint presentationP1 powerpoint presentation
P1 powerpoint presentation
 
Graphic hardware and software
Graphic hardware and softwareGraphic hardware and software
Graphic hardware and software
 
Animation software by Er. Suvisha Gupta
Animation software by Er. Suvisha GuptaAnimation software by Er. Suvisha Gupta
Animation software by Er. Suvisha Gupta
 
Amd future of gp us - campus party
Amd   future of gp us - campus partyAmd   future of gp us - campus party
Amd future of gp us - campus party
 
output devices
output devicesoutput devices
output devices
 

Similar to High DPI for desktop applications

Android training day 3
Android training day 3Android training day 3
Android training day 3Vivek Bhusal
 
Windows 7 V2 Vineet
Windows 7 V2   VineetWindows 7 V2   Vineet
Windows 7 V2 Vineettechnext1
 
Sig13 ce future_gfx
Sig13 ce future_gfxSig13 ce future_gfx
Sig13 ce future_gfxCass Everitt
 
Better DITA Graphics for a Multi-Screen World
Better DITA Graphics for a Multi-Screen WorldBetter DITA Graphics for a Multi-Screen World
Better DITA Graphics for a Multi-Screen WorldJoe Pairman
 
Kisters 3DViewStation - your data: how, when, where you want
Kisters 3DViewStation - your data: how, when, where you wantKisters 3DViewStation - your data: how, when, where you want
Kisters 3DViewStation - your data: how, when, where you wantGermar Nikol
 
Onyx - PrintLAT
Onyx - PrintLAT Onyx - PrintLAT
Onyx - PrintLAT PrintLAT
 
Flash for Mobile Devices
Flash for Mobile DevicesFlash for Mobile Devices
Flash for Mobile Devicespaultrani
 
Rapidly Construct LOB Applications with UWP and Visual Studio 2017
Rapidly Construct LOB Applications with UWP and Visual Studio 2017Rapidly Construct LOB Applications with UWP and Visual Studio 2017
Rapidly Construct LOB Applications with UWP and Visual Studio 2017Windows Developer
 
How computer monitors work
How computer monitors workHow computer monitors work
How computer monitors workRaxTonProduction
 
Nvidia quadro sales guide
Nvidia quadro sales guideNvidia quadro sales guide
Nvidia quadro sales guideShanker Trivedi
 
Android Apps Training - Day Four (Design)
Android Apps Training - Day Four (Design)Android Apps Training - Day Four (Design)
Android Apps Training - Day Four (Design)Anjan Shrestha
 
Introduction to Software Defined Visualization (SDVis)
Introduction to Software Defined Visualization (SDVis)Introduction to Software Defined Visualization (SDVis)
Introduction to Software Defined Visualization (SDVis)Intel® Software
 
A Special Introduction to the Upcoming InduSoft Web Studio 8.0
A Special Introduction to the Upcoming InduSoft Web Studio 8.0A Special Introduction to the Upcoming InduSoft Web Studio 8.0
A Special Introduction to the Upcoming InduSoft Web Studio 8.0AVEVA
 
Creating Flash Content for Multiple Screens
Creating Flash Content for Multiple ScreensCreating Flash Content for Multiple Screens
Creating Flash Content for Multiple Screenspaultrani
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobileDee Sadler
 
2 Win7 For Devs Ux Touch Sensors
2 Win7 For Devs Ux Touch Sensors2 Win7 For Devs Ux Touch Sensors
2 Win7 For Devs Ux Touch Sensorsllangit
 
Kisters 3DViewStation - CAD viewer for PLM and stand alone
Kisters 3DViewStation - CAD viewer for PLM and stand aloneKisters 3DViewStation - CAD viewer for PLM and stand alone
Kisters 3DViewStation - CAD viewer for PLM and stand aloneGermar Nikol
 

Similar to High DPI for desktop applications (20)

Android training day 3
Android training day 3Android training day 3
Android training day 3
 
Windows 7 V2 Vineet
Windows 7 V2   VineetWindows 7 V2   Vineet
Windows 7 V2 Vineet
 
Windows 7 V2
Windows 7 V2Windows 7 V2
Windows 7 V2
 
Sig13 ce future_gfx
Sig13 ce future_gfxSig13 ce future_gfx
Sig13 ce future_gfx
 
Better DITA Graphics for a Multi-Screen World
Better DITA Graphics for a Multi-Screen WorldBetter DITA Graphics for a Multi-Screen World
Better DITA Graphics for a Multi-Screen World
 
Kisters 3DViewStation - your data: how, when, where you want
Kisters 3DViewStation - your data: how, when, where you wantKisters 3DViewStation - your data: how, when, where you want
Kisters 3DViewStation - your data: how, when, where you want
 
Onyx - PrintLAT
Onyx - PrintLAT Onyx - PrintLAT
Onyx - PrintLAT
 
Flash for Mobile Devices
Flash for Mobile DevicesFlash for Mobile Devices
Flash for Mobile Devices
 
Rapidly Construct LOB Applications with UWP and Visual Studio 2017
Rapidly Construct LOB Applications with UWP and Visual Studio 2017Rapidly Construct LOB Applications with UWP and Visual Studio 2017
Rapidly Construct LOB Applications with UWP and Visual Studio 2017
 
How computer monitors work
How computer monitors workHow computer monitors work
How computer monitors work
 
Nvidia quadro sales guide
Nvidia quadro sales guideNvidia quadro sales guide
Nvidia quadro sales guide
 
Android Apps Training - Day Four (Design)
Android Apps Training - Day Four (Design)Android Apps Training - Day Four (Design)
Android Apps Training - Day Four (Design)
 
(2) gui drawing
(2) gui drawing(2) gui drawing
(2) gui drawing
 
Introduction to Software Defined Visualization (SDVis)
Introduction to Software Defined Visualization (SDVis)Introduction to Software Defined Visualization (SDVis)
Introduction to Software Defined Visualization (SDVis)
 
A Special Introduction to the Upcoming InduSoft Web Studio 8.0
A Special Introduction to the Upcoming InduSoft Web Studio 8.0A Special Introduction to the Upcoming InduSoft Web Studio 8.0
A Special Introduction to the Upcoming InduSoft Web Studio 8.0
 
Creating Flash Content for Multiple Screens
Creating Flash Content for Multiple ScreensCreating Flash Content for Multiple Screens
Creating Flash Content for Multiple Screens
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobile
 
2 Win7 For Devs Ux Touch Sensors
2 Win7 For Devs Ux Touch Sensors2 Win7 For Devs Ux Touch Sensors
2 Win7 For Devs Ux Touch Sensors
 
Kisters 3DViewStation - CAD viewer for PLM and stand alone
Kisters 3DViewStation - CAD viewer for PLM and stand aloneKisters 3DViewStation - CAD viewer for PLM and stand alone
Kisters 3DViewStation - CAD viewer for PLM and stand alone
 
Multi Screen Hell
Multi Screen HellMulti Screen Hell
Multi Screen Hell
 

More from Kirill Grouchnikov

More from Kirill Grouchnikov (8)

Responsive mobile design in practice
Responsive mobile design in practiceResponsive mobile design in practice
Responsive mobile design in practice
 
Responsive mobile design
Responsive mobile designResponsive mobile design
Responsive mobile design
 
Designing for the mobile form factor
Designing for the mobile form factorDesigning for the mobile form factor
Designing for the mobile form factor
 
Substance Java One 2007 Community Corner
Substance Java One 2007  Community  CornerSubstance Java One 2007  Community  Corner
Substance Java One 2007 Community Corner
 
Flamingo Ribbon component
Flamingo Ribbon componentFlamingo Ribbon component
Flamingo Ribbon component
 
Party of One
Party of OneParty of One
Party of One
 
Advanced Effects Oscon 2007
Advanced Effects   Oscon 2007Advanced Effects   Oscon 2007
Advanced Effects Oscon 2007
 
On The Shoulders Of Giants
On The Shoulders Of GiantsOn The Shoulders Of Giants
On The Shoulders Of Giants
 

Recently uploaded

Bridge to the Future: Migrating to KRaft
Bridge to the Future: Migrating to KRaftBridge to the Future: Migrating to KRaft
Bridge to the Future: Migrating to KRaftHostedbyConfluent
 
Case Study: Implementing a Data Mesh at NORD/LB
Case Study: Implementing a Data Mesh at NORD/LBCase Study: Implementing a Data Mesh at NORD/LB
Case Study: Implementing a Data Mesh at NORD/LBHostedbyConfluent
 
Data Contracts In Practice With Debezium and Apache Flink
Data Contracts In Practice With Debezium and Apache FlinkData Contracts In Practice With Debezium and Apache Flink
Data Contracts In Practice With Debezium and Apache FlinkHostedbyConfluent
 
Beyond Tiered Storage: Serverless Kafka with No Local Disks
Beyond Tiered Storage: Serverless Kafka with No Local DisksBeyond Tiered Storage: Serverless Kafka with No Local Disks
Beyond Tiered Storage: Serverless Kafka with No Local DisksHostedbyConfluent
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemSafe Software
 
Women in Automation 2024: Technical session - Get your career started in auto...
Women in Automation 2024: Technical session - Get your career started in auto...Women in Automation 2024: Technical session - Get your career started in auto...
Women in Automation 2024: Technical session - Get your career started in auto...DianaGray10
 
Fish Plays Pokemon | Kafka Summit London
Fish Plays Pokemon | Kafka Summit LondonFish Plays Pokemon | Kafka Summit London
Fish Plays Pokemon | Kafka Summit LondonHostedbyConfluent
 
Mastering Kafka Producer Configs: A Guide to Optimizing Performance
Mastering Kafka Producer Configs: A Guide to Optimizing PerformanceMastering Kafka Producer Configs: A Guide to Optimizing Performance
Mastering Kafka Producer Configs: A Guide to Optimizing PerformanceHostedbyConfluent
 
Bitdefender-CSG-Report-creat7534-interactive
Bitdefender-CSG-Report-creat7534-interactiveBitdefender-CSG-Report-creat7534-interactive
Bitdefender-CSG-Report-creat7534-interactivestartupro
 
Tecnogravura, Cylinder Engraving for Rotogravure
Tecnogravura, Cylinder Engraving for RotogravureTecnogravura, Cylinder Engraving for Rotogravure
Tecnogravura, Cylinder Engraving for RotogravureAntonio de Llamas
 
DS Lesson 2 - Subsets, Supersets and Power Set.pdf
DS Lesson 2 - Subsets, Supersets and Power Set.pdfDS Lesson 2 - Subsets, Supersets and Power Set.pdf
DS Lesson 2 - Subsets, Supersets and Power Set.pdfROWELL MARQUINA
 
Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...
Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...
Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...HostedbyConfluent
 
CERN IoT Kafka Pipelines | Kafka Summit London
CERN IoT Kafka Pipelines | Kafka Summit LondonCERN IoT Kafka Pipelines | Kafka Summit London
CERN IoT Kafka Pipelines | Kafka Summit LondonHostedbyConfluent
 
BODYPACK DIGITAL TECHNOLOGY STACK - 2024
BODYPACK DIGITAL TECHNOLOGY STACK - 2024BODYPACK DIGITAL TECHNOLOGY STACK - 2024
BODYPACK DIGITAL TECHNOLOGY STACK - 2024Andri H.
 
Exactly-once Stream Processing with Arroyo and Kafka
Exactly-once Stream Processing with Arroyo and KafkaExactly-once Stream Processing with Arroyo and Kafka
Exactly-once Stream Processing with Arroyo and KafkaHostedbyConfluent
 
Transcript: Book industry state of the nation 2024 - Tech Forum 2024
Transcript: Book industry state of the nation 2024 - Tech Forum 2024Transcript: Book industry state of the nation 2024 - Tech Forum 2024
Transcript: Book industry state of the nation 2024 - Tech Forum 2024BookNet Canada
 
Dynamical Context introduction word sensibility orientation
Dynamical Context introduction word sensibility orientationDynamical Context introduction word sensibility orientation
Dynamical Context introduction word sensibility orientationBuild Intuit
 
#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdf
#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdf#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdf
#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdfREFASHIOND
 
Brick-by-Brick: Exploring the Elements of Apache Kafka®
Brick-by-Brick: Exploring the Elements of Apache Kafka®Brick-by-Brick: Exploring the Elements of Apache Kafka®
Brick-by-Brick: Exploring the Elements of Apache Kafka®HostedbyConfluent
 
Transport in Open Pits______SM_MI10415MI
Transport in Open Pits______SM_MI10415MITransport in Open Pits______SM_MI10415MI
Transport in Open Pits______SM_MI10415MIRomil Mishra
 

Recently uploaded (20)

Bridge to the Future: Migrating to KRaft
Bridge to the Future: Migrating to KRaftBridge to the Future: Migrating to KRaft
Bridge to the Future: Migrating to KRaft
 
Case Study: Implementing a Data Mesh at NORD/LB
Case Study: Implementing a Data Mesh at NORD/LBCase Study: Implementing a Data Mesh at NORD/LB
Case Study: Implementing a Data Mesh at NORD/LB
 
Data Contracts In Practice With Debezium and Apache Flink
Data Contracts In Practice With Debezium and Apache FlinkData Contracts In Practice With Debezium and Apache Flink
Data Contracts In Practice With Debezium and Apache Flink
 
Beyond Tiered Storage: Serverless Kafka with No Local Disks
Beyond Tiered Storage: Serverless Kafka with No Local DisksBeyond Tiered Storage: Serverless Kafka with No Local Disks
Beyond Tiered Storage: Serverless Kafka with No Local Disks
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data Ecosystem
 
Women in Automation 2024: Technical session - Get your career started in auto...
Women in Automation 2024: Technical session - Get your career started in auto...Women in Automation 2024: Technical session - Get your career started in auto...
Women in Automation 2024: Technical session - Get your career started in auto...
 
Fish Plays Pokemon | Kafka Summit London
Fish Plays Pokemon | Kafka Summit LondonFish Plays Pokemon | Kafka Summit London
Fish Plays Pokemon | Kafka Summit London
 
Mastering Kafka Producer Configs: A Guide to Optimizing Performance
Mastering Kafka Producer Configs: A Guide to Optimizing PerformanceMastering Kafka Producer Configs: A Guide to Optimizing Performance
Mastering Kafka Producer Configs: A Guide to Optimizing Performance
 
Bitdefender-CSG-Report-creat7534-interactive
Bitdefender-CSG-Report-creat7534-interactiveBitdefender-CSG-Report-creat7534-interactive
Bitdefender-CSG-Report-creat7534-interactive
 
Tecnogravura, Cylinder Engraving for Rotogravure
Tecnogravura, Cylinder Engraving for RotogravureTecnogravura, Cylinder Engraving for Rotogravure
Tecnogravura, Cylinder Engraving for Rotogravure
 
DS Lesson 2 - Subsets, Supersets and Power Set.pdf
DS Lesson 2 - Subsets, Supersets and Power Set.pdfDS Lesson 2 - Subsets, Supersets and Power Set.pdf
DS Lesson 2 - Subsets, Supersets and Power Set.pdf
 
Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...
Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...
Leveraging Tiered Storage in Strimzi-Operated Kafka for Cost-Effective Stream...
 
CERN IoT Kafka Pipelines | Kafka Summit London
CERN IoT Kafka Pipelines | Kafka Summit LondonCERN IoT Kafka Pipelines | Kafka Summit London
CERN IoT Kafka Pipelines | Kafka Summit London
 
BODYPACK DIGITAL TECHNOLOGY STACK - 2024
BODYPACK DIGITAL TECHNOLOGY STACK - 2024BODYPACK DIGITAL TECHNOLOGY STACK - 2024
BODYPACK DIGITAL TECHNOLOGY STACK - 2024
 
Exactly-once Stream Processing with Arroyo and Kafka
Exactly-once Stream Processing with Arroyo and KafkaExactly-once Stream Processing with Arroyo and Kafka
Exactly-once Stream Processing with Arroyo and Kafka
 
Transcript: Book industry state of the nation 2024 - Tech Forum 2024
Transcript: Book industry state of the nation 2024 - Tech Forum 2024Transcript: Book industry state of the nation 2024 - Tech Forum 2024
Transcript: Book industry state of the nation 2024 - Tech Forum 2024
 
Dynamical Context introduction word sensibility orientation
Dynamical Context introduction word sensibility orientationDynamical Context introduction word sensibility orientation
Dynamical Context introduction word sensibility orientation
 
#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdf
#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdf#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdf
#SCIT 2024 LatAm Delegation Overview + SPONSORSHIP.pdf
 
Brick-by-Brick: Exploring the Elements of Apache Kafka®
Brick-by-Brick: Exploring the Elements of Apache Kafka®Brick-by-Brick: Exploring the Elements of Apache Kafka®
Brick-by-Brick: Exploring the Elements of Apache Kafka®
 
Transport in Open Pits______SM_MI10415MI
Transport in Open Pits______SM_MI10415MITransport in Open Pits______SM_MI10415MI
Transport in Open Pits______SM_MI10415MI
 

High DPI for desktop applications