SlideShare une entreprise Scribd logo
1  sur  39
Télécharger pour lire hors ligne
Understanding Email Hacks
@M_J_Robbins @GoRebelmail #LitmusLive
Mark Robbins
@otherside_uk
What we’re going to cover
What we’re going to cover
• Stuff you might no know about everyday email
hacks
What we’re going to cover
• Stuff you might no know about everyday email
hacks
• How to target email clients
What we’re going to cover
• Stuff you might no know about everyday email
hacks
• How to target email clients
• Individual email clients
What we’re going to cover
• Stuff you might no know about everyday email
hacks
• How to target email clients
• Individual email clients
• Groups of email client
What we’re going to cover
• Stuff you might no know about everyday email
hacks
• How to target email clients
• Individual email clients
• Groups of email client
• Analysing a couple of layout hacks
<table>
<table	width="100%"	border="0"	cellspacing="0"	
cellpadding="0"	bgcolor="#333333"	role="presentation">			
		<tr>	
				<td	style="font-size:0px">&nbsp;</td>	
				<td	align="center"	width="600"	bgcolor="#eeeeee">	
<!--	Content	-->	
				</td>	
				<td	style="font-size:0px">&nbsp;</td>	
		</tr>	
</table>
<table role="presentation">
<table role="presentation">
<table role="presentation">
add it in NOW!
Targeting
Targeting via code wrapping
• .ExternalClass
- Outlook.com
• .moz-text-html
- Thunderbird
• #secdiv
- Samsung S4
• #MessageWebViewDiv
- Samsung S5, S6, S7
<div	class="code-wrapping">	
		<table	width="100%"	border="0"		
		cellspacing="0"	cellpadding="0"		
		bgcolor="#333333"	role="presentation">			
				<tr>	
						<td	style="font-size:0px">&nbsp;</td>	
						<td	align="center"	width="600"		
						bgcolor="#ffffff">	
<!--	Content	-->	
						</td>	
						<td	style="font-size:0px">&nbsp;</td>	
				</tr>	
		</table>			
</div>
.code-wraping	.foo{}
Targeting via preprocessor editing
Outlook 365 & Outlook.com
[owa365].foo{}
Yahoo!
@media	yahoo{	
		.foo{}	
}
Targeting via preprocessor editing
Outlook 365 & Outlook.com
[owa365].foo{} .x_foo{}
Yahoo!
@media	yahoo{	
		.foo{}	
}
Targeting via preprocessor editing
Outlook 365 & Outlook.com
[owa365].foo{} .x_foo{}
Yahoo!
@media	yahoo{	
		.foo{}	
}
@media{	
		.foo{}	
}
Targeting via preprocessor editing
Lotus Notes 8
.notes.foo{}
Alto mail
[class^=aolmail_].foo{}
Targeting via preprocessor editing
Lotus Notes 8
.notes.foo{} .foo{}
Alto mail
[class^=aolmail_].foo{}
Targeting via preprocessor editing
Lotus Notes 8
.notes.foo{} .foo{}
Alto mail
[class^=aolmail_].foo{} [class^=aolmail_].aolmail_foo{}
Targeting via unicode
AOL mail
<div	class=" "	id=" ">
(AKA WTF? TLA)
N.B. This doesn’t work on older IE
Targeting via unicode
AOL mail
<div	class=" "	id=" "> . :not(# ){}
(AKA WTF? TLA)
N.B. This doesn’t work on older IE
Targeting via attribute selectors
[class]{}	
[class="exactly"]{}	
[class*="contains"]{}	
[class~="contains-strict"]{}	
[class^="startswith"]{}	
[class|="starts-with-strict"]{}	
[class$="endswith"]{}
Targeting via attribute selectors
*	[lang~="x-foo"]{	
		/*	Gmail	*/	
}	
table[width="600"]{	
		width:100%;max-width:600px;	
}	
[style*="position:absolute"]{	
		/*	Check	for	stripped	code	*/	
}
<div	lang="x-foo	x-bar">	
</div>	
<table	width="600"	…>	
</table>	
<div	style="position:absolute;">	
</div>
Targeting via media queries
@media	screen	and	(max-width:600px){	
		/*	Viewport	width	*/	
}	
@media	screen	and	(max-device-width:600px){	
		/*	Device	width	*/	
}	
@media	screen	and	(-webkit-device-pixel-ratio){	
		/*	Webkit	*/	
}	
@media	screen	and	(-webkit-device-pixel-ratio),		
screen	and	(-moz-device-pixel-ratio){	
		/*	Webkit	and	mozilla	*/	
}
Targeting via supports
@support	(position:flex){	
		/*	Supports	position	flex	*/	
}
Targeting via supports
@support	(position:flex){	
		/*	Supports	position	flex	*/	
}
.foo[style*="position:flex"]{	
		/*	Code	is	supported	*/	
}	
.foo:not([style*="position:flex"]){	
		/*	Fallback	for	when	code	is	stripped	*/	
}
Targeting interactivity
<input	type="checkbox"	style="display:none	!important;"	
id="interactivity"	checked>	
<table>	
		<div	class="interactive">...</div>	
		<div	class="fallback">...</div>	
</table>
<style>	
#interactivity:checked	+	table	.interactive{	
		display:block	
}	
#interactivity:checked	+	table	.fallback{	
		display:none;	
}	
</style>
Some hacks
Hiding content
<div	class="foo"	style="	
		display:none;	
		max-height:0;	
		overflow:hidden;	
		mso-hide:all;">	
</div>
.foo{	
		display:block	!important;	
		max-height:none	!important;	
}
Hiding content
• <img> tags still load<div	class="foo"	style="	
		display:none;	
		max-height:0;	
		overflow:hidden;	
		mso-hide:all;">	
</div>
.foo{	
		display:block	!important;	
		max-height:none	!important;	
}
Hiding content
• <img> tags still load
• Background image
load
<div	class="foo"	style="	
		display:none;	
		max-height:0;	
		overflow:hidden;	
		mso-hide:all;">	
</div>
.foo{	
		display:block	!important;	
		max-height:none	!important;	
}
Hiding content
• <img> tags still load
• Background image
load
• Content is still visible to
inbox search, and as
preheader
<div	class="foo"	style="	
		display:none;	
		max-height:0;	
		overflow:hidden;	
		mso-hide:all;">	
</div>
.foo{	
		display:block	!important;	
		max-height:none	!important;	
}
Gmail image/font size
Gmail image/font size
<img	
src="london.gif"	
width="200"	
height="200"	
alt="London	on	a	
globe"	style="	
	font-size:10px;	
	width:20em;	
	height:20em;	
"/>
Absolute positioning
<div	style="position:relative">			
		<div	style="position:absolute;top:100px;left:100px;">	
				<!--	content	-->	
		</div>	
</div>
(Doesn’t work in Outlook 07-16)
Absolute positioning
<div	style="position:relative">			
		<div	style="position:absolute;top:100px;left:100px;">	
				<!--	content	-->	
		</div>	
</div>
<div	style="max-height:0;max-width:0;">	
		<div	style="margin-top:100px;margin-left:100px;display:inline-
block;">	
				<!--	content	-->	
		</div>	
</div>
(Doesn’t work in Outlook 07-16)
Thank You!
@M_J_Robbins @GoRebelmail #LitmusLive
Mark Robbins

Contenu connexe

Tendances

An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5Robert Nyman
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!Ana Cidre
 
CSS Frameworks
CSS FrameworksCSS Frameworks
CSS FrameworksMike Crabb
 
Html & CSS - Best practices 2-hour-workshop
Html & CSS - Best practices 2-hour-workshopHtml & CSS - Best practices 2-hour-workshop
Html & CSS - Best practices 2-hour-workshopVero Rebagliatte
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5Terry Ryan
 
Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)Joseph Lewis
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateInventis Web Architects
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basicsEliran Eliassy
 
HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)Daniel Friedman
 
HTML 5 Complete Reference
HTML 5 Complete ReferenceHTML 5 Complete Reference
HTML 5 Complete ReferenceEPAM Systems
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSSMario Hernandez
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop NotesPamela Fox
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTMLAjay Khatri
 
Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extendSeek Tan
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSSSyed Sami
 

Tendances (20)

An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!
 
CSS Frameworks
CSS FrameworksCSS Frameworks
CSS Frameworks
 
Html & CSS - Best practices 2-hour-workshop
Html & CSS - Best practices 2-hour-workshopHtml & CSS - Best practices 2-hour-workshop
Html & CSS - Best practices 2-hour-workshop
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5
 
Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
 
HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)
 
HTML 5 Complete Reference
HTML 5 Complete ReferenceHTML 5 Complete Reference
HTML 5 Complete Reference
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Joomla Technical SEO
Joomla Technical SEOJoomla Technical SEO
Joomla Technical SEO
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
 
Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extend
 
Introduction to WEB HTML, CSS
Introduction to WEB HTML, CSSIntroduction to WEB HTML, CSS
Introduction to WEB HTML, CSS
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
 
Personal website
Personal websitePersonal website
Personal website
 

En vedette

Accessibility in email - #EoAInsights
Accessibility in email - #EoAInsightsAccessibility in email - #EoAInsights
Accessibility in email - #EoAInsightsMark Robbins
 
National Diploma of N Mabunda.PDF
National Diploma of N Mabunda.PDFNational Diploma of N Mabunda.PDF
National Diploma of N Mabunda.PDFnicky mabunda
 
Getting SEO's at the Adult Table with Search Infused Marketing
Getting SEO's at the Adult Table with Search Infused MarketingGetting SEO's at the Adult Table with Search Infused Marketing
Getting SEO's at the Adult Table with Search Infused MarketingWil Reynolds
 
How to See People Who Block You on Twitter
How to See People Who Block You on TwitterHow to See People Who Block You on Twitter
How to See People Who Block You on TwitterBernard Goldbach
 
Matt's resume. word doc (1)
Matt's resume. word doc (1)Matt's resume. word doc (1)
Matt's resume. word doc (1)Matthew McKinney
 
[NOTES] When Your Community Does the Blogging | MuseumNext Indy
[NOTES] When Your Community Does the Blogging | MuseumNext Indy[NOTES] When Your Community Does the Blogging | MuseumNext Indy
[NOTES] When Your Community Does the Blogging | MuseumNext IndyLori Byrd-McDevitt
 
In Rem Injunctions: Case of Website Blocking
In Rem Injunctions: Case of Website BlockingIn Rem Injunctions: Case of Website Blocking
In Rem Injunctions: Case of Website BlockingMartin Husovec
 
The essentials
The essentialsThe essentials
The essentialswaspronto
 
How a guitar works
How a guitar worksHow a guitar works
How a guitar worksrestebic
 
Bahasan 1 ruang lingkup alat media pendidikan
Bahasan 1 ruang lingkup alat media pendidikanBahasan 1 ruang lingkup alat media pendidikan
Bahasan 1 ruang lingkup alat media pendidikanNirmala Sari
 
Creating Digital Media Profiles Online
Creating Digital Media Profiles OnlineCreating Digital Media Profiles Online
Creating Digital Media Profiles OnlineBernard Goldbach
 
Technik.hotelarstwa 341[04] z4.01_u
Technik.hotelarstwa 341[04] z4.01_uTechnik.hotelarstwa 341[04] z4.01_u
Technik.hotelarstwa 341[04] z4.01_uPusiu99
 

En vedette (19)

Accessibility in email - #EoAInsights
Accessibility in email - #EoAInsightsAccessibility in email - #EoAInsights
Accessibility in email - #EoAInsights
 
Bill Aulet GEC2016 keynote speech March 16 2016 Medellin Colombia
Bill Aulet GEC2016 keynote speech March 16 2016 Medellin ColombiaBill Aulet GEC2016 keynote speech March 16 2016 Medellin Colombia
Bill Aulet GEC2016 keynote speech March 16 2016 Medellin Colombia
 
National Diploma of N Mabunda.PDF
National Diploma of N Mabunda.PDFNational Diploma of N Mabunda.PDF
National Diploma of N Mabunda.PDF
 
Getting SEO's at the Adult Table with Search Infused Marketing
Getting SEO's at the Adult Table with Search Infused MarketingGetting SEO's at the Adult Table with Search Infused Marketing
Getting SEO's at the Adult Table with Search Infused Marketing
 
How to See People Who Block You on Twitter
How to See People Who Block You on TwitterHow to See People Who Block You on Twitter
How to See People Who Block You on Twitter
 
Matt's resume. word doc (1)
Matt's resume. word doc (1)Matt's resume. word doc (1)
Matt's resume. word doc (1)
 
Raghavendra. Subbaro
Raghavendra. SubbaroRaghavendra. Subbaro
Raghavendra. Subbaro
 
Blank Screen Creativity
Blank Screen CreativityBlank Screen Creativity
Blank Screen Creativity
 
[NOTES] When Your Community Does the Blogging | MuseumNext Indy
[NOTES] When Your Community Does the Blogging | MuseumNext Indy[NOTES] When Your Community Does the Blogging | MuseumNext Indy
[NOTES] When Your Community Does the Blogging | MuseumNext Indy
 
Tweet 3
Tweet 3Tweet 3
Tweet 3
 
In Rem Injunctions: Case of Website Blocking
In Rem Injunctions: Case of Website BlockingIn Rem Injunctions: Case of Website Blocking
In Rem Injunctions: Case of Website Blocking
 
Ramayana Tour Legend Comes Alive in Sri Lanka
Ramayana Tour Legend Comes Alive in Sri LankaRamayana Tour Legend Comes Alive in Sri Lanka
Ramayana Tour Legend Comes Alive in Sri Lanka
 
The essentials
The essentialsThe essentials
The essentials
 
How a guitar works
How a guitar worksHow a guitar works
How a guitar works
 
Bahasan 1 ruang lingkup alat media pendidikan
Bahasan 1 ruang lingkup alat media pendidikanBahasan 1 ruang lingkup alat media pendidikan
Bahasan 1 ruang lingkup alat media pendidikan
 
Resume
ResumeResume
Resume
 
Creating Digital Media Profiles Online
Creating Digital Media Profiles OnlineCreating Digital Media Profiles Online
Creating Digital Media Profiles Online
 
Resume
ResumeResume
Resume
 
Technik.hotelarstwa 341[04] z4.01_u
Technik.hotelarstwa 341[04] z4.01_uTechnik.hotelarstwa 341[04] z4.01_u
Technik.hotelarstwa 341[04] z4.01_u
 

Similaire à Understanding email hacks - Litmus Live London TEDC16

Interactive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email developmentInteractive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email developmentMichael Posso
 
Troubleshooting Email Like a Pro
Troubleshooting Email Like a ProTroubleshooting Email Like a Pro
Troubleshooting Email Like a ProLitmus
 
Troubleshooting Email Like a Pro
Troubleshooting Email Like a ProTroubleshooting Email Like a Pro
Troubleshooting Email Like a ProLitmus
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 
Troubleshooting Email Like a Pro
Troubleshooting Email Like a ProTroubleshooting Email Like a Pro
Troubleshooting Email Like a ProLitmus
 
HTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.pptHTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.pptraghavanp4
 
Designing Emails That Actually Work
Designing Emails That Actually WorkDesigning Emails That Actually Work
Designing Emails That Actually WorkLindsay Siovaila
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmMaria S Rivera
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS TroubleshootingDenise Jacobs
 
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Cengage Learning
 
Make your website 2 times faster
Make your website 2 times fasterMake your website 2 times faster
Make your website 2 times fasterSatoshi Kikuchi
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSSTodd Anglin
 
Web Design Fundamentals
Web Design FundamentalsWeb Design Fundamentals
Web Design FundamentalsAhmed Faris
 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyDenise Jacobs
 
Kickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPressKickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPressColby Dimock
 

Similaire à Understanding email hacks - Litmus Live London TEDC16 (20)

Interactive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email developmentInteractive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email development
 
Troubleshooting Email Like a Pro
Troubleshooting Email Like a ProTroubleshooting Email Like a Pro
Troubleshooting Email Like a Pro
 
Troubleshooting Email Like a Pro
Troubleshooting Email Like a ProTroubleshooting Email Like a Pro
Troubleshooting Email Like a Pro
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
Troubleshooting Email Like a Pro
Troubleshooting Email Like a ProTroubleshooting Email Like a Pro
Troubleshooting Email Like a Pro
 
HTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.pptHTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.ppt
 
css.ppt
css.pptcss.ppt
css.ppt
 
css.ppt
css.pptcss.ppt
css.ppt
 
Email dssign rules
Email dssign rulesEmail dssign rules
Email dssign rules
 
Designing Emails That Actually Work
Designing Emails That Actually WorkDesigning Emails That Actually Work
Designing Emails That Actually Work
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS Troubleshooting
 
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
 
Make your website 2 times faster
Make your website 2 times fasterMake your website 2 times faster
Make your website 2 times faster
 
HTML5
HTML5HTML5
HTML5
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSS
 
Web Design Fundamentals
Web Design FundamentalsWeb Design Fundamentals
Web Design Fundamentals
 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & Efficiency
 
Kickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPressKickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPress
 
Slicing the web
Slicing the webSlicing the web
Slicing the web
 

Dernier

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
 
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
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
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
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
🐬 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
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 

Dernier (20)

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...
 
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...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
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
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 

Understanding email hacks - Litmus Live London TEDC16