- 3d-Skin-Layers [1.10.2] by tr7zw
- AAAParticles [1.20.1-1.4.12]
- AE2 + Mouse Tweaks Fix [2.0.0+1.20.1+fabric] by unilock
- AE2 EMI Crafting Integration [1.3.1] by roridev
- AE2WTLib [15.2.1-fabric] by mari_023, Ridanisaurus
- Accessories [1.0.0-beta.48+1.20.1] by Blodhgarm, chyzman, Dr.Zeal
- Accessories Trinkets Compat Layer [3.8.1+beta.14] by Blodhgarm
- Ad Astra [1.15.20] by Alex Nijjar
- Ad Astra Cable Fix [1.0.0] by Antigravity
- Ad Astra: Giselle Addon [6.19] by gisellevonbingen
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
| ``` | |
| remove npm:@mariozechner/pi-coding-agent@0.49.3 ? All | |
| Dotfiles on git master [!?] took 14s | |
| > mise ls | grep coding | |
| Dotfiles on git master [!?] | |
| x which node | |
| ~/.local/share/mise/installs/node/24.11.1/bin/node |
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 | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| DOCKER_IMAGE_NAME="${DOCKER_IMAGE_NAME:-opencode-builder}" | |
| DOCKER_BASE_IMAGE="${DOCKER_BASE_IMAGE:-fedora:latest}" | |
| # Display usage | |
| usage() { |
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
| 17:54:25 Dedicated host created. | |
| 17:54:25 [Inputs] Loading inputs default "bin/constants.xml" | |
| 17:54:25 [Inputs] Loading inputs default "bin/specific.xml" | |
| 17:54:25 [Inputs] Loading inputs cfg "/home/zenobius/.local/share/DayZ Other Profiles/Server\Server.core.xml" | |
| 17:54:25 [Inputs] Exporting inputs cfg "/home/zenobius/.local/share/DayZ Other Profiles/Server\Server.core.xml" | |
| 17:54:28 BattlEye Server: Initialized (v1.219, DayZ 1.28.160123) | |
| [S_API] SteamAPI_Init(): Loaded local 'steamclient.so' OK. | |
| CAppInfoCacheReadFromDiskThread took 4 milliseconds to initialize | |
| Setting breakpad minidump AppID = 221100 | |
| SteamInternal_SetMinidumpSteamID: Caching Steam ID: 76561197960265728 [API loaded no] |
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 | |
| find_eslint_config() { | |
| local dir | |
| dir="$1" | |
| while [ "$dir" != "/" ]; do | |
| if [ -f "$dir/eslint.config.cjs" ]; then |
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 | |
| # set errors to fail the script | |
| set -e | |
| function require_arg() { | |
| if [[ -z "${1}" ]]; then | |
| echo "${2} is required." | |
| exit 1 | |
| fi |
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 pwsh | |
| function List-AvailableDistros { | |
| # List available WSL distros and only include first column | |
| $distroList = wsl --list --online | Where-Object { $_ -ne "" } | Select-Object -Skip 3 | ForEach-Object { $_.Split(" ")[0] } | Where-Object { $_ -ne "" } | |
| if ($LASTEXITCODE -ne 0) { | |
| Write-Error "Failed to list available WSL distros." | |
| exit 1 | |
| } |
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 | |
| # read the JSON input from stdin | |
| inputs=$(cat); | |
| # pick the paths_released from the JSON input and turn it into a bash array | |
| paths_array=$(jq -r '.paths_released | fromjson | .[]' <<< "$inputs") | |
| for release in $paths_array; do | |
| echo "Creating release branch for $release" |
NewerOlder