Articles

Diff date usage in Python

Diff date usage in Python

import difflib import pandas as pd from datetime import date date = date.today() today = date.strftime("%Y-%m-%d") document = today + "-diff" document_txt = "data/" + document + ".txt" document_csv =...

Diff date usage in Python

import difflib import pandas as pd from datetime import date date = date.today() today = date.strftime("%Y-%m-%d") document = today + "-diff" document_txt = "data/" + document + ".txt" document_csv =...

GoogleBot what does it means?

GoogleBot what does it means?

Googlebot or Google bot is the system that crawl your website and let Google check and index your URLs.

GoogleBot what does it means?

Googlebot or Google bot is the system that crawl your website and let Google check and index your URLs.

Skipping last column in R while `read.csv`

Skipping last column in R while `read.csv`

Skipping last column in R while `read.csv` should be done in two steps data <- read.csv("test12.csv") data data[,-ncol(data)] That is when you don't know the number of columns. If you...

Skipping last column in R while `read.csv`

Skipping last column in R while `read.csv` should be done in two steps data <- read.csv("test12.csv") data data[,-ncol(data)] That is when you don't know the number of columns. If you...

Sitemap (HTML & XML)

Sitemap (HTML & XML)

Understanding XML and HTML Sitemaps: A Comprehensive Guide What is a Sitemap? The sitemap corresponds to the layout of your website, listing its pages. It is a technical document, written...

Sitemap (HTML & XML)

Understanding XML and HTML Sitemaps: A Comprehensive Guide What is a Sitemap? The sitemap corresponds to the layout of your website, listing its pages. It is a technical document, written...