Aleks-Daniel Jakimenko-Aleksejev
Aleks-Daniel Jakimenko-Aleksejev
https://github.com/perl6/roast/blob/104173b332cdffcdcfd9bb76a1d85abdc9f4a273/packages/Test/Util.pm#L262-L267 So if you create a directory with `make-temp-dir`, and then add some files to it, it won't be deleted when the test file is finished (because `rmdir` can only...
There are currently two modules in the list: * https://github.com/gabrielash/perl6-zmq “Net::ZMQ” but it actually provides “Net::ZMQ4” * https://github.com/arnsholt/Net-ZMQ “Net::ZMQ” and it provides logically “Net::ZMQ” For example, [Cro::ZeroMQ](https://modules.perl6.org/dist/Cro::ZeroMQ:cpan:JNTHN/META6.json) depends on Net::ZMQ…...
From [S06](https://design.perl6.org/S06.html#Named_arguments): > Perl 6 allows multiple same-named arguments, and records the relative order of arguments with the same name. When there are more than one argument, the @ sigil...
[From S03](http://design.perl6.org/S03.html#Replication): > $string x $count > … > The count may not be \* because Perl 6 does not support infinite strings. (At least, not yet...) However, the implementation...
Read flash
Hi! It seems like currently there is no way to read flash from the device (this feature is not available even in their own tool). However, I really need this...
Try this function: (1/x)^(5x) The most interesting stuff happens around 0
Sometimes I wish I had more details about the gathered data (e.g. when was the maximum speed achieved, or a way to investigate if I'm suspecting that the [data is...
I tried using 🐄 as a username on oddmuse.org but it got replaced with “Anonymous”. Seems to be a fairly old issue because on one of my private wikis there's...
The documentation says: > This requires pyflakes to be on PATH. Alternatively, set pyimport-pyflakes-path. However, debian unstable seems to only provide pyflakes3, not pyflakes. Shouldn't pyimport automatically attempt to use...
Bad: ```js await page.locator('.hello-world') ``` The code above is wrong because it doesn't do anything. We just await a locator and then throw it away, but that doesn't test anything....