From 93bada3e4b723b9d4c7193bbdd6e9a95e2e61cea Mon Sep 17 00:00:00 2001 From: Kim Brian Ramberg Date: Sat, 27 Jun 2026 17:33:50 +0200 Subject: [PATCH] . --- ... helps AI agents and scripts find model weights on .url | 2 ++ ...n server with one command. Includes Ollama (LLM), A.url | 2 ++ ...xt server with speaker diarization and OpenAI-compa.url | 2 ++ Linux/expand_lvm_partition.md | 2 ++ Powershell/Speech/say.ps1 | 7 +++++-- 5 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 AI/alexziskind1-model-shelf- Model Shelf is a local-first model resolver that helps AI agents and scripts find model weights on .url create mode 100644 AI/hwdsl2-docker-ai-stack- Deploy a complete, self-hosted AI stack on your own server with one command. Includes Ollama (LLM), A.url create mode 100644 AI/hwdsl2-docker-whisper- Docker image for a self-hosted Whisper speech-to-text server with speaker diarization and OpenAI-compa.url diff --git a/AI/alexziskind1-model-shelf- Model Shelf is a local-first model resolver that helps AI agents and scripts find model weights on .url b/AI/alexziskind1-model-shelf- Model Shelf is a local-first model resolver that helps AI agents and scripts find model weights on .url new file mode 100644 index 00000000..a26242be --- /dev/null +++ b/AI/alexziskind1-model-shelf- Model Shelf is a local-first model resolver that helps AI agents and scripts find model weights on .url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://github.com/alexziskind1/model-shelf/tree/main diff --git a/AI/hwdsl2-docker-ai-stack- Deploy a complete, self-hosted AI stack on your own server with one command. Includes Ollama (LLM), A.url b/AI/hwdsl2-docker-ai-stack- Deploy a complete, self-hosted AI stack on your own server with one command. Includes Ollama (LLM), A.url new file mode 100644 index 00000000..a081291c --- /dev/null +++ b/AI/hwdsl2-docker-ai-stack- Deploy a complete, self-hosted AI stack on your own server with one command. Includes Ollama (LLM), A.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://github.com/hwdsl2/docker-ai-stack diff --git a/AI/hwdsl2-docker-whisper- Docker image for a self-hosted Whisper speech-to-text server with speaker diarization and OpenAI-compa.url b/AI/hwdsl2-docker-whisper- Docker image for a self-hosted Whisper speech-to-text server with speaker diarization and OpenAI-compa.url new file mode 100644 index 00000000..b9c907f2 --- /dev/null +++ b/AI/hwdsl2-docker-whisper- Docker image for a self-hosted Whisper speech-to-text server with speaker diarization and OpenAI-compa.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://github.com/hwdsl2/docker-whisper diff --git a/Linux/expand_lvm_partition.md b/Linux/expand_lvm_partition.md index 1babdb6f..36dccd4d 100644 --- a/Linux/expand_lvm_partition.md +++ b/Linux/expand_lvm_partition.md @@ -12,3 +12,5 @@ Then, extend the logical volume with and resize the filesystem using `` sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv `` to apply the changes. + +https://www.saturnme.com/how-to-extend-a-linux-vm-disk-on-proxmox-ve/ diff --git a/Powershell/Speech/say.ps1 b/Powershell/Speech/say.ps1 index dd7b0d12..a95d5b45 100644 --- a/Powershell/Speech/say.ps1 +++ b/Powershell/Speech/say.ps1 @@ -8,7 +8,7 @@ try { # Check for command-line arguments if (-not $args) { - Write-Error "Error: No text provided. Usage: .\speak.ps1 'Your Text Here'" + Write-Error "Error: No text provided. Usage: .\say.ps1 'Your Text Here'" exit 1 } @@ -20,8 +20,11 @@ $synth = New-Object System.Speech.Synthesis.SpeechSynthesizer try { #$synth.SelectVoice("Microsoft David Desktop") - $synth.SelectVoice("Microsoft Hazel Desktop") + #$synth.SelectVoice("Microsoft Hazel Desktop") #$synth.SelectVoice("Microsoft Zira Desktop") + $synth.SelectVoice("Microsoft Mark") + #$synth.SelectVoice("Microsoft George") + #$synth.SelectVoice("Microsoft Susan") # Speak the text $synth.Speak($text) #Write-Host "Text spoken successfully."