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
| { | |
| "base_dir": "llm/GGUF", | |
| "Qwen_model": { | |
| "Qwen3-4B-GGUF": { | |
| "author": "Qwen", | |
| "repo_name": "Qwen3-4B-GGUF", | |
| "repo_id": "Qwen/Qwen3-4B-GGUF", | |
| "model_files": [ | |
| "Qwen3-4B-Q4_K_M.gguf", | |
| "Qwen3-4B-Q5_0.gguf", |
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
| ###ZSH FUNCTION | |
| alias copyfile="catcopy" | |
| _CLIP_CMD="" | |
| # 1. Wayland | |
| if [[ -n "$WAYLAND_DISPLAY" ]] && (( $+commands[wl-copy] )); then | |
| _CLIP_CMD="wl-copy" | |
| # 2. X11 |
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 | |
| # ZSH Setup Installation Script | |
| # This script installs and configures a complete ZSH environment on a fresh machine | |
| set -e # Exit on error | |
| set -u # Treat unset variables as errors | |
| # Color codes for output | |
| RED='\033[0;31m' |
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/bash | |
| # ============================================================================= | |
| # vast.ai / ai-dock ComfyUI Provisioning Script | |
| # Compatible with: ghcr.io/ai-dock/comfyui:latest-cuda | |
| # Docs: https://github.com/ai-dock/comfyui | |
| # | |
| # USAGE: Set PROVISIONING_SCRIPT env var in vast.ai template to the raw URL | |
| # of this file (GitHub Gist raw or GitHub raw URL recommended). | |
| # | |
| # REQUIRED ENV VARS (set in vast.ai template): |
This file has been truncated, but you can view the full file.
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
| { | |
| "name": "AppTesters IPA Repo", | |
| "subtitle": "Biggest Updated Modified IPA Library for Sideloading - AppTesters.org", | |
| "description": "Welcome to my source! Here you'll find all of my apps.", | |
| "iconURL": "https://apptesters.org/apptesters-512x512.png", | |
| "website": "https://apptesters.org", | |
| "patreonURL": "https://patreon.com/altstudio", | |
| "tintColor": "#6156e2", | |
| "featuredApps": [], | |
| "headerURL": "https://i.imgur.com/nhHq9ly.png", |
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
| #!/data/data/com.termux/files/usr/bin/sh | |
| set -e | |
| OMZ="$HOME/.oh-my-zsh/custom/plugins" | |
| echo "[+] Creating plugin directory: $OMZ" | |
| mkdir -p "$OMZ" | |
| clone() { |
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/bash | |
| set -e | |
| # -------------------------------------------------- | |
| # Ultra-Fast Zsh Environment Installer for Servers | |
| # -------------------------------------------------- | |
| # Installs: | |
| # - Oh My Zsh (interactive) | |
| # - Powerlevel10k (instant prompt mode) | |
| # - Fast plugins: autosuggestions, completions, F-Syntax |