MasterDuke17

Results 197 comments of MasterDuke17

What version of Cro::HTTP::Client do you have? While I haven't seen any segfaults yet, I did see some errors about a 'Use of uninitialized value of type Any in numeric...

I just got: ``` Async [TCP] Port: 443 State: Open on 13.72.107.161 corrupted double-linked list Thread 6 "raku" received signal SIGABRT, Aborted. [Switching to Thread 0x7fffdffff640 (LWP 406977)] 0x00007ffff74b9d22 in...

A `raku -e '"foo" ~~ s:g:i/O/x/'` is a shorter golf.

Even shorter: `raku -e '"o" ~~ m:g:i/O/'`

FWIW, changing the `nqp::indexingoptimized` to an `nqp::decont` or `nqp::clone` (or either combination of both of them) instead of removing it doesn't fix the error.

Huh, this is interesting. A standalone benchmark of my two C versions shows the newer one as slightly slower and almost double the instructions. old (~0.137s and 2,282,158,658 instructions): ```c...

In a new wrinkle, when using gcc with `-O3`, it gives a different final value in my example (I looked at the objdump -S output and both were actually running...

Yeah, and a simple C++ version gives 4777499475 for g++ with -O3, but 5249999475 for every other combination of -O and g++/clang++. ```C++ #include #include #include "jeaiii_to_text.h" int main(void) {...

Huh. Adding `-fsanitize=address` to g++ with -O3 results in 5249999475. Same with `-fsanitize=undefined`, and neither reports any problems.

> is there a bug bounty for gcc? :-) > > [godbolt.org/z/q3azMGdr8](https://godbolt.org/z/q3azMGdr8) It seems like 9.1 (going just by major versions) is the first where it doesn't print 0 and...