Raku Conference Day 2 on Youtube: www.youtube.com/watch?v=BL9-XdC9WYI 🦋 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 14 August 2022. |
|||
00:08
reportable6 left
00:10
reportable6 joined
00:20
dutchie_ left,
dutchie joined
00:34
ToddAndMargo joined
|
|||
ToddAndMargo | Hi All, How do I trigger and detach and external program from inside Raku? I want the program to go off on its own and I do not want any results back from it.  -T | 00:35 | |
`run` seems to what for the result. | 01:06 | ||
Figured it out with shell but not run | 01:21 | ||
shell "zenity --info --title \"$Title\" --text \"$NotifyStr\" --width=220 --timeout=$Timeout &"; | |||
eems to what for the result. = seems to wait for the result. Stinking typos | 01:27 | ||
01:27
bdju joined
01:36
razetime joined
02:04
razetime_ joined,
razetime_ left
02:10
frost joined
02:40
epony left
02:52
frost left
02:56
ToddAndMargo left
03:00
frost joined
03:08
ProperNoun joined
03:10
epony joined
03:49
Kaiepi left
04:46
Kaiepi joined
05:00
euandreh left
05:02
euandreh joined
05:07
razetime left
05:29
razetime joined
05:49
Kaiepi left
06:07
reportable6 left
06:08
reportable6 joined
06:47
Kaiepi joined
07:05
p6steve left
|
|||
Xliff | I'm getitng another error... Cannot resolve caller print(Bizzell::Log::File:D: BOOTStr); | 07:24 | |
Can I resolve that with nqp:hllize? | |||
07:25
HvszrStykp left
07:42
Sgeo left
07:51
Kaiepi left
08:23
squashable6 left
08:24
squashable6 joined
08:47
sena_kun joined
08:48
Kaiepi joined
08:58
Xliff left
09:14
frost left
09:17
bigdata left
09:58
frost joined
10:16
sena_kun left
10:23
frost left
10:31
sena_kun joined
10:47
epony left
10:55
frost joined
11:55
linkable6 left,
notable6 left,
committable6 left
11:56
committable6 joined,
linkable6 joined
11:58
notable6 joined
12:02
frost left,
frost joined
12:06
reportable6 left
12:08
reportable6 joined
|
|||
lizmat clickbaits rakudoweekly.blog/2022/08/29/2022-35-reworkout/ | 12:08 | ||
12:11
_________ left,
_________ joined
12:15
Xliff joined
12:27
frost left
12:32
frost joined
13:02
rypervenche left
13:09
rypervenche joined
13:34
frost left
|
|||
Altreus | I hear it might be an option to have the more symmetrical $promise.await instead of $promise.result (probably as well as, now) - is there a reason it's not already there? Should I suggest it somewhere? | 14:20 | |
14:34
linkable6 left,
evalable6 left
14:35
evalable6 joined
14:37
linkable6 joined
|
|||
stevied | github.com/raku-community-modules/...ut/pull/11 | 14:40 | |
is anyone around that can approve and merge this? | 14:41 | ||
sena_kun | done, thanks! | 14:47 | |
stevied | thankee | ||
15:02
simcop2387 left
15:04
simcop2387 joined
15:20
MoC joined
15:41
mykhal left
15:50
mykhal joined
|
|||
tonyo | ToddAndMargo Proc::Async | 16:30 | |
Nemokosch | docs.raku.org/language/regexes#Samecase I was looking around in the docs | 16:37 | |
> s:global:samecase[the] = 'a'; | 16:38 | ||
and found this peculiar syntax | |||
how does it work? | 16:39 | ||
Nahita | > If you use balancing curly braces, square brackets, or parentheses, the substitution works like this instead: | 16:47 | |
> | |||
> `s[replace] = 'with';` | |||
same page above | |||
under "Lexical conventions" | 16:48 | ||
16:50
linkable6 left,
evalable6 left
16:52
evalable6 joined,
linkable6 joined
|
|||
Nemokosch | is this compiler magic? | 17:03 | |
tonyo | it's standard regex | 17:11 | |
s/ is a substitution and the :global is the full flag of s:g/ | |||
samecase just matches the replaced value's | |||
Nemokosch | I meant the assignment | 17:39 | |
17:49
razetime left
17:50
djerius_ joined,
djerius left
18:03
epony joined
18:05
bpv joined
|
|||
bpv | Hello, does anyone know how to compile Raku code into MoarVM bytecode? | 18:07 | |
18:07
reportable6 left
18:08
reportable6 joined
|
|||
tonyo | what assignment? by default it operates on $_ | 18:13 | |
bpv: to what end? if it's a local library then the first time it's `use`d it's precomp'd and then reused so long as the source hasn't changed, if it's installed by zef then iirc it's precompd upon install but ugexe or nine might have more info | 18:15 | ||
Nemokosch | > s[replace] = 'with'; | 18:16 | |
lizmat | It's precomped at install for the then active repo-chain. If you change that, e.g. by adding an -I, it will get recompiled once again for *that* particular repo chain | ||
bpv | tonyo: I'm looking to compile a simple Raku script into a standalone file to execute via MoarVM. I want to be able to run this file with just MoarVM if possible. | 18:17 | |
18:18
discord-raku-bot left,
discord-raku-bot joined
|
|||
tonyo | nemokosch: looking for samecase in the rakudo source will lead you to the entry point and then eventually to the implementation which will lead you to some nqp | 18:19 | |
tellable6 | tonyo, I'll pass your message to Nemokosch | ||
lizmat | bpv: if it is a Raku script, It will need a lot of the Rakudo infrastructure as well, so you'd need those bytecode files as well | 18:20 | |
and the logic to load them in the correct order, is also in the Rakudo source... | 18:21 | ||
bpv: in a way, this problem is the same as creating a single executable file for a Raku program | |||
some work has been done in that area... but it has stalled | |||
El_Che | that would be so cool | 18:23 | |
tellable6 | 2022-08-21T18:15:56Z #raku-dev <jdv> El_Che need help rebuilding the blin image on debian testing because gist.githubusercontent.com/jdv/ffa...tfile1.txt | ||
El_Che | game changer cool | ||
18:27
vrurg joined,
vrurg_ left
18:31
TieUpYourCamel left
|
|||
bpv | lizmat: So I take it that there's no way to do that (...yet). | 18:31 | |
lizmat | pretty much, but I would gladly be proven wrong :) | ||
18:35
TieUpYourCamel joined
|
|||
El_Che | lizmat: it sounds like an inner struggle when only you can proof yourself wrong (or right) | 18:41 | |
bpv | lizmat: Well, I guess I will just stick to compiled libs then :\ | ||
lizmat | El_Che: it''s more the scientific method: nobody's been able to prove me wrong, so I'm right | 18:42 | |
El_Che | you little popper | 18:43 | |
Nemokosch | I'm reading about Riemann's conjecture | ||
El_Che | popper, not poopr :) | ||
Nemokosch | may we have lizmat's conjecture now? | ||
bpv | Very funny :b | ||
lizmat | for the less enlightened: en.wikipedia.org/wiki/Karl_Popper | 18:44 | |
bpv | Feyerabend is my pal :) | 18:47 | |
Nemokosch | I'm afraid Popper is more quoted for politics these days | ||
19:07
melezhik joined
|
|||
melezhik | .tell jdv  looks like you need to upgrade glibc to make blin work , you can borrow my code - github.com/melezhik/sparrow-plugin.../task.bash | 19:09 | |
tellable6 | melezhik, I'll pass your message to jdv | ||
melezhik | github.com/melezhik/sparrow-plugin...sh#L13-L15 | ||
github.com/melezhik/sparrow-plugin...ig.yaml#L2 | |||
more or less here the logic for alpine | 19:10 | ||
19:17
melezhik left
19:47
bpv left
19:55
discord-raku-bot left,
dutchie left,
shareable6 left,
bisectable6 left,
coverable6 left,
tellable6 left,
releasable6 left,
greppable6 left,
quotable6 left,
sourceable6 left,
timo left,
mexen_ left,
elcaro left,
tejr left,
destroycomputers left,
kaskal left,
sjn left,
phogg left,
tib left,
pierrot left,
dpk left,
rba left,
spacekookie left,
sena_kun left,
ProperNoun left,
vasko left,
swaggboi left,
guifa_ left,
Juerd left,
PotatoGim left,
ecocode___ left,
human-blip left,
GreaseMonkey left,
m_athias left,
nine left,
kybr left,
bartolin left,
a3r0 left,
leah2 left,
gugod left,
Sevalecan left,
Util left,
oodani left,
cnx left,
alethkit left,
patrickb left,
dg left,
jjatria left,
jercos left,
tinita left,
peder left,
TieUpYourCamel left,
mykhal left,
euandreh left,
perlbot left,
BinGOs left,
camelia left,
leont left,
skaji left,
gordonfish left,
KotH left,
nicole left,
thowe_ left,
zostay left,
aqua2 left,
mtj left,
Altreus left,
rjbs left,
CIAvash left,
AlexDaniel left,
Matthew|m left,
kawaii_ left,
charsbar left,
leedo_ left,
jcallen left,
Ekho left,
gabiruh left,
TieUpYourCamel joined,
discord-raku-bot joined,
mykhal joined,
sena_kun joined,
euandreh joined,
ProperNoun joined,
dutchie joined,
shareable6 joined,
bisectable6 joined,
coverable6 joined,
tellable6 joined,
releasable6 joined,
greppable6 joined,
quotable6 joined,
sourceable6 joined,
timo joined,
mexen_ joined,
elcaro joined,
vasko joined,
tejr joined,
destroycomputers joined,
kaskal joined,
perlbot joined,
swaggboi joined,
guifa_ joined,
sjn joined,
phogg joined,
BinGOs joined,
tib joined,
Juerd joined,
PotatoGim joined,
ecocode___ joined,
pierrot joined,
dpk joined,
rba joined,
spacekookie joined,
human-blip joined,
gabiruh joined,
Ekho joined,
jcallen joined,
leedo_ joined,
charsbar joined,
kawaii_ joined,
CIAvash joined,
AlexDaniel joined,
Matthew|m joined,
peder joined,
tinita joined,
jercos joined,
jjatria joined,
dg joined,
patrickb joined,
alethkit joined,
cnx joined,
oodani joined,
rjbs joined,
Altreus joined,
mtj joined,
aqua2 joined,
zostay joined,
Util joined,
thowe_ joined,
nicole joined,
Sevalecan joined,
KotH joined,
gordonfish joined,
gugod joined,
leah2 joined,
a3r0 joined,
bartolin joined,
skaji joined,
leont joined,
kybr joined,
camelia joined,
nine joined,
m_athias joined,
GreaseMonkey joined
19:56
Colere left,
Xliff left,
Xliff joined
19:57
justache left,
justache joined
19:58
Colere joined
19:59
CIAvash left,
Matthew|m left,
elcar0[m] left,
andrea[m]1 left,
MitarashiDango[m left,
AlexDaniel left
20:00
tadzik left,
crystalfrost[m] left
20:16
elcar0[m] joined
20:45
epony left
20:49
crystalfrost[m] joined
20:55
n1to joined
21:27
sena_kun left
21:28
sena_kun joined
21:38
andrea[m]1 joined
21:41
n1to left
21:44
epony joined
22:01
tadzik joined
22:14
Oshawott joined,
MitarashiDango[m joined
22:17
archenoth left
22:20
AlexDaniel joined
22:21
CIAvash joined
22:22
Matthew|m joined
22:46
Sgeo joined
22:56
sena_kun left
23:04
Geth left,
MoC left,
Geth joined
23:07
ingy1 is now known as ingy
23:15
sftp_ joined
23:16
sftp left,
sftp_ is now known as sftp
23:56
bigdata joined
|