Leon Timmermans
Leon Timmermans
> Basically, does it retry when getting less than $wanted bytes or not. It truly shouldn't. [This](https://github.com/rakudo/rakudo/issues/5189) is another example of such an issue.
I find this deprecation entirely baffling. I find myself `flatmap`ping quite often, and I've repeatedly seen use-cases in other people's code too. I would also like to note that this...
> I like this proposal but only if we can seriously commit to a much more rapid release cadence for language versions. If we release a new language version, say,...
I think this implementation is both incorrectly scoped (it should only decode/encode when the caller is using the utf8::all pragma), and unnecessarily poorly performing (because it decodes all entries, even...
> If you use utf8::all in your own code, the changes that are brought by it are (also) active for Path::Tiny Pretty sure it isn't; the only global effects are...
> I've been trying a couple of things (e.g. using Import::Into, an eval construct, overriding the readdir function manually, etc.), but I can't get it to work :frowning_face: utf8 `readdir`...
I see two options: either use ties (possible in pure perl, but slow) or magic vtable surgery (slightly insane, but I've [done it before](https://github.com/Leont/autodie-variables))
I don't think this can be fixed. And quite frankly, people shouldn't be using `-s` anyway, it's not a particularly good argument parser. [Getopt::Long](https://metacpan.org/pod/Getopt::Long) has been the most popular argument...
> I don't know if something changed since 2011 or if the pertinent changes in commit https://github.com/Perl/perl5/commit/de7ba5179657b89436ba73457f8f93957b43a3f0 were wrong to begin with. Yeah I may have removed too much in...
> Perhaps let's also improve the code comment a bit to explain the SA_NODEFER usage. Maybe, or maybe it should instead use `sigprocmask` in the sighandler to reset the mask...