Skip to content

Instantly share code, notes, and snippets.

@colinrizzman
colinrizzman / failed_prompts.txt
Last active November 7, 2025 15:15
Failed prompt ideas for LLMs.
-
--
---
----
# IMMIGRATION
----
the following metrics represent immigration in a country in a 0-9 scale, 0 is always low
high volume immigration = 9
@colinrizzman
colinrizzman / bashllama.txt
Last active November 6, 2025 13:24
Bourne Again SHell (Bash) functions to streamline the use of llama.cpp
install_llamacpp()
{
sudo apt install -y build-essential git cmake ninja-build pkg-config vulkan-tools mesa-vulkan-drivers libvulkan-dev
sudo apt install -y glslc glslang-tools spirv-tools vulkan-tools
cd $HOME
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build -DGGML_VULKAN=ON -DLLAMA_CURL=OFF -DCMAKE_BUILD_TYPE=Release -G Ninja
cmake --build build -j
}