Skip to content

Instantly share code, notes, and snippets.

View AlexDaniel's full-sized avatar

Aleks-Daniel Jakimenko-Aleksejev AlexDaniel

  • Tallinn, Estonia
View GitHub Profile
@AlexDaniel
AlexDaniel / rc-authors.p6
Last active February 26, 2018 23:10
Reliably works on 2017.11. reliably fails on 2017.12 and later.
use lib ‘data/all-modules/github/sergot/datetime-parse/lib’;
use lib ‘data/all-modules/github/perl6/Perl6-MIME-Base64/lib’;
use lib ‘data/all-modules/github/perl6-community-modules/uri/lib’;
use lib ‘data/all-modules/github/supernovus/perl6-http-status/lib’;
use lib ‘data/all-modules/github/sergot/http-useragent/lib’;
use lib ‘data/all-modules/github/sergot/perl6-encode/lib’;
use lib ‘data/all-modules/github/perlpilot/p6-File-Temp/lib’;
use lib ‘data/all-modules/github/labster/p6-file-directory-tree/lib’;
use lib ‘data/all-modules/cpan/TIMOTIMO/JSON-Fast/lib’;
use lib ‘data/all-modules/github/perl6-community-modules/uri/lib’;
@AlexDaniel
AlexDaniel / Rakudo-Weekly.md
Last active November 27, 2017 18:58
🦋 Rakudo weekly report (From ≈2017-11-19T16:04:30 to ≈2017-11-27T00:21:12)

Open tickets before: 1727
Open tickets after: 1732
Number of tickets touched: 34

Resolved tickets (13)

[resolved] RT#127573 Lazy range as Array index stops at first deleted index unexpectedly
 [closed]  GH#730 $*VM.platform-library-name: only return IO::Path
@AlexDaniel
AlexDaniel / Rakudo-Weekly.md
Last active November 19, 2017 15:57
🦋 Rakudo tweekly report (From ≈2017-11-05T14:53:21 to ≈2017-11-19T16:04:30)

Open tickets before: 1718
Open tickets after: 1727
Number of tickets touched: 72

Resolved tickets (20)

[resolved]  RT#76120 backslash escapes in double-angle quotes
[resolved]  RT#79424 implement :: in regexes
@AlexDaniel
AlexDaniel / Rakudo-Weekly.md
Last active November 5, 2017 17:18
🦋 Rakudo weekly report (From ≈2017-10-29T13:13:12 to ≈2017-11-05T14:53:21)

Open tickets before: 1720
Open tickets after: 1718
Number of tickets touched: 36

Resolved tickets (17)

[resolved] RT#124863 Roast rakudo skip/todo test:./S05-mass/properties-general.t line:735 reason: Unions of properties of non-existent codepoints
[resolved] RT#128031 Failing tests for type smileys
@AlexDaniel
AlexDaniel / Rakudo-Weekly.md
Last active October 30, 2017 13:23
🦋 Rakudo 2xWeekly report (From ≈2017-10-15T13:58:37 to ≈2017-10-29T13:13:12)

Open tickets before: 1710
Open tickets after: 1720
Number of tickets touched: 80

Resolved tickets (23)

[resolved] RT#122789 `.subst` does not work inside BEGIN block ($/ is set too late)
[resolved] RT#126479 IO::Handle Supply is never done
@AlexDaniel
AlexDaniel / awesome
Created October 15, 2017 20:59
Awesome layout that does not work in pluma and chromium
default alphanumeric_keys modifier_keys function_keys alternate_group
xkb_symbols "awesome" {
include "us"
name[Group1]= "My Awesome Layout";
key <AE02> { [ 2, at, Page_Up, Page_Up ] };
key <AE03> { [ 3, numbersign, Page_Down, Page_Down ] };
key <AD01> { [ q, Q, Escape, Escape ] };
@AlexDaniel
AlexDaniel / Rakudo-Weekly.md
Last active May 6, 2019 15:52
🦋 Rakudo Weekly (from ≈2017-10-08T12:02:03 to ≈2017-10-15T13:58:37)

Open tickets before: 1669
Open tickets after: 1664
Number of tickets touched: 88

Resolved tickets (34)

[resolved] RT #77754  Null PMC access when calling .perl on callframe.my in Rakudo
[resolved] RT #122345 Returning from a parameter list default counts as returning 'outside of any Routine' in Rakudo on Moar
@AlexDaniel
AlexDaniel / squashathon_2017-10.markdown
Last active May 6, 2019 15:53
🍕🍕🍕 SQUASHathon results (2017-10-07 UTC-12⌁UTC+14) https://github.com/rakudo/rakudo/wiki/Monthly-Bug-Squash-Day

Open tickets before: 1676
Open tickets after: 1669
Number of tickets touched: 54

Resolved tickets (17)

[resolved] RT #121327 Scoping bug with `xx`
[resolved] RT #123926 LTA error message without Levenshtein distance suggestion when mistyping enum value in signature in Rakudo
@AlexDaniel
AlexDaniel / mustache-hyper.pl6
Last active August 20, 2017 16:43 — forked from scmorrison/mustache-hyper.pl6
Perl 6 - Template::Mustache.render dies with hyper
#!/usr/bin/env perl6
use lib ‘data/all-modules/softmoth/p6-Template-Mustache’;
use v6;
#use v6.d.PREVIEW;
use Template::Mustache;
my $html = q:to/EOF/;
<html>
{{> head }}
use nqp;
my $html;
my $proc = run "wget", "-o", "/dev/null", "-O", "-", "https://www.fimfiction.net/bookshelf/149291/", :out;
$html = $proc.out.slurp-rest;
say "html is " ~ $html.chars ~ " chars";
nqp::force_gc;
say "/proc/$*PID/statm".IO.lines[0].split(/\s/)[5] * 4096 / 1024