SlideShare a Scribd company logo
1 of 114
Download to read offline
Jorge	Rimblas
@rimblas
enkitec.com
enkitec.com
@enkitec
We	are	an	Oracle	consulting	partner
focused	on	the	 .
Platinum	Level	Partner
.	The	Hands	On	Oracle	Experts.
Oracle	Application	Development
Oracle	Database	Administration
Lab-based	Education
Business	Intelligence
Technology	Stabilization
Ongoing	Managed	Services	for	Oracle	Systems
anecdotes,	not	a	single	story
how	do	i	get	more	from	apex
Mobile	app	How-To	
Bleeding	edge	techniques
Secret	Handshake
Responsive	Design	Tutorial	?
Items
The	grid
Regions
Buttons
CSS
Some	more	CSS
Q&A
Martin	D'Souza
Mon	6/24	@	11:30am
Christian	Rokitta
Wed	6/26	@	8:30am
Christian	Rokitta
Thu	6/27	@	8:30am
Dimitri	Gielis
Thu	6/27	@	9:45am
Fields	in	one	"column"
About	the	same	length
We	do	have	a	grid:
table
div
SQL>	desc	emp
Name													Type
----------------	----------
EMPNO												NUMBER
ENAME												VARCHAR2(10)
JOB														VARCHAR2(9)
MGR														NUMBER
HIREDATE									DATE
SAL														NUMBER
COMM													NUMBER
DEPTNO											NUMBER
Maintain	EMPMaintain	EMP
Ename ADAMS
Job CLERK
Mgr 7698
Hiredate 12-JAN-83
Sal 1100
Comm 1
Deptno 20
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
APEX	4.1	and	before	
APEX	4.2	and	beyond
Maintain	EMPMaintain	EMP
Employee ADAMS Job CLERK
Mgr BLAKE
Hire	Date 12-JAN-83
Salary 1100 Commision 1
Dept RESEARCH
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
table	for	form	elements
cell	for	label	cell	for	item
cell	for	item	buttons	
width	based	on	elements
:
table,
tr,
td
:
colspan	and	rowspan
In	a	world	of	responsive	designs	and	div	layouts
they	may	be	obsolete	(for	some	uses)
However,
probably	ALL	your	applications	build	before	4.1	use	them
<table>
<tr>
		<td>	R1	C1	</td>
		<td>	R1	C2	</td>
		<td>	R1	C3	</td>
</tr>
<tr>	...	R2	...	</tr>
<tr>	...	R3	...	</tr>
</table>
R1	C1 R1	C2 R1	C3
R2	C1 R2	C2 R2	C3
R3	C1 R3	C2 R3	C3
<table	border="1">
<tr>
		<td>	R1	C1	</td>
		<td>	R1	C2	</td>
		<td>	R1	C3	</td>
</tr>
<tr>	...	R2	...	</tr>
<tr>	...	R3	...	</tr>
</table>
R1	C1 R1	C2 R1	C3
R2	C1 R2	C2 R2	C3
R3	C1 R3	C2 R3	C3
<table	border="1">
<tr>
		<td>													R1	C1	</td>
		<td	colspan="2">	R1	C2	</td>
		<td>													R1	C3	</td>
</tr>
<tr>	...	R2	...	</tr>
<tr>	...	R3	...	</tr>
</table>
R1	C1 R1	C2 R1	C3
R2	C1 R2	C2 R2	C3
R3	C1 R3	C2 R3	C3
<table	border="1">
<tr>
		<td>													R1	C1	</td>
		<td	colspan="2">	R1	C2	</td>
</tr>
<tr>	...	R2	...	</tr>
<tr>	...	R3	...	</tr>
</table>
R1	C1 R1	C2
R2	C1 R2	C2 R2	C3
R3	C1 R3	C2 R3	C3
<table	border="1">
<tr>
		<td>													R1	C1	</td>
		<td	colspan="2">	R1	C2	</td>
</tr>
<tr>
		<td	rowspan="2">	R2	C1	</td>
		<td>													R2	C2	</td>
		<td>													R2	C3	</td>
<tr>...	R3	...	</tr>
</table>
R1	C1 R1	C2
R2	C1 R2	C2 R2	C3
R3	C1 R3	C2 R3	C3
<table	border="1">
<tr>
		<td>													R1	C1	</td>
		<td	colspan="2">	R1	C2	</td>
</tr>
<tr>
		<td	rowspan="2">	R2	C1	</td>
		<td>													R2	C2	</td>
		<td>													R2	C3	</td>
<tr>...	R3	...	</tr>
</table>
R1	C1 R1	C2
R2	C1 R2	C2 R2	C3
R3	C1 R3	C2 R3	C3
<table	border="1">
<tr>
		<td>	R1	C1	</td>
		<td>	R1	C2	</td>
		<td>	R1	C3	</td>
</tr>
<tr>
		<td>	R2	C1	</td>
		<td>	This	is	a	long	value	</td>
		<td>	R2	C3	</td>
</tr>
<tr>	...	R3	...	</tr>
</table>
R1	C1 R1	C2 R1	C3
R2	C1 This	is	a	long	value R2	C3
R3	C1 R3	C2 R3	C3
SQL>	alter	table	emp	add	notes	varchar2(2000);
Table	altered.
Maintain	EMPMaintain	EMP
Employee ADAMS Job CLERK
Mgr BLAKE
Hire	Date 12-JAN-83
Salary 1100 Commision 1
Dept RESEARCH
Notes
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
<table	border="1">
<tr>
		<td>	R1	C1	</td>
		<td>	R1	C2	</td>
		<td>	R1	C3	</td>
</tr>
</table>
<table	border="1">
<tr>
		<td>	R2	C1	</td>
		<td>	This	is	a	long	value	</td>
		<td>	R2	C3	</td>
</tr>
<tr>	...	R3	...	</tr>
</table>
R1	C1 R1	C2 R1	C3
R2	C1 This	is	a	long	value R2	C3
R3	C1 R3	C2 R3	C3
Maintain	EMPMaintain	EMP
Employee ADAMS Job CLERK
Mgr BLAKE
Hire	Date 12-JAN-83
Salary 1100 Commision 1
Dept RESEARCH
Notes
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
p5
Maintain	EMPMaintain	EMP
Employee ADAMS Job CLERK
Mgr BLAKE
Hiredate 12-JAN-83
Sal 1100 Commision 1
Dept RESEARCH
Address1
Address2
City
State
Zip
Notes
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
Maintain	EMPMaintain	EMP
Employee ADAMS
Job CLERK
Hire	Date 12-JAN-83 Manager BLAKE
Salary 1100 Commision 1
Dept RESEARCH
AddressAddress
Address1
Address2
City State Zip
Additional	InfoAdditional	Info
Notes
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
p12
In	4.2	just	use	"Item	Display	Position"
Items	BeforeItems	Before
Search Display 15 GoGo ResetReset
DEPTNODEPTNO DNAMEDNAME LOCLOC
10 ACCOUNTING NEW	YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
1	-	4
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
Items	AfterItems	After
DEPTNODEPTNO DNAMEDNAME LOCLOC
10 ACCOUNTING NEW	YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
1	-	4
Search Display 15 GoGo ResetReset
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
In	<	4.1	(or	4.2.x)	use	Sub	Regions
Container	Region	
Item	Sub	Region
Report	Sub	Region
Item	Sub	Region
Items	Before	&	AfterItems	Before	&	After
Search Display 15 GoGo ResetReset
DEPTNODEPTNO DNAMEDNAME LOCLOC
10 ACCOUNTING NEW	YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
1	-	4
After	01
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
p17
Template	positions
Recommendation:
Use	selected	positions	only	and	be	consistent	in	your	application
In	other	words,	don't	over	do	it.
template	position	help	you	with	consistency
<span	class="uButtonContainer">
#CLOSE##PREVIOUS##NEXT##DELETE##EDIT##CHANGE##CREATE##CREATE2##EXPAND##COPY##HELP#
</span>
You	can	use	the	same	position	for	many	buttons
Use	the	Sequence	to	decide	the	final	order
Frustrating	because	sequence	is	not	as	intuitive
Button	3Button	3Button	4Button	4
ButtonsButtons
Button	1Button	1 	 Button	2Button	2
Standard	button	placement.
Buttons	w/floatButtons	w/float
Button	3	is	defined	first	with	seq	10
Button	4	follows	with	seq	40
<style>
#BUTTON_3,	#BUTTON_4	{
float:	right;
}
</style>
Demo apex_public_user Logout
Set	Screen	Reader	Mode	On release	1.0
p25
float	can	affect	their	parent	element	(container)
When	the	parent	element	contains	only	floated	elements,
it's	height	will	collapse	to	nothing.
.clearfix:after	{	
			content:	".";	
			visibility:	hidden;	
			display:	block;	
			height:	0;	
			clear:	both;
}
<div	class="uRegionContent	clearfix">
		<div	style="float:	right;">awesome	content!</div>
<div>
<div	class="mycontainer	clearfix">
		<div	class="square">Box	1</div>
		<div	class="square">Box	2</div>
</div>
.mycontainer	{
		width:	600px;
		border:	1px	solid	red;
}
.square	{
		width:	150px;
		height:	150px;
		color:	white;
		background-color:	#0bebf6;
		border:	7px	dotted	white;
		padding:	10px;
		margin-right:	20px;
		margin-top:	5px;
		display:	inline-block;
		float:	right;
}
Box	1Box	2
<div	class="mycontainer">
		<div	class="square">Box	1</div>
		<div	class="square">Box	2</div>
</div>
.mycontainer	{
		width:	600px;
		border:	1px	solid	red;
}
.square	{
		width:	150px;
		height:	150px;
		color:	white;
		background-color:	#0bebf6;
		border:	7px	dotted	white;
		padding:	10px;
		margin-right:	20px;
		margin-top:	5px;
		display:	inline-block;
		float:	right;
}
Box	1Box	2
Button	and	Field	alignment	is	hard
You	need	extra	CSS	to	align	buttons	to	the	right
@media	only	screen	and	(min-width:	768px)	{
		.my-form	div.fieldContainer	{
				float:	left;
				clear:	left;
		}
		.my-form	.uButton	{
				float:	left;
				margin-left:	8px;
		}
}
Example	from	Shakeeb
		http://apex.oracle.com/pls/apex/f?p=13766:1:0:
https://forums.oracle.com/message/10914920#10914920
simply	use	the	name	of	the	tag
body	{overflow:	auto;}
label	{font-weight:	bold;}
use	a	dot	(.)	and	the	class	name
.alert	{color:	red;}
				
<p	class="warning">Value	required	for	name	field.</p>
<p	class="alert">Value	required	for	name	field.</p>
				
Value	required	for	name	field.
Value	required	for	name	field.
use	a	hash	(#)	and	the	ID
#P5_NOTES	{outline:	red	solid	2px;}
#reportRegion	{padding:	5px;}
<textarea	name="p_t09"	rows="5"	cols="50"	maxlength="4000"	id="P5_NOTES"	class="textarea">
</textarea>
<div	id="reportRegion"	class="stdReport"></div>
http://s.rimbl.as/PqUy
inline	style
ID
class
elements
most	specific
least	specific
!important
#logo	{display:	none!important;}
don't	over	do	it
adding	CSS	to	your	application
1.	 element	inline
2.	 page	inline
3.	 file
file	system
APEX	hosted
<section	class="uRegion"	style="width:	500px;">
#BODY#
</section>
				
<p	style="padding-top:	5px;	color:	red;	font-style:	italic;">
lorem	ipsum
</p>
<style	type="text/css">
</style>
type="text/css"		mostly	optional	in	modern	browsers
<link	rel="stylesheet"	href="/custom/c.css"	type="text/css"	/>
	directory	was	manually	mapped	to	web	server
c.css	was	manually	added	to	the	operating	system
<link	rel="stylesheet"	href="#APP_IMAGES#c.css"	type="text/css"	/>
<link	rel="stylesheet"	href="#WORKSPACE_IMAGES#c.css"	type="text/css"	/>
#APP_IMAGES#	and	#WORKSPACE_IMAGES#	are	
built	in	substitution	strings
c.css	was	uploaded	to	APEX	via
	Shared	Components	-	Files
Cascading	Stylesheets
Images
Static	Files
Expanded	to	use	wwv_flow_file_mgr.get_file
				#WORKSPACE_IMAGES#c.css
				wwv_flow_file_mgr.get_file?p_security_group_id=2616712683471253&p_fname=c.css
box	model
frequently	used	commands
width
	+	padding-left	+	padding-right
+	border-left	+	border-right
height
+	padding-top	+	padding-bottom
	+	border-top	+	border-bottom
<div	class="mycontainer">
		<div	class="box">Box	1</div>
		<div	class="box">Box	2</div>
</div>
.mycontainer	{
		width:	600px;
		border:	1px	solid	red;
}
.box	{
		width:	200px;
		height:	150px;
		color:	white;
		background-color:	#0bebf6;
		border:	7px	dotted	white;
		padding:	10px;
		margin-right:	20px;
		margin-top:	5px;
		display:	inline-block;
}
Box	1 	 Box	2
box-sizing:	border-box;
padding:	5px	5px	5px	5px;
→	
top
left right
bottom
padding:	5px;
5px	all	around
exactly	the	same	as	
padding:	5px	5px	5px	5px;
padding:	5px	7px;
5px	top	and	bottom
7px	left	and	right
padding-top:	5px;
padding-right:	5px;
padding-bottom:	5px;
padding-left:	5px;
padding:	0	5px	0	0;
padding-right:	5px;
You	are	now	free	to	roam	around	the	page
static
absolute
relative
fixed
This	is	the	default
think	offset
you	need	a	position	absolute	or	relative	
for	z-index	to	take	effect
visible	(default)
hidden
scroll
auto
any	content	that	extends	the	height	of	a	box	will	be	displayed
However,	the	content	that	extends	does	NOT	affect	the	document	flow.		It
has	no	height.
Any	content	that	extends	past	the	height	of	a	box	will	simply	be	invisible
content	that	overflows	the	box	will	be	hidden,	 	we	will	get	scroll
bars	to	get	to	the	overflow	content.
Chrome	handles	the	scrollbars	differently
overflow:	scrolloverflow:	scroll
Lorem	ipsum	dolor	sit	amet,	consectetur
adipiscing	elit.	Aenean	ullamcorper
vulputate	nibh,	vel	congue	nibh.	Donec
lobortis	nibh	non	nunc	blandit	elementum.
Suspendisse	eleifend	tempus	tempus.
Aliquam	id	velit	a	arcu	adipiscing	porttitor.
Vivamus	posuere	turpis	id	feugiat	mattis.
Class	aptent	taciti	sociosqu	ad	litora
torquent	per	conubia	nostra,	per	inceptos
himenaeos.	Sed	sed	urna	eget	quam	varius
tempus.	In	id	urna	eros.	Vestibulum	luctus
eget	nunc	vitae	pharetra.	Vivamus
commodo	urna	sed	scelerisque	dapibus.	Ut
venenatis	tellus	vestibulum	mattis
venenatis.	Donec	hendrerit	eu	ante	id
luctus.
Overflow apex_public_user Logout
release	1.0
like	overflow:	scroll	however	it	solves	the	problem	of	always	visible
scrollbars.
the	cells	push	as	wide	as	the	content	is
td.data[headers="MESSAGE"],
td.dataAlt[headers="MESSAGE"]	{
		max-width:	180px;
		white-space:	pre-line;
		word-wrap:	break-word;
}
data	and	dataAlt:	alternating	rows
white-space:	pre-line;	trim	space	before	line
word-wrap:	break-word;
Unfortunately	partial	IE	support	for	break-word
(	requires	compatibility	mode	)
Multiple	devices
Multiple	screen	resolutions
You	can	go	with	the	" "
Handful	of	items	per	page
...
(version	8	or	below)
a.k.a.
You	have	100+	items	per	page
data	intensive
slides	 	rimblas.com/slides/kscope13
sample	app:	http://s.rimbl.as/PrpV
app	download:	http://s.rimbl.as/PqnD
reveal.js	https://github.com/hakimel/reveal.js
http://css-tricks.com/
http://caniuse.com/
http://lmgtfy.com/
Jorge	Rimblas
@rimblas
enkitec.com

More Related Content

Similar to That's not where I want that!

RoyWoollard CV new
RoyWoollard CV newRoyWoollard CV new
RoyWoollard CV new
Roy Woollard
 
Jorge Galindo - Resume
Jorge Galindo - ResumeJorge Galindo - Resume
Jorge Galindo - Resume
Jorge Galindo
 
Resume_Asad_updated_DEC2016
Resume_Asad_updated_DEC2016Resume_Asad_updated_DEC2016
Resume_Asad_updated_DEC2016
Asadullah Khan
 

Similar to That's not where I want that! (20)

Perchè potresti aver bisogno di un database NoSQL anche se non sei Google o F...
Perchè potresti aver bisogno di un database NoSQL anche se non sei Google o F...Perchè potresti aver bisogno di un database NoSQL anche se non sei Google o F...
Perchè potresti aver bisogno di un database NoSQL anche se non sei Google o F...
 
naiditch_resume_APR17
naiditch_resume_APR17naiditch_resume_APR17
naiditch_resume_APR17
 
Test Automation for Packaged Systems: Yes, You Can!
Test Automation for Packaged Systems: Yes, You Can!Test Automation for Packaged Systems: Yes, You Can!
Test Automation for Packaged Systems: Yes, You Can!
 
RightScale Roadtrip Boston: Accelerate to Cloud
RightScale Roadtrip Boston: Accelerate to CloudRightScale Roadtrip Boston: Accelerate to Cloud
RightScale Roadtrip Boston: Accelerate to Cloud
 
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at DatabricksLessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
 
Manage online profiles with oracle no sql database tht10972 - v1.1
Manage online profiles with oracle no sql database   tht10972 - v1.1Manage online profiles with oracle no sql database   tht10972 - v1.1
Manage online profiles with oracle no sql database tht10972 - v1.1
 
Best Practices for Building and Deploying Data Pipelines in Apache Spark
Best Practices for Building and Deploying Data Pipelines in Apache SparkBest Practices for Building and Deploying Data Pipelines in Apache Spark
Best Practices for Building and Deploying Data Pipelines in Apache Spark
 
Naiditch resume may02
Naiditch resume may02Naiditch resume may02
Naiditch resume may02
 
RoyWoollard CV new
RoyWoollard CV newRoyWoollard CV new
RoyWoollard CV new
 
Jorge Galindo - Resume
Jorge Galindo - ResumeJorge Galindo - Resume
Jorge Galindo - Resume
 
SQL-RISC: New Directions in SQLi Prevention - RSA USA 2013
SQL-RISC: New Directions in SQLi Prevention - RSA USA 2013SQL-RISC: New Directions in SQLi Prevention - RSA USA 2013
SQL-RISC: New Directions in SQLi Prevention - RSA USA 2013
 
When to no sql and when to know sql javaone
When to no sql and when to know sql   javaoneWhen to no sql and when to know sql   javaone
When to no sql and when to know sql javaone
 
Simon Elliston Ball – When to NoSQL and When to Know SQL - NoSQL matters Barc...
Simon Elliston Ball – When to NoSQL and When to Know SQL - NoSQL matters Barc...Simon Elliston Ball – When to NoSQL and When to Know SQL - NoSQL matters Barc...
Simon Elliston Ball – When to NoSQL and When to Know SQL - NoSQL matters Barc...
 
DownUnder Dreaming - 5 steps to dreamy data
DownUnder Dreaming - 5 steps to dreamy dataDownUnder Dreaming - 5 steps to dreamy data
DownUnder Dreaming - 5 steps to dreamy data
 
Microsoft Data Science Technologies 201608
Microsoft Data Science Technologies 201608Microsoft Data Science Technologies 201608
Microsoft Data Science Technologies 201608
 
TestGuild and QuerySurge Presentation -DevOps for Data Testing
TestGuild and QuerySurge Presentation -DevOps for Data TestingTestGuild and QuerySurge Presentation -DevOps for Data Testing
TestGuild and QuerySurge Presentation -DevOps for Data Testing
 
GAURAV_MISHRA_CV
GAURAV_MISHRA_CV GAURAV_MISHRA_CV
GAURAV_MISHRA_CV
 
naiditch_resume_APR10
naiditch_resume_APR10naiditch_resume_APR10
naiditch_resume_APR10
 
Resume_Asad_updated_DEC2016
Resume_Asad_updated_DEC2016Resume_Asad_updated_DEC2016
Resume_Asad_updated_DEC2016
 
MySQL Without the MySQL -- Oh My!
MySQL Without the MySQL -- Oh My!MySQL Without the MySQL -- Oh My!
MySQL Without the MySQL -- Oh My!
 

Recently uploaded

%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 

Recently uploaded (20)

%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 

That's not where I want that!