🦋 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. |
|||
00:00
reportable6 left
00:02
reportable6 joined
00:03
ab5tract left
00:46
NemokoschKiwi left
00:47
lichtkind left
00:56
simcop2387 left,
perlbot left
00:59
perlbot joined
01:00
simcop2387 joined
01:01
Homer_Simpson left
01:08
razetime joined
|
|||
jaguart | anyone have any insight on when the next rakudo release will be? just wondering because 2022.12 + Windows + TAP is borked so github windows-latest tests are failing a lot | 01:22 | |
alternately, is there an easy tweak for github windows workflows? | 01:23 | ||
01:32
jpn joined
01:37
jpn left
01:39
sena_kun left
02:00
razetime1 joined,
razetime left,
razetime1 is now known as razetime
02:24
jjido left
02:49
jpn joined
03:05
Kaipei left
03:15
rf left,
rf joined
03:21
squashable6 left,
razetime1 joined
03:23
razetime left,
razetime1 is now known as razetime
03:24
squashable6 joined
03:57
rf left
|
|||
ugexe | test using the command `zef test . --/tap-harness`? | 04:28 | |
or if TAP has been updated to work, add `zef update TAP` | 04:31 | ||
04:44
alfonsox joined
05:26
Kaipei joined
05:30
Kaipei left
|
|||
CIAvash | tonyo: whenever you're ready, and I'm here as well! | 05:32 | |
05:41
razetime left
06:00
reportable6 left
06:02
reportable6 joined
06:05
jpn left
07:05
quotable6 left,
unicodable6 left,
sourceable6 left,
tellable6 left,
releasable6 left,
evalable6 left,
reportable6 left,
statisfiable6 left,
committable6 left,
greppable6 left,
shareable6 left,
linkable6 left,
squashable6 left,
bisectable6 left,
notable6 left,
nativecallable6 left,
benchable6 left,
bloatable6 left,
coverable6 left,
bisectable6 joined
07:06
tellable6 joined,
notable6 joined,
greppable6 joined,
quotable6 joined,
benchable6 joined,
reportable6 joined,
squashable6 joined,
unicodable6 joined,
evalable6 joined
07:07
coverable6 joined,
sourceable6 joined,
statisfiable6 joined,
bloatable6 joined,
nativecallable6 joined,
releasable6 joined,
committable6 joined,
linkable6 joined
07:08
shareable6 joined
08:10
razetime joined
08:35
razetime1 joined
08:36
razetime left,
razetime1 is now known as razetime
08:43
razetime1 joined
08:44
lichtkind joined,
razetime left,
razetime1 is now known as razetime
08:49
discord-raku-bot left,
discord-raku-bot joined
09:28
sena_kun joined
09:38
Xliff left
10:02
Sgeo left
10:49
discord-raku-bot left,
discord-raku-bot joined
11:25
MoC joined
11:59
razetime left
12:00
reportable6 left
12:02
reportable6 joined
12:36
Nahita joined
|
|||
Nahita | hi is there a way i preapply `$*OUT.out-buffer = False;` before running a script through the command line? | 12:46 | |
similar for $*ERR, like "python -u" | |||
13:19
jpn joined
|
|||
moritz | raku -e '`$*OUT.out-buffer = False; EVALFILE "yourfile.raku"' | 13:20 | |
you could build a generic wrapper script that you can call as `bufferless script args args` or so | |||
leont | ugexe: AFAIK, the problem is not on the TAP side. | 13:23 | |
Nahita | thank you very much Moritz Lenz | 13:27 | |
13:30
jpn left
13:35
jpn joined
13:39
jpn left
13:43
Nahita left
|
|||
leont | It just occurred to me that Raku's async IO doesn't have a writing-side primitive that supports having backpressure (the way Supplies can do for reading) | 13:57 | |
13:58
jjido joined
|
|||
lizmat | yes, that's a known issue afaik | 13:59 | |
14:31
jpn joined
14:34
razetime joined
14:55
jpn left
15:03
Homer_Simpson joined
|
|||
Homer_Simpson | how do I stop the comma editor from pasting NBST | 15:03 | |
if I copy and past literally almost anything from almost anywhere and paste it into comma I get a load of NBST instead of just spaces | 15:04 | ||
anyone here | 15:15 | ||
lizmat | yeah, some people here | 15:22 | |
not many able to answer that question, I'm afraid | |||
sena_kun perhaps | |||
Homer_Simpson | i think i found how to fix it | 15:24 | |
file encoding buttom right hand side of screen where it says UTF8 etc | |||
nah it still does it | 15:27 | ||
I have a sub, is there a way to have it included with the built in subs that raku comes with | 15:29 | ||
so I dont need to renember to declare it in every project that I need it used for | |||
lizmat | sorry, /me is too stockholm syndromed to vim | 15:31 | |
16:03
linkable6 left,
evalable6 left,
jgaz joined
16:04
linkable6 joined
16:05
evalable6 joined
16:25
MoC left
16:42
rf joined
16:52
discord-raku-bot left,
discord-raku-bot joined
16:56
discord-raku-bot left,
discord-raku-bot joined
17:03
jpn joined
17:22
lichtkind_ joined
17:23
alfonsox left
17:24
lichtkind left
17:42
razetime left
17:50
amenonsen left,
amenonsen joined
18:00
reportable6 left
18:02
reportable6 joined
18:13
jpn left
18:20
jpn joined
18:26
jgaz left
18:32
Henry151 joined
18:43
jpn left
|
|||
rf | I want to use a list of strings in my grammar, ie "ABC", "DEF", "GHI" => [ ABC | DEF | GHI ] can I do this? | 18:47 | |
19:03
jpn joined
19:04
MoC joined,
Guest18 joined
|
|||
Homer_Simpson | 19:05 | ||
p6steve | ```my @list = <ABC DEF GHI>; $string ~~ /@list/;``` (or ```$string ~~ /<@list>/;``` iirc) | 19:07 | |
19:13
jjido left
19:15
jpn left
|
|||
errr - ok the <@list> form takes a list of matchers, like | 19:32 | ||
```my @list2 = ('\w**4', '\w**5');``` | |||
20:00
Guest18 left
20:08
jjido joined
21:01
Sgeo joined
21:23
jjido left
21:28
jpn joined
21:33
jpn left
21:40
ab5tract joined
22:18
Guest67 joined
22:19
Guest67 left
22:21
ab5tract left
22:23
Homer_Simpson left
22:36
ab5tract joined
22:49
discord-raku-bot left
22:50
discord-raku-bot joined
23:03
ab5tract left
23:21
jpn joined
23:25
jpn left
23:28
loken joined
23:37
loken left
23:49
discord-raku-bot left
23:50
discord-raku-bot joined
|