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
import json | |
def parse_java_format_string(java_format_string): | |
in_format = False | |
num_buf = "" | |
max_n = 0 | |
for char in java_format_string: | |
if not in_format: | |
if char == "%": | |
in_format = True |
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
{ | |
/* | |
This contains spoilers for the minecraft april fools update 2024's potato plant quest line | |
just go play it ingame, iirc the bonus chest should have a potato plant | |
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
test |
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
{ | |
"python.linting.enabled": true, | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.linting.mypyEnabled": false, | |
"python.linting.pydocstyleEnabled": true, | |
"python.linting.pycodestyleEnabled": false, | |
"python.linting.prospectorEnabled": false, | |
"python.linting.pylamaEnabled": false, | |
"python.linting.banditEnabled": true, |