Aleks-Daniel Jakimenko-Aleksejev

Results 449 comments of Aleks-Daniel Jakimenko-Aleksejev

But what is the problem here exactly? `$` comes very handy in one-liners, but does anybody use it often in real code (e.g. for modules or other bigger scripts)? And...

@Juerd maybe you should start a style guide? People keep asking for a style guide for Perl 6, but the only thing we can direct them to is https://docs.perl6.org/language/traps (which...

To clarify, my point is that we can keep a feature that a lot of people love, but at the same time give some *light* recommendations to make sure the...

I am half way through reviewing this PR. However, I don't understand why the test for `RT #125227` is removed. Could you shine a light on that? That being said,...

What? This is a PR with tests for https://github.com/rakudo/rakudo/pull/674 which is open. So this should be open as well.

Or, if you know any other way to make the cursor appear, please let me know. Currently, this is the only thing that doesn't allow me to switch from peek...

Yeah, I've tried something like this: ``` perl6 class AsyncTest { has $.delay = 5; method said ($e) { next if $e.what !~~ / asyncstart /; # type “asyncstart” to...

My only requirement is quite simple. I'm doing something like a RSS notifier. On my side it simply reads a feed from time to time. All I need is a...

Did you recompile? There were changes associated with `\r\n` handling which broke a lot of modules. `Net::IRC::Bot` included (at least in my case). I had to downgrade in order to...

It works! That's it! However, to print stuff, it seems like I need an Event object (which is the only thing that has a convenient `.msg` method). What would be...