graph LR;
A[Alice]-->|Hi Bob|B[Bob];
View alice-to-bob.md
View update-sync-exclude-list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# origin: https://github.com/nextcloud/desktop/blob/master/sync-exclude.lst | |
if [ ! -f "~/.config/Nextcloud/sync-exclude.lst" ]; then | |
SYNC_EXCLUDE=~/.config/Nextcloud/sync-exclude.lst | |
fi | |
if [ ! -f "~/.var/app/com.nextcloud.desktopclient.nextcloud/config/Nextcloud/sync-exclude.lst" ]; then | |
SYNC_EXCLUDE=~/.var/app/com.nextcloud.desktopclient.nextcloud/config/Nextcloud/sync-exclude.lst |
View Pull all git projects.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$gitUser = @( | |
"$Home\LocalDrive\GitHub", | |
"$Home\LocalDrive\GitLab", | |
"$Home\LocalDrive\GitHub_HaloCustomEdition", | |
"$Home\LocalDrive\GitHub_Hochschule-Luzern", | |
"$Home\LocalDrive\GitLab_Apoveda", | |
"$Home\LocalDrive\GitLab_Valora", | |
"$Home\LocalDrive\GitHub_Abilium", | |
"$Home\LocalDrive\GitHub_todo-md", | |
"$Home\LocalDrive\GitHub_Mint-System", |
View Backup to external drive.md
Backupt to external drive
robocopy C:\Users\janik\LocalDrive D:\LocalDrive /MIR /R:1 /W:0 /XD node_modules
robocopy C:\Users\janik\Nextcloud D:\Nextcloud /MIR /R:1 /W:0
robocopy C:\Users\janik\Nextcloud2 D:\Nextcloud2 /MIR /R:1 /W:0
robocopy C:\Users\janik\janikv.cloud D:\janikv.cloud /MIR /R:1 /W:0
View Garmin Connect Weight.md
Cookie
Get Weight
fetch('https://connect.garmin.com/modern/proxy/userprofile-service/userprofile/personal-information/weightWithOutbound/filterByDay?from=1477526400000&until=1509148800000&_=1511026934431').then((result) => {console.log(result)})
View Manually renew letsencrypt certificate.md
Clone the letsencrypt cli.
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
Request a new certificate for your domain manually.
View Split-FileNamesByYearMonth.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in *; do | |
echo $file; | |
yearmonth=$(echo $file | grep -o '[0-9][0-9][0-9][0-9]-[0-9][0-9]') | |
newfilename=$(echo $file | grep -o '[0-9][0-9]-[a-z].*.md$') | |
mkdir $yearmonth | |
mv $file $yearmonth/$newfilename | |
done |
View Collect-ImageMetadata.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function Get-FileMetaData { | |
Param([string[]]$folder) | |
foreach($sFolder in $folder) | |
{ | |
$a = 0 | |
$objShell = New-Object -ComObject Shell.Application | |
$objFolder = $objShell.namespace($sFolder) | |
foreach ($File in $objFolder.items()) | |
{ |
View map.geojson
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder