SlideShare ist ein Scribd-Unternehmen logo
1 von 93
Downloaden Sie, um offline zu lesen
@dsottimanowww.smxl.it #SMXL19
6-7, NOVEMBER 2019
Apps script & SEO automation
David Sottimano
VP, Keyphraseology
@dsottimanowww.smxl.it #SMXL19
The “average” marketer
Julie Ling
Job title: SEO Analyst
Birthplace:
https://thispersondoesnot
exist.com/
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Working knowledge of HTML, CSS and JavaScript
Interpreting data from tools like SEMRush, Ahrefs,
Screaming Frog, etc.
Strong grasp of Microsoft Outlook, Excel, PowerPoint, and
Word
Yep
always
it’s 2019.
come on.
@dsottimanowww.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19
+
@dsottimanowww.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
I choose Apps Script to make
things accessible to many.
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Apps Script is
JavaScript
Lives in G Suite
(Sheets,
documents, etc..)
and Adwords
https://developers.google.com/apps-script/overview
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
*Magic lives here*
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
My problem with
spreadsheets.
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
This is a mess.
=SUBSTITUTE(SUBSTITUTE(SU
BSTITUTE(SUBSTITUTE(C5,"the
",""),"Hat",""),"written",""),"@","")
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
There’s an easier way.
=SUBSTITUTE_ALL(a1,“the,Hat,@,writ
ten”,””)
@dsottimanowww.smxl.it #SMXL19
How do you parse the URL path
here?
https://www.lastampa.it/sport/calcio/2
019/10/26/news/pareggia-anche-l-inter
-fallito-il-sorpasso-sulla-juve-1.3779317
4
@dsottimanowww.smxl.it #SMXL19
Ridiculous.
=MID(A1,FIND("*",SUBSTITUTE(
A1,"/","*",LEN(A1)-LEN(SUBSTITU
TE(A1,"/",""))))+1,LEN(A1))
@dsottimanowww.smxl.it #SMXL19
What if you could do this?
=PARSE_URI(a2,”path”)
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
How do you
GET Google
search
results?
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
What if it was this easy?
=GOOGLE_SEARCH(“smx milano”)
@dsottimanowww.smxl.it #SMXL19www.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19www.smxl.it #SMXL19
JavaScript functions are Custom
formulas.
function COMBINE_STRINGS(string1,string2){
return string1 + string2
}
@dsottimanowww.smxl.it #SMXL19
There’s so much that’s already built
for JavaScript for you to use.
@dsottimanowww.smxl.it #SMXL19
Let’s talk
about
JavaScript
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19www.smxl.it #SMXL19
Using Apps Script to speed up SEO
tasks
@dsottimanowww.smxl.it #SMXL19
I need to clean data quickly.
To..
create redirect files
create disavow files
write metadata
@dsottimanowww.smxl.it #SMXL19
Parse URLs quickly
From this:
https://www.lastampa.it/calcio/2019/news/inter.pdf
To this:
Protocol: https
Host: lastampa.it
Directory: /sport/calcio/2019/10/26/news/
Path: /sport/calcio/2019/10/26/news/inter.pdf
File: inter.pdf
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Spreadsheet: bit.do/smx-milan
Code: bit.do/smxl-milan-code
PARSE_URI(a1,”protocol”)
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Make a copy of the sheet
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Or drop the code in the editor
@dsottimanowww.smxl.it #SMXL19
Don’t remember the formula?
It’s OK! We can write our own help file too!
@dsottimanowww.smxl.it #SMXL19
Cool, cool.
@dsottimanowww.smxl.it #SMXL19
Substitute multiple
words/characters
We want to remove the parts in red.
example.com/directory/567/~!page.html
example.com/directory/56789/!page.html
example.com/@directory/56789/~page.php
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
SUBSTITUTE_ALL(“@,.html,~”,a1)
Spreadsheet: bit.do/smx-milan
Code: bit.do/smxl-milan-code
@dsottimanowww.smxl.it #SMXL19
Combine columns?
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
=COMBINE_TO_COLUMN(L1:M14)
Spreadsheet: bit.do/smx-milan
Code: bit.do/smxl-milan-code
@dsottimanowww.smxl.it #SMXL19
I need to scrape Google search
results
To..
perform competitive analysis
check if a page is indexed
check page ranking
@dsottimanowww.smxl.it #SMXL19
Scrape Google
search results,
reliably
Let’s make this easier.
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
You’ll need an API Key first.
https://serpapi.com
Note: I do not work for Serpapi.com and do not receive any
compensation from them
@dsottimanowww.smxl.it #SMXL19
Tools > Script Editor to add key
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Spreadsheet: bit.do/smx-milan
Code: bit.do/smxl-milan-code
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Your own custom rank/index checker
Spreadsheet: bit.do/smx-milan
Code: bit.do/smxl-milan-code
@dsottimanowww.smxl.it #SMXL19
I need to render webpages at scale
programatically
To..
check server responses
scraping
@dsottimanowww.smxl.it #SMXL19
JavaScript render webpage
anonymously from a specific
location/device/user-agent
From a SPREADSHEET CELL.
@dsottimanowww.smxl.it #SMXL19
You’ll need an API Key first.
https://proxycrawl.com
ProxyCrawl is a great API based crawler with
several options. It’s free for 1000 requests a month.
Note: I do not work for ProxyCrawl and do not receive any
compensation from them
@dsottimanowww.smxl.it #SMXL19
We can fetch a page on demand
like this:
https://api.proxycrawl.com/?token=12
3&url=https://lastampa.it
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Which would result in this:
@dsottimanowww.smxl.it #SMXL19
Then we can scrape using
Importxml like this
=importxml(“https://api.proxycrawl.co
m/?token=123&url=https://lastampa.it”,
”//h1”)
@dsottimanowww.smxl.it #SMXL19
Then we can scrape using
Importxml like this
@dsottimanowww.smxl.it #SMXL19
But that isn’t smart.
If we store the page, we can make
mistakes in code without paying for extra
requests.
Luckily, proxycrawl.com makes this very
easy.
@dsottimanowww.smxl.it #SMXL19
There’s a lot of options to explore
proxycrawl.com
@dsottimanowww.smxl.it #SMXL19
Let’s solve SEO problems with
Apps script
@dsottimanowww.smxl.it #SMXL19
I’m going to delete pages.
How do I find 301 target?
PROBLEM
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Imagine the trainline.com is going
to get rid of this (beautiful) page:
https://www.thetrainline.com/en/train-times/milan-to-turin
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
We need to find
the closest next
target. An easy
way to do this is to
use the site: query
@dsottimanowww.smxl.it #SMXL19
Using the =GOOGLE_SEARCH() function, we can do a
site:thetrainline.com Milan to Turin by train to find the
next most relevant page
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
I need to do quick keyword
discovery
PROBLEM
@dsottimanowww.smxl.it #SMXL19
Fast Solution: Google auto-suggest
Make your own
interface in the
place you’ll end
up anyway.
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
http://bit.do/kw-research
@dsottimanowww.smxl.it #SMXL19
One formula powers this tool.
=GOOGLE_SUGGEST()
Make your own tool
however you want it to
look.
@dsottimanowww.smxl.it #SMXL19
I need to know if / when my page
has changed
PROBLEM
@dsottimanowww.smxl.it #SMXL19
Step 1 - Use Wayback Machine to
save pages
To save a page in the archive,
simply add
https://web.archive.org/save/ to
the start of the URL
We’re going to automate this.
Spreadsheet: bit.do/smx-milan
Code: bit.do/smxl-milan-code
@dsottimanowww.smxl.it #SMXL19
Step 2 - Set up automated captures
Look for “WAYBACK_SAVE” in the code and
change the URLs
Spreadsheet: bit.do/smx-milan
Code: bit.do/smxl-milan-code
@dsottimanowww.smxl.it #SMXL19
Step 2.1 - Add email
Change the variable emailAddress to your email
address if you want email updates.
example: var emailAddress = “info@example.com”
@dsottimanowww.smxl.it #SMXL19
Step 2.2 - Set time trigger
@dsottimanowww.smxl.it #SMXL19
Step 2.2 - Set time trigger
@dsottimanowww.smxl.it #SMXL19
Step 3 - Pull captures into sheet
=WAYBACK_GET(URL,dateFrom,dateTo)
@dsottimanowww.smxl.it #SMXL19
No code visual comparisons
https://web.archive.org/web/diff/20141217113451/201908
01042909/https://davidsottimano.com/
@dsottimanowww.smxl.it #SMXL19
Or scrape directly!
Think, free page monitor
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
I need to know how to target my
content
PROBLEM
@dsottimanowww.smxl.it #SMXL19
Supervised Machine learning
classification in 10 minutes.
For free.
Accessible to any Google sheet.
https://bigml.com/features/classification-regression
@dsottimanowww.smxl.it #SMXL19
Step 1 - Training data
3 sites’ organic
keyword data from
Semrush.com
Nytimes.com =
informational
Yelp.com = local
Amazon.com =
transactional
@dsottimanowww.smxl.it #SMXL19
Step 2 - Upload to Bigml.com
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
https://bigml.com/user/dsottimano/gallery/model/5dba0a831efc927c130024cd
Step 3 - 1 click model
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
https://bigml.com/user/dsottimano/gallery/model/5dba0a831efc927c130024cd
Step 4 - Install free Bigml Addon
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19
Not bad for 10 minutes of work.
@dsottimanowww.smxl.it #SMXL19www.smxl.it #SMXL19
Beyond Sheets, Apps Script can do
wonderful things.
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Solution: Master Folder (repository)
@dsottimanowww.smxl.it #SMXL19
Call the PageSpeed insights API
directly
@dsottimanowww.smxl.it #SMXL19 @dsottimano
All employees have access, in any
document.
https://developers.google.com/gsuite/add-ons/how-tos/publishing
-editor-addons
@dsottimanowww.smxl.it #SMXL19
Building xml sitemaps with hreflang
@dsottimanowww.smxl.it #SMXL19
Change font for every Google slide
Add the code,
save
Refresh. Click
custom menu
Type in new font
http://bit.do/g-slides
@dsottimanowww.smxl.it #SMXL19
Apps script
can
leverage
any API..
@dsottimanowww.smxl.it #SMXL19
“But, it’s just JavaScript..in a
spreadsheet”
@dsottimanowww.smxl.it #SMXL19
https://pulse.appsscript.info/p/2019/11/building-a-deep-neural-net-in-
google-sheets/
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Subscribe to:pulse.appsscript.info
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Where do you
go from here?
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Want to learn JavaScript?
1) JavaScript track on Freecodecamp.org
2) Book: JavaScript - the good parts
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Learn Apps Script
1) Follow this list on Twitter:
2) Stack Overflow
3) Google documentation
4) Starter guide on opensourceseo.org
@dsottimanowww.smxl.it #SMXL19 @dsottimanowww.smxl.it #SMXL19
Hire Apps Script developers
https://www.upwork.com/hire/google-apps-script-freela
ncers/
@dsottimanowww.smxl.it #SMXL19www.smxl.it #SMXL19
Thank you.
Currently building:
seotoolsforsheets.com
Yell at me here:
@dsottimano (Twitter)
dave@keyphraseology.com

Weitere ähnliche Inhalte

Was ist angesagt?

How to Generate Content that Builds it's Own Links
How to Generate Content that Builds it's Own LinksHow to Generate Content that Builds it's Own Links
How to Generate Content that Builds it's Own LinksLizGration
 
Fully Automated Link Building - Brighton SEO.pdf
Fully Automated Link Building - Brighton SEO.pdfFully Automated Link Building - Brighton SEO.pdf
Fully Automated Link Building - Brighton SEO.pdfSam Oh
 
Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...
Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...
Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...Isa Lavs
 
Carlos Meza BrightonSEO 2023 Is content king in modern SEO.pptx
Carlos Meza BrightonSEO 2023 Is content king in modern SEO.pptxCarlos Meza BrightonSEO 2023 Is content king in modern SEO.pptx
Carlos Meza BrightonSEO 2023 Is content king in modern SEO.pptxCarlos Meza
 
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Chloe Smith
 
HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO Apri...
HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO  Apri...HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO  Apri...
HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO Apri...Jessica Maloney
 
Crawl Budget: Everything you Need to Know
Crawl Budget: Everything you Need to KnowCrawl Budget: Everything you Need to Know
Crawl Budget: Everything you Need to KnowSallyR7
 
PIKAC! Un moderno framework SEO (a prova di algoritmo)
PIKAC! Un moderno framework SEO (a prova di algoritmo)PIKAC! Un moderno framework SEO (a prova di algoritmo)
PIKAC! Un moderno framework SEO (a prova di algoritmo)Martino Mosna
 
Using Search Intent in our Link Building Efforts
Using Search Intent in our Link Building EffortsUsing Search Intent in our Link Building Efforts
Using Search Intent in our Link Building EffortsChris Czermak
 
Canonicalization for SEO BrightonSEO April 2023 Patrick Stox
Canonicalization for SEO BrightonSEO April 2023 Patrick StoxCanonicalization for SEO BrightonSEO April 2023 Patrick Stox
Canonicalization for SEO BrightonSEO April 2023 Patrick StoxAhrefs
 
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...Luis
 
How to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat Shah
How to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat ShahHow to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat Shah
How to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat ShahDaytodayebay
 
MeasureFest 2021: Interactive Core Web Vitals In Data Studio
MeasureFest 2021: Interactive Core Web Vitals In Data StudioMeasureFest 2021: Interactive Core Web Vitals In Data Studio
MeasureFest 2021: Interactive Core Web Vitals In Data StudioLazarinaStoyanova
 
BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...
BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...
BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...Levi Williams-Clucas
 
How to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptxHow to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptxQuibble
 
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...Louise Ali
 
How to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdf
How to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdfHow to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdf
How to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdfAS Marketing
 
Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023Nitin Manchanda
 
Extreme Makeover: Site Architecture Edition
Extreme Makeover: Site Architecture EditionExtreme Makeover: Site Architecture Edition
Extreme Makeover: Site Architecture EditionKavi Kardos
 

Was ist angesagt? (20)

How to Generate Content that Builds it's Own Links
How to Generate Content that Builds it's Own LinksHow to Generate Content that Builds it's Own Links
How to Generate Content that Builds it's Own Links
 
Fully Automated Link Building - Brighton SEO.pdf
Fully Automated Link Building - Brighton SEO.pdfFully Automated Link Building - Brighton SEO.pdf
Fully Automated Link Building - Brighton SEO.pdf
 
Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...
Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...
Brighton SEO Apr23 - Showing The Value of Digital PR beyond coverage and link...
 
BrightonSEO-Pres.pdf
BrightonSEO-Pres.pdfBrightonSEO-Pres.pdf
BrightonSEO-Pres.pdf
 
Carlos Meza BrightonSEO 2023 Is content king in modern SEO.pptx
Carlos Meza BrightonSEO 2023 Is content king in modern SEO.pptxCarlos Meza BrightonSEO 2023 Is content king in modern SEO.pptx
Carlos Meza BrightonSEO 2023 Is content king in modern SEO.pptx
 
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
 
HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO Apri...
HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO  Apri...HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO  Apri...
HELP! I've Been Hit By An Algorithm Update - Jess Maloney - BrightonSEO Apri...
 
Crawl Budget: Everything you Need to Know
Crawl Budget: Everything you Need to KnowCrawl Budget: Everything you Need to Know
Crawl Budget: Everything you Need to Know
 
PIKAC! Un moderno framework SEO (a prova di algoritmo)
PIKAC! Un moderno framework SEO (a prova di algoritmo)PIKAC! Un moderno framework SEO (a prova di algoritmo)
PIKAC! Un moderno framework SEO (a prova di algoritmo)
 
Using Search Intent in our Link Building Efforts
Using Search Intent in our Link Building EffortsUsing Search Intent in our Link Building Efforts
Using Search Intent in our Link Building Efforts
 
Canonicalization for SEO BrightonSEO April 2023 Patrick Stox
Canonicalization for SEO BrightonSEO April 2023 Patrick StoxCanonicalization for SEO BrightonSEO April 2023 Patrick Stox
Canonicalization for SEO BrightonSEO April 2023 Patrick Stox
 
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
 
How to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat Shah
How to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat ShahHow to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat Shah
How to launch a NEW product successfully on Amazon | BrightonSEO | Prabhat Shah
 
MeasureFest 2021: Interactive Core Web Vitals In Data Studio
MeasureFest 2021: Interactive Core Web Vitals In Data StudioMeasureFest 2021: Interactive Core Web Vitals In Data Studio
MeasureFest 2021: Interactive Core Web Vitals In Data Studio
 
BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...
BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...
BrightonSEO slide deck Oct 2022 - Levi Williams-Clucas - Review Generation an...
 
How to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptxHow to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptx
 
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
 
How to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdf
How to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdfHow to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdf
How to Combat SERP Volatility - Adriana Stein - BrightonSEO Slides 2023pdf
 
Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023
 
Extreme Makeover: Site Architecture Edition
Extreme Makeover: Site Architecture EditionExtreme Makeover: Site Architecture Edition
Extreme Makeover: Site Architecture Edition
 

Ähnlich wie Smxl milan 2019 - Apps script for SEO

Dynamic Rendering - is this really an SEO silver bullet? SMX WEST
Dynamic Rendering - is this really an SEO silver bullet? SMX WESTDynamic Rendering - is this really an SEO silver bullet? SMX WEST
Dynamic Rendering - is this really an SEO silver bullet? SMX WESTOnely
 
The SEO Justice League: 5 Pillars Worthy of a Great SEO Strategy
The SEO Justice League: 5 Pillars Worthy of a Great SEO StrategyThe SEO Justice League: 5 Pillars Worthy of a Great SEO Strategy
The SEO Justice League: 5 Pillars Worthy of a Great SEO StrategyGrant Simmons
 
Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...
Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...
Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...DeepCrawl
 
Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?Simo Ahava
 
Max Prin - MnSearch Summit 2018 - SEO for the Current Mobile Landscape
Max Prin - MnSearch Summit 2018 - SEO for the Current Mobile LandscapeMax Prin - MnSearch Summit 2018 - SEO for the Current Mobile Landscape
Max Prin - MnSearch Summit 2018 - SEO for the Current Mobile LandscapeMax Prin
 
Technical SEO for WordPress - 2019 edition
Technical SEO for WordPress - 2019 editionTechnical SEO for WordPress - 2019 edition
Technical SEO for WordPress - 2019 editionOtto Kekäläinen
 
Google Tag Manager Crash Course | MnSummit
Google Tag Manager Crash Course | MnSummitGoogle Tag Manager Crash Course | MnSummit
Google Tag Manager Crash Course | MnSummitMike Arnesen
 
BrightonSEO - How to use XPath with eCommerce Websites
BrightonSEO - How to use XPath with eCommerce WebsitesBrightonSEO - How to use XPath with eCommerce Websites
BrightonSEO - How to use XPath with eCommerce WebsitesJanet Plumpton
 
Data Studio for SEOs - Pint-sized Marketing Meetup 2019
Data Studio for SEOs - Pint-sized Marketing Meetup 2019Data Studio for SEOs - Pint-sized Marketing Meetup 2019
Data Studio for SEOs - Pint-sized Marketing Meetup 2019DeepCrawl
 
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
 
Welcome to a new reality - DeepCrawl Webinar 2018
Welcome to a new reality - DeepCrawl Webinar 2018Welcome to a new reality - DeepCrawl Webinar 2018
Welcome to a new reality - DeepCrawl Webinar 2018Bastian Grimm
 
Advanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul Shapiro
Advanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul ShapiroAdvanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul Shapiro
Advanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul ShapiroSearch Marketing Expo - SMX
 
SEO in 2019: The Latest Trends and Changes in Search Engine Optimization
SEO in 2019: The Latest Trends and Changes in Search Engine OptimizationSEO in 2019: The Latest Trends and Changes in Search Engine Optimization
SEO in 2019: The Latest Trends and Changes in Search Engine OptimizationPam Ann Marketing
 
Survive and Take Advantage of SEO Changes in 2019 - WordCamp Hamilton
Survive and Take Advantage of SEO Changes in 2019 - WordCamp HamiltonSurvive and Take Advantage of SEO Changes in 2019 - WordCamp Hamilton
Survive and Take Advantage of SEO Changes in 2019 - WordCamp HamiltonPaul Thompson
 
Google Cloud: Next'19 Extended Hanoi
Google Cloud: Next'19 Extended HanoiGoogle Cloud: Next'19 Extended Hanoi
Google Cloud: Next'19 Extended HanoiGCPUserGroupVietnam
 
Search Marketer's Toolkit for Google Tag Manager and Google Analytics
Search Marketer's Toolkit for Google Tag Manager and Google AnalyticsSearch Marketer's Toolkit for Google Tag Manager and Google Analytics
Search Marketer's Toolkit for Google Tag Manager and Google AnalyticsSimo Ahava
 
AMP - SMX München 2018
AMP - SMX München 2018AMP - SMX München 2018
AMP - SMX München 2018Bastian Grimm
 
AMP for Enterprises - SMX West - Patrick Stox
AMP for Enterprises - SMX West - Patrick StoxAMP for Enterprises - SMX West - Patrick Stox
AMP for Enterprises - SMX West - Patrick Stoxpatrickstox
 

Ähnlich wie Smxl milan 2019 - Apps script for SEO (20)

Dynamic Rendering - is this really an SEO silver bullet? SMX WEST
Dynamic Rendering - is this really an SEO silver bullet? SMX WESTDynamic Rendering - is this really an SEO silver bullet? SMX WEST
Dynamic Rendering - is this really an SEO silver bullet? SMX WEST
 
The SEO Justice League: 5 Pillars Worthy of a Great SEO Strategy
The SEO Justice League: 5 Pillars Worthy of a Great SEO StrategyThe SEO Justice League: 5 Pillars Worthy of a Great SEO Strategy
The SEO Justice League: 5 Pillars Worthy of a Great SEO Strategy
 
Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...
Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...
Efficient AF: Automating SEO Reporting With Google Data Studio - Sam Marsden,...
 
Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?Google Tag Manager - 5 years. What have we learned?
Google Tag Manager - 5 years. What have we learned?
 
MnSearch Summit 2018 - Max Prin – Technical SEO Tactics for the Current Mobil...
MnSearch Summit 2018 - Max Prin – Technical SEO Tactics for the Current Mobil...MnSearch Summit 2018 - Max Prin – Technical SEO Tactics for the Current Mobil...
MnSearch Summit 2018 - Max Prin – Technical SEO Tactics for the Current Mobil...
 
Max Prin - MnSearch Summit 2018 - SEO for the Current Mobile Landscape
Max Prin - MnSearch Summit 2018 - SEO for the Current Mobile LandscapeMax Prin - MnSearch Summit 2018 - SEO for the Current Mobile Landscape
Max Prin - MnSearch Summit 2018 - SEO for the Current Mobile Landscape
 
Technical SEO for WordPress - 2019 edition
Technical SEO for WordPress - 2019 editionTechnical SEO for WordPress - 2019 edition
Technical SEO for WordPress - 2019 edition
 
Google Tag Manager: Ultimate Crash Course - 2017 MnSearch Summit
Google Tag Manager: Ultimate Crash Course - 2017 MnSearch SummitGoogle Tag Manager: Ultimate Crash Course - 2017 MnSearch Summit
Google Tag Manager: Ultimate Crash Course - 2017 MnSearch Summit
 
Google Tag Manager Crash Course | MnSummit
Google Tag Manager Crash Course | MnSummitGoogle Tag Manager Crash Course | MnSummit
Google Tag Manager Crash Course | MnSummit
 
BrightonSEO - How to use XPath with eCommerce Websites
BrightonSEO - How to use XPath with eCommerce WebsitesBrightonSEO - How to use XPath with eCommerce Websites
BrightonSEO - How to use XPath with eCommerce Websites
 
Data Studio for SEOs - Pint-sized Marketing Meetup 2019
Data Studio for SEOs - Pint-sized Marketing Meetup 2019Data Studio for SEOs - Pint-sized Marketing Meetup 2019
Data Studio for SEOs - Pint-sized Marketing Meetup 2019
 
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 - ...
 
Welcome to a new reality - DeepCrawl Webinar 2018
Welcome to a new reality - DeepCrawl Webinar 2018Welcome to a new reality - DeepCrawl Webinar 2018
Welcome to a new reality - DeepCrawl Webinar 2018
 
Advanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul Shapiro
Advanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul ShapiroAdvanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul Shapiro
Advanced Tips, Tricks, & Tools for Conquering AMP Problems Today By Paul Shapiro
 
SEO in 2019: The Latest Trends and Changes in Search Engine Optimization
SEO in 2019: The Latest Trends and Changes in Search Engine OptimizationSEO in 2019: The Latest Trends and Changes in Search Engine Optimization
SEO in 2019: The Latest Trends and Changes in Search Engine Optimization
 
Survive and Take Advantage of SEO Changes in 2019 - WordCamp Hamilton
Survive and Take Advantage of SEO Changes in 2019 - WordCamp HamiltonSurvive and Take Advantage of SEO Changes in 2019 - WordCamp Hamilton
Survive and Take Advantage of SEO Changes in 2019 - WordCamp Hamilton
 
Google Cloud: Next'19 Extended Hanoi
Google Cloud: Next'19 Extended HanoiGoogle Cloud: Next'19 Extended Hanoi
Google Cloud: Next'19 Extended Hanoi
 
Search Marketer's Toolkit for Google Tag Manager and Google Analytics
Search Marketer's Toolkit for Google Tag Manager and Google AnalyticsSearch Marketer's Toolkit for Google Tag Manager and Google Analytics
Search Marketer's Toolkit for Google Tag Manager and Google Analytics
 
AMP - SMX München 2018
AMP - SMX München 2018AMP - SMX München 2018
AMP - SMX München 2018
 
AMP for Enterprises - SMX West - Patrick Stox
AMP for Enterprises - SMX West - Patrick StoxAMP for Enterprises - SMX West - Patrick Stox
AMP for Enterprises - SMX West - Patrick Stox
 

Kürzlich hochgeladen

CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfBalamuruganV28
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Erbil Polytechnic University
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating SystemRashmi Bhat
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxsiddharthjain2303
 
Immutable Image-Based Operating Systems - EW2024.pdf
Immutable Image-Based Operating Systems - EW2024.pdfImmutable Image-Based Operating Systems - EW2024.pdf
Immutable Image-Based Operating Systems - EW2024.pdfDrew Moseley
 
Novel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending ActuatorsNovel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending ActuatorsResearcher Researcher
 
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...Stork
 
Python Programming for basic beginners.pptx
Python Programming for basic beginners.pptxPython Programming for basic beginners.pptx
Python Programming for basic beginners.pptxmohitesoham12
 
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithmComputer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithmDeepika Walanjkar
 
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.pptROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.pptJohnWilliam111370
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.elesangwon
 
TEST CASE GENERATION GENERATION BLOCK BOX APPROACH
TEST CASE GENERATION GENERATION BLOCK BOX APPROACHTEST CASE GENERATION GENERATION BLOCK BOX APPROACH
TEST CASE GENERATION GENERATION BLOCK BOX APPROACHSneha Padhiar
 
Secure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech LabsSecure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech Labsamber724300
 
A brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision ProA brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision ProRay Yuan Liu
 
Katarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School CourseKatarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School Coursebim.edu.pl
 
SOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATIONSOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATIONSneha Padhiar
 
Cost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionCost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionSneha Padhiar
 
KCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosKCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosVictor Morales
 

Kürzlich hochgeladen (20)

CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdf
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating System
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptx
 
Immutable Image-Based Operating Systems - EW2024.pdf
Immutable Image-Based Operating Systems - EW2024.pdfImmutable Image-Based Operating Systems - EW2024.pdf
Immutable Image-Based Operating Systems - EW2024.pdf
 
Novel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending ActuatorsNovel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending Actuators
 
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
 
Python Programming for basic beginners.pptx
Python Programming for basic beginners.pptxPython Programming for basic beginners.pptx
Python Programming for basic beginners.pptx
 
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithmComputer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithm
 
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.pptROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
 
TEST CASE GENERATION GENERATION BLOCK BOX APPROACH
TEST CASE GENERATION GENERATION BLOCK BOX APPROACHTEST CASE GENERATION GENERATION BLOCK BOX APPROACH
TEST CASE GENERATION GENERATION BLOCK BOX APPROACH
 
Secure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech LabsSecure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech Labs
 
A brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision ProA brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision Pro
 
Katarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School CourseKatarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School Course
 
SOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATIONSOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATION
 
Cost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionCost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based question
 
KCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosKCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitos
 

Smxl milan 2019 - Apps script for SEO