SlideShare uma empresa Scribd logo
1 de 35
Baixar para ler offline
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Full	Stack	Java	Microservices	with	
Mesos/Marathon	and	Docker	
How	to	take	an	app	server	and	blow	it	up	into	a	lots	of	pieces…and	s5ll	be	
able	to	call	it	a	“win”.	
Edward	Burns	@edburns	
ConsulKng	Member	of	Technical	Staff	
April	2017
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Safe	Harbor	Statement	
The	following	is	intended	to	outline	our	general	product	direcKon.	It	is	intended	for	
informaKon	purposes	only,	and	may	not	be	incorporated	into	any	contract.	It	is	not	a	
commitment	to	deliver	any	material,	code,	or	funcKonality,	and	should	not	be	relied	upon	
in	making	purchasing	decisions.	The	development,	release,	and	Kming	of	any	features	or	
funcKonality	described	for	Oracle’s	products	remains	at	the	sole	discreKon	of	Oracle.
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Speaker	QualificaKons	–	Ed	Burns	
•  25	Years	SoXware	Development	Experience	
– NCSA	Mosaic	è	Marathon	and	much	in	between	
– Spec	Lead	for	Java	EE	Servlet	and	JSF	
•  Informal	spare	Kme	trainer	
•  Author	of	four	IT-related	books	for	McGraw-Hill
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Speaker	QualificaKons	–	Ed	Burns	
•  The	PerspecKve	I	offer	
– On	the	front	lines	of	the	disrupKon	caused	by	the	shiX	to	cloud	naKve	development	
– I	work	on	things	that	have	historically	enabled	“The	Monolith”	
•  Java	EE:	JSF,	Servlet	
•  App	Servers:	GlassFish	and	WebLogic	
– I	understand	the	need	to	adapt	to	changing	developer	requirements	
•  I	also	understand	the	perils	of	chasing	the	shiny	new	thing	
•  Blog	hdp://ridingthecrest.com/blog/
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	New	Stack	
•  Economic	forces	are	driving	the	move	to	the	cloud	
– More	efficiency	
•  The	commodiKzaKon	of	runKmes	is	nearly	complete	
– CPU/Storage/Network:	all	virtual,	all	billable	per-use	
– Several	choices	of	vendors	
•  Much	of	the	funcKon	of	an	IT	department	can	be	codified	into	a	Service	Level	Agreement	and	
purchased	from	a	cloud	vendor	
– “SoXware	defined	data	center”
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	New	Stack	
•  Economic	forces	are	driving	the	move	to	the	cloud	
– Beder	environment	for	conKnuous	improvement	
•  At	runKme:	horizontal	scalability	
•  At	innovaKon	Kme:	conKnuous	delivery	in	pracKce
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Architecture	QuesKons
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Source	
hdp://www.artofadventure.net/two-paths-
and-the-road-not-taken/	
	
Two	Paths	for	Cloud	NaKve	Enterprises
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Two	Paths	for	Cloud	NaKve	Enterprises	
•  Structured	Plagorms	
– You	buy	into	their	parKcular	concept	layout	and	soluKon	assignment	for	each	of	the	boxes	
•  Unstructured	Plagorms	
– You	make	up	your	own	boxes	and	decide	how	to	fill	them	out,	usually	with	off-the-shelf	open	
source	offerings	
– You	have	to	decide	how	to	provision/host/run/maintain	it
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Two	Paths	for	Cloud	NaKve	Enterprises	
•  You’re	sKll	going	to	need	a	lot	of	support	technology	in	either	approach	
•  Build	System	
•  CI/CD	Pipeline	
– TesKng	
•  ArKfact	management	
•  Version	Control	
– Source	code	
– Binary	code
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	ExisKng	Java	EE	Stack	is	SKll	Useful	
•  One	of	the	only	two	games	in	town	before	cloud	disrupKon,	the	other	being	.NET	
•  Structured	when	Structured	wasn’t	cool	
•  What	is	a	monolithic	app?		That	usually	means	“app	server”.	
–  You	get	a	lot	of	benefits	with	the	app	server	
•  Simplified	deployment	model:	some	collecKon	of	WAR/EAR	files	
•  Easy	ORM:	JPA	database	connecKon	
•  Easy	redundancy:	clustering	support	
•  Easy	load	balancing	
•  Easy	TransacKonality:	JTA	
•  Statefulness	
•  Reliability	
•  Debugability	and	logging
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	ExisKng	Java	EE	Stack	is	SKll	Useful	
•  But	there	are	also	problems	
– Ops	departments	may	not	support	WAR/EAR	deployment	model	and	prefer	GNU/
Linux	naKve	packages	such	as	RPMs	
– Best	pracKce	for	app	servers	seems	to	have	converged	on	the	“one	app	per	app	
server”	model.		This	is	a	lot	of	wasted	resources.	
– Tend	to	be	vulnerable	to	environment	specific	problems:	not	repeatable.	
– Not	as	easy	to	do	massive	horizontal	scaling
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	ExisKng	Java	EE	Stack	is	SKll	Useful	
• The	good	stuff	from	Java	EE	
– Easy	programming	model	
• Java	is	sKll	predy	great	
• Stable,	Kme	proven	technologies	
• Rich	tooling	
• Root	cause	analysis	is	well	understood	and	manageable	
• Leverage	eventual	consistency	where	beneficial
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
New	Stack	Risks	
• It	is	new	
– Best	pracKces	sKll	emerging	
– Hard	to	stay	up	to	date	with	them	as	they	emerge	
– Lots	of	soluKons	are	offered	as	side	effects	that	started	out	as	enabling	other	
businesses	
• LyX	Confidant	
• Neglix	Hystrix	
• AWS	itself	
• Google	cloud	
• …	your	needs	are	not	their	needs	
– Open	Source	as	employee	retenKon	
• Employees	benefit	by	building	their	reputaKon
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
New	Stack	Risks	
• It’s	a	much	more	“roll	your	own”	approach	
– RBAC	
– Security	and	AuthorizaKon	
• Everyone	has	to	be	more	of	a	sysadmin	
• No	more	single	neck	to	strangle	
• Subject	to	the	“flavor	of	the	day”	syndrome	
• With	containers	you	need	to	know	exactly	what	is	in	your	containers	
– What	versions	of	all	the	components?
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
New	Stack	Rewards	
•  ContainerizaKon	
– Package	dependencies	
•  Resiliency	
– Beder	upKme	
– Beder	response	Kme	
•  Enable	things	such	as	eventual	consistency	and	CQRS	
•  Beder	embrace	iteraKon	lifestyle
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
How	to	Get	Ready	
•  You	have	to	be	more	of	a	generalist	
•  There	is	no	more	“throwing	it	over	the	wall”,	everyone	has	to	think	like	a	
sysadmin	
•  Study	up	on	Linux	Sysadmin	skills	
– Systemd	iniKalizaKon	tool	
– Package	management	and	proxy	navigaKon	
– Networking,	including	the	OSI	protocol	stack	
– Get	some	familiarity	with	Ansible	
•  Study	up	on	build	systems	
•  Study	up	on	arKfact	management	systems	
•  Study	up	on	JVM	tuning	arguments
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
No	Catchy	Name	
•  Lots	of	stacks	have	catchy	names	
– LAMP	
– SMACK	
– MEAN	
– MERN	
– hdps://en.wikipedia.org/wiki/SoluKon_stack	
•  I	don’t	have	a	catchy	name	for	this	stack	
– Plagorm	as	a	Service	on	bare	metal
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Conceptual	Layout	
Foundation Layer
Support Layer
Business Layer
Your	code	goes	here	
But	with	DevOps,	you	must	
understand	here…	
…	and	here
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Quick	Tour	of	the	Stack:	
FoundaKon	Layer	
•  OperaKng	System	
– networking	
•  Node	management	
•  ContainerizaKon	
•  Scheduling	of	high	level	processes	
•  Load	balancing	
•  Binary	arKfact	management	
•  GNU/Linux	
– SDN	
•  Apache	Mesos	
•  Docker	
•  Marathon	
•  NGINX	
•  ArKfactory	
Conceptual	Layout	
One	Possible	Concrete	
Implementa5on	Layout
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Quick	Tour	of	the	Stack:	Support	Layer	
•  Logging	
•  Telemetry	
•  Lightweight	Persistence	
•  Heavyweight	Persistence	
•  IdenKty	and	Secret	Management	
•  ELK	
•  Prometheus	
•  Etcd	
•  NoSQL	DB	(MongoDB)	
•  Hashicorp	Vault	
Conceptual	Layout	
One	Possible	Implementa5on	
Layout
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Quick	Tour	of	the	Stack:	Business	Layer	
•  ContainerizaKon	technology	
•  Interchange	technology	
•  Programming	Language	
•  Docker	
•  REST	(JAX-RS/Jersey)	
•  Java	8	
Conceptual	Layout	
One	Possible	Implementa5on	
Layout
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Aside:	Which	Container	Technology?	
•  Docker	vs	Rkt	(pronounced	rock-it)	
– hdps://coreos.com/blog/rkt-accepted-into-the-cncf.html	
– hdp://containerops.org/2014/12/19/docker-vs-rocket-gimme-a-break/	
– hdps://medium.com/@adriaandejonge/moving-from-docker-to-
rkt-310dc9aec938#.szvh6atkt	
– Rkt	can	run	Docker	images	
•  Converts	container	to	appc	format	
•  CoreOS	(maker	of	rkt)	and	Docker	
– Open	Container	IniKaKve	hdps://www.opencontainers.org/	
•  Image	SpecificaKon		
•  RunKme	SpecificaKon
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Installing	and	Running	the	Stack	
•  The	challenge	is	to	have	the	developer	environment	be	as	similar	as	
possible	to	the	producKon	environment.	
– How	much	resides	on	the	local	developer	machine?	
– How	to	integrate	with	ConKnuous	IntegraKon	and	ConKnuous	Delivery?
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	Moving	Parts	of	the	Stack:	FoundaKon	Layer	
•  Apache	Mesos	hdp://mesos.apache.org/	
– Allows	abstracKng	a	computer	as		
•  CPU/Memory/IO/Storage	
– Allows	starKng	and	stopping	containers:	containerizer	
•  Support	for	Docker,	rkt	and	appc	containers	
– Runs	as	a	“mesos	cluster”	
•  Three	kinds	of	nodes	
– Master	(at	least	one)	
– Slave	(at	least	one)	
– Zookeeper	(cluster)	(at	least	one,	but	it	can	run	as	a	cluster)
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	Moving	Parts	of	the	Stack:	FoundaKon	Layer	
•  Marathon	hdps://mesosphere.github.io/marathon/	
•  Is	a	Mesos	“Framework”	
– Handles	scale	up/scale	down	
– Provides	a	deployment	descriptor	concept	
– Introduces	the	concept	of	an	“ApplicaKon”	
– Storage	accounKng	
– Health	checks	
– Metrics	
– Constraints	(mapping	applicaKons	to	racks/nodes,	etc)
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	Moving	Parts	of	the	Stack:	FoundaKon	Layer	
•  Marathon	hdps://mesosphere.github.io/marathon/	
•  Has	a	REST	API	for	gezng	its	work	done	
– hdps://mesosphere.github.io/marathon/docs/rest-api.html	
– There	is	a	not	maintained	Java	API	to	this	rest	client	
hdps://github.com/mohitsoni/marathon-client	
•  Can	build	your	own	orchestrator	on	top	of	it
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	Moving	Parts	of	the	Stack:	FoundaKon	Layer	
•  Demo:	Show	foundaKon	layer	running	using	docker	maven	plugin	
Thanks	Manfred	Riem	<hdp://www.manorrock.com/blog/>	
–  ReplicaKon	of	some	part	of	producKon	env	
–  It	is	also	runnable	under	CI	
–  Review	pom.xml	
•  address	uid/gid	permissions	issues	
•  address	docker	network	issues	
–  Review	deployment	json	
–  Need	to	access	logs	in	a	special	way	
•  Can’t	simply	docker	logs	–f	<hash>	
•  docker	exec	into	mesos	slave	
•  cd	/var/tmp/mesos/slaves/*/frameworks/*/executors/mycontainer8g*/runs/latest	and	tail	-f	stderr|stdout
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	Moving	Parts	of	the	Stack:	Support	Layer	
•  A	wide	collecKon	of	off-the-shelf	support	services,	running	on	top	of	the	
foundaKon	layer	
•  Look	at	Three	Specific	Examples	
– NGINX	
– ELK	+	FileBeat	
– Etcd		
•  Other	Services	
– Services	to	enable	security	in	the	Business	Layer
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
The	Moving	Parts	of	the	Stack:	Business	Layer	
•  Docker	container	with	Java	fat	jar	inside	
•  Must	keep	much	in	mind	
– hdps://developers.redhat.com/blog/2017/03/14/java-inside-docker/	
– hdp://ridingthecrest.com/blog/2017/02/23/ray-tsang-docker-Kps-notes.html
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Running	the	Stack:	Maven	
•  Demo:	Show	foundaKon	layer	running	using	docker	maven	plugin	
Thanks	Manfred	Riem	hdp://www.manorrock.com/blog/	
•  Plugins	with	InteresKng	Uses	
– maven-antrun-plugin	
•  Convey	current	UID/GID	all	the	way	through	to	the	Docker	running	the	workloads	
•  Assemble	the	individual	service	Marathon	deployment	descriptors	into	one	json	file	
•  Use	curl	to	install	the	Business	Layer	app	before	tesKng	and	remove	it	aXer	tesKng	
– maven-resources-plugin	
•  Template	properKes	into	json	files	for	ports,	variables,	configuraKon	
– Fabric8	docker-maven-plugin	
•  Stand	up	foundaKon	layer,	note	hard-coded	network	values
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Running	the	Stack:	Maven	
•  Demo:	Show	foundaKon	layer	running	using	docker	maven	plugin	
Thanks	Manfred	Riem	hdp://www.manorrock.com/blog/	
•  Plugins	with	the	Usual	Uses	
– maven-compiler-plugin	
– maven-deploy-plugin	
– maven-failsafe-plugin	
•  Able	to	use	standard	Junit	with	Jersey	Client	to	assert	correctness	of	Business	layer	app	
•  Need	to	pass	system	properKes	for	endpoint	locaKon	
– maven-javadoc-plugin	
– maven-source-plugin
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Java	EE	8	Will	Be	Available	by	JavaOne	2017!
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	 34	
Java	EE	7	
Connector	 JAXB	JSP	Debugging	
Managed	Beans	JSP	Concurrency	EE	 Interceptors	 JAX-WS	 WebSocket	
Bean	ValidaKon	 JASPIC	 Servlet	JMS	 JTA	Deployment	
Batch	 JACC	
Dependency	
InjecKon	 JAXR	 JSTL	 Management	
CDI	 EJB	 JAX-RPC	 Web	Services	JSF	 Java	Persistence	
JSON-P	
Common	
AnnotaKons	 EL	 JAX-RS	
Web	Services	
Metadata	JavaMail	
CDI	
JSON-B	
Security	
Bean	ValidaKon	
JSF	
JAX-RS	
JSON-P	
Servlet	
Java	EE	8	Will	Be	Available	by	JavaOne	2017!	
JSP
Copyright	©	2017,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Safe	Harbor	Statement	
The	preceding	is	intended	to	outline	our	general	product	direcKon.	It	is	intended	for	
informaKon	purposes	only,	and	may	not	be	incorporated	into	any	contract.	It	is	not	a	
commitment	to	deliver	any	material,	code,	or	funcKonality,	and	should	not	be	relied	upon	
in	making	purchasing	decisions.	The	development,	release,	and	Kming	of	any	features	or	
funcKonality	described	for	Oracle’s	products	remains	at	the	sole	discreKon	of	Oracle.	
35

Mais conteúdo relacionado

Mais procurados

Java on zSystems zOS
Java on zSystems zOSJava on zSystems zOS
Java on zSystems zOSTim Ellison
 
The Developers Conference 2014 - Oracle Keynote
The Developers Conference 2014 - Oracle KeynoteThe Developers Conference 2014 - Oracle Keynote
The Developers Conference 2014 - Oracle KeynoteBruno Borges
 
Effective load testing_&_monitoring
Effective load testing_&_monitoringEffective load testing_&_monitoring
Effective load testing_&_monitoringganesh_barcamp
 
Java on z overview 20161107
Java on z overview 20161107Java on z overview 20161107
Java on z overview 20161107Marcel Mitran
 
F05fba45 0b5f-2c10-a697-f36efa24e899
F05fba45 0b5f-2c10-a697-f36efa24e899F05fba45 0b5f-2c10-a697-f36efa24e899
F05fba45 0b5f-2c10-a697-f36efa24e899Deepa Bisht
 
Ed presents JSF 2.2 at a 2013 Gameduell Tech talk
Ed presents JSF 2.2 at a 2013 Gameduell Tech talkEd presents JSF 2.2 at a 2013 Gameduell Tech talk
Ed presents JSF 2.2 at a 2013 Gameduell Tech talkEdward Burns
 
Burns jsf-confess-2015
Burns jsf-confess-2015Burns jsf-confess-2015
Burns jsf-confess-2015Edward Burns
 
JavaOne2015報告会 in Okinawa
JavaOne2015報告会 in OkinawaJavaOne2015報告会 in Okinawa
JavaOne2015報告会 in OkinawaTakashi Ito
 
Advanced messaging with Apache ActiveMQ
Advanced messaging with Apache ActiveMQAdvanced messaging with Apache ActiveMQ
Advanced messaging with Apache ActiveMQdejanb
 
JSF 2.2 Input Output JavaLand 2015
JSF 2.2 Input Output JavaLand 2015JSF 2.2 Input Output JavaLand 2015
JSF 2.2 Input Output JavaLand 2015Edward Burns
 
V c loudapi_coffeetalk__pimplaskar_may2010
V c loudapi_coffeetalk__pimplaskar_may2010V c loudapi_coffeetalk__pimplaskar_may2010
V c loudapi_coffeetalk__pimplaskar_may2010Pablo Roesch
 
Seminar.2008.Jsf.Seam
Seminar.2008.Jsf.SeamSeminar.2008.Jsf.Seam
Seminar.2008.Jsf.Seamroialdaag
 
JDK 9 Java Platform Module System
JDK 9 Java Platform Module SystemJDK 9 Java Platform Module System
JDK 9 Java Platform Module SystemWolfgang Weigend
 

Mais procurados (17)

MadhusudhanTE_9Years_pasa
MadhusudhanTE_9Years_pasaMadhusudhanTE_9Years_pasa
MadhusudhanTE_9Years_pasa
 
Java on zSystems zOS
Java on zSystems zOSJava on zSystems zOS
Java on zSystems zOS
 
Sakeesoft
Sakeesoft Sakeesoft
Sakeesoft
 
The Developers Conference 2014 - Oracle Keynote
The Developers Conference 2014 - Oracle KeynoteThe Developers Conference 2014 - Oracle Keynote
The Developers Conference 2014 - Oracle Keynote
 
Effective load testing_&_monitoring
Effective load testing_&_monitoringEffective load testing_&_monitoring
Effective load testing_&_monitoring
 
My Resume
My ResumeMy Resume
My Resume
 
Java on z overview 20161107
Java on z overview 20161107Java on z overview 20161107
Java on z overview 20161107
 
F05fba45 0b5f-2c10-a697-f36efa24e899
F05fba45 0b5f-2c10-a697-f36efa24e899F05fba45 0b5f-2c10-a697-f36efa24e899
F05fba45 0b5f-2c10-a697-f36efa24e899
 
Ed presents JSF 2.2 at a 2013 Gameduell Tech talk
Ed presents JSF 2.2 at a 2013 Gameduell Tech talkEd presents JSF 2.2 at a 2013 Gameduell Tech talk
Ed presents JSF 2.2 at a 2013 Gameduell Tech talk
 
Burns jsf-confess-2015
Burns jsf-confess-2015Burns jsf-confess-2015
Burns jsf-confess-2015
 
JavaOne2015報告会 in Okinawa
JavaOne2015報告会 in OkinawaJavaOne2015報告会 in Okinawa
JavaOne2015報告会 in Okinawa
 
Advanced messaging with Apache ActiveMQ
Advanced messaging with Apache ActiveMQAdvanced messaging with Apache ActiveMQ
Advanced messaging with Apache ActiveMQ
 
JSF 2.2 Input Output JavaLand 2015
JSF 2.2 Input Output JavaLand 2015JSF 2.2 Input Output JavaLand 2015
JSF 2.2 Input Output JavaLand 2015
 
V c loudapi_coffeetalk__pimplaskar_may2010
V c loudapi_coffeetalk__pimplaskar_may2010V c loudapi_coffeetalk__pimplaskar_may2010
V c loudapi_coffeetalk__pimplaskar_may2010
 
Seminar.2008.Jsf.Seam
Seminar.2008.Jsf.SeamSeminar.2008.Jsf.Seam
Seminar.2008.Jsf.Seam
 
JDK 9 Java Platform Module System
JDK 9 Java Platform Module SystemJDK 9 Java Platform Module System
JDK 9 Java Platform Module System
 
Basil resume
Basil resumeBasil resume
Basil resume
 

Semelhante a Chicago JUG / GOTO Meetup

Building a Serverless State Service for the Cloud
Building a Serverless State Service for the CloudBuilding a Serverless State Service for the Cloud
Building a Serverless State Service for the CloudEdward Burns
 
Why MySQL High Availability Matters
Why MySQL High Availability MattersWhy MySQL High Availability Matters
Why MySQL High Availability MattersMark Swarbrick
 
Java EE 8 - February 2017 update
Java EE 8 - February 2017 updateJava EE 8 - February 2017 update
Java EE 8 - February 2017 updateDavid Delabassee
 
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...Trivadis
 
TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...
TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...
TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...tdc-globalcode
 
Democratizing Serverless—The Open Source Fn Project - Serverless Summit
Democratizing Serverless—The Open Source Fn Project - Serverless SummitDemocratizing Serverless—The Open Source Fn Project - Serverless Summit
Democratizing Serverless—The Open Source Fn Project - Serverless SummitCodeOps Technologies LLP
 
The Future of Java and You
The Future of Java and YouThe Future of Java and You
The Future of Java and YouHeather VanCura
 
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a ServiceOracle Korea
 
MOUG17 Keynote: What's New from Oracle Database Development
MOUG17 Keynote: What's New from Oracle Database DevelopmentMOUG17 Keynote: What's New from Oracle Database Development
MOUG17 Keynote: What's New from Oracle Database DevelopmentMonica Li
 
Oracle Code Online: Building a Serverless State Service for the Cloud
Oracle Code Online: Building a Serverless State Service for the CloudOracle Code Online: Building a Serverless State Service for the Cloud
Oracle Code Online: Building a Serverless State Service for the CloudEd Burns
 
CON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdf
CON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdfCON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdf
CON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdfmbkapps1
 
E-Business Suite on Oracle Cloud
E-Business Suite on Oracle CloudE-Business Suite on Oracle Cloud
E-Business Suite on Oracle CloudKeith Kiattipong
 
MySQL Shell - The DevOps Tool for MySQL
MySQL Shell - The DevOps Tool for MySQLMySQL Shell - The DevOps Tool for MySQL
MySQL Shell - The DevOps Tool for MySQLMiguel Araújo
 
Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...
Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...
Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...Jürgen Ambrosi
 
Bringing Java into the Open
Bringing Java into the Open Bringing Java into the Open
Bringing Java into the Open Heather VanCura
 
Extending Enterprise Applications to mobile interfaces-Final
Extending Enterprise Applications to mobile interfaces-FinalExtending Enterprise Applications to mobile interfaces-Final
Extending Enterprise Applications to mobile interfaces-FinalRohit Dhamija
 
IBM WebSphere Family on Azure
IBM WebSphere Family on AzureIBM WebSphere Family on Azure
IBM WebSphere Family on AzureReza Rahman
 

Semelhante a Chicago JUG / GOTO Meetup (20)

Building a Serverless State Service for the Cloud
Building a Serverless State Service for the CloudBuilding a Serverless State Service for the Cloud
Building a Serverless State Service for the Cloud
 
Why MySQL High Availability Matters
Why MySQL High Availability MattersWhy MySQL High Availability Matters
Why MySQL High Availability Matters
 
Java EE 8 - February 2017 update
Java EE 8 - February 2017 updateJava EE 8 - February 2017 update
Java EE 8 - February 2017 update
 
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
Trivadis TechEvent 2017 Leveraging the Oracle Cloud by Kris Bhanushali tech_e...
 
TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...
TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...
TDC2018SP | Trilha Arq Java - Crie arquiteturas escalaveis, multi-language e ...
 
Democratizing Serverless—The Open Source Fn Project - Serverless Summit
Democratizing Serverless—The Open Source Fn Project - Serverless SummitDemocratizing Serverless—The Open Source Fn Project - Serverless Summit
Democratizing Serverless—The Open Source Fn Project - Serverless Summit
 
The Future of Java and You
The Future of Java and YouThe Future of Java and You
The Future of Java and You
 
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
 
MOUG17 Keynote: What's New from Oracle Database Development
MOUG17 Keynote: What's New from Oracle Database DevelopmentMOUG17 Keynote: What's New from Oracle Database Development
MOUG17 Keynote: What's New from Oracle Database Development
 
REST in an Async World
REST in an Async WorldREST in an Async World
REST in an Async World
 
Oracle Code Online: Building a Serverless State Service for the Cloud
Oracle Code Online: Building a Serverless State Service for the CloudOracle Code Online: Building a Serverless State Service for the Cloud
Oracle Code Online: Building a Serverless State Service for the Cloud
 
JCP 20 Year Anniversary
JCP 20 Year AnniversaryJCP 20 Year Anniversary
JCP 20 Year Anniversary
 
CON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdf
CON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdfCON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdf
CON6324_EBS_122_Beyond_Online_Patching_OOW2017_PUBLISHED.pdf
 
E-Business Suite on Oracle Cloud
E-Business Suite on Oracle CloudE-Business Suite on Oracle Cloud
E-Business Suite on Oracle Cloud
 
MySQL Shell - The DevOps Tool for MySQL
MySQL Shell - The DevOps Tool for MySQLMySQL Shell - The DevOps Tool for MySQL
MySQL Shell - The DevOps Tool for MySQL
 
Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...
Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...
Proposte ORACLE per la gestione dei contenuti digitali e per la ricerca scien...
 
Bringing Java into the Open
Bringing Java into the Open Bringing Java into the Open
Bringing Java into the Open
 
APAC Tour 2019 update
APAC Tour 2019 updateAPAC Tour 2019 update
APAC Tour 2019 update
 
Extending Enterprise Applications to mobile interfaces-Final
Extending Enterprise Applications to mobile interfaces-FinalExtending Enterprise Applications to mobile interfaces-Final
Extending Enterprise Applications to mobile interfaces-Final
 
IBM WebSphere Family on Azure
IBM WebSphere Family on AzureIBM WebSphere Family on Azure
IBM WebSphere Family on Azure
 

Mais de Ed Burns

What We Learned from Porting PiggyMetrics from Spring Boot to MicroProfile
What We Learned from Porting PiggyMetrics from Spring Boot to MicroProfileWhat We Learned from Porting PiggyMetrics from Spring Boot to MicroProfile
What We Learned from Porting PiggyMetrics from Spring Boot to MicroProfileEd Burns
 
2020-02-10 Java on Azure Solution Briefing
2020-02-10 Java on Azure Solution Briefing2020-02-10 Java on Azure Solution Briefing
2020-02-10 Java on Azure Solution BriefingEd Burns
 
What Visual Studio Code can do for Java Development
What Visual Studio Code can do for Java DevelopmentWhat Visual Studio Code can do for Java Development
What Visual Studio Code can do for Java DevelopmentEd Burns
 
Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...
Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...
Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...Ed Burns
 
Enterprise Java on Azure: From Java EE to Spring, we have you covered
Enterprise Java on Azure: From Java EE to Spring, we have you coveredEnterprise Java on Azure: From Java EE to Spring, we have you covered
Enterprise Java on Azure: From Java EE to Spring, we have you coveredEd Burns
 
Programming Language Platform Growth: Table Stakes or Deal Makes?
Programming Language Platform Growth: Table Stakes or Deal Makes?Programming Language Platform Growth: Table Stakes or Deal Makes?
Programming Language Platform Growth: Table Stakes or Deal Makes?Ed Burns
 
Seminole County Teach In 2017: Crooms Acadamy of Information Technology
Seminole County Teach In 2017: Crooms Acadamy of Information TechnologySeminole County Teach In 2017: Crooms Acadamy of Information Technology
Seminole County Teach In 2017: Crooms Acadamy of Information TechnologyEd Burns
 
JavaOne-2017 Ignite Session: How to build a Theremin
JavaOne-2017 Ignite Session: How to build a ThereminJavaOne-2017 Ignite Session: How to build a Theremin
JavaOne-2017 Ignite Session: How to build a ThereminEd Burns
 
Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017Ed Burns
 
HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016Ed Burns
 
Oracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with LessOracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with LessEd Burns
 

Mais de Ed Burns (11)

What We Learned from Porting PiggyMetrics from Spring Boot to MicroProfile
What We Learned from Porting PiggyMetrics from Spring Boot to MicroProfileWhat We Learned from Porting PiggyMetrics from Spring Boot to MicroProfile
What We Learned from Porting PiggyMetrics from Spring Boot to MicroProfile
 
2020-02-10 Java on Azure Solution Briefing
2020-02-10 Java on Azure Solution Briefing2020-02-10 Java on Azure Solution Briefing
2020-02-10 Java on Azure Solution Briefing
 
What Visual Studio Code can do for Java Development
What Visual Studio Code can do for Java DevelopmentWhat Visual Studio Code can do for Java Development
What Visual Studio Code can do for Java Development
 
Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...
Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...
Enterprise Java on Microsoft Azure: From Java EE to Spring, we’ve got you cov...
 
Enterprise Java on Azure: From Java EE to Spring, we have you covered
Enterprise Java on Azure: From Java EE to Spring, we have you coveredEnterprise Java on Azure: From Java EE to Spring, we have you covered
Enterprise Java on Azure: From Java EE to Spring, we have you covered
 
Programming Language Platform Growth: Table Stakes or Deal Makes?
Programming Language Platform Growth: Table Stakes or Deal Makes?Programming Language Platform Growth: Table Stakes or Deal Makes?
Programming Language Platform Growth: Table Stakes or Deal Makes?
 
Seminole County Teach In 2017: Crooms Acadamy of Information Technology
Seminole County Teach In 2017: Crooms Acadamy of Information TechnologySeminole County Teach In 2017: Crooms Acadamy of Information Technology
Seminole County Teach In 2017: Crooms Acadamy of Information Technology
 
JavaOne-2017 Ignite Session: How to build a Theremin
JavaOne-2017 Ignite Session: How to build a ThereminJavaOne-2017 Ignite Session: How to build a Theremin
JavaOne-2017 Ignite Session: How to build a Theremin
 
Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017
 
HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016
 
Oracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with LessOracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with Less
 

Último

Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 

Último (20)

Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 

Chicago JUG / GOTO Meetup