Articles
Leverage the similar web API on R
A few years back I reused some of Vincent Terrasi code on R to look for URL comparison on Similar web. What my first version of the code looked like...
Leverage the similar web API on R
A few years back I reused some of Vincent Terrasi code on R to look for URL comparison on Similar web. What my first version of the code looked like...
Interlinking, what is it, how does it works?
Through the years, doing SEO work and hanging out on the Internet I became quite Internal Linking Savvy -- I am far from perfect for sure, but I can share...
Interlinking, what is it, how does it works?
Through the years, doing SEO work and hanging out on the Internet I became quite Internal Linking Savvy -- I am far from perfect for sure, but I can share...
Find missing date data with Python
How to leverage Python to fill-out the missing dates on a file? Let's see that together!
Find missing date data with Python
How to leverage Python to fill-out the missing dates on a file? Let's see that together!
How to change tag style in bulk? For an experiment
Not so long ago, I faced an issue while wanted to test a colleague idea: how can we test on which links user are more willing to click. TL;DR If my...
How to change tag style in bulk? For an experiment
Not so long ago, I faced an issue while wanted to test a colleague idea: how can we test on which links user are more willing to click. TL;DR If my...
How to read a .parquet file in R?
To read a .parquet file with R, you can use the arrow package, which provides a way to read and write data in the Arrow format, including Parquet. For you,...
How to read a .parquet file in R?
To read a .parquet file with R, you can use the arrow package, which provides a way to read and write data in the Arrow format, including Parquet. For you,...
Find or extract the handle (last part of a URL)...
This is the REGEX: [^\/]+$ you would like to use to extract the last part of a URL also known as the handle I often use this to compare URLs...
Find or extract the handle (last part of a URL)...
This is the REGEX: [^\/]+$ you would like to use to extract the last part of a URL also known as the handle I often use this to compare URLs...