Pawel Pabian

Results 34 issues of Pawel Pabian

This one always gets me by surprise. Despite the fact that I'm using Raku since early Pugs days :) Spaces are not significant inside brackets - `my @p = [...

LTA
Will be addressed in RakuAST

Documentation of [assuming](http://perlcabal.org/syn/S06.html#Priming) use `substr` with named params in example. ``` perl &textfrom := &substr.assuming(str=>$text, len=>Inf); ``` However current `substr` signature accepts only positional params ``` perl Expected: :(Cool $s,...

Following code https://github.com/krowinski/php-mysql-replication/blob/master/src/MySQLReplication/BinaryDataReader/BinaryDataReader.php#L72 works by accident because `s` uses native architecture. And every Intel/AMD CPU is in little endian architecture which is the same as binlog bytes layout. Architecture should...

bug
enhancement
help wanted

I'm talking about sizes [described by control byte and next byte](https://github.com/maxmind/MaxMind-DB-Reader-perl/blob/master/lib/MaxMind/DB/Reader/Decoder.pm#L327). I haven't encountered any values that require $size >= 30 to decode.

enhancement

Hi In company I'm working for we use Docker extensively. One of the issues we're struggling with is the fact that **Perl package became huge bloatware** - full installation size...

ready

https://github.com/zostay/p6-ULID (not my module, I've just noticed that it's listed in https://modules.perl6.org/search/?q=ulid but not linked in README here)

```sql CREATE TABLE foo ( id bigint unsigned ) engine=InnoDB; INSERT INTO foo ( id ) VALUES ( 18446744073709551615 ); -- 2^64 -1 ``` This value can be SELECTed without...

I'd love to use Raku in more demanding projects but currently performance of DBIish is far from being acceptable. I've created simple benchmark - execute 100K prepared queries that accepts...

1. Connect to random database to get `DBDish::mysql::Connection` instance 2. Call `.parrent()` on this instance to get `DBDish::mysql` driver 3. Browse public `%.Connections` hash values to get other `DBDish::mysql::Connection` instances...

Proof is a bit tricky, because MySQL does not allow to explicitly get variable type that it got from driver. So I'll use a bit of nasty overflows and implicit...