SlideShare a Scribd company logo
1 of 24
PHP
(Personal Home Page)

Eng. Haitham Nabil

Projects Manager - Ministry of state for administrative development
Co-Founder – Open Egypt
Introduction
●

Static Pages

●
●

HTML
CSS
Java Script

●

●

<!DOCTYPE html>

●

<html>

●

<body>

●

<h1>My first PHP page</h1>

●

●

●

<?php
●

Dynamic Pages
●

PHP

echo "Hello World!";

●

?>

●

</body>

●

</html>
Basics
●

<?php
●

$color= "RED";

●

function myTest() {
–
–
–
–

$y=10;
echo "Variable color is: " . $color;
EcHo "<br>";
ECHO "Variable y is: $y";

●
●

myTest();

●

echo "Variable color is: $COLOR ";

●
●

}

echo "Variable y is: $y";

?>
Basics
●

<?php
●

for ($x=0; $x<=10; $x++) {
–

echo "The number is: $x <br>";

●

}

●

$x = 0;

●

while ($x <=10){
–

–
●
●

?>

}

If ($x % 2 == 0) {
● echo $x;
● $x++
}
Basics
●

<?php
●

$x = 0;

●

while ($x <=10){
–
–
–

●
●

?>

}

if ($x % 2 == 0) echo $x . “</br>”;
else echo “missed <br/>
$x++
Forms
●

<html>

●

<body>
●

<form action="welcome.php" method="post">
–
–

Name: <input type="text" name="name"><br>
E-mail: <input type="text" name="email"><br>

●

<input type="submit">

●

</form>

●

<a href=”welcome.php?name=hamada”>
Welcome Mido
</a>
–

●

●

</body>

●

</html>
Forms
●

welcome.php

●

<html>

●

<body>

●

●

Welcome <?php echo $_POST["name"]; ?><br>

●

Your email address is: <?php echo $_POST["email"]; ?>

●

●

</body>

●

</html>
Forms
●

welcome.php

●

<html>

●

<body>

●

●

Welcome <?php echo $_GET["name"]; ?><br>

●

Your email address is: <?php echo $_GET["email"]; ?>

●

●

</body>

●

</html>
Forms
●

welcome.php

●

<html>

●

<body>

●

●

Welcome <?php echo $_REQUEST["name"]; ?><br>

●

Your email address is: <?php echo $_REQUEST["email"]; ?>

●

●

</body>

●

</html>
Arrays
●

<?php
●

$colors=array("red","green","blue",255,0);

●

$arrlength=count($colors);

●

for($x=0;$x<$arrlength;$x++) {
–
–

●
●

?>

}

echo $colors[$x];
echo "<br>";
Arrays
●

<?php

●

$row=array(0=>”35”, "Peter"=>"35",1=>37, "Ben"=>"37","Joe"=>"43");

●

●

foreach($row as $x=>$x_value)

●

{

●

echo "Key=" . $x . ", Value=" . $x_value;

●

echo "<br>";

●

}

●

?>
MySQL Connectivity
●

<?php
●

$dbhandle = mysql_connect($hostname, $username, $password)
or die("Unable to connect to MySQL");
mysql_select_db("examples",$dbhandle);
–

●

●

$result = mysql_query("SELECT id, model,year FROM cars");

●

while ($row = mysql_fetch_array($result)) {
–

echo "ID:".$row{'id'}." Name:".$row{'model'}."Year: ".
$row{'year'}."<br>";

●

●

●

}
mysql_close($dbhandle);

?>
MySQL Connectivity - PDO
●

<?php
●

$dbh = new PDO("mysql:host=$hostname;dbname=examples",
$username, $password);

●

$stmt = $dbh->prepare("SELECT * FROM cars WHERE id = :id”);

●

$stmt->bindParam(':id', $_REQUEST['id'], PDO::PARAM_INT);

●

$result = $stmt->fetchAll();

●

foreach($result as $row) {
–

echo "ID:".$row{'id'}." Name:".$row{'model'}."Year: ".
$row{'year'}."<br>";

●

●

●

}
$dbh = null;

?>
Sessions and Cookies
●

<?php
●

●

session_start();

<?php
●

$_SESSION['views']=1;
●

●

?>

●

$expire=time()
+60*60*24*30;
setcookie("views", 1,
$expire);

●
●

●

●

●

●

●

?>

<html>

●

<html>

<body>

●

<body>

Pageviews

●

Pageviews

<?= $_SESSION['views'] ?>

●

<?= $_COOKIE['views'] ?>

</body>

●

</body>

</html>

●

</html>
Sessions and Cookies
●

<?php
●

session_start();

●

if(isset($_SESSION['views']))
unset($_SESSION['views']);
session_destroy();
–

●

●

?>

●

<?
●

●

?>

setcookie("views", "", time() - 1);
Example
Google App Engine (PHP)
●

SDK Installation

●

Engine APIs
●
●

Users API
Storage API

etc
Application Structure
●

●

●

Application Upload

●

MySQL Datastore
Google App Engine (PHP)
YAML
●

application: myapp

●

version: 1

●

runtime: php

●

api_version: 1

●

●

handlers:
●
●
●

- url: /.*
script: index.php
url: /admin/.*

●

script: admin.php

●

login: admin
Google App Engine (PHP)
upload your app
●

appcfg.py update myapp/

●
●

●

appcfg.py download_app -A <your_app_id> -V
<your_app_version> <output-dir>
MVC
Frameworks - CodeIgniter
Example
Road Map
●

Basics

●

Forms

●

Arrays

●

MySQL Connectivity

●

Sessions and Cookies

●

Google App Engine (PHP)
●

YAML

●

Upload your app

●

MVC

●

Frameworks - CodeIgniter
Thank You for your Attention
Slide share: http://www.slideshare.net/masterofpcs
Facebook: http://facebook.com/masterofpcs
E-mail: masterofpcs@yahoo.com

More Related Content

What's hot (20)

Amazing display of talent
Amazing display of talentAmazing display of talent
Amazing display of talent
 
TerminalでTwitter
TerminalでTwitterTerminalでTwitter
TerminalでTwitter
 
Borrados
BorradosBorrados
Borrados
 
Mootools selectors
Mootools selectorsMootools selectors
Mootools selectors
 
仕事で使ってるプラグイン
仕事で使ってるプラグイン仕事で使ってるプラグイン
仕事で使ってるプラグイン
 
Oh, you’re the NY times guy
Oh, you’re the NY times guyOh, you’re the NY times guy
Oh, you’re the NY times guy
 
Php (1)
Php (1)Php (1)
Php (1)
 
Codigos
CodigosCodigos
Codigos
 
Coding website
Coding websiteCoding website
Coding website
 
Pagination in PHP
Pagination in PHPPagination in PHP
Pagination in PHP
 
TICT #13
TICT #13TICT #13
TICT #13
 
TICT #11
TICT #11 TICT #11
TICT #11
 
Redis
RedisRedis
Redis
 
php Slideshare
php Slidesharephp Slideshare
php Slideshare
 
Perl调用微博API实现自动查询应答
Perl调用微博API实现自动查询应答Perl调用微博API实现自动查询应答
Perl调用微博API实现自动查询应答
 
Country State City Dropdown in PHP
Country State City Dropdown in PHPCountry State City Dropdown in PHP
Country State City Dropdown in PHP
 
Add edit delete in Codeigniter in PHP
Add edit delete in Codeigniter in PHPAdd edit delete in Codeigniter in PHP
Add edit delete in Codeigniter in PHP
 
hotel managment
hotel managmenthotel managment
hotel managment
 
4. Php MongoDB view_data
4. Php MongoDB view_data4. Php MongoDB view_data
4. Php MongoDB view_data
 
LAMP_TRAINING_SESSION_8
LAMP_TRAINING_SESSION_8LAMP_TRAINING_SESSION_8
LAMP_TRAINING_SESSION_8
 

Similar to Google Cloud Challenge - PHP - DevFest GDG-Cairo

Internationalizing CakePHP Applications
Internationalizing CakePHP ApplicationsInternationalizing CakePHP Applications
Internationalizing CakePHP ApplicationsPierre MARTIN
 
Using Geeklog as a Web Application Framework
Using Geeklog as a Web Application FrameworkUsing Geeklog as a Web Application Framework
Using Geeklog as a Web Application FrameworkDirk Haun
 
Building a good quality WordPress theme
Building a good quality WordPress themeBuilding a good quality WordPress theme
Building a good quality WordPress themeNisha Singh
 
Drupal Development (Part 2)
Drupal Development (Part 2)Drupal Development (Part 2)
Drupal Development (Part 2)Jeff Eaton
 
Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) ThemingPINGV
 
London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)Dennis Knochenwefel
 
OWASP TOP 10 for PHP Programmers
OWASP TOP 10 for PHP ProgrammersOWASP TOP 10 for PHP Programmers
OWASP TOP 10 for PHP Programmersrjsmelo
 
Web scraping 101 with goutte
Web scraping 101 with goutteWeb scraping 101 with goutte
Web scraping 101 with goutteJoshua Copeland
 
jQuery Features to Avoid
jQuery Features to AvoidjQuery Features to Avoid
jQuery Features to Avoiddmethvin
 
Iterators & generators: practical uses in memory management
Iterators & generators: practical uses in memory managementIterators & generators: practical uses in memory management
Iterators & generators: practical uses in memory managementAdrian Cardenas
 
Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)
Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)
Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)Michael Wales
 
07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboards07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboardsDenis Ristic
 

Similar to Google Cloud Challenge - PHP - DevFest GDG-Cairo (20)

PHP POWERPOINT SLIDES
PHP POWERPOINT SLIDESPHP POWERPOINT SLIDES
PHP POWERPOINT SLIDES
 
Internationalizing CakePHP Applications
Internationalizing CakePHP ApplicationsInternationalizing CakePHP Applications
Internationalizing CakePHP Applications
 
Using Geeklog as a Web Application Framework
Using Geeklog as a Web Application FrameworkUsing Geeklog as a Web Application Framework
Using Geeklog as a Web Application Framework
 
Building a good quality WordPress theme
Building a good quality WordPress themeBuilding a good quality WordPress theme
Building a good quality WordPress theme
 
Drupal Development (Part 2)
Drupal Development (Part 2)Drupal Development (Part 2)
Drupal Development (Part 2)
 
Php
PhpPhp
Php
 
Mojolicious
MojoliciousMojolicious
Mojolicious
 
Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) Theming
 
Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHP
 
London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)London XQuery Meetup: Querying the World (Web Scraping)
London XQuery Meetup: Querying the World (Web Scraping)
 
OWASP TOP 10 for PHP Programmers
OWASP TOP 10 for PHP ProgrammersOWASP TOP 10 for PHP Programmers
OWASP TOP 10 for PHP Programmers
 
Web scraping 101 with goutte
Web scraping 101 with goutteWeb scraping 101 with goutte
Web scraping 101 with goutte
 
jQuery Features to Avoid
jQuery Features to AvoidjQuery Features to Avoid
jQuery Features to Avoid
 
Hardcore PHP
Hardcore PHPHardcore PHP
Hardcore PHP
 
Drupal 8 migrate!
Drupal 8 migrate!Drupal 8 migrate!
Drupal 8 migrate!
 
Session3
Session3Session3
Session3
 
Iterators & generators: practical uses in memory management
Iterators & generators: practical uses in memory managementIterators & generators: practical uses in memory management
Iterators & generators: practical uses in memory management
 
PHP Tutorial (funtion)
PHP Tutorial (funtion)PHP Tutorial (funtion)
PHP Tutorial (funtion)
 
Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)
Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)
Introduction to CodeIgniter (RefreshAugusta, 20 May 2009)
 
07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboards07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboards
 

More from Haitham Nabil

Open data in Egyptian Elections
Open data in Egyptian ElectionsOpen data in Egyptian Elections
Open data in Egyptian ElectionsHaitham Nabil
 
Devfest 2015 - VR & Google cardboard
Devfest 2015 - VR & Google cardboardDevfest 2015 - VR & Google cardboard
Devfest 2015 - VR & Google cardboardHaitham Nabil
 
Effective people management ITI mansoura
Effective people management ITI mansouraEffective people management ITI mansoura
Effective people management ITI mansouraHaitham Nabil
 
FOSS presentation to Egyptian government
FOSS presentation to Egyptian government FOSS presentation to Egyptian government
FOSS presentation to Egyptian government Haitham Nabil
 
Egypt Towards Open Source @ ITI cloud weekend
Egypt Towards Open Source @ ITI cloud weekendEgypt Towards Open Source @ ITI cloud weekend
Egypt Towards Open Source @ ITI cloud weekendHaitham Nabil
 
FOSS Arabic Presentation
FOSS Arabic PresentationFOSS Arabic Presentation
FOSS Arabic PresentationHaitham Nabil
 

More from Haitham Nabil (7)

Open data in Egyptian Elections
Open data in Egyptian ElectionsOpen data in Egyptian Elections
Open data in Egyptian Elections
 
Devfest 2015 - VR & Google cardboard
Devfest 2015 - VR & Google cardboardDevfest 2015 - VR & Google cardboard
Devfest 2015 - VR & Google cardboard
 
Haitham_Nabil_2015
Haitham_Nabil_2015Haitham_Nabil_2015
Haitham_Nabil_2015
 
Effective people management ITI mansoura
Effective people management ITI mansouraEffective people management ITI mansoura
Effective people management ITI mansoura
 
FOSS presentation to Egyptian government
FOSS presentation to Egyptian government FOSS presentation to Egyptian government
FOSS presentation to Egyptian government
 
Egypt Towards Open Source @ ITI cloud weekend
Egypt Towards Open Source @ ITI cloud weekendEgypt Towards Open Source @ ITI cloud weekend
Egypt Towards Open Source @ ITI cloud weekend
 
FOSS Arabic Presentation
FOSS Arabic PresentationFOSS Arabic Presentation
FOSS Arabic Presentation
 

Recently uploaded

Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
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 educationjfdjdjcjdnsjd
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
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 FresherRemote DBA Services
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 

Recently uploaded (20)

Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
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
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 

Google Cloud Challenge - PHP - DevFest GDG-Cairo