David Emanuel Santiago
David Emanuel Santiago
Run the following code: ``` use Cro::HTTP::Client; use LibXML; use LibXML::Document; my $url = "http://rss.cnn.com/rss/edition_world.rss"; sub MAIN(){ my $resp = await Cro::HTTP::Client.get($url); my $body = await $resp.body; my LibXML::Document $doc...
Hi. I made a script to read rss in the terminal. This script uses the following libraries: DBIish; DateTime::Parse; Cro::HTTP::Client; XML; Term::ReadKey; Term::termios; HTML::Entity::Fast; This script will explode with a...
I'm getting this written to std error: ``` Some exceptions were thrown in END blocks: X::AdHoc: Cannot look up attributes in a VMNull type object. Did you forget a '.new'?...
Hello, Is it possible to create and sign certificates with this library? If so, is it possible to update the README with an example? Best regards, David Santiago
## The Problem ``` [0] > use NativeCall; CHECK for NativeCall::EXPORT::.keys { .say } ===SORRY!=== Error while compiling: An exception X::AdHoc occurred while evaluating a CHECK: Could not find symbol...
Just updated raku to latest main. Now zef doesn't work. ``` > zef ===SORRY!=== Error while compiling /usr/bin/zef New type Block for List is not a mixin type at /usr/bin/zef:3...
Hi! I'm trying to parse a 52 MByte XML file and the performance is really bad. I'm trying to follow the instructions and just doing: ``` my $XML = 'ec_inventory_en.xml';...
``` demanuel@archlinux ~> cat test.raku sub MAIN( :$option, :@tag) { say $option.WHAT;} demanuel@archlinux ~> raku test.raku --option --tag=name1 (Array) demanuel@archlinux ~> raku test.raku --option --tag=name1 --tag=name2 (Bool) demanuel@archlinux ~> ```...
## The Problem Hi! I have latest main and when upgrading packages using zef, some random (?) packages fail. It succeeds when upgrading one by one. Reported against zef: https://github.com/ugexe/zef/issues/565...
The sequence operator hangs while executing `my @a="a"..."z", "!"..."Z"` However `my @a="!"..."Z", "a"..."z"` works. using `MVM_SPESH_DISABLE=1` doesn't fix it ``` raku -version Welcome to Rakudo™ v2025.10-27-g89dff65d3. Implementing the Raku® Programming...