zopsicle
zopsicle
Perhaps you can use `filter: invert(100%);` on the map tiles with CSS. It may not look the prettiest but it works.
PollFd implements AsRawFd so you can access the file descriptor by calling `fd.as_raw_fd()`.
@lizmat Yes, the issue persists in 2020.02.1. I looked into it but there doesn’t yet seem to be a way to retrieve the NQP prefix from Raku code. I’m not...
@vrurg I gave that a try. It fails with: _X::AdHoc: Cannot call method 'config' on a null object_. Not really sure where to continue from here. I tried a few...
> So far, it looks like the proper solution would be to add compiler parameter to run_profiled, dump_profile_data, and dump_instrumented_profile_data methods. Then instead of nqp::getcomp(...).config $compiler.config can be used. This...
Nevermind, this has to be done because nqp-home can be overridden with the NQP_HOME environment variable when invoking Rakudo. I’ll see if passing the compiler config around works.
On Linux "/proc/self/cwd".IO.resolve should work. Seeing that the test already branches on platform, we could extend this with platform-specific checks for other platforms as well. Then we could also add...
The pull request was merged. Can this be closed?
It should be noted that the `Deserialize` impl for `Vec` cannot always use `with_capacity_in`, because `SeqAccess::size_hint` may return `None`. This can cause excessive memory allocation when deserializing large sequences of...
> but io::Read can’t provide an implementation for read_vec that is both fast and sound This can be implemented as follows: ```rust pub fn read_vec(r: &mut R, onto: &mut Vec,...