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 | |
# Modular Python installer with Docker fallback | |
set -e | |
# Help function | |
halp() { | |
cat << EOF | |
Usage: $(basename "$0") [version] |
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 | |
# SOURCE: https://github.com/Lanjelin/unraid/blob/main/unraid-brew/README.md | |
# Where we store the actual bins -- should be on ssd/nvme | |
# Use drive directly, and not via /mnt/user/ | |
# Makes a huge impact on performance | |
UNRAID_BREW_PATH=/mnt/cache/appdata/linuxbrew | |
UNRAID_BASH=0 | |
UNRAID_ZSH=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 | |
export PUSHOVER_USER_KEY="<your_user_key>" | |
export PUSHOVER_APP_TOKEN="<your_app_token>" | |
curl -s \ | |
--form-string "token=$PUSHOVER_APP_TOKEN" \ | |
--form-string "user=$PUSHOVER_USER_KEY" \ | |
--form-string "message=Hello, world!" \ | |
https://api.pushover.net/1/messages.json |
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" | |
# 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 [email protected] (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
[settings] | |
disable_backends = ["dotnet"] | |
[settings.pipx] | |
uvx = true | |
[settings.python] | |
compile = true | |
[tools] |
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
# EditorConfig is awesome: https://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines and whitespace cleanup | |
[*] | |
end_of_line = lf | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
NewerOlder