I couldn't find instructions that were 100% complete, so I put this together.
These instructions worked fine for me. Follow each step carefully.
DO NOT create the VM by choosing Quick Create in Hyper-V Manager. Follow these instructions exactly.
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"alwaysShowTabs": true, | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"initialCols": 120, | |
"initialRows": 40, | |
"keybindings": [ | |
{ |
#!/bin/bash | |
set -e | |
cecho() { | |
color='' | |
reset=$(tput sgr0) | |
case "$1" in | |
bk) color=$(tput setaf 0) ;; | |
rd) color=$(tput setaf 1) ;; | |
gn) color=$(tput setaf 2) ;; |
# (Get-Clipboard) -split "`n" | .\Write-SpotifyTrackInfo.ps1 | Format-List | |
param( | |
[Parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)] | |
[String[]]$URIs | |
) | |
process { | |
$regex = '<title>(?<Title>.+).* - .*by (?<Artist>.+) \| Spotify<\/title>' | |
foreach ($uri in $URIs) { |
I couldn't find instructions that were 100% complete, so I put this together.
These instructions worked fine for me. Follow each step carefully.
DO NOT create the VM by choosing Quick Create in Hyper-V Manager. Follow these instructions exactly.
#!/bin/bash | |
set -e | |
echo 'Enter Plex update URL:' | |
echo 'e.g. https://plex.tv/downloads/latest/5?channel=16&build=linux-x86_64&distro=debian...' | |
read -r url | |
wget --output-document=plex.deb --continue "${url}" |
#!/bin/bash | |
set -e | |
pihole -v | |
pihole -up |
@echo off | |
setlocal enabledelayedexpansion | |
REM Convert mame folder ini file to CSV rom=value format | |
if "%~1" equ "" ( | |
echo Need ini filename. | |
goto :eof | |
) | |
echo "rom","value" | |
set section= |
<# | |
.SYNOPSIS | |
List installed PinHP ROMs, suitable for filtering. | |
.NOTES | |
Place this in root of USB. | |
Prerequisite: advmame106.xml file from "pinHP config files" at https://pinhp.github.io/docs/download.html | |
Specify location with "-DatFile". |
goto(){ | |
# Linux | |
# Save this script as "aria-torrent-dl.sh" | |
# sudo apt install aria2 --yes | |
aria2c --continue=true --max-concurrent-downloads=5 --max-connection-per-server=4 --min-split-size=10M --split=5 --disable-ipv6=true --seed-time=0 --summary-interval=0 --console-log-level=warn $1 | |
} | |
goto $@ | |
exit | |
:(){ |
@echo off | |
REM | |
REM Script to assist in downloading using yt-dlp | |
REM | |
REM Usage: | |
REM youtubedl.cmd {f,m,v,list-extractors} {video_url} | |
REM youtubedl.cmd update | |
REM | |
REM f = flac | |
REM m = mkv |