🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). Log available at irclogs.raku.org/raku/live.html . If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 6 September 2022.
tbrowder tonyo1: i'm looking for a suitable raku script that uses Inline::Python to test it. the module passes now on my debian box, but it would be nice to have a "real word" prog if possible. 01:34
the module has several outstanding issues going back several years, so it would be nice to close them. 01:36
*real world 01:37
[Coke] lost my IRC settings, what's "don't auto scroll" 13:52
(irssI)
sjn something related to the scrollback command? 13:54
/help scrollback 13:55
sjn uses irssi, but doesn't understand what [Coke] is talking about 13:56
the only place where "scroll" is mentioned in his .irssi/config is where it mentions "scrollback" 13:58
[Coke] when on window 2, I want window 3 to not automatically scroll up - I want it to not lose any sends so I don't have to scroll up when I switch to that window. 14:03
... but I figured out what's going on with my always-on irc box, once I fix it, everything will be fine. 14:04
[Coke] guessing it's settings = { fe-text = { ... scroll = "no" }} but I have no idea. it's 20 years of stuff I've saved in there. :) 14:06
Guest5605 wonders how long until my nick frees up from my other login. 14:42
lovely mac issue where once every year or so, the external drive that's mounted as /Volumes/FOO gets remounted as "/Volumes/FOO 1" which then causes a new user home dir to be created on /Volumes/FOO which is now just a regular directory. 14:44
just long enough for me to forget what happened the last time.
timo coke, you don't know about the command to kick another connection that has your nickname? 14:55
[Coke]_ "You are now identified for [Coke]", but: 15:43
Nick [Coke] is already in use 15:44
Any suggestions?
timo GHOST Reclaims use of a nickname. 15:45
timo GHOST <nick> [password] (if you're logged in already, no need to specify the password) 15:45
there you go
[Coke] superuser.com/questions/1605647/wh...-work1-2-3 - did all three of those commands, "regain" helped. 15:47
timo REGAIN disconnects an old user session, or somebody attempting to use your nickname without authorization then changes your nickname to the given nickname. 15:48
[Coke] my old session was probably the issue. whee, my irc now back to normal. 15:49
timo :+1: 15:50
antononcube I have a data file in the "resources" directory, what is the proper way to use it in tests in the "t" directory? 15:51
I am naively using my $fileName = $*CWD ~ '/resources/data.json now, but that does not seem proper at all. 15:52
timo yesss the first time the nqp and moar cache has a hit 15:55
[Coke] docs.raku.org/syntax/%25%3FRESOURCES 15:56
antononcube @Coke Hmmm... %?RESOURCES is Nil in my test file. 16:00
@Coke Ok, I read the rest of that page... 16:01
[Coke] how are you running the test? 16:02
antononcube @Coke I meant that the directions in that documents page are working. See: github.com/antononcube/Raku-LLM-Re...e.rakutest 16:10
[Coke] cool 16:13
tonyo i don't think you have access to %?RESOURCES in your tests, just in the module itself 18:29
[Coke] Exactly. but your test can use the module.. 18:31
antononcube @Coke Right -- this is what did. 19:39
tonyo your module needs to export your resources for your test to see them 23:29
you can `use SomeModule` and then access their resources