SlideShare une entreprise Scribd logo
1  sur  128
Télécharger pour lire hors ligne
PHP 8.1
What’s new and changed
Ayesh Karunaratne | https://aye.sh/talk/php81-drupalconeur-2021
#DrupalConEur
PHP 8.1
What’s new and changed
Ayesh Karunaratne | https://aye.sh/talk/php81-drupalconeur-2021
#DrupalConEur
@Ayeshlive | @phpwch
https://aye.sh | https://php.watch
Ayesh Karunaratne
Freelance Software Developer, Security Researcher, Full-time
traveler
ayesh@aye.sh
Kandy, Sri Lanka - Everywhere
PHP 8.1
New and changed
New and changed
PHP 8.1
PHP 8.1
PHP 8.0 General Availability
2020 Nov 26
2021 Nov 25
14 Jun 2021 PHP 8.1 - First alpha
20 Jul 2021 Feature-freeze / First beta
2021 Oct 04 DrupalCon Europe
02 Sep 2021 First Release Candidate
New Features
Enums
Fibers
Readonly Properties
Changed Functionality
Deprecations
Backwards Compatibility
PHP 8.1: New and Changed
Type System Improvements
Misc.
Testing out today
Enums
Fibers
Readonly
Properties
PHP 8.1: New and Changed
Type
System
Improvements
Misc.
New Features Changed Functionality Deprecations
Backwards
Compatibility
Testing out today
PHP 8.1
New Features
New Features
Enums
core/modules/comment/src/Plugin/Field/FieldType/CommentItemInterface.php
New Features: Enums
core/modules/comment/src/Plugin/Field/FieldType/CommentItemInterface.php
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
core/modules/comment/src/Plugin/views/filter/NodeComment.php
New Features: Enums
core/modules/comment/src/Plugin/views/filter/NodeComment.php
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
New Features: Enums
• Enums can have zero or more members
New Features: Enums
• Enums can have zero or more members
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
is_object(Suit::Hearts);
// true
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
var_dump(Suit::Hearts);
// enum(Suit::Hearts)
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
• May contain non-duplicated constants
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
• May contain non-duplicated constants
• May contain static methods
Suit::cheer();
// Yay!
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
• May contain non-duplicated constants
• May contain static methods
• May contain non-staticmethods
Suit::Clubs->show();
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
• May contain non-duplicated constants
• May contain static methods
• May contain non-static methods
• $this refers to the Enumerated element
Suit::Clubs->show();
enum(AppPlayingCardsSuit::Clubs)
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
• May contain non-duplicated constants
• May contain static methods
• May contain non-static methods
• $this refers to the Enumerated element
• ->nameproperty is the name of the member
Suit::Clubs->show();
enum(AppPlayingCardsSuit::Clubs)
string(5) "Clubs"
string(5) "Clubs"
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
• May contain non-duplicated constants
• May contain static methods
• May contain non-static methods
• $this refers to the Enumerated element
• ->nameproperty is the name of the member
• ->value property is the backed value
Suit::Clubs->show();
enum(AppPlayingCardsSuit::Clubs)
string(5) "Clubs"
string(5) "Clubs"
string(6) "♣️"
string(6) "♣️"
New Features: Enums
• Enums can have zero or more members
• Enum members are objects
• Enums can be namespaced and autoloaded
• May contain string|int backed values
• May contain non-duplicated constants
• May contain static methods
• May contain non-static methods
• $this refers to the Enumerated element
• ->nameproperty is the name of the member
• ->value property is the backed value
Suit::Clubs->show();
enum(AppPlayingCardsSuit::Clubs)
string(5) "Clubs"
string(5) "Clubs"
string(6) "♣️"
string(6) "♣️"
New Features: Enums
Class Semantics
• Supports namespaces
• Supports traits
• Supports autoloading
• Supports magic constants
• Supports instanceof
• Supports methods
New Features: Enums
Enum Semantics
• Must not contain state
New Features: Enums
Enum Semantics
• Must not contain state
• Enum members are identical
to same member
New Features: Enums
New Features: Enums
New Features: Enums
$connection->insert('mytable')
->fields([
'entity_id' => $entity->getId(),
'comment' => $commentState->value,
])
->execute();
New Features: Enums
$connection->insert('mytable')
->fields([
'entity_id' => $entity->getId(),
'comment' => $commentState->value,
])
->execute();
New Features: Enums
$database->query("
SELECT entity_id
FROM {my_table}
WHERE status = :status",
[':status' => CommentStatus::OPEN->value]
);
New Features: Enums
$database->query("
SELECT entity_id
FROM {my_table}
WHERE status = :status",
[':status' => CommentStatus::OPEN->value]
);
New Features: Enums
$database->query("
SELECT entity_id
FROM {my_table}
WHERE status = :status",
[':status' => CommentStatus::OPEN->value]
);
New Features: Enums
$database->query("
SELECT entity_id
FROM {my_table}
WHERE status = :status",
[':status' => CommentStatus::OPEN->value]
);
New Features: Enums
$state = $formState->getValue('comment_state');
$state = CommentStatus::from($state);
$node->setCommentState($state);
New Features: Enums
$state = $formState->getValue('comment_state');
$state = CommentStatus::from($state);
$node->setCommentState($state);
New Features: Enums
$state = $formState->getValue('comment_state');
$state = CommentStatus::from($state);
$node->setCommentState($state);
New Features: Enums
enum(CommentStatus::Open)
New Features
Fibers
New Features: Fibers
Lightweight and controlled concurrency to PHP
A Fiber is a code block that maintains its own stack (variables and state), that can be
started, suspended, or terminated cooperatively by the main code and the Fiber.
Fibers
New Features: Fibers
Normal Execution Flow
Start End
New Features: Fibers
Concurrent Execution Flow
Start End
New Features: Fibers
Concurrent Execution Flow
Start End
New Features: Fibers
Concurrent Execution Flow
Start End
New Features: Fibers
Concurrent Execution Flow
Start End
$fiber = new Fiber();
$fiber->start();
Fiber::suspend()
$fiber->resume()
Fiber::suspend()
$fiber->resume()
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
Fiber started
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
Fiber started
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
Fiber started
Fiber returned
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
Fiber started
Fiber returned
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
Fiber started
Fiber returned
Fiber resumed
New Features: Fibers
echo "Main started";
$fiber = new Fiber(function(): void {
echo "Fiber started";
Fiber::suspend();
echo "Fiber resumed";
});
$fiber->start();
echo "Fiber returned";
$fiber->resume();
echo "Fiber Ended";
Main started
Fiber started
Fiber returned
Fiber resumed
Fiber Ended
New Features: Fibers
final class Fiber {
public function __construct(callable $callback) {}
public function start(mixed ...$args): mixed {}
public static function suspend(mixed $value = null): mixed {}
public function resume(mixed $value = null): mixed {}
public static function getCurrent(): ?self {}
public function getReturn(): mixed {}
public function throw(Throwable $exception): mixed {}
public function isStarted(): bool {}
public function isSuspended(): bool {}
public function isRunning(): bool {}
public function isTerminated(): bool {}
}
https://php.watch/versions/8.1/fibers
New Features
Readonly Properties
New Features: Readonly Properties
Properties with the readonly flag can only be initialized
from object scope, and cannot be overwritten.
Readonly Properties
New Features: Readonly Properties
New Features: Readonly Properties
New Features: Readonly Properties
New Features: Readonly Properties
New Features
Type System Improvements
New Features: Type System Improvements
Intersection Types
New Features: Type System Improvements
Intersection Types
New Features: Type System Improvements
Intersection Types
New Features: Type System Improvements
Intersection Types
New Features: Type System Improvements
Intersection Types
New Features: Type System Improvements
Intersection Types
New Features: Type System Improvements
type
New Features: Type System Improvements
type
New Features: Type System Improvements
type
New Features
Other New Features
New Features: Other New Features
• Final class constants
• New and functions
• New function
• Sodium functions
• First-class callable syntax
• Explicit Octal numeral notation
• xxHash and MurmurHash3 hashing algorithms
• Directory-upload support with
Changed Functionality
Changed Functionality
Tentative Return Types
Changed Functionality
Tentative Return Types
Changed Functionality
Tentative Return Types
Changed Functionality
Tentative Return Types
Changed Functionality
Tentative Return Types
Changed Functionality
Tentative Return Types
Changed Functionality
Variable Restrictions
Changed Functionality
Variable Restrictions
Changed Functionality
Resource to Object Migrations
Extension resource (PHP < 8.1) object (PHP >= 8.1)
GD gd font (integer) GdFont
FTP ftp FTPConnection
IMAP imap IMAPConnection
finfo file_info finfo
PSpell pspell (int) PSpellDictionary
PSpell pspell config (int) PSpellConfig
LDAP ldap link LDAPConnection
LDAP ldap result LDAPResult
LDAP ldap result entry LDAPResultEntry
PgSQL pgsql link PgSqlConnection
PgSQL pgsql result PgSqlResult
PgSQL pgsql large object PgSqlLob
Deprecations
Deprecations
• Passing to non-nullable internal function parameters is deprecated
• Return types in PHP built-in class methods and deprecation notices
• Automatic conversion of "false" into an empty array on write operands is deprecated.
• Serializable interface deprecated
• Implicit incompatible float to int conversion is deprecated
• Calling a static method or accessing a static property directly on a trait is deprecated
• mysqli::get_client_info method and mysqli_get_client_info($param) is deprecated
• date_sunrise, date_sunset functions and related INI settings are deprecated
• strftime() and gmstrftime() functions are deprecated
• mhash*() functions (hash extension) are deprecated
• filter.default and filter.default_options INI settings are deprecated
• PDO::FETCH_SERIALIZE is deprecated
• auto_detect_line_endings INI directive is deprecated
• MySQLi: mysqli_driver->driver_version property is deprecated
Backwards Compatibility
Backwards Compatibility
Drupal 10
Drupal 9.3
Drupal 8.9 – Until Nov 2021
Drupal 7 – Until Nov 2022
Backwards Compatibility
Trying Out PHP 8.1
Trying Out PHP 8.1
Try it online with 3v4l.org
Trying out Enums today
Nightly Docker Images
docker pull phpdaily/php:8.1-dev
Trying out Enums today
Compiled Windows Binaries
https://windows.php.net/qa/ https://www.apachehaus.com/cgi-
bin/download.plx
Trying out Enums today
Self-compile PHP from source
$ git clone git@github.com:php/php-src.git
$ ./buildconf
$ ./configure
$ make -j$(nproc)
$ ./sapi/cli/php -a
https://php.watch/articles/compile-php-ubuntu
https://php.watch/articles/compile-php-fedora-rhel-centos
Further Resources
• https://aye.sh/talk/php81-drupalconeur-2021
• https://php.watch/versions/8.1/enums
• https://php.watch/versions/8.1/fibers
• https://php.watch/versions/8.1/readonly
• https://php.watch/versions/8.1
• https://github.com/phpdaily/php
• https://3v4l.org/
• https://php.watch/articles/compile-php-ubuntu
• https://php.watch/articles/compile-php-fedora-rhel-centos
Questions?
No question is too small.
#DrupalConEur @Ayeshlive ayesh@php.watch
https://aye.sh/talk/php81-drupalconeur-2021
Thank You
Dank u
dankie
faleminderit
‫لك‬ ‫شكرا‬
Շնորհակալություն
hvala
благодаря
gràcies
M
̀ h’gōi
děkuji
tak
tänan
kiitos
Благодаря ти
danke
ευχαριστώ
mahalo
.
‫תודה‬
dhanyavād
köszönöm
takk
terima kasih
grazie
arigatô
cảm ơn bạn
paldies
choukrane
ačiū
Благодарам
grazzi
谢谢
Баярлалаа
dziękuję
obrigado
mulţumesc
спасибо
xвала
Ďakujem
gracias
tack
நன்றி
kop khun
teşekkür ederim
Дякую
diolch
a dank ngiyabonga
ස්තුතියි

Contenu connexe

Tendances

Introducing Modern Perl
Introducing Modern PerlIntroducing Modern Perl
Introducing Modern Perl
Dave Cross
 

Tendances (20)

PHP
PHPPHP
PHP
 
php basics
php basicsphp basics
php basics
 
PHP Cookies and Sessions
PHP Cookies and SessionsPHP Cookies and Sessions
PHP Cookies and Sessions
 
Gerrit multi-master / multi-site at GerritHub
Gerrit multi-master / multi-site at GerritHubGerrit multi-master / multi-site at GerritHub
Gerrit multi-master / multi-site at GerritHub
 
RESTful API 설계
RESTful API 설계RESTful API 설계
RESTful API 설계
 
Php by shivitomer
Php by shivitomerPhp by shivitomer
Php by shivitomer
 
Form Handling using PHP
Form Handling using PHPForm Handling using PHP
Form Handling using PHP
 
Avoiding callback hell in Node js using promises
Avoiding callback hell in Node js using promisesAvoiding callback hell in Node js using promises
Avoiding callback hell in Node js using promises
 
Introducing Modern Perl
Introducing Modern PerlIntroducing Modern Perl
Introducing Modern Perl
 
Arrays in php
Arrays in phpArrays in php
Arrays in php
 
PHP and MySQL
PHP and MySQLPHP and MySQL
PHP and MySQL
 
Class 3 - PHP Functions
Class 3 - PHP FunctionsClass 3 - PHP Functions
Class 3 - PHP Functions
 
Php operators
Php operatorsPhp operators
Php operators
 
Codeigniter framework
Codeigniter framework Codeigniter framework
Codeigniter framework
 
Configure h base hadoop and hbase client
Configure h base hadoop and hbase clientConfigure h base hadoop and hbase client
Configure h base hadoop and hbase client
 
How to Create a l10n Payroll Structure
How to Create a l10n Payroll StructureHow to Create a l10n Payroll Structure
How to Create a l10n Payroll Structure
 
PHP Presentation
PHP PresentationPHP Presentation
PHP Presentation
 
Operators php
Operators phpOperators php
Operators php
 
Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHP
 
1. Arrow Functions | JavaScript | ES6
1. Arrow Functions | JavaScript | ES61. Arrow Functions | JavaScript | ES6
1. Arrow Functions | JavaScript | ES6
 

Similaire à PHP 8.1 - What's new and changed

Php introduction with history of php
Php introduction with history of phpPhp introduction with history of php
Php introduction with history of php
pooja bhandari
 

Similaire à PHP 8.1 - What's new and changed (20)

Can you upgrade to Puppet 4.x?
Can you upgrade to Puppet 4.x?Can you upgrade to Puppet 4.x?
Can you upgrade to Puppet 4.x?
 
05php
05php05php
05php
 
Puppet Camp Paris 2015: Power of Puppet 4 (Beginner)
Puppet Camp Paris 2015: Power of Puppet 4 (Beginner) Puppet Camp Paris 2015: Power of Puppet 4 (Beginner)
Puppet Camp Paris 2015: Power of Puppet 4 (Beginner)
 
05php
05php05php
05php
 
php fundamental
php fundamentalphp fundamental
php fundamental
 
Php introduction with history of php
Php introduction with history of phpPhp introduction with history of php
Php introduction with history of php
 
php
phpphp
php
 
CPANTS: Kwalitative website and its tools
CPANTS: Kwalitative website and its toolsCPANTS: Kwalitative website and its tools
CPANTS: Kwalitative website and its tools
 
Php classes in mumbai
Php classes in mumbaiPhp classes in mumbai
Php classes in mumbai
 
Initializing arrays
Initializing arraysInitializing arrays
Initializing arrays
 
Learning Puppet basic thing
Learning Puppet basic thing Learning Puppet basic thing
Learning Puppet basic thing
 
PuppetConf 2016: Enjoying the Journey from Puppet 3.x to 4.x – Rob Nelson, AT&T
PuppetConf 2016: Enjoying the Journey from Puppet 3.x to 4.x – Rob Nelson, AT&T PuppetConf 2016: Enjoying the Journey from Puppet 3.x to 4.x – Rob Nelson, AT&T
PuppetConf 2016: Enjoying the Journey from Puppet 3.x to 4.x – Rob Nelson, AT&T
 
Rails 4.0
Rails 4.0Rails 4.0
Rails 4.0
 
PHP - Introduction to PHP
PHP -  Introduction to PHPPHP -  Introduction to PHP
PHP - Introduction to PHP
 
05php
05php05php
05php
 
Writing a REST Interconnection Library in Swift
Writing a REST Interconnection Library in SwiftWriting a REST Interconnection Library in Swift
Writing a REST Interconnection Library in Swift
 
Intro to Perl and Bioperl
Intro to Perl and BioperlIntro to Perl and Bioperl
Intro to Perl and Bioperl
 
Php Intermediate
Php IntermediatePhp Intermediate
Php Intermediate
 
Synapseindia reviews on array php
Synapseindia reviews on array phpSynapseindia reviews on array php
Synapseindia reviews on array php
 
Enjoying the Journey from Puppet 3.x to Puppet 4.x (PuppetConf 2016)
Enjoying the Journey from Puppet 3.x to Puppet 4.x (PuppetConf 2016)Enjoying the Journey from Puppet 3.x to Puppet 4.x (PuppetConf 2016)
Enjoying the Journey from Puppet 3.x to Puppet 4.x (PuppetConf 2016)
 

Plus de Ayesh Karunaratne

PHP7+: The Whys and the Hows
PHP7+: The Whys and the HowsPHP7+: The Whys and the Hows
PHP7+: The Whys and the Hows
Ayesh Karunaratne
 

Plus de Ayesh Karunaratne (7)

PHP Enums - PHPCon Japan 2021
PHP Enums - PHPCon Japan 2021PHP Enums - PHPCon Japan 2021
PHP Enums - PHPCon Japan 2021
 
PHP 8.1: Enums
PHP 8.1: EnumsPHP 8.1: Enums
PHP 8.1: Enums
 
Php Enums
Php EnumsPhp Enums
Php Enums
 
PHP 8: What's New and Changed
PHP 8: What's New and ChangedPHP 8: What's New and Changed
PHP 8: What's New and Changed
 
OWASP Top 10 - DrupalCon Amsterdam 2019
OWASP Top 10 - DrupalCon Amsterdam 2019OWASP Top 10 - DrupalCon Amsterdam 2019
OWASP Top 10 - DrupalCon Amsterdam 2019
 
PHP7+: The Whys and the Hows
PHP7+: The Whys and the HowsPHP7+: The Whys and the Hows
PHP7+: The Whys and the Hows
 
No! Drupal Europe 2018
No! Drupal Europe 2018No! Drupal Europe 2018
No! Drupal Europe 2018
 

Dernier

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
Earley Information Science
 

Dernier (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
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...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
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
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
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
 
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...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
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...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 

PHP 8.1 - What's new and changed