Coco

Results 6 comments of Coco

Oh, yeah, this is a fairly old-ish issue - should have reported this earlier but it didn't bother me much. Some Postgres types cause a single column to be listed...

This behavior still happens on v0.205002; Although it is triggered by a bug in the user's code, this should be handled gracefully rather than by exhausting system resources. With this...

Here's a trimmed down example that triggers the same behavior: ```perl #!/usr/bin/perl use strict; use warnings FATAL => 'all'; use Dancer2; set 'template' => 'simple'; set 'show_errors' => 1; get...

I don't think it's a very good idea to keep a separate Formatter and Output in the case of colored terminal output. For non-terminals, a Formatter that includes ANSI color...

In case anyone's running into a "Node.insertBefore: Child to insert before is not a child of this node" error, you're likely hitting this issue. Was about to report this as...

After a good night's sleep I realized a few things: - I initially forgot to consume `@frame_size` on IO.close, so closing after a partial read was bugged. - Mandating an...