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
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "MCP Servers Configuration", | |
| "type": "object", | |
| "required": ["mcpServers"], | |
| "additionalProperties": false, | |
| "properties": { | |
| "mcpServers": { | |
| "type": "object", | |
| "description": "Map of server names to their configuration", |
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
| services: | |
| llama.cpp: | |
| # 1. Use the ROCm image for AMD GPUs | |
| image: ghcr.io/ggml-org/llama.cpp:server-rocm | |
| environment: | |
| - LLAMA_ARG_JINJA=true | |
| - LLAMA_ARG_MCP_SERVERS_CONFIG=/config/mcp_config.json | |
| - LLAMA_ARG_HOST=0.0.0.0 | |
| - LLAMA_ARG_MODEL_PATH=/models | |
| - LLAMA_ARG_CORS_ORIGINS=* |
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 | |
| # Change keyboard layout to DE (german) | |
| sudo localectl set-keymap de | |
| # Set default to yes | |
| sudo sed -i '/\[main\]/a defaultyes=True' /etc/dnf/dnf.conf | |
| # Setting hostname | |
| read -p "Please enter new hostname (default: 'raspberry-pi'): " NEW_HOSTNAME |
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
| /** | |
| * mcfunctionToAnsi.ts | |
| * --------------------------------------------------------- | |
| * Wandelt mcfunction-Code in einen Discord-Codeblock mit | |
| * ANSI-Escape-Codes um (```ansi ... ```), damit Kommandos, | |
| * Selektoren, Strings, Zahlen etc. farbig hervorgehoben werden. | |
| * | |
| * Discord unterstützt ANSI-Farben nur innerhalb von | |
| * ```ansi | |
| * ... |
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
| <!DOCTYPE html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>modern-monaco ohne Bracket Colors</title> | |
| <style> | |
| html, body { | |
| margin: 0; |
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 | |
| if [ $# -ne 2 ]; then | |
| echo "Usage: $0 <source> <destination>" | |
| exit 1 | |
| fi | |
| DIRA="$1" | |
| DIRB="$2" |
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
| <!DOCTYPE html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Editor | Dependency Tree</title> | |
| <link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='3' r='2.5' fill='%232d5be3'/><circle cx='4' cy='14' r='2.5' fill='%232d5be3' opacity='.6'/><circle cx='16' cy='14' r='2.5' fill='%232d5be3' opacity='.6'/><line x1='10' y1='5.5' x2='4.8' y2='11.8' stroke='%232d5be3' stroke-width='1.5' opacity='.4'/><line x1='10' y1='5.5' x2='15.2' y2='11.8' stroke='%232d5be3' stroke-width='1.5' opacity='.4'/></svg>"> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap'); |
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: 'Build and Push Docker Image' | |
| description: | | |
| This workflow runs on every release. | |
| It builds and publishes a new Docker image and pushes that image to the GitHub Container Registry (ghcr.io) | |
| on: | |
| release: | |
| types: | |
| - created |
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
| import * as ansi from "jsr:@std/cli/unstable-ansi"; | |
| import {promptSecret} from "jsr:@std/cli/prompt-secret"; | |
| import {promptSelect} from "jsr:@std/cli/unstable-prompt-select"; | |
| import * as colors from "jsr:@std/fmt/colors"; | |
| function write(data : string) { | |
| Deno.stdout.write(new TextEncoder().encode(data)); | |
| } | |
| const address = prompt('Address (<management-server-host>:<management-server-port>):'); |
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
| /* | |
| Script for modding the "ESMART MIMOTO Professional" electric projector screen. Extends the functionality of the controller to integrate seamlessly into Home Assistant. | |
| */ | |
| #ifndef ZIGBEE_MODE_ED | |
| #error "Zigbee end device mode is not selected in Tools->Zigbee mode" | |
| #endif |
NewerOlder