Skip to content

Instantly share code, notes, and snippets.

@Bluefissure
Bluefissure / pluginmaster_
Last active February 18, 2022 23:04
Pluginmaster without cloud function and with accelerate
[
{
"Author": "Haplo064",
"Name": "Chat Bubbles",
"Description": "\u4f7f\u7528\u6e38\u620f\u5185\u7f6e\u7684\u53d1\u8a00\u6c14\u6ce1\u6765\u5c55\u793a\u804a\u5929\u5185\u5bb9",
"InternalName": "ChatBubbles",
"AssemblyVersion": "1.3.2.0",
"RepoUrl": "https://github.com/Haplo064/ChatBubbles",
"ApplicableVersion": "any",
"Tags": [
@Bluefissure
Bluefissure / chinese_locale_enabler.sh
Last active May 13, 2023 08:13 — forked from XargonWan/japanese_locale_enabler.sh
Enable Japanese locale on Steam Deck
#!/bin/bash
# This script is enabling (uncommenting) the Chinese&Japanese locale and regenerates them
sudo steamos-readonly disable
sudo pacman-key --init
sudo pacman-key --populate archlinux
sudo pacman -S glibc
sudo sed -i "s%#ja_JP.UTF-8 UTF-8%ja_JP.UTF-8 UTF-8%" /etc/locale.gen
sudo sed -i "s%#zh_CN.UTF-8 UTF-8%zh_CN.UTF-8 UTF-8%" /etc/locale.gen
@Bluefissure
Bluefissure / pal-scripts.md
Last active April 3, 2025 02:48
Some Useful PalWorld Scripts

Pal World Scripts (Linux & Bash)

Remember to replace the folder directory, <AdminPassword>, <RCONPort> to your own.

Also, you need to use crontab to schedule the following scripts if necessary.

Supervisor

I'm using supervisor to restart the service, the example config is as:

@Bluefissure
Bluefissure / fix.py
Last active March 1, 2025 18:28
Fix broken palworld save caused by existing guild & too many capture logs
# author: Bluefissure
# License: MIT License
# Description: Fixes Palworld brokwn save files corrupted by someone existing the guild
# Based on the work of https://github.com/cheahjs/palworld-save-tools/releases/tag/v0.13.0
import argparse
import codecs
import os
import json
from lib.gvas import GvasFile
@Bluefissure
Bluefissure / xpath_change_notifier.js
Last active February 10, 2025 05:54
XPath Change Notifier
// ==UserScript==
// @name XPath Change Notifier
// @namespace http://tampermonkey.net/
// @version 1.4
// @description 每分钟检测指定 XPath 元素是否发生变化
// @author Bluefissure
// @match https://us-store.msi.com/*
// @match https://www.bestbuy.com/site/*
// @grant GM_notification
// @grant GM_setValue