Palette Name | Palette Graphic | ID Chest | ID Overworld |
---|---|---|---|
Green |
0x04 |
0x08 |
|
Blue |
0x02 |
0x04 |
This file contains 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
diff --git a/closed/autoconf/custom-hook.m4 b/closed/autoconf/custom-hook.m4 | |
index 774049757..95abbf7dc 100644 | |
--- a/closed/autoconf/custom-hook.m4 | |
+++ b/closed/autoconf/custom-hook.m4 | |
@@ -457,8 +457,11 @@ AC_DEFUN([OPENJ9_PLATFORM_SETUP], | |
elif test "x$OPENJDK_BUILD_OS" = xmacosx ; then | |
OPENJ9_PLATFORM_CODE=oa64 | |
OPENJ9_BUILD_OS=osx | |
+ elif test "x$OPENJDK_BUILD_OS" = xbsd ; then | |
+ OPENJ9_PLATFORM_CODE=ba64 |
This file contains 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
yaml: | |
extensions: | |
- ".yaml" | |
- ".yml" | |
split: | |
type: string-before | |
separators: | |
- "\0-" | |
- "\0[a-zA-Z]" | |
min_chunk_size: 10240 |
This file contains 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 -euo pipefail | |
IFS=$'\n\t' | |
NOOP=${1:-} | |
COUNTER=0 | |
if [ "$NOOP" == "-n" ]; then | |
echo "Simulation mode. -n given." | |
fi |
This file contains 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
machine smtp.gmail.com | |
login [email protected] | |
password my-app-password |
This file contains 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
from pygments.lexer import RegexLexer, bygroups | |
from pygments.token import * | |
__all__ = [ 'LogLexer' ] | |
class LogLexer(RegexLexer): | |
""" | |
Lexer for (minecraft) Log files. | |
""" | |
This file contains 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
CF=mktemp; openssl s_client -showcerts -connect host:port </dev/null > "$CF" 2>/dev/null; openssl x509 -in "$CF" -text -noout | grep "Signature Algorithm" | uniq; rm "$CF" |