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
| // ==UserScript== | |
| // @name M-Team 余额 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-02-25 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://kp.m-team.cc/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=m-team.cc | |
| // @grant none | |
| // ==/UserScript== |
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
| export enum PBType { | |
| bool = 0, | |
| bytes = 1, | |
| double = 2, | |
| float = 3, | |
| int32 = 4, | |
| int64 = 5, | |
| string = 6, | |
| uint32 = 7, | |
| uint64 = 8, |
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
| # fish shell function to apply environment variables from a bash/sh script | |
| function apply_env --description "source a .sh script and apply its env changes to the current fish shell" | |
| argparse 'v/verbose' -- $argv | |
| or return | |
| # Check for input file | |
| if test -z "$argv[1]" | |
| echo "Usage: apply_env <path_to_script.sh>" | |
| return 1 | |
| end |
OlderNewer