Skip to content

Instantly share code, notes, and snippets.

View jakubmatej's full-sized avatar

Jakub Matej jakubmatej

  • Slovakia
View GitHub Profile
library(readxl)
library(curl)
library(tidyverse)
file = "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fhealthandsocialcare%2fconditionsanddiseases%2fdatasets%2fcoronaviruscovid19antibodydatafortheuk%2f2022/20220113covid19infectionsurveydatasets1.xlsx"
temp <- tempfile()
@jakubmatej
jakubmatej / robocopyFolderSync.ps1
Last active January 13, 2022 14:27
PowerShell - Sync folder by Robocopy command (with fancy animation)
# Sync folder by Robocopy mirror command (with fancy animation)
$sourcePath = 'C:\something'
$destinationPath = 'D:\something'
$notpressed = $true
$string = $srcPath
# Sync time interval
$timeIntervalSync = 10000
$animation=@(". ",".. ","... ",".... ",".....")