01:22 wayland76 joined, wayland left 01:26 annamalai left 01:56 kylese left, kylese joined 02:15 kylese left, kylese joined
apogee_ntv github.com/m-doughty/Selkie It's finally released (should be on raku.land in a few mins). 03:05
03:10 lichtkind_ joined 03:13 lichtkind left
apogee_ntv raku.land link: raku.land/zef:apogee/Selkie -- if you're building a TUI give it a shot and let me know what sharp edges you run into. It's re-frame ish, everything's events & effects, very fast except initial load because it's all notcurses under the hood but it handles all the ugly stuff for you (ncplanes, memory management, etc). 03:23
github.com/m-doughty/Selkie/blob/m...unter.raku Simple example. 03:31
03:38 annamalai joined 04:18 soverysour joined 04:22 soverysour left 04:42 Aedil left 05:02 Aedil joined
Voldenet bisect: old=2025.01 new=2025.02 class Foo {has $.a; method test {$.a = 5}}; my $f = Foo.new; $f.test; say $f.a 05:16
bisectable6 Voldenet, Bisecting by exit code (old=2025.01 new=2025.02). Old exit code: 1
Voldenet, bisect log: gist.github.com/4d9066ea50b5997bce...df27c04149
Voldenet, (2025-02-15) github.com/rakudo/rakudo/commit/a6...c5ffe83e68
Voldenet huh 05:19
`I don't like this solution at all.` in commit message says it all
m: class Foo { has $.a; }; my $f = Foo.new; $f.a = 5; say $f.a; 05:27
evalable6 (exit code 1) Cannot modify an immutable 'Any' type object
in block <unit> at /tmp/KBfh80GHPS line 1
Voldenet …hmm?
ah, right
m: class Foo is rw { has $.a; }; my $f = Foo.new; $f.a = 5; say $f.a;
evalable6 5
Voldenet and of course, there's no reason why `($ = $.a) = 5` wouldn't work 05:30
disbot2 <librasteve> weekly: github.com/m-doughty/Selkie/blob/m...unter.raku 06:48
notable6 librasteve, Noted! (weekly)
07:00 topnep left 07:01 topnep joined
Voldenet that selkie framework could use some asciinema examples 07:23
07:23 Aedil left 08:16 schbax joined
schbax hello, I noticed a bug in the Raku website. where do I report it? 08:16
librasteve_ schbax: hi ./ - thanks for noticing - please can you make an issue here github.com/Raku/raku.org 09:00
schbax hey sure
librasteve_ right next to this one github.com/Raku/raku.org/issues/254 (that says we need a link back to the raku.org source ;-)) 09:01
schbax github.com/Raku/raku.org/issues/313 09:03
09:05 topnep left
librasteve_ tx! 09:05
09:08 topnep joined 09:12 soverysour joined, soverysour left, soverysour joined
Geth raku.org: librasteve++ created pull request #314:
fix broken links to /nav/1
09:18
librasteve_ ok - the fix is done … will take about 15 mins to test and deploy 09:19
appreciate the spot 09:21
Geth raku.org/main: 87d1e2eb3c | librasteve++ | 18 files
fix broken links to /nav/1
09:22
raku.org/main: bd84ffb60b | librasteve++ (committed using GitHub Web editor) | 18 files
Merge pull request #314 from librasteve/fix-links

fix broken links to /nav/1
09:29 Sgeo left 09:43 soverysour left 09:46 soverysour joined, soverysour left, soverysour joined
schbax confirmed :) 09:52
10:00 schbax left, soverysour left 10:04 _________ left 10:34 Pixi` joined 10:36 ShimmerFairy left 10:37 Pixi left, ShimmerFairy joined 11:27 jcallen left, ugexe left 11:28 jcallen joined, ShimmerFairy left 11:29 ShimmerFairy joined 11:33 ShimmerFairy left, ShimmerFairy joined 11:42 ugexe joined 11:48 Pixi joined 11:50 rnddim joined 11:51 ShimmerFairy left, Pixi` left 11:53 rnddim left, ShimmerFairy joined 11:56 _________ joined 12:32 soverysour joined 12:37 soverysour left 12:42 johnjay left 12:47 johnjay joined 13:18 topnep left 13:19 topnep joined
disbot2 <antononcube> Are many people here are interested in Astronomy? (At least one I guess... BTW, I am not.) 13:25
<antononcube> Hm... let me rephrase. To what degree visualizing the flight of Artimis II in Raku is of interest? 13:26
13:38 soverysour joined, soverysour left, soverysour joined, AntonOks joined
AntonOks Can someone please merge github.com/raku-community-modules/...h/pull/246 ?!? THANKS! 13:39
disbot2 <antononcube> @lizmat Feel free to close this issue: github.com/lizmat/Test-Output/issues/7 . As mentioned there I do not feel strongly about it. I vaguely remember that I found it convenient to deal with (potential) errors using "Test::Output" using silent. That implementation design was from 2022, so, it is probably outdated. 14:32
15:08 Aedil joined 15:12 AntonOks left 15:23 topnep left 15:25 topnep joined 15:33 soverysour left 16:03 soverysour joined, soverysour left, soverysour joined 16:40 johnjay left 16:42 johnjay joined 16:56 annamalai left 16:59 soverysour left 17:29 topnep left 17:30 topnep joined 17:54 soverysour joined, soverysour left, soverysour joined 17:58 soverysour left 18:18 Sgeo joined 18:43 ShimmerFairy left, ShimmerFairy joined 18:44 ShimmerFairy left 18:45 ShimmerFairy joined 18:47 soverysour joined, soverysour left, soverysour joined 18:52 soverysour left
avuserow hello world! I'm playing with Raku, GTK4, and VTE to make a terminal emulator. I'm using it to send this very message. 18:54
Of course VTE is doing the heavy lifting of being a terminal but it will have a few things that I haven't seen in other emulators. I'll blog about it eventually if it works out :) 18:57
apogee_ntv Very nice! 19:03
19:04 soverysour joined 19:09 soverysour left 19:10 soverysour joined, soverysour left, soverysour joined 19:14 soverysour left 19:34 topnep left 19:36 topnep joined 19:54 Aedil left
coleman That's a cool project 19:54
perryprog yeah, that's quite impressive. Well done. 19:56
19:58 soverysour joined, soverysour left, soverysour joined 20:05 soverysour left 20:11 soverysour joined 20:16 soverysour left
apogee_ntv Fixed Notcurses::Native to compile on Windows with multimedia support. Selkie will follow. 20:18
20:32 soverysour joined 20:34 abraxxa joined 20:36 soverysour left 21:23 wayland joined, wayland76 left
apogee_ntv I cant *test* on Windows but it builds. 21:24
If anyone on Windows x64 could clone the repo, install the build deps then run the example programs and let me know what breaks that'd be amazing. 21:28
21:33 soverysour joined, soverysour left, soverysour joined 21:37 refactus left 21:38 soverysour left 21:39 refactus joined, refactus left, refactus joined
[Coke] is there a DLL we need to install first? 21:39
apogee_ntv [Coke]: Need MSYS2 and then install some deps with pacman, it vendors notcurses and builds on install 21:42
The deps should be in the readme but its build chain, ffmpeg etc.
github.com/m-doughty/Notcurses-Nat...ys2-ucrt64 21:43
Was not pleasant to figure out using only github actions for feedback 21:45
[Coke] can't run pacman here- complains about the self signed cert 21:48
apogee_ntv On msys2 ucrt64 shell? 21:50
Oh I think you have to do pacman -Syu then it'll restart the shell 21:51
[Coke] "failed to synch"... 21:53
it doesn't like the corporate cert.
apogee_ntv Hm
[Coke] I'll see if I can figure it out, but not today 21:54
apogee_ntv www.msys2.org/docs/faq/ 21:55
Theres a section in the FAQ about it
For when you get the chance
Looks like you download the corporate cert, dump it in a folder and run a command to make curl trust it 21:56
22:06 soverysour joined, soverysour left, soverysour joined 22:11 soverysour left 22:52 human-blip joined 22:56 abraxxa left 23:04 wayland left 23:15 soverysour joined, soverysour left, soverysour joined 23:20 soverysour left 23:41 jrjsmrtn_ left, jrjsmrtn joined 23:49 jrjsmrtn left 23:58 jrjsmrtn joined