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
| { pkgs ? import <nixpkgs> { } }: | |
| let | |
| ld_library_path = pkgs.lib.makeLibraryPath (with pkgs; [ | |
| stdenv.cc.cc # for greenlet support | |
| ]); | |
| in | |
| pkgs.symlinkJoin { | |
| name = "dev-env-python311-cc-libpq"; | |
| paths = with pkgs; [ python311 postgresql ]; | |
| nativeBuildInputs = [ pkgs.makeWrapper ]; |
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
| { | |
| "name": "minecraft-yatopia", | |
| "display": "Yatopia - Minecraft", | |
| "type": "minecraft-java", | |
| "install": [ | |
| { | |
| "files": [ | |
| "https://api.yatopiamc.org/v2/build/${build}/download?branch=ver/${version}" | |
| ], | |
| "type": "download" |
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
| ##Regex | |
| `regex_patern = r'^\/(command)+(\@username_of_bot\w*(_\w+)*)?([ \f\n\r\t\v\u00A0\u2028\u2029].*)?$'` | |
| Commands like that will handle | |
| /command | |
| /command arg1 arg2 ... | |
| /command@username_of_bot | |
| /command@username_of_bot arg1 arg2 ... | |
| but | |
| /command@other_bot |
NewerOlder