Third-parties are back to upstream

2024-05-03 Thread Nala Ginrut
Hi folks! I've removed intergrated guile-redis & guile-json in Artanis, and tweaked the interfaces, so folks may install their prefered version from upstream. Artanis become more lightweight now. And this will also alleviate the pain of the packagers. The CI tests are passed.

Re: How to gradually write a procedure using Guile?

2024-05-03 Thread Dr. Arne Babenhauserheide
Hi Thomas, I usually work by redefining the whole procedure and running it. Typically I start with the minimal procedure (define (hello) #f) Then — for nicely testable procedures — I add a doctest and get it to run: (define (hello) "Say hello." #((tests ('answers (test-equal

Re: GNU G-Golf 0.8.0-rc-3 available for testing

2024-05-03 Thread pelzflorian (Florian Pelz)
David Pirotte writes: >> Hi David. I’m trying to find the true error location. > > The true error location was given by the gdb backtrace, the > gtk-widget-snapshot-child call, presumably with a bad pointer or so ... Hmm my assumption was that all callbacks are broken, not vfuncs specifically,

Re: How to gradually write a procedure using Guile?

2024-05-03 Thread Jérémy Korwin-Zmijowski
Hi Tomas ! You have to make choices in the code weather you want to leverage the REPL or not. That's fine. I incentivize you to try different approaches and see how it feels while you work. So you can make your choices based on actual experience. What comes to my mind right now is pretty