Simon Heimberg
Simon Heimberg
> > Should there be one usage example (of one tree) or none at all in this pr? > > Now I'm a bit confused by this. Isn't there some...
> The failure of the test suite with the [last commit](https://github.com/widelands/widelands/pull/6210/commits/5d7f7dccf9cd439817a1c49a29690df266d03901) shows another way it does not work properly. 👎 [The failure message is:](https://github.com/widelands/widelands/actions/runs/7348405411/job/20007233173?pr=6210#step:7:1028 ) ``` test_include_in_coro: [string "scripting/init.lua"]:89: table...
``` ==95248==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x60200197b574 at pc 0x7fd193c4a731 bp 0x7fff44bd1290 sp 0x7fff44bd0a40 READ of size 5 at 0x60200197b574 thread T0 #0 0x7fd193c4a730 in __interceptor_strlen ../../../../src/libsanitizer/sanitizer_common/sanitizer_common_interceptors.inc:389 #1 0x7fd1918c81da (/lib/x86_64-linux-gnu/libSDL2-2.0.so.0+0xa11da)...
> > How can I get the builder from the building site window? friend does not work as I expected. > > The builder should be the first worker on...
> > > How can I get the builder from the building site window? friend does not work as I expected. > > > > > > The builder should...
I see three options. Which way to go? https://github.com/widelands/widelands/pull/6208#issuecomment-1814550227 - The builder leaves immediately and aborts the work. (The last used material must be requested again. Or any, can be...
@chrisbulgaria > Thanks , if someone else comes here - I found in the meanwhile alternatives at least for MySQL and oracle , see in the list here :https://github.com/operator-framework/awesome-operators Which...
psutil is a good place for this. Currently I can get the cpu affinity with `os.sched_getaffinity(0)` for systems supporting this function (_on some Unix platforms_ (1)). Or I can use...
Demo how you can monkey patch pofilter (until custom filters are implemented #3548): ```python #!/usr/bin/python3 from translate.filters import checks, decorators, pofilter def add_custom_filter(filter_fn, name=None): "adds a custom filter to pofilter"...
Some use cases and ways to handle this: https://stackoverflow.com/questions/30310396/possible-to-ignore-exclude-file-folder-from-editorconfig Solution I see as best matching: ``` [*.java] end_of_line = lf [*/service/model/*] # unset all undesired settings end_of_line = unset ```