2022.37 More videos

The videos of the second day of the Raku Conference 2022 have become available:

Kudos again to Andrew Shitov for organizing this event!

Call for Grant Proposals

The Call for Grant Proposals for the September 2022 Round has been published. Relatedly, the Grants Committee is looking for a new chairperson.

Wenzel’s Corner

Wenzel P.P. Peppmeyer looked at patterns in date and temperature parsing in Valid temperatures.

Alexey’s Corner

Alexey Melezhik looked at how their Cromtit module could be considered a Raku alternative to Apache Airflow.

CAT announcement

The Community Affairs Team has published a report about an incident in the past week.

Did You Know?

That without actually also binds the operand container allowing its value to be set in block?

my %order;
without %order<processed-at> {
    process-order( %order );
    $_ = DateTime.now;          # yes, you can set it here
};
say %order<processed-at>.year;  # will print current year

It not only prevents repeating hash key name in logic, but at the same time is more readable than other commonly used pattern:

%order<processed-at> //= do {
    process-order( %order );
    DateTime.now;
}

This week’s entry suggested by Pawel Pabian. Check out the “did you know” registry, started by Wenzel P.P. Peppmeyer. Suggestions as Pull Requests welcome!

Weeklies

Weekly Challenge #182 is available for your perusal.

Core Developments

  • Timo Paulssen fixed an error in generating skip lines in the spesh log.

Questions about Raku

Meanwhile on Twitter

Meanwhile on the mailing list

Comments about Raku

New Raku Modules

    Updated Raku Modules

    Winding down

    Only one new module this week, and plenty of exciting updates!

    This week’s image was made by yours truly while helping a friend put order in chaos. Funny how the flag of Ukraine pops up in the weirdest places! There to remind us of Ukraine in their and our fight against the Russian aggression. Слава Україні!  Героям слава!

    In the meantime, please stay safe, stay healthy, keep up the good work!

    If you like what I’m doing, committing to a small sponsorship would mean a great deal!

    Leave a Reply

    Fill in your details below or click an icon to log in:

    WordPress.com Logo

    You are commenting using your WordPress.com account. Log Out /  Change )

    Facebook photo

    You are commenting using your Facebook account. Log Out /  Change )

    Connecting to %s