SlideShare ist ein Scribd-Unternehmen logo
1 von 87
#SMX | @jammer_volts
The Technical Foundations
of Successful
Internationalization
Who is this session for?
You want to expand your business to a new
audience-- either linguistically or geographically.
#SMX | @jammer_volts
Hello!
Hello!
#SMX | @jammer_volts
#SMX | @jammer_volts
Hello!
Hola!
#SMX | @jammer_volts
Hello!
Hallo!
A multilingual website is any
website that offers content
in more than one language.
#SMX | @jammer_volts
Wie man
Dungeons und
Drachen spielt?
#SMX | @jammer_volts
A multi-regional website is
one that explicitly targets
users in different countries
#SMX | @jammer_volts
+ =
Dungeons und
Drachen
Spielerhandbuch
kaufen
#SMX | @jammer_volts
Language and geography
are independent variables.
#SMX | @jammer_volts
#SMX | @jammer_volts
successful internationalization
#SMX | @jammer_volts
● business
● users
● search engines
● code
#SMX | @jammer_volts
Business Foundation
Viable Audience Service
#SMX | @jammer_volts#SMX | @jammer_volts
✔
✔
✔
✔
❌
✔
✔
✔
❌
✔
✔
❌
#SMX | @jammer_volts
#SMX | @jammer_volts
An interested audience
#SMX | @jammer_volts
#SMX | @jammer_volts
Macro Conversion Micro Conversion
Online Sale Sign up for email
Phone (Offline) Sale Play video
Download white paper
Add item to cart
Utilize Chat
Email for price
#SMX | @jammer_volts
Tap Google Analytics to look at existing users
#SMX | @jammer_volts
Users Foundations
#SMX | @jammer_volts
Shared language between
your company and humans.
#SMX | @jammer_volts
Translations Localization≠
#SMX | @jammer_volts
J'ai
chaude!
#SMX | @jammer_volts
Prioritize translating hero content
Source:User-centricPerformanceMetrics
#SMX | @jammer_volts
No translation? Noindex.
Source:TomekRudzkiviaReddit
!!robots.txt won’t prevent crawling
or indexing
#SMX | @jammer_volts
Let users move seamlessly between languages
#SMX | @jammer_volts
Logic for detecting user language
#SMX | @jammer_volts
● Give them the version they requested (best case)
● Have they chosen a language before? Use a cookie!
● What language was the content of their last visit in?
● What is the default language of their browser
● Don’t auto redirect
Shared functionality and efficacy between
your code base and user devices
#SMX | @jammer_volts
63%
of worldwide website traffic is generated
through mobile phones
#SMX | @jammer_volts
47%
of internet traffic is from mobile
only users
#SMX | @jammer_volts
2.2B
2BDesktop
/Cross Device
Mobile Only
#SMX | @jammer_volts
To be successful
internationally, you need to
be mobile first fast.
#SMX | @jammer_volts
Mobile dominance varies by region
Source:comScore
Source:AddyOsmani
1MB = 5 seconds on
3G connection
#SMX | @jammer_volts
Source:OpenSignal
Time = Money
but also...
#SMX | @jammer_volts
1.5MB page
can cost
$0.19 USD
to load
#SMX | @jammer_volts
Source:Whatdoesmysitecost?
#SMX | @jammer_volts
Search Engine
Foundation
#SMX | @jammer_volts
For content to rank, it has
to be seen.
#SMX | @jammer_volts
Google best practices
universal best practices
≠
#SMX | @jammer_volts
Source:MatthewCapala
#SMX | @jammer_volts
If your site relies heavily on JavaScript,
visibilities is an concern.
Source:BartoszGóralewiczviaMoz
#SMX | @jammer_volts
Make Hero Content and Structured Data Available in HTML
Source:User-centricPerformanceMetrics
#SMX | @jammer_volts
For ecommerce, use currency representative of the geotarget
#SMX | @jammer_volts
#SMX | @jammer_volts
Clear signals about the intended
audience.
HTML Lang Attribute
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Good morning, SMX!</title>
#SMX | @jammer_volts
W3 attribute recognized by all search engines
HREFlang + UX = Codex*
#SMX | @jammer_volts
* no love from Baidu, Naver, and Bing
(language) x (country)
“nl-be” ✔
#SMX | @jammer_volts
only language
“nl” ✔
#SMX | @jammer_volts
only region
“be” ❌
#SMX | @jammer_volts
@methode
#SMX | @jammer_volts
HTML Tags Sitemaps
HTTP
Headers
Implementation Options (Choose 2)
#SMX | @jammer_volts
HTML Tags
<link rel="alternate" hreflang="en-US"
href="https://www.arrow.com/en/categories/computers-and-peripherals" />
<link rel="alternate" hreflang="en"
href="https://www.arrow.com/en/categories/computers-and-peripherals" />
<link rel="alternate" hreflang="fr-FR" href="https://www.arrow.com/fr-
fr/categories/computers-and-peripherals" />
<link rel="alternate" hreflang="fr" href="https://www.arrow.com/fr-
fr/categories/computers-and-peripherals" />
#SMX | @jammer_volts
Sitemap
<url>
<loc>https://www.arrow.com/en/categories/computers-and-peripherals</loc>
<xhtml:link rel="alternate" hreflang="fr" href="https://www.arrow.com/fr-
fr/categories/computers-and-peripherals" />
<xhtml:link rel="alternate" hreflang="de"
href="https://www.arrow.de/categories/computers-and-peripherals" />
<xhtml:link rel="alternate" hreflang="it" href="https://www.arrow.com/it-
it/categories/computers-and-peripherals" />
</url>
#SMX | @jammer_volts
HTTP Header
<https://www.arrow.com/cloud/starting-up-your-own-cloud-business.pdf>;
rel="alternate"; hreflang="en",
<https://www.arrow.de/cloud/starting-up-your-own-cloud-business.pdf>;
rel="alternate"; hreflang="de-de",
Use HTTP Headers for non-HTML files (like PDFs)
#SMX | @jammer_volts
Use x-default for
unmatched languages
#SMX | @jammer_volts
How effective is
consistent
hreflang use?
#SMX | @jammer_volts
South Korean subfolder
launched with noindex,
blocked via robots.
#SMX | @jammer_volts
Code
Foundation
#SMX | @jammer_volts
What is the best structure for
international content?
#SMX | @jammer_volts
Consistent and language specific
TLD
$$$
x
Subdomain
$$
x
Subfolder
$
x
Parameters
$
x
#SMX | @jammer_volts
Internationalized Domain Names
.みんな
.ไทย
.рф
#SMX | @jammer_volts
Are you
launching a
new CMS
instance?
50 products x 5 countries x 5
languages = 125 PDPs
#SMX | @jammer_volts
Keep scalable sanity with
consistent URL structures
#SMX | @jammer_volts
Putting the tech gap to scale
#SMX | @jammer_volts
Imagine your
favorite restaurant
opened a new
location in town!
But not really. They
just added a second
“optimized”
business name.
#SMX | @jammer_volts
If you’re launching in a new region, you
need servers in the region.
#SMX | @jammer_volts
Same region, new language?
Ensure existing servers handle an
increase in crawl rate.
#SMX | @jammer_volts
Mind your CDNs
and load balancers
#SMX | @jammer_volts
#SMX | @jammer_volts
Content delivery
networks (CDNs) and
load balancers are
common components
of large or
international sites.
Often they have
public-facing DNS
records.
“We never told
Googlebot to
crawl there.”
#SMX | @jammer_volts
Life, uh,
finds a
way.
#SMX | @jammer_volts
It’s hard to
know what you
don’t know.
Make new
friends.
#SMX | @jammer_volts
Tap into your server logs
Verify each public-facing server’s
hostname/IP in Search Console.
Especially if it should never be
indexed.
#SMX | @jammer_volts
Do you get the same
content from every server?
#SMX | @jammer_volts
Hosts file + webcrawler
#SMX | @jammer_volts
Use POCs to get developer resources
#SMX | @jammer_volts
If you’re sharing scripts or
APIs across TLDs, check
your cross-site resources
#SMX | @jammer_volts
Being flagged for cross-site scripting (XSS) malware can
result in elements being blocked from loading in Chrome or
removed from SERP.
Test proactively:
● CSP Mitigator (Chrome extension)
● CSP Evaluator
Mitigate an active malware alert:
http://www.google.com/safebrowsing/diagnostic?site=www.example.com)
#SMX | @jammer_volts
#SMX | @jammer_volts
Life pro tips
from hard life lessons in
internationalization
Get fast insight into crawl errors with server logs
#SMX | @jammer_volts
Inconsistent/incomplete hreflang detection?
Check the <head> for iframes
#SMX | @jammer_volts
#SMX | @jammer_volts
Cross-Domain Analytics
ga('create', 'UA-XXXXX-Y',
'auto', {allowLinker:
true});
ga('require', 'linker');
ga('linker:autoLink',
['example.de']);
ga('create', 'UA-XXXXX-Y',
'auto', {allowLinker:
true});
ga('require', 'linker');
ga('linker:autoLink',
['example.com']);
on Example.com on Example.de
(Don’t forget your referral exclusion!)
#SMX | @jammer_volts
Create new views with hostname filters
for data integrity & consistency
#SMX | @jammer_volts
@jammer_volts
/in/jamie-alberico

Weitere ähnliche Inhalte

Was ist angesagt?

How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...Jamie Indigo
 
Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Rachel Anderson
 
DeepCrawl Webinar: Performing SEO on the Edge
DeepCrawl Webinar: Performing SEO on the EdgeDeepCrawl Webinar: Performing SEO on the Edge
DeepCrawl Webinar: Performing SEO on the EdgeDan Taylor
 
The New Renaissance of JavaScript
The New Renaissance of JavaScriptThe New Renaissance of JavaScript
The New Renaissance of JavaScriptHamlet Batista
 
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Alex Wright
 
2020 06-03 cukenfest-bdd-and-sl_os
2020 06-03 cukenfest-bdd-and-sl_os2020 06-03 cukenfest-bdd-and-sl_os
2020 06-03 cukenfest-bdd-and-sl_osAbigail Bangser
 
Structured Data Implementation, MREIDs, and More at SMX Advanced 2018
Structured Data Implementation, MREIDs, and More at SMX Advanced 2018Structured Data Implementation, MREIDs, and More at SMX Advanced 2018
Structured Data Implementation, MREIDs, and More at SMX Advanced 2018Mike Arnesen
 
2020 10-08 measuring-qualityinproduction
2020 10-08 measuring-qualityinproduction2020 10-08 measuring-qualityinproduction
2020 10-08 measuring-qualityinproductionAbigail Bangser
 
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...Izabela Wisniewska
 
Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5Hamlet Batista
 
BrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The Edge
BrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The EdgeBrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The Edge
BrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The EdgeDan Taylor
 
Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...
Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...
Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...Jamie Indigo
 
Using HTML5 and CSS3 today
Using HTML5 and CSS3 todayUsing HTML5 and CSS3 today
Using HTML5 and CSS3 todaythebeebs
 
Scaling automated quality text generation for enterprise sites
Scaling automated quality text generation for enterprise sitesScaling automated quality text generation for enterprise sites
Scaling automated quality text generation for enterprise sitesHamlet Batista
 
Challenges of building a search engine like web rendering service
Challenges of building a search engine like web rendering serviceChallenges of building a search engine like web rendering service
Challenges of building a search engine like web rendering serviceGiacomo Zecchini
 
Hey Googlebot, did you cache that ?
Hey Googlebot, did you cache that ?Hey Googlebot, did you cache that ?
Hey Googlebot, did you cache that ?Petra Kis-Herczegh
 
Business Success with Core Web Vitals
Business Success with Core Web VitalsBusiness Success with Core Web Vitals
Business Success with Core Web VitalsIzzi Smith
 
Automating Google Lighthouse
Automating Google LighthouseAutomating Google Lighthouse
Automating Google LighthouseHamlet Batista
 
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...Hamlet Batista
 

Was ist angesagt? (20)

How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
 
Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.
 
DeepCrawl Webinar: Performing SEO on the Edge
DeepCrawl Webinar: Performing SEO on the EdgeDeepCrawl Webinar: Performing SEO on the Edge
DeepCrawl Webinar: Performing SEO on the Edge
 
The New Renaissance of JavaScript
The New Renaissance of JavaScriptThe New Renaissance of JavaScript
The New Renaissance of JavaScript
 
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
 
2020 06-03 cukenfest-bdd-and-sl_os
2020 06-03 cukenfest-bdd-and-sl_os2020 06-03 cukenfest-bdd-and-sl_os
2020 06-03 cukenfest-bdd-and-sl_os
 
Structured Data Implementation, MREIDs, and More at SMX Advanced 2018
Structured Data Implementation, MREIDs, and More at SMX Advanced 2018Structured Data Implementation, MREIDs, and More at SMX Advanced 2018
Structured Data Implementation, MREIDs, and More at SMX Advanced 2018
 
2020 10-08 measuring-qualityinproduction
2020 10-08 measuring-qualityinproduction2020 10-08 measuring-qualityinproduction
2020 10-08 measuring-qualityinproduction
 
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...
 
Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5
 
BrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The Edge
BrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The EdgeBrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The Edge
BrightonSEO 2019 - Edge SEO - Using CDNs To Perform SEO On The Edge
 
Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...
Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...
Crafting Expertise, Authority and Trust with Entity-Based Content Strategy - ...
 
Using HTML5 and CSS3 today
Using HTML5 and CSS3 todayUsing HTML5 and CSS3 today
Using HTML5 and CSS3 today
 
Scaling automated quality text generation for enterprise sites
Scaling automated quality text generation for enterprise sitesScaling automated quality text generation for enterprise sites
Scaling automated quality text generation for enterprise sites
 
Challenges of building a search engine like web rendering service
Challenges of building a search engine like web rendering serviceChallenges of building a search engine like web rendering service
Challenges of building a search engine like web rendering service
 
Hey Googlebot, did you cache that ?
Hey Googlebot, did you cache that ?Hey Googlebot, did you cache that ?
Hey Googlebot, did you cache that ?
 
Business Success with Core Web Vitals
Business Success with Core Web VitalsBusiness Success with Core Web Vitals
Business Success with Core Web Vitals
 
Automating Google Lighthouse
Automating Google LighthouseAutomating Google Lighthouse
Automating Google Lighthouse
 
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
 
Site Optimization for Mobile By Laura Scott
Site Optimization for Mobile By Laura ScottSite Optimization for Mobile By Laura Scott
Site Optimization for Mobile By Laura Scott
 

Ähnlich wie Technical Foundations of Successful Internationalization - SMX Munich

Accelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMPAccelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMPJono Alderson
 
Strategies & Tactics For Overcoming Enterprise SEO Challenges
Strategies & Tactics For Overcoming Enterprise SEO ChallengesStrategies & Tactics For Overcoming Enterprise SEO Challenges
Strategies & Tactics For Overcoming Enterprise SEO ChallengesSam Marsden
 
NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...
NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...
NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...Amazon Web Services
 
Better Safe Than Sorry with HTTPS - SMX East 2016 - Patrick Stox
Better Safe Than Sorry with HTTPS - SMX East 2016 - Patrick StoxBetter Safe Than Sorry with HTTPS - SMX East 2016 - Patrick Stox
Better Safe Than Sorry with HTTPS - SMX East 2016 - Patrick Stoxpatrickstox
 
Speaking in Tongues: Establishing a Successful International Web Presence #SM...
Speaking in Tongues: Establishing a Successful International Web Presence #SM...Speaking in Tongues: Establishing a Successful International Web Presence #SM...
Speaking in Tongues: Establishing a Successful International Web Presence #SM...Aleyda Solís
 
Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)
Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)
Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)Yenlo
 
MOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks Like
MOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks LikeMOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks Like
MOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks LikeAdrian Mendoza
 
XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...
XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...
XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...David Brossard
 
SMX London Technical SEO in 2018.
SMX London Technical SEO in 2018. SMX London Technical SEO in 2018.
SMX London Technical SEO in 2018. Onely
 
Game Changers: How market leaders discover a distinct advantage and make thei...
Game Changers: How market leaders discover a distinct advantage and make thei...Game Changers: How market leaders discover a distinct advantage and make thei...
Game Changers: How market leaders discover a distinct advantage and make thei...Tim Hamilton
 
The Future of Distributed Databases
The Future of Distributed DatabasesThe Future of Distributed Databases
The Future of Distributed DatabasesNuoDB
 
Mpcs overview marketing_jan2009
Mpcs overview marketing_jan2009Mpcs overview marketing_jan2009
Mpcs overview marketing_jan2009Elimelech Rawner
 
How to Budget for Cloud-Based Disaster Recovery
How to Budget for Cloud-Based Disaster RecoveryHow to Budget for Cloud-Based Disaster Recovery
How to Budget for Cloud-Based Disaster RecoveryBluelock
 
SyntracX Location-Based Services
SyntracX Location-Based ServicesSyntracX Location-Based Services
SyntracX Location-Based ServicesMuhammad Ahmed
 
Saraswathi K_Resume
Saraswathi K_ResumeSaraswathi K_Resume
Saraswathi K_ResumeSaraswathi K
 
Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)
Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)
Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)troyd
 
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & BeyondBrunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & BeyondAct-On Software
 
Responsive Web Design Basics
Responsive Web Design BasicsResponsive Web Design Basics
Responsive Web Design BasicsAustin Walker
 

Ähnlich wie Technical Foundations of Successful Internationalization - SMX Munich (20)

Mind the gap! - Droidcon Torino 2015
Mind the gap! - Droidcon Torino 2015Mind the gap! - Droidcon Torino 2015
Mind the gap! - Droidcon Torino 2015
 
Accelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMPAccelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMP
 
Strategies & Tactics For Overcoming Enterprise SEO Challenges
Strategies & Tactics For Overcoming Enterprise SEO ChallengesStrategies & Tactics For Overcoming Enterprise SEO Challenges
Strategies & Tactics For Overcoming Enterprise SEO Challenges
 
NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...
NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...
NoSQL Revolution: Under the Covers of Distributed Systems at Scale (SPOT401) ...
 
Better Safe Than Sorry with HTTPS - SMX East 2016 - Patrick Stox
Better Safe Than Sorry with HTTPS - SMX East 2016 - Patrick StoxBetter Safe Than Sorry with HTTPS - SMX East 2016 - Patrick Stox
Better Safe Than Sorry with HTTPS - SMX East 2016 - Patrick Stox
 
Speaking in Tongues: Establishing a Successful International Web Presence #SM...
Speaking in Tongues: Establishing a Successful International Web Presence #SM...Speaking in Tongues: Establishing a Successful International Web Presence #SM...
Speaking in Tongues: Establishing a Successful International Web Presence #SM...
 
Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)
Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)
Presentation WSO2 Brussel workshop September 24th 2014 (Connect the world)
 
MOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks Like
MOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks LikeMOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks Like
MOBILE RIGHT NOW: What A Real Customer’s Mobile Experience Looks Like
 
XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...
XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...
XACML for Developers - Updates, New Tools, & Patterns for the Eager #IAM Deve...
 
SMX London Technical SEO in 2018.
SMX London Technical SEO in 2018. SMX London Technical SEO in 2018.
SMX London Technical SEO in 2018.
 
Game Changers: How market leaders discover a distinct advantage and make thei...
Game Changers: How market leaders discover a distinct advantage and make thei...Game Changers: How market leaders discover a distinct advantage and make thei...
Game Changers: How market leaders discover a distinct advantage and make thei...
 
The Future of Distributed Databases
The Future of Distributed DatabasesThe Future of Distributed Databases
The Future of Distributed Databases
 
Mpcs overview marketing_jan2009
Mpcs overview marketing_jan2009Mpcs overview marketing_jan2009
Mpcs overview marketing_jan2009
 
How to Budget for Cloud-Based Disaster Recovery
How to Budget for Cloud-Based Disaster RecoveryHow to Budget for Cloud-Based Disaster Recovery
How to Budget for Cloud-Based Disaster Recovery
 
SyntracX Location-Based Services
SyntracX Location-Based ServicesSyntracX Location-Based Services
SyntracX Location-Based Services
 
Saraswathi K_Resume
Saraswathi K_ResumeSaraswathi K_Resume
Saraswathi K_Resume
 
Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)
Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)
Pricing APIs: Pricing Sucks, Here's What We Did (Gluecon 2010)
 
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & BeyondBrunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond
 
Responsive Web Design Basics
Responsive Web Design BasicsResponsive Web Design Basics
Responsive Web Design Basics
 
SyntracX - Location Based Service
SyntracX - Location Based ServiceSyntracX - Location Based Service
SyntracX - Location Based Service
 

Kürzlich hochgeladen

TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxAndrieCagasanAkio
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxNIMMANAGANTI RAMAKRISHNA
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
Cybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesCybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesLumiverse Solutions Pvt Ltd
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxMario
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119APNIC
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书rnrncn29
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxmibuzondetrabajo
 

Kürzlich hochgeladen (9)

TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptx
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptx
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
Cybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesCybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best Practices
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptx
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptx
 

Technical Foundations of Successful Internationalization - SMX Munich

Hinweis der Redaktion

  1. Inter
  2. North American makes up 4.7 % of the world population and 7.5 % of internet users. https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Usa_edcp_location_map.svg/1280px-Usa_edcp_location_map.svg.png
  3. You don’t have to travel the globe to reach a new market. In the US, 230 million speakj English. Another 37M speak Spanish https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Usa_edcp_location_map.svg/1280px-Usa_edcp_location_map.svg.png
  4. https://commons.wikimedia.org/wiki/File:North_Macedonia_on_the_globe_(Europe_centered).svg
  5. https://support.google.com/webmasters/answer/182192?hl=en
  6. https://support.google.com/webmasters/answer/182192?hl=en
  7. You can target language + geography or language, but not geography alone
  8. Austria, Switzerland,
  9. Ich bin fraud!
  10. https://www.statista.com/statistics/284202/mobile-phone-internet-user-penetration-worldwide/ 50% growth y/y 2017 vs 2018
  11. https://www.statista.com/statistics/297504/number-of-us-mobile-only-internet-users/ ‘Mobile only’ audiences are now second only to ‘multiplatform’ users in the majority of markets, and appear to be increasing their reach among the overall population in many markets. 53% by 2021
  12. 4.4 billion people are online – 2.4 billion of them through mobile https://www.statista.com/statistics/617136/digital-population-worldwide/ https://www.statista.com/statistics/297504/number-of-us-mobile-only-internet-users/
  13. Mobile money digital transaction transaction values grew more than twice the rate of cash transactions in 2018. https://www.gsma.com/mobilefordevelopment/
  14. https://www.comscore.com/Insights/Presentations-and-Whitepapers/2018/Global-Digital-Future-in-Focus-2018 Add to basket and conversion rates on smartphones increased 25 percent year over year https://www.retaildive.com/ex/mobilecommercedaily/5-stats-from-criteos-latest-state-of-cross-device-commerce-report
  15. https://medium.com/@addyosmani/the-cost-of-javascript-in-2018-7d8950fbb5d4 Statistics from the HTTP Archive state of JavaScript report, July 2018 highlight the median webpage ships ~350KB of minified and compressed script. These pages take up to 15s to get interactive.
  16. 5 seconds to download on a typical 3G connection
  17. https://www.opensignal.com/reports/2017/02/global-state-of-the-mobile-network
  18. https://medium.com/@SearchDecoder/global-search-engine-market-share-for-2018-in-the-top-15-gdp-nations-2cf65c11e5f5 Google 92.46% bing 2.45% Yahoo! 1.82% Baidu 0.95% YANDEX 0.59% YANDEX RU 0.55%
  19. https://support.google.com/webmasters/answer/189077?hl=en
  20. https://support.google.com/webmasters/answer/189077?hl=en
  21. https://support.google.com/webmasters/answer/189077?hl=en
  22. https://support.google.com/webmasters/answer/189077?hl=en
  23. https://support.google.com/webmasters/answer/189077?hl=en
  24. Domain cost, security certificates
  25. Google treats the Punycode version of a hostname as being equivalent to the unencoded version, so you don't need to redirect or canonicalize them separately.
  26. https://commons.wikimedia.org/wiki/File:North_Macedonia_on_the_globe_(Europe_centered).svg
  27. https://commons.wikimedia.org/wiki/File:North_Macedonia_on_the_globe_(Europe_centered).svg