🦋 Welcome to the IRC channel of the core developers of the Raku Programming Language (raku.org #rakulang). This channel is logged for the purpose of history keeping about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | Logs available at irclogs.raku.org/raku-dev/live.html | For MoarVM see #moarvm
Set by lizmat on 8 June 2022.
nine hythm: the "No such file or directory" is known. I explained the reason here yesterday. The library error is really weird. Where does that double period come from in the file name extension? 06:56
lizmat notable6: weekly 13:00
notable6 lizmat, 2 notes: 2022-09-28T18:24:42Z <lizmat>: www.youtube.com/watch?v=39ekokgnoqE Markdown to Mathematica converter ; 2022-09-29T23:20:49Z <tonyo>: github.com/tony-o/envy/
lizmat notable6: weekly reset 13:01
notable6 lizmat, Moved existing notes to “weekly_2022-10-03T13:01:19Z”
lizmat and yet another Rakudo Weekly News hits the Net: rakudoweekly.blog/2022/10/03/2022-...g-to-core/ 13:21
hythm nine: turns out the double dot in the library error comes from not having an extension in the library resource name. renaming `resource` to `resource.txt` fixed the issue. when not having extension, the content of the `resources` directory in the repo is ` 705D783E180D440A8BE0A0832525197FF9B9FF6C.` (there is a dot at the end), after renaming, the 16:29
content of the resources directory is `B9451E36E4627376B2116CDDB4EC9AD6CF4233A0.txt`
hythm this means if i have a local library named "foo" then I need to add extension for it  e.g. `foo.so` to be recognized, I think. 16:36
nine hythm: I'm not sure I can follow you. What exactly was the line in META6.json which lead to the double . and which fixed it? 17:18
2022-10-03 11:56:04.513 UTC [2300] LOG: server process (PID 17708) was terminated by signal 9: Killed 17:19
2022-10-03 11:56:04.513 UTC [2300] DETAIL: Failed process was running: autovacuum: VACUUM ANALYZE public.pod_campaign_reports
hythm: ah you're talking about that gist you posted. That doesn't look right. Shared libraries must be in resources/libraries, not directly in resources/ 17:21
hythm "Shared libraries must be in resources/libraries, not directly in resources/" that explains it then, thanks 17:38