Martin Thoma

Results 446 comments of Martin Thoma

> I see, so we are considering a policy of "no IDE specific or build specific files please" for the project? I am tentatively in favor of that since it...

Looking at the Python implementations, I could see variations of the following functions in a couple of games: ```python def print_n_whitespaces(n: int) -> None: print(" " * n, end="") def...

I like keeping files easy to execute :+1: I also like tests when I refactor stuff :smile: They actually saved me some times because I do not always play the...

Just to be sure that I understand you @coding-horror : This means I should remove the Python unit tests (+ not allow PRs to add new ones), right?

I'm not sure why ``` curl -s https://api.github.com/repos/coding-horror/basic-computer-games | grep size | tr -dc '[:digit:]' ``` still shows `75310` (75 MB). I guess the reason could be the branch https://github.com/coding-horror/basic-computer-games/tree/74-minimal-terminal

@AnthonyMichaelTDM I've just updated the script which can automatically generate a markdown file with the current implementations: https://github.com/coding-horror/basic-computer-games/blob/main/00_Utilities/TODO.md

It would be nice if this could be run automatically every day / after each commit to `main` so that we always have an up-to-date list. I have no clue...

The simplest way to ensure you are not running into issues is to delete the fork + fork again.