Michael Rätzel

Results 111 comments of Michael Rätzel

Thank you very much for the investigation! I see the drone status in the tree view, which is encouraging! The hitpoints seem missing on the drone entries, but that might...

When starting from the command line, there are various options. That duration might be normal depending on which combination of arguments you use in your command line. Some combinations are...

Reading about the goals of this markdown package in the readme, I guess we would look at https://github.github.com/gfm/#lists for a specification. Since that is GitHub Flavored Markown, a faster way...

I went searching for a change in the program code that would fix this inconsistency. I'd start that search by adding a test for the scenario from this thread. But...

I found the [test modules](https://github.com/dillonkearns/elm-markdown/tree/1b0b3dc4f1170c4e8b00c68a38c49199fd8b067f/tests) call them 'unordered lists' (not 'bullet lists'), so maybe the issue title is not ideal yet. 🤔

If the indent before the list items is to be discarded, following might be a appropriate implementation for an automated test: ```Elm , test "basic indented list with '+'" String.trimLeft...

I don't have a lot of experience with parsing, but rummaging through the parsing code, I stumbled on this function that looks like a good candidate for experimenting with a...

Taking a break helped. I found an error in the test code. This one looks better: ```Elm , test "basic list with '+' indented by 3" """ + Item 1...

With more experimenting, I learned that I need to add backtracking here. This variant lets the test pass: ```Elm unorderedListMarkerParser : Parser UnorderedListMarker unorderedListMarkerParser = oneOf [ backtrackable (succeed Minus...

We solved this with the additional filter in `clickableAsteroidsFromOverviewWindow` added in https://github.com/Viir/bots/commit/318273217db41b8f80110ad7e8dc40be937ec7ff ```Elm clickableAsteroidsFromOverviewWindow = overviewWindowEntriesRepresentingAsteroids >> List.filter (.uiNode >> uiNodeIsLargeEnoughForClicking) >> List.filter (.opacityPercent >> Maybe.map ((> Maybe.withDefault True) >>...