Aleks-Daniel Jakimenko-Aleksejev
Aleks-Daniel Jakimenko-Aleksejev
https://irclog.perlgeek.de/perl6-dev/2017-10-30#i_15374555 So it's a bot that generates reports like this: https://gist.github.com/AlexDaniel/5c4030253c6b90cf4b1ce2ddd6860323
> \ AlexDaniel: feature request: ability to find to which distro a filename belongs too; aka ``tree -f | grep XXX`` :) In other words: grepping by filename. This is...
It only has messages up to 2017-04-03. I should simply run the script that generates the data for it again, and possibly put it into cron or something. I already...
> \ new bot idea > \ breakpointable :) > \ you'd pass a list of filename:linenumber pairs and a piece of code or url, the bot would attach a...
``` U+23F3 HOURGLASS WITH FLOWING SAND [So] (⏳) U+231B HOURGLASS [So] (⌛) ``` Because there's nothing to wait for if the sand is not flowing.
Would be nice if it was possible to give it code like: ```perl6 say "Pi: ", pi for 0...Inf ``` And it would output: ```perl6 say “Pi: ”, π for...
Documents now have a lang-version. https://github.com/rakudo/rakudo/commit/46ef0ea08cae96db25c7b5a9543ba696034408c8#diff-d3980092fdbde9a1dd4a30438f8dba19R1348
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...
I was wondering why my protobuf messages are not being rendered in eCAL monitor. I even thought that it's an issue in eCAL, and submitted a ticket. However, I got...
The document mentions ``$×=++$ for ^10``, but that's not the shortest way: ```perl6 say ($×=++$)xx⑩; say [\*] 1…⑩; ```