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 | |
| # lcc - Local Claude Code launcher | |
| # Points Claude Code at a local LLM served by llama.cpp on your GB10 device | |
| # | |
| # Usage: | |
| # lcc <modelname> — launch Claude Code with the specified model | |
| # lcc <modelname> [args] — pass additional arguments to claude | |
| # lcc — show help/launch with model if one is available | |
| # | |
| # Prerequisites: |
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
| #!/bin/sh | |
| # Proxmox VE 9.1 - LanguageTool LXC creator and installer | |
| # Written by Adam Conway 2025 | |
| set -u | |
| # ============================================================================ | |
| # COLORS & OUTPUT HELPERS | |
| # ============================================================================ | |
| GN="$(printf '\033[0;32m')" YW="$(printf '\033[0;33m')" CY="$(printf '\033[0;36m')" |