SlideShare a Scribd company logo
FxOS Window
Mgmt (1.4+)
http://bit.ly/window-mgmt-slide

Last updated: 2014/01/08
Window Manager of FxOS
A god-like-object doing everything.
Deeply coupled with many other modules in
system app, for example LockScreen.
Bugs, bugs, bugs.
Window Manager v1.0.1 ~ v1.3

Thanks you guys!!
God's Window, Mpumalanga - South Africa
As an architect, I’d love to setup
different things into its position to
relief the pain of management.
Let the window manage itself!
AppWindow
● Basic class of all kind of windows
● Exactly it’s a wrapper to mozBrowser API.
● In order not be a fat class, we have
○ BrowserMixin to adapt mozBrowser API
○ Sub components: modalDialog, authDialog, chrome,
transitionController
● Managed by AppWindowManager only when interaction
with others are involved.
Architecture http://goo.gl/pSvh9F
Meta bug http://bugzil.la/window-management
Jsdoc http://alivedise.github.io/gaia-systemjsdoc/AppWindow.html
Core principles
1. Wrap any API once and use the wrapper everywhere we
need it.
2. Module/Object communications.
3. One object concentrates on doing one thing.
4. Managers care interaction between two instances only.
Instance itself is responsible to take care of everything that
is only related to itself.
5. Instances are managed by its directy parent.
Maintain AppWindow class
In order not to have a fat appWindow prototype,
current strategy is grouping methods/properties
by function in the same mixing object and
injected into AppWindow.prototype
FxOS Window
Mgmt
Event machenism
Events
● {PREFIX}created/{PREFIX}terminated
Managers are notified by this pair of events.
● {PREFIX}willrender/{PREFIX}rendered
LayoutManager may decide where to layout the frame
by changing app.containerElement on |appwillrender|
event.
● {PREFIX}opening/{PREFIX}opened
● {PREFIX}closing/{PREFIX}closed
● {PREFIX}resized
Event prefix
● Exactly means the type of the window.
● app/homescreen/activity/popup/browser/….
● Wrapper is a specific appWindow now, so
they are sharing same eventPrefix.
Internal events/External events
appWindow.publish(‘external’);
appWindow.broadcast(‘internal’);

var app = new AppWindow();
app.element.addEventListener(‘_internal’, callback1);
// semantic sugar: app.subscribe(‘internal’, callback);
window.addEventListener(‘appexternal’, callback2);
FxOS Window
Mgmt
Diagrams/Flowcharts
AppWindow Inheritance Diagram (outdated)
http://bit.ly/fxos-app-life-cycle
AppWindow LifeCycle (II)
Launch an app
● Active launch: mozApps API
● Inactive launch: System Message
FirefoxOS Window Management
AppWindow Switching Flow
Terminate an app
● window.close();
● crash
● killed by OOM killer
AppWindow Terminating Flow
FTU Launching Flow

FTU launching flow (I)
Homescreen LifeCycle Flowchart
Replace Homescreen Flow
Activity Management
● [Meta] Activity Management https://bugzilla.
mozilla.org/show_bug.cgi?id=931341
○ We couldn’t have two same pages opened right
now. Need to fix system message bug.
○ The timing of opening activities and kill activities.
○ The memory management of callee/caller.
Activity Management (cont.)
● An AppWindow instance is just playing the role as the
Manager of its own ActivityWindow child.
● ActivityWindow has a caller and maybe a callee and so
forth
● AppWindow maybe callee of another
AppWindow/Activity in case it’s a window disposition
activity
Create an Activity
var activity = new MozActivity({
name: "pick",
data: {
type: "image/jpeg"
}
});
activity.onsuccess = function() {
console.log("Activity successfuly handled");
var imgSrc = this.result.blob;
}
activity.onerror = function() {
console.log("The activity encouter en error: " + this.error);
}
Activity Launching Flow
Terminating Activity
●
●
●
●

window.close();
crash
killed by OOM killer
postResult/postError
Activity Terminating Flow
Window Mgmt.
Modules Overview
Orientation Management
OrientationManager
● Fetch default orientation
● Get current orientation
● When orientation changes, gecko resizes
the system app and system would get resize
event.
FirefoxOS Window Management
Orientation States
● Orientation changes whenever
○ App itself calls screen.mozLockOrientation or
screen.mozUnlockOrientation
○ App has ‘orientation’ property in its manifest
■ Changed to app orientation when opening
transition ends.
■ Changed to homescreen orientation when
closing transition begins.
Layout Management
LayoutManager
● Fetch width and height
● When events which would affect the size of
the app window occurs, LayoutManager fires
‘system-resize’ event.
FirefoxOS Window Management
Resizing States
Resizing occurs whenever
● External events -- apply to top active app
window only.
● App opening transition ends “AND” it has
been resized before.
Visibility Management
VisibilityManager
● Gathering all external events affect the top
most app window’s page visibility.
● App window itself has to manage its own
visibility while transition occurs.
Visibility States
Page visibility changes whenever
● App opening transition starts. (Turn into true)
● App closing transition ends. (Turn into false)
● External overlay events -- Only apply to the
active Window.
Event driven design
AppWindow has two kinds of events
● External event by appWindow.publish
○ Custom event dispatched on global object.
○ Any external event EVENTNAME would trigger
internal event _EVENTNAME at first.

● Internal event by appWindow.broadcast
○ Custom event dispatched on app window element
without event bubbling stage.
External events
● For any manager-like module who care the
groups of instances.
AppWindow.publish(INTERNAL_EVENT_NAME);
window.addEventListener(INTERNAL_EVENT_NAME,
callback);
Internal events
● For the module who only care one target.
● Subcomponents usually needs this only.
appWindow.broadcast(INTERNAL_EVENT_NAME);
appWindow.element.addEventListener
(_INTERNAL_EVENT_NAME, callback);
Your own window manager
● Listen to appcreated/appterminated and
maintain a list of instances you are
intereseted in.
● Know the transition state change by
appopened/appclosed events.
● Know the visibility state change by
appforeground/appbackground events
Your own window manager
document.querySelector(‘appWindow.active’);
// For who needs to know who is the active window.
// NOTE: TrustedUI/PopupWindow is not active now. You
cannot find them by this way.
// NOTE: When activity occurs, AppWindow and
ActivityWindow both are active.
Managers of window instances
●
●
●
●
●

AppWindowManager
ActivityWindowManager
AttentionWindowManager
ShrinkingUIManager
StackManager
AppWindowManager
● Process open/close request from
appWindow instances.
● Redirect resize/visibility request from
LayoutManager/VisibilityManager to active
appWindow instance.
AppWindowFactory
● Process app launch request from gecko.
● Process app terminate request from gecko.
HomescreenLauncher
● Responsible to create HomescreenWindow
instance and make sure it’s a singleton.
● Virtualize homescreen getter for replacable
homescrees
HomescreenLauncher.getHomescreen()
● Redirect requests to homescreen app.
HomescreenWindow
Different from appWindow
● Singleton (controlled by
HomescreenLauncher)
● External event name prefix
● Life cycle management
○ Restart on terminating at foreground
○ Restart upon |homescreenopening| event.
FTULauncher
● Responsible for fetching FTU info and
launching FTU
● Read/write internal flag that FTU has been
correctly runned or not.
○ ftudone
○ ftuskip
ActivityWindowFactory/Manager
● Decide inline activity caller/callee
relationship when creating activityWindow
intances. (Should be
ActivityWindowFactory.)
● Maintain a list of all opened activityWindow
instances for inline activities.
● Redirect resize/visibilitychange requests to
ActivityWindow
Different from AppWindow
● Resize/Orientation management
○ Copy size/orientation from caller when no
fullscreen/orientation propery in its manifest.

● Life cycle management
○ When killed: kill callee until the end of the chain.
○ reopen caller if killed at foreground by caller.
requestOpen() and AppWindowManager would
PopupWindow/Manager
TODO in https://bugzil.la/popup-window
AttentionWindow/Manager
TODO in https://bugzil.la/attention-window
TrustedWindow/Manager
TODO in https://bugzil.la/trusted-window
Window Mgmt.
Sub Components of AppWindow
Dialog

Layeryng(Before)

Home
App

App

Activity

Activity

Attention
Popup

Attention
Layering(After)
sheet

Home
App

App
+Dialog
Activity
Popup
Attention
AppWindow Sub components
var app = new AppWindow();
app.ModalDialog = new BrowserModalDialog(app);
app.AuthDialog = new BrowserAuthDialog(app);
app.ChromeUI = new BrowserChrome(app, config);
BrowserChrome (a.k.a appChrome)
● ProcessingBar
● NavigationUI
BrowserModalDialog
● Gaia implementation of window.
alert/window.confirm/window.prompt by pure
HTML.
WindowTransitionController
● One of the AppWindow’s sub-component.
● The one who really processes appWindow’s
open/close transitions.
● Publish opened/closed/opening/closing
event on appWindow according to the state
change of internal transition state machine.
● TODO: move generic transitionstatechange
Window Mgmt.
Progress / Plans
FirefoxOS Window Management
What’s had been done
1. Screenshoting management (by appWindow itself
instead of WindowManager)
2. Orientation management
3. Visibility management
4. HomescreenWindow + HomescreenLauncher
5. ActivityWindow + ActivityWindowFactory
6. AppWindowManager
What’s next? What’s left?
1. CardView - Reflection of app stacks
2. Swipe Gesture Improvement
3. BrowserWindow / PopupWindow / AttentionWindow
4. Enhance AppChrome for Haida
5. Release us from origin/manifestURL messy
6. …. see meta bugs.
Origin hell
● [Gaia] Most of the origin reference in gaia could be resolved once
all UI components are moved inside AppWindow.
● [Gecko] Plenty of mozChromeEvents are telling us who is the
target by the manifestURL and/or origin, and this is wrong.
○ How about an inline activity is asking geolocation permission?
● Entry point is still a pain -- if we cannot get out of it we end up living
with pageURL/manifestURL dirty mapping.
Play with app transitions
● Due to the incoming UX change I think what we have to
do is define how we customize the transitions.
● Transition/Animation are applied to whole appWindow
instances
● Transition/Animationa are defined in css with a single
class.
● The tasks we need to do before/after transitions are
fixed. At least I hope so.
Play with app transitions (cont.)
var app = new AppWindow(‘uitestapp’);
app.open(); app.close():
app.open(‘zoom-out’); app.close(‘zoom-in’);
app.open(‘swipe-in’); app.close(‘swipe-out’);

// WindowTransitionController do whatever for you so you
only need to write down the css rule.
Play with app transitions (cont.)
// TODO: If we want to do a transition but it’s neither open nor close
var app = new AppWindow();
app.animate(‘somewhere’); // Animating
app.finish(); // Stopping animation and restore.
// We don’t need to publish appopening/appclosing event in this case,
// but we may have appanimating/appanimated event if necessary.
// So maybe we still need some submodule to do that for us.
LockScreenWindow
● Isolate LockScreen
● Managed under AppWindowManager
○ Visibility
○ Orientation
○ Layout
SecureWindow
● Use case: Camera app on Lockscreen
● Launch an appWindow with config.oop =
false by default.
KeyboardWindow
● KeyboardManager delt with everything now.
● Stop Growing!
● KeyboardWindow is responsible to
○ Handle mozBrowser events like OOM
○ Transition state control
Window Mgmt v.next
1. Move LockScreen into iframe and/or let it controlled by LockScreenWindow
2. Move KeyboardManager into appWindow and become
AppKeyboardController.
3. Enhance LayoutManager and thus we would have multiple windows. (for TV
request).
4. Move more mozChromeEvent into mozBrowser events to manager things
better.
5. Remove all ‘origin’ reference.
6. Implement ScreenSaverWindow (for Tablet request).
Ad

More Related Content

Similar to FirefoxOS Window Management (20)

Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development
Mahmoud Hamed Mahmoud
 
Multi screenlab
Multi screenlabMulti screenlab
Multi screenlab
Ran Nachmany
 
Event handling63
Event handling63Event handling63
Event handling63
myrajendra
 
Droidcon 2011: Working with the Android source, Ronan Schwarz, Openintents
Droidcon 2011: Working with the Android source, Ronan Schwarz, OpenintentsDroidcon 2011: Working with the Android source, Ronan Schwarz, Openintents
Droidcon 2011: Working with the Android source, Ronan Schwarz, Openintents
Droidcon Berlin
 
Google I/O 2019 - what's new in Android Q and Jetpack
Google I/O 2019 - what's new in Android Q and JetpackGoogle I/O 2019 - what's new in Android Q and Jetpack
Google I/O 2019 - what's new in Android Q and Jetpack
Sunita Singh
 
Introduction to Android Fragment and its Lifecycle.docx
Introduction to Android Fragment and its Lifecycle.docxIntroduction to Android Fragment and its Lifecycle.docx
Introduction to Android Fragment and its Lifecycle.docx
muhammadanwar639757
 
Javascript Browser Events.pdf
Javascript Browser Events.pdfJavascript Browser Events.pdf
Javascript Browser Events.pdf
ShubhamChaurasia88
 
Android by Swecha
Android by SwechaAndroid by Swecha
Android by Swecha
Swecha | స్వేచ్ఛ
 
Introducing jQuery
Introducing jQueryIntroducing jQuery
Introducing jQuery
Grzegorz Ziolkowski
 
Android N multi window
Android N multi windowAndroid N multi window
Android N multi window
Yu-Wei Chuang
 
The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180
Mahmoud Samir Fayed
 
Android Mobile application development - Event Handling (1).pptx
Android Mobile application development - Event Handling (1).pptxAndroid Mobile application development - Event Handling (1).pptx
Android Mobile application development - Event Handling (1).pptx
swethabollam11
 
Android design patterns
Android design patternsAndroid design patterns
Android design patterns
Platty Soft
 
Threads handlers and async task, widgets - day8
Threads   handlers and async task, widgets - day8Threads   handlers and async task, widgets - day8
Threads handlers and async task, widgets - day8
Utkarsh Mankad
 
MVP vs MVVM : a fast introduction
MVP vs MVVM : a fast introductionMVP vs MVVM : a fast introduction
MVP vs MVVM : a fast introduction
Matteo Pierro
 
The Ring programming language version 1.5.4 book - Part 71 of 185
The Ring programming language version 1.5.4 book - Part 71 of 185The Ring programming language version 1.5.4 book - Part 71 of 185
The Ring programming language version 1.5.4 book - Part 71 of 185
Mahmoud Samir Fayed
 
Android Training - Pull to Refresh
Android Training - Pull to RefreshAndroid Training - Pull to Refresh
Android Training - Pull to Refresh
Kan-Han (John) Lu
 
Independent components in Nette Framework
Independent components in Nette FrameworkIndependent components in Nette Framework
Independent components in Nette Framework
Adam Štipák
 
28-GUI application.pptx.pdf
28-GUI application.pptx.pdf28-GUI application.pptx.pdf
28-GUI application.pptx.pdf
NguynThiThanhTho
 
Installable web applications
Installable web applicationsInstallable web applications
Installable web applications
LiveChat
 
Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development
Mahmoud Hamed Mahmoud
 
Event handling63
Event handling63Event handling63
Event handling63
myrajendra
 
Droidcon 2011: Working with the Android source, Ronan Schwarz, Openintents
Droidcon 2011: Working with the Android source, Ronan Schwarz, OpenintentsDroidcon 2011: Working with the Android source, Ronan Schwarz, Openintents
Droidcon 2011: Working with the Android source, Ronan Schwarz, Openintents
Droidcon Berlin
 
Google I/O 2019 - what's new in Android Q and Jetpack
Google I/O 2019 - what's new in Android Q and JetpackGoogle I/O 2019 - what's new in Android Q and Jetpack
Google I/O 2019 - what's new in Android Q and Jetpack
Sunita Singh
 
Introduction to Android Fragment and its Lifecycle.docx
Introduction to Android Fragment and its Lifecycle.docxIntroduction to Android Fragment and its Lifecycle.docx
Introduction to Android Fragment and its Lifecycle.docx
muhammadanwar639757
 
Android N multi window
Android N multi windowAndroid N multi window
Android N multi window
Yu-Wei Chuang
 
The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180
Mahmoud Samir Fayed
 
Android Mobile application development - Event Handling (1).pptx
Android Mobile application development - Event Handling (1).pptxAndroid Mobile application development - Event Handling (1).pptx
Android Mobile application development - Event Handling (1).pptx
swethabollam11
 
Android design patterns
Android design patternsAndroid design patterns
Android design patterns
Platty Soft
 
Threads handlers and async task, widgets - day8
Threads   handlers and async task, widgets - day8Threads   handlers and async task, widgets - day8
Threads handlers and async task, widgets - day8
Utkarsh Mankad
 
MVP vs MVVM : a fast introduction
MVP vs MVVM : a fast introductionMVP vs MVVM : a fast introduction
MVP vs MVVM : a fast introduction
Matteo Pierro
 
The Ring programming language version 1.5.4 book - Part 71 of 185
The Ring programming language version 1.5.4 book - Part 71 of 185The Ring programming language version 1.5.4 book - Part 71 of 185
The Ring programming language version 1.5.4 book - Part 71 of 185
Mahmoud Samir Fayed
 
Android Training - Pull to Refresh
Android Training - Pull to RefreshAndroid Training - Pull to Refresh
Android Training - Pull to Refresh
Kan-Han (John) Lu
 
Independent components in Nette Framework
Independent components in Nette FrameworkIndependent components in Nette Framework
Independent components in Nette Framework
Adam Štipák
 
28-GUI application.pptx.pdf
28-GUI application.pptx.pdf28-GUI application.pptx.pdf
28-GUI application.pptx.pdf
NguynThiThanhTho
 
Installable web applications
Installable web applicationsInstallable web applications
Installable web applications
LiveChat
 

Recently uploaded (20)

tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
TrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business ConsultingTrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business Consulting
Trs Labs
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
TrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business ConsultingTrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business Consulting
Trs Labs
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Ad

FirefoxOS Window Management