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 -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.13,<3.14" | |
| # dependencies = [ | |
| # "httpx>=0.28.1", | |
| # "python-decouple>=3.8", | |
| # "sh>=2.2.2", | |
| # ] | |
| # [tool.uv] |
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
| { | |
| "description": "Remap media keys for YouTube Music Desktop (ytmdesktop)", | |
| "manipulators": [ | |
| { | |
| "from": { "consumer_key_code": "play_or_pause" }, | |
| "to": [ | |
| { | |
| "key_code": "p", | |
| "modifiers": ["command", "option", "shift"] | |
| } |
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 | |
| # shellcheck disable=SC2046,SC2164,SC2317 | |
| # Global variables | |
| logged_in_user="" | |
| logged_in_home="" | |
| repo_dir="" | |
| output_dir="" | |
| progress_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
| # Script: nvidia-error43-fixer.ps1 | |
| # Author: (C) 2018-2021 nando4eva@ymail.com (Converted to PowerShell by @pythoninthegrass) | |
| # Homepage: https://egpu.io/nvidia-error43-fixer | |
| param( | |
| [switch]$Force | |
| ) | |
| # Check if running as administrator | |
| function Test-Administrator { |
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
| theme "tokyo-night" | |
| default_layout "compact" | |
| on_force_close "quit" |
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
| [env] | |
| CFLAGS = "-I/opt/homebrew/include" | |
| LDFLAGS = "-L/opt/homebrew/lib" | |
| [settings] | |
| disable_backends = ["dotnet"] | |
| idiomatic_version_file_enable_tools = [] | |
| [settings.pipx] | |
| uvx = true |
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
| # BookStack API Configuration | |
| BOOKSTACK_BASE_URL= | |
| BOOKSTACK_API_TOKEN= | |
| BOOKSTACK_TIMEOUT=30000 | |
| # Server Configuration | |
| SERVER_NAME=bookstack-mcp-server | |
| SERVER_VERSION=1.0.0 | |
| SERVER_PORT=3000 |
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
| Lbl G | |
| ClrHome | |
| Disp " J.M.'S DRUGWAR"," SIMULATION",""," VERSION 2.00",""," JUST SAY NO." | |
| 2000→Z | |
| 5000→Y | |
| 0→V | |
| 100→K | |
| 1→B | |
| 2→N | |
| 0→I |
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
| #include <iostream> | |
| #include <vector> | |
| #include <map> | |
| #include <memory> | |
| enum class Objects { | |
| Acid, | |
| Weed, | |
| Speed, | |
| Cocaine, |
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
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "net/http" | |
| "strings" | |
| "github.com/kataras/iris/v12" | |
| "github.com/thepolyglotdeveloper/graphql" |