Gerenuk
Gerenuk
Daiquiri would also be great to use in Jupyter. Unfortunately, it seems in Jupyter one usually has to enforce TTY mode in order to make color work. There does not...
Currently, `Position.direction_to(target_pos: Position) -> DIRECTIONS` will return only a single direction. However, most of the time there are two possible directions for the shortest path. For implementing a move optimizer...
A suggestion would be to use Python Enum for constants, because they provide some small advantages over plain class constants. For example ``` from enum import Enum class DIRECTION(Enum): NORTH...
* logzero version: 1.5.0 * Python version: 3.6 * Operating System: Linux ### Description Logzero is really neat and it would be great if one could make full use of...
## ❓Question I'd like to open the Aim interface from a bash script together alongside commands. What is the recommended way to do that? There is no "background" option in...
When you make an automated script that installs mamba and a new environment, you could do ``` ... conda create -n new-env -y python eval "$(conda shell.bash hook)" conda activate...
pyRMT.py fails in Python 3.10 on `from collections import MutableSequence, Sequence` since apparently in Python 3.10 it should be `from collections.abc import ...`
Maybe there is a way to make it encoding independent (e.g. work out-of-the-box with latin1)
For visualizer 2.1.0 and using it in jupyter (probably from kaggle-environments?) I can observe the following quirks: * in Firefox (not Chrome) there will always be scrollbars for the whole...