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
@echo off | |
setlocal | |
REM List WSL distributions and prompt user to pick one | |
wsl.exe --list | |
set /p distribution="Your WSL distributions are listed above. Enter the name of the distribution to back up: " | |
REM Prompt the user for backup file name | |
set /p outputFile="Enter the path and name of your WSL export file (e.g., E:\wsl-backups\backup.tar): " |
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
[data-testid="PayWallOverlay"] { | |
display: none; | |
} | |
* { | |
filter: none !important; | |
} |
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
// https://poestories.com/read/goldbug | |
const cipherText = `53‡‡†305))6*;4826)4‡.)4‡);806*;48†8¶60))85;1‡(;:‡*8†83(88)5*†;46(;88*96*?;8)*‡(;485);5*†2:*‡(;4956*2(5*-4)8¶8*;4069285);)6†8)4‡‡;1(‡9;48081;8:8‡1;48†85;4)485†528806*81(‡9;48;(88;4(‡?34;48)4‡;161;:188;‡?;`; | |
const getFrequencyTable = (list) => { | |
return list.reduce((table, element) => { | |
if (!table[element]) { | |
table[element] = { | |
count: 0, | |
percentage: 0, | |
}; |
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
let receipts = [ | |
{ name: "Ximena", paid: 45 }, | |
{ name: "Clara", paid: 130 }, | |
{ name: "Ximena", paid: 100 }, | |
{ name: "Cassidy", paid: 140 }, | |
{ name: "Cassidy", paid: 76 }, | |
{ name: "Clara", paid: 29 }, | |
{ name: "Ximena", paid: 20 }, | |
]; |