Skip to content

Instantly share code, notes, and snippets.

@git-er
git-er / README.md
Created January 11, 2024 17:07 — forked from nordineb/README.md
Clear Temporary Internet Files
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess <number>

The parameter is required and is derived from some combination of the following values, represented as a decimal number.

1    = Browsing History
2    = Cookies
4 = Temporary Internet Files
@git-er
git-er / dateFormats.R
Created April 21, 2021 21:17 — forked from mollietaylor/dateFormats.R
Date Formats in R
# importing dates:
dates <- c("05/27/84", "07/07/05")
betterDates <- as.Date(dates,
format = "%m/%d/%y") # here you put the format your dates are currently in
# it will output the ISO standard dates (%Y-%m-%d)
# or:
dates <- c("May 27 1984", "July 7 2005")
betterDates <- as.Date(dates,