Aleks-Daniel Jakimenko-Aleksejev

Results 190 issues of Aleks-Daniel Jakimenko-Aleksejev

So if you start looking at the document from top to bottom, the first code example is this one: ![image](https://user-images.githubusercontent.com/5507503/37773868-6a0fd0ac-2de7-11e8-99d3-c0dc470ceaca.png) Given that we're trying to *introduce* someone to Perl 6,...

Code: ```perl6 my $file = ("/doesnotexist/".encode ~ Buf.new(0x06, 0xAB)).decode('utf8-c8'); spurt $file, 'hello'; ``` Result: ``` Malformed UTF-8 at line 1 col 36 in block at /tmp/5YtFoKr1zd line 2 ``` I...

Unicode

Code: ```perl6 role Foo { has $.a }; role Bar { has $.b }; say ((%(:66x, :67y) but Foo(5)) but Bar(7)).a ``` Result (2015.12,2016.01.1,2016.02): ``` 5 ``` Result (2016.03…2017.10,HEAD(ab03b54)): ```...

regression

This issue comes from Log::Async module (its tests are currently failing on HEAD). Here's my best attempt at golfing it, but maybe someone will be able to golf it even...

regression
fudged tests committed

I know that the first thought may be “let's not”, but hold your horses. See this discussion: https://irclog.perlgeek.de/perl6/2017-09-01#i_15103501 The current situation is indeed LTA for the user, but linking all...

meta
xt

While I'm not following the logic in that code path, the idea seems to be that it should do an early return if the new value was not processed yet....

[Path::Router](https://github.com/zostay/p6-Path-Router) module is failing tests on HEAD. Bisected: (2018-07-16) https://github.com/rakudo/rakudo/commit/980f692ccd4e0e97c3a437bab3e2df8ba8212719 Output before and after: https://gist.github.com/166871bc40395464d457790a33d4411d Some insight from the author: > \ AlexDaniel: Something weird is going on in Test::Path::Router......

tests needed
regression

These two lines used to give the same output: ```raku say 0x11FFFF.uniname; say 0x11FFFF.chr.uniname; ``` Output: ``` ``` But now there is a difference: ``` chr codepoint 1179647 (0x11FFFF) is...

Unicode

When “Always keep zoom” is selected the viewer keeps the zoom setting but recenters on the image any time you switch between files. This should not be happening, it should...

bug

Currently it is not possible to add indexes on materialized views. The [documentation](https://orm.drizzle.team/docs/indexes-constraints#indexes) explains quite well how to create indexes on tables. This is done by providing the third argument...

enhancement
drizzle/kit
db/postgres