SlideShare a Scribd company logo
1 of 13
Download to read offline
Developer	Oriented
Presentation	Engine
Introduction
Pasi	Niemi(	©2013	Nitor	Creations	)

version:	1.0
Contents
Getting	started
Creating	slides
Slide	notes
Embedding	media
Inline	source	code
Outputs
Presenting
Thank	you
Getting	started	(1/2)
Maven	drives	the	presentation	build
You	can	create	a	maven	project	skeleton	with	the	dope-archetype:
				mvn	archetype:generate	-DarchetypeArtifactId=dope-archetype	
						-DarchetypeGroupId=com.nitorcreations	-DgroupId=foo.bar	
						-DdeveloperName="Pasi	Niemi"	-DorganizationName="Nitor	Creations"	
						-DinceptionYear=2013	-Dname="Baz	Bar	Awesomeness"	
						-Dtheme=light	-DartifactId=baz-prez	-DinteractiveMode=false
Parameters	explained	here:	https://github.com/NitorCreations/dope-archetype
Getting	started	(2/2)
Add	your	slides	in	src/main/resources/markdown
JavaFX	needs	to	be	on	your	JDK	classpath
You	may	need	to	run
mvn	com.zenjava:javafx-maven-plugin:2.0:fix-classpath
One	time	only	operation	per	JDK
Java	8	has	this	sorted
The	project	contains	all	of	the	runtime	java	code
You	can	change	all	runtime	behaviour	like:
controllers
http	server
animations
Creating	slides	(1/2)
Slides	shown	in	alphabetical	order
Except	the	title	slide	is	always	first
Name	your	slide	files	to	get	correct	order	e.g.:
01_agenda.md
10_introduction.md
12_introduction_cont.md
Creating	slides	(2/2)
Slides	are	markdown	interpreted	with	pegdown
Some	extensions	are	enabled:
AUTOLINKS
URLs	will	be	turned	into	a	link	to	that	URL
TABLES
simple	multimarkdown-style	tables
FENCED	CODE	BLOCKS code	blocks	will	be	syntax	highlighted	with	pygments
Slide	notes
Slide	notes	are	markdown	files	named	{slidename}.md.notes
They	appear	in	the	http	interface	for	running	the	presentation
Need	to	have	{slidename}.md	for	the	notes	to	be	added	next	to	the	slide
Slides	are	served	as	iframes,	but	notes	are	just	embedded	in	the	index	html
Embedding	media
You	can	embed	images	with	a	simple	markdown	element
![My	face](pasi_niemi_2013.jpg)
Or	embed	html	if	you	need	more	control	with	e.g.	classes	and	ids	for	css
For	videos	you	need	to	embed	html
				<video	width="auto"	controls>
						<source	src="oracle_event_final.mp4"	type="video/mp4"/>
						<img	width="auto"	src="oracle_event_final.jpeg"/>
				</video>
Video	handling
The	build	system	finds	video	elements	at	compile	time
Records	the	location	and	size	of	the	placeholder	image
At	runtime	during	presentation	initialization	the	engine	extracts	the	video	into	a
temporary	file
As	you	traverse	past	the	slide	with	the	video,	the	presentation	zooms	in	on	the
placeholder	and	starts	an	external	player
videoplayer	{video}
on	my	Raspberry	Pi	this	is	/usr/bin/videoplayer
#!/bin/bash
exec	/usr/bin/omxplayer	"$@"
Inline	source	code
pygments	supports	lots	of	languages	-	here	are	some	samples
Python
print	highlight(code,	PythonLexer(),	HtmlFormatter())
Haskell
let	(a:b:c:[])	=	"xyz"	in	a
D
import	std.stdio;
void	main()	{
				ulong	lines	=	0;
and	lots	more	at	http://pygments.org/languages/
Outputs
Maven	build	outputs	the	presentation	in	several	formats
HTML	is	used	as	the	source	for	png	and	pdf	rendering
PNG	images	of	each	slide	in	FullHD	and	small	sizes
PDF	for	easy	sharing	(naturally	without	videos)
JavaFX	jar	that	can	be	run	on	any	computer	with	JavaFX	installed
HTML,	PNG	and	PDF	formats	are	downloadable	from	the	http	interface
HTML	and	PNG	as	Zip	files	with	relevant	files	inside	(including	videos)
PDF	as	a	single	file
Presenting
You	can	run	the	presentation	with	any	java	that	has	JavaFX	installed:
java	-Dhttpport=9999	-Dhttprunpasswords=.passwords	-Dnocache=true	
	-jar	my-presentation-1.0-SNAPSHOT-jfx.jar
The	presentation	can	then	be	controlled	with	a	keyboard,	a	wiimote	or	a	browser
Advanced	usage	explained	here:	https://github.com/NitorCreations/javaone-shanghai2013-javafx-presentation
Video	detailing	presentation	use	here:	http://www.youtube.com/watch?v=1sdZpecv9a8
Thank	You!
Hope	you	have	fun	with	it
If	you	do	come	up	with	extensions	you	are	willing	to	release,	please	let	me
know
This	presentation	source	available	here:
https://github.com/NitorCreations/dope-intro

Pasi	Niemi	pasi.niemi@nitorcreations.com

More Related Content

What's hot

Alpes Jug (29th March, 2010) - Apache Maven
Alpes Jug (29th March, 2010) - Apache MavenAlpes Jug (29th March, 2010) - Apache Maven
Alpes Jug (29th March, 2010) - Apache MavenArnaud Héritier
 
Geneva Jug (30th March, 2010) - Maven
Geneva Jug (30th March, 2010) - MavenGeneva Jug (30th March, 2010) - Maven
Geneva Jug (30th March, 2010) - MavenArnaud Héritier
 
Lausanne Jug (08th April, 2010) - Maven
Lausanne Jug (08th April, 2010) - MavenLausanne Jug (08th April, 2010) - Maven
Lausanne Jug (08th April, 2010) - MavenArnaud Héritier
 
A Story about AngularJS modularization development
A Story about AngularJS modularization developmentA Story about AngularJS modularization development
A Story about AngularJS modularization developmentJohannes Weber
 
Enterprise Maven Repository BOF
Enterprise Maven Repository BOFEnterprise Maven Repository BOF
Enterprise Maven Repository BOFMax Andersen
 
A Gentle Introduction to Angular Schematics - Angular SF 2019
A Gentle Introduction to Angular Schematics - Angular SF 2019A Gentle Introduction to Angular Schematics - Angular SF 2019
A Gentle Introduction to Angular Schematics - Angular SF 2019Matt Raible
 
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019Matt Raible
 
Modern Web Application Development Workflow - web2day 2014
Modern Web Application Development Workflow - web2day 2014Modern Web Application Development Workflow - web2day 2014
Modern Web Application Development Workflow - web2day 2014Stéphane Bégaudeau
 

What's hot (8)

Alpes Jug (29th March, 2010) - Apache Maven
Alpes Jug (29th March, 2010) - Apache MavenAlpes Jug (29th March, 2010) - Apache Maven
Alpes Jug (29th March, 2010) - Apache Maven
 
Geneva Jug (30th March, 2010) - Maven
Geneva Jug (30th March, 2010) - MavenGeneva Jug (30th March, 2010) - Maven
Geneva Jug (30th March, 2010) - Maven
 
Lausanne Jug (08th April, 2010) - Maven
Lausanne Jug (08th April, 2010) - MavenLausanne Jug (08th April, 2010) - Maven
Lausanne Jug (08th April, 2010) - Maven
 
A Story about AngularJS modularization development
A Story about AngularJS modularization developmentA Story about AngularJS modularization development
A Story about AngularJS modularization development
 
Enterprise Maven Repository BOF
Enterprise Maven Repository BOFEnterprise Maven Repository BOF
Enterprise Maven Repository BOF
 
A Gentle Introduction to Angular Schematics - Angular SF 2019
A Gentle Introduction to Angular Schematics - Angular SF 2019A Gentle Introduction to Angular Schematics - Angular SF 2019
A Gentle Introduction to Angular Schematics - Angular SF 2019
 
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019
 
Modern Web Application Development Workflow - web2day 2014
Modern Web Application Development Workflow - web2day 2014Modern Web Application Development Workflow - web2day 2014
Modern Web Application Development Workflow - web2day 2014
 

Viewers also liked

Investigacion de analisis
Investigacion de analisisInvestigacion de analisis
Investigacion de analisisYaretzy Cota
 
Patrick Fraser - Bachelor Degree Certification
Patrick Fraser - Bachelor Degree CertificationPatrick Fraser - Bachelor Degree Certification
Patrick Fraser - Bachelor Degree CertificationPatrick Fraser
 
Nota de Prensa N° 002-2017-GREM
Nota de Prensa N° 002-2017-GREMNota de Prensa N° 002-2017-GREM
Nota de Prensa N° 002-2017-GREMGREM Moquegua
 
Control estadistico de la calidad
Control estadistico de la calidadControl estadistico de la calidad
Control estadistico de la calidadYaretzy Cota
 
Cvjfm january 2015 vpdf
Cvjfm january 2015 vpdfCvjfm january 2015 vpdf
Cvjfm january 2015 vpdfHarDik Shah
 
Wk7 assgn1mgarrett.doc
Wk7 assgn1mgarrett.docWk7 assgn1mgarrett.doc
Wk7 assgn1mgarrett.docm16garrett
 
Control estadistico de la calidad
Control estadistico de la calidadControl estadistico de la calidad
Control estadistico de la calidadYaretzy Cota
 
Cierres temporales 2014
Cierres temporales 2014Cierres temporales 2014
Cierres temporales 2014oscargaliza
 
Ateliers Découverte Plateforme RH - 2016
Ateliers Découverte Plateforme RH - 2016Ateliers Découverte Plateforme RH - 2016
Ateliers Découverte Plateforme RH - 2016mariejura
 
Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...
Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...
Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...Rafael Eduardo Jerez Quiñones
 
2º básico a semana 29 febrero al 04 de marzo
2º básico a semana 29  febrero al 04 de marzo2º básico a semana 29  febrero al 04 de marzo
2º básico a semana 29 febrero al 04 de marzoColegio Camilo Henríquez
 
Nota de Prensa N° 007-2017-GREM
Nota de Prensa N° 007-2017-GREMNota de Prensa N° 007-2017-GREM
Nota de Prensa N° 007-2017-GREMGREM Moquegua
 
DETALLES METODO MINADO SUBTERRANEO SHIRINKAGE
DETALLES METODO MINADO SUBTERRANEO SHIRINKAGEDETALLES METODO MINADO SUBTERRANEO SHIRINKAGE
DETALLES METODO MINADO SUBTERRANEO SHIRINKAGEMauro Calero
 

Viewers also liked (20)

Investigacion de analisis
Investigacion de analisisInvestigacion de analisis
Investigacion de analisis
 
Patrick Fraser - Bachelor Degree Certification
Patrick Fraser - Bachelor Degree CertificationPatrick Fraser - Bachelor Degree Certification
Patrick Fraser - Bachelor Degree Certification
 
Nota de Prensa N° 002-2017-GREM
Nota de Prensa N° 002-2017-GREMNota de Prensa N° 002-2017-GREM
Nota de Prensa N° 002-2017-GREM
 
Control estadistico de la calidad
Control estadistico de la calidadControl estadistico de la calidad
Control estadistico de la calidad
 
Cvjfm january 2015 vpdf
Cvjfm january 2015 vpdfCvjfm january 2015 vpdf
Cvjfm january 2015 vpdf
 
Wk7 assgn1mgarrett.doc
Wk7 assgn1mgarrett.docWk7 assgn1mgarrett.doc
Wk7 assgn1mgarrett.doc
 
6º básico a semana 06 al 10 de junio
6º básico a semana 06  al 10 de junio6º básico a semana 06  al 10 de junio
6º básico a semana 06 al 10 de junio
 
2° basico b semana del 06 al 10 de junio
2° basico b  semana del  06 al 10 de junio2° basico b  semana del  06 al 10 de junio
2° basico b semana del 06 al 10 de junio
 
Control estadistico de la calidad
Control estadistico de la calidadControl estadistico de la calidad
Control estadistico de la calidad
 
Cierres temporales 2014
Cierres temporales 2014Cierres temporales 2014
Cierres temporales 2014
 
Ateliers Découverte Plateforme RH - 2016
Ateliers Découverte Plateforme RH - 2016Ateliers Découverte Plateforme RH - 2016
Ateliers Découverte Plateforme RH - 2016
 
1° básico b semana 23 al 27 de mayo
1° básico b  semana 23 al 27 de mayo1° básico b  semana 23 al 27 de mayo
1° básico b semana 23 al 27 de mayo
 
Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...
Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...
Las nuevas habilidades y competencias requeridas por los ciudadanos del siglo...
 
2º básico a semana 29 febrero al 04 de marzo
2º básico a semana 29  febrero al 04 de marzo2º básico a semana 29  febrero al 04 de marzo
2º básico a semana 29 febrero al 04 de marzo
 
IDC_601
IDC_601IDC_601
IDC_601
 
Nota de Prensa N° 007-2017-GREM
Nota de Prensa N° 007-2017-GREMNota de Prensa N° 007-2017-GREM
Nota de Prensa N° 007-2017-GREM
 
SE4ALL 11 The energy efficiency transition
SE4ALL 11 The energy efficiency transitionSE4ALL 11 The energy efficiency transition
SE4ALL 11 The energy efficiency transition
 
OECD Parliamentary days 2016 - Finance and Inclusive Growth (Part 2)
OECD Parliamentary days 2016 - Finance and Inclusive Growth (Part 2)OECD Parliamentary days 2016 - Finance and Inclusive Growth (Part 2)
OECD Parliamentary days 2016 - Finance and Inclusive Growth (Part 2)
 
OECD Parliamentary Days 2016 - Financing Democracy
OECD Parliamentary Days 2016 - Financing DemocracyOECD Parliamentary Days 2016 - Financing Democracy
OECD Parliamentary Days 2016 - Financing Democracy
 
DETALLES METODO MINADO SUBTERRANEO SHIRINKAGE
DETALLES METODO MINADO SUBTERRANEO SHIRINKAGEDETALLES METODO MINADO SUBTERRANEO SHIRINKAGE
DETALLES METODO MINADO SUBTERRANEO SHIRINKAGE
 

Similar to Developer Oriented Presentation Engine Introduction

symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)Fabien Potencier
 
Maven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable ResultsMaven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable ResultsSteve Keener
 
Drupal Front End Development
Drupal Front End DevelopmentDrupal Front End Development
Drupal Front End Developmentinsready
 
Vagrant or docker for java dev environment
Vagrant or docker for java dev environmentVagrant or docker for java dev environment
Vagrant or docker for java dev environmentOrest Ivasiv
 
Features everywhere
Features everywhere Features everywhere
Features everywhere Mediacurrent
 
Firebase Basics - Dialog Demo for Group Tech Staff
Firebase Basics - Dialog Demo for Group Tech StaffFirebase Basics - Dialog Demo for Group Tech Staff
Firebase Basics - Dialog Demo for Group Tech StaffTharaka Devinda
 
Spring Native and Spring AOT
Spring Native and Spring AOTSpring Native and Spring AOT
Spring Native and Spring AOTVMware Tanzu
 
Django app deployment in Azure By Saurabh Agarwal
Django app deployment in Azure By Saurabh AgarwalDjango app deployment in Azure By Saurabh Agarwal
Django app deployment in Azure By Saurabh Agarwalratneshsinghparihar
 
JSUG - Maven by Michael Greifeneder
JSUG - Maven by Michael GreifenederJSUG - Maven by Michael Greifeneder
JSUG - Maven by Michael GreifenederChristoph Pickl
 
Developing Java Web Applications
Developing Java Web ApplicationsDeveloping Java Web Applications
Developing Java Web Applicationshchen1
 
SF Gradle Meetup - Netflix OSS
SF Gradle Meetup - Netflix OSSSF Gradle Meetup - Netflix OSS
SF Gradle Meetup - Netflix OSSJustin Ryan
 
Rich Media Advertising with SVG and JavaScript
Rich Media Advertising with SVG and JavaScriptRich Media Advertising with SVG and JavaScript
Rich Media Advertising with SVG and JavaScriptGjokica Zafirovski
 
Turbocharged Java with Quarkus | JakartaOne Livestream
 Turbocharged Java with Quarkus | JakartaOne Livestream Turbocharged Java with Quarkus | JakartaOne Livestream
Turbocharged Java with Quarkus | JakartaOne LivestreamJakarta_EE
 
DevNet Associate : Python introduction
DevNet Associate : Python introductionDevNet Associate : Python introduction
DevNet Associate : Python introductionJoel W. King
 
NetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-BeasNetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-BeasChander445
 
Rock-solid Magento Development and Deployment Workflows
Rock-solid Magento Development and Deployment WorkflowsRock-solid Magento Development and Deployment Workflows
Rock-solid Magento Development and Deployment WorkflowsAOE
 

Similar to Developer Oriented Presentation Engine Introduction (20)

Maven
MavenMaven
Maven
 
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
 
Maven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable ResultsMaven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable Results
 
Drupal Front End Development
Drupal Front End DevelopmentDrupal Front End Development
Drupal Front End Development
 
Vagrant or docker for java dev environment
Vagrant or docker for java dev environmentVagrant or docker for java dev environment
Vagrant or docker for java dev environment
 
Features everywhere
Features everywhere Features everywhere
Features everywhere
 
Firebase Basics - Dialog Demo for Group Tech Staff
Firebase Basics - Dialog Demo for Group Tech StaffFirebase Basics - Dialog Demo for Group Tech Staff
Firebase Basics - Dialog Demo for Group Tech Staff
 
Spring Native and Spring AOT
Spring Native and Spring AOTSpring Native and Spring AOT
Spring Native and Spring AOT
 
Django app deployment in Azure By Saurabh Agarwal
Django app deployment in Azure By Saurabh AgarwalDjango app deployment in Azure By Saurabh Agarwal
Django app deployment in Azure By Saurabh Agarwal
 
Java tutorial
Java tutorialJava tutorial
Java tutorial
 
JSUG - Maven by Michael Greifeneder
JSUG - Maven by Michael GreifenederJSUG - Maven by Michael Greifeneder
JSUG - Maven by Michael Greifeneder
 
Developing Java Web Applications
Developing Java Web ApplicationsDeveloping Java Web Applications
Developing Java Web Applications
 
SF Gradle Meetup - Netflix OSS
SF Gradle Meetup - Netflix OSSSF Gradle Meetup - Netflix OSS
SF Gradle Meetup - Netflix OSS
 
Rich Media Advertising with SVG and JavaScript
Rich Media Advertising with SVG and JavaScriptRich Media Advertising with SVG and JavaScript
Rich Media Advertising with SVG and JavaScript
 
Turbocharged Java with Quarkus | JakartaOne Livestream
 Turbocharged Java with Quarkus | JakartaOne Livestream Turbocharged Java with Quarkus | JakartaOne Livestream
Turbocharged Java with Quarkus | JakartaOne Livestream
 
Maven
MavenMaven
Maven
 
DevNet Associate : Python introduction
DevNet Associate : Python introductionDevNet Associate : Python introduction
DevNet Associate : Python introduction
 
1. react - native: setup
1. react - native: setup1. react - native: setup
1. react - native: setup
 
NetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-BeasNetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-Beas
 
Rock-solid Magento Development and Deployment Workflows
Rock-solid Magento Development and Deployment WorkflowsRock-solid Magento Development and Deployment Workflows
Rock-solid Magento Development and Deployment Workflows
 

Recently uploaded

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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
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...Miguel Araújo
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
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 textsMaria Levchenko
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
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 Takeoffsammart93
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
[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.pdfhans926745
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 

Recently uploaded (20)

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...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
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...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
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
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
[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
 
+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...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 

Developer Oriented Presentation Engine Introduction