%%{init: {"flowchart": {"htmlLabels": false}} }%%
flowchart LR
subgraph LSP
subgraph lsp.install [Install language servers]
subgraph mason-pkg [Local to neovim]
mason.nvim
end
system-pkg["System
package managers"]
This file contains hidden or 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
#!/usr/bin/env bash | |
# A script that reencodes mkvs to a target filetype for uploading to discord | |
current_datetime=$(date +%Y-%m-%d_%H-%M-%S) | |
output_dir="discord-sized/$current_datetime" | |
if [[ ! -d "$output_dir" ]]; then | |
mkdir -p "$output_dir" | |
fi | |
reencoded_files=() |
This file contains hidden or 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
Param ( | |
[Parameter(Mandatory, HelpMessage = "Please provide a youtube-dl compatible link")] | |
[string]$URL | |
) | |
Param ( | |
[Parameter(Mandatory, HelpMessage = "Please provide a youtube-dl compatible link")] | |
[string]$URL | |
) | |
Param ( | |
[Parameter(Mandatory, HelpMessage = "Please provide a youtube-dl compatible link")] |