Re: Hosting Guile web applications

2020-01-19 Thread Jeremy Korwin-Zmijowski
Le dimanche 19 janvier 2020 à 10:08 +0100, Ricardo Wurmus a écrit : > Jérémy Korwin-Zmijowski writes: > > > I would like to know where/how do you host your web applications > > written in Guile. > > For all my web applications I have them listen on a port on localhost > only. I use nginx to lis

Re: Hosting Guile web applications

2020-01-19 Thread Jeremy Korwin-Zmijowski
Le dimanche 19 janvier 2020 à 10:03 +0100, Ricardo Wurmus a écrit : > Nala Ginrut writes: > > > And you may install it with Docker that may save your lot of time: > > https://nalaginrut.com/archives/2019/09/18/install%20gnu%20artanis%20with%20docker > > Or with Guix: > > guix install artanis

Re: configuring apps for guile

2020-02-12 Thread Jeremy Korwin-Zmijowski
Le mercredi 12 février 2020 à 06:04 -0800, Matt Wette a écrit : > > On 2/12/20 5:54 AM, Matt Wette wrote: > > Here is my solution. What do you think? If $prefix is the same > > as > > used to build guile > > then I use the directories from $guile. Otherwise, I use the > > default. This now w

Re: Happy birthday, Guile!

2020-02-16 Thread Jeremy Korwin-Zmijowski
Le dimanche 16 février 2020 à 15:56 +0100, Ludovic Courtès a écrit : > Hello Guilers! > > Today, it’s been 9 years since Guile 2.0 came out! > > > https://lists.gnu.org/archive/html/guile-devel/2011-02/msg00173.html > > It’s impressive how much has been accomplished since 2.0, and how > what

How to contribute ?

2020-02-19 Thread Jeremy Korwin-Zmijowski
Dear Guilers, I am willing to put some effort to learn how to modestly contribute to Guile. My first goal could be to update the srfi-64 module which I use a lot. I know at least one bug, in the version shipped in Guile, which is fixed in the upstream srfi repo https://srfi-email.schemers.org/s

Re: How to contribute ?

2020-02-20 Thread Jeremy Korwin-Zmijowski
I am just asking what would be the maintainers prefered way of doing. As I don't have any serious suggestions to bring on the table, considering my experience in such project. But I will look at your code, Taylan ! I always appreciate reading Guile code. ;)

Re: single-stepping throwgh a procedure is possible in guile 3?

2020-03-23 Thread Jeremy Korwin-Zmijowski
Le vendredi 13 mars 2020 à 11:02 +0100, Michelangelo Rodriguez a écrit : > Hi all, > I'm studying guile and scheme and as sayd in the subject, i would > like > to know if single-stepping throwgh a procedure is possible in guile > 3. > I looked at internet for information, and i found a reference th

Re: GNU Guix 1.1.0 released

2020-04-22 Thread Jeremy Korwin-Zmijowski
Thank you all for being part of this journey ! Jérémy

Re: How do people debug their guile code?

2020-09-08 Thread Jeremy Korwin-Zmijowski
Hey Fredrik ! I practice Test Driven Development to the point I make very small changes so I can manage the debugging part usually thanks to the pk command. Otherwise I call for help haha (love you, guilers) I have to say, I never worked on big projects so I don't have big requirements haha Che

Building Guile from git sources stuck during make

2018-03-24 Thread Jeremy Korwin-Zmijowski
Dears, I am trying to build Guile from git sources (master branch) but when I issue make command, the process is stuck here : GEN guile-procedures.texi make[3]: Leaving directory `/home/jeko/Builds/guile/libguile' make[2]: Leaving directory `/home/jeko/Builds/guile/libguile'

Re: Building Guile from git sources stuck during make

2018-03-25 Thread Jeremy Korwin-Zmijowski
roadrunner.com wrote: > Jeremy Korwin-Zmijowski wrote: >> Dears, >> >> I am trying to build Guile from git sources (master branch) but when I >> issue make command, the process is stuck here : >> >> GEN guile-procedures.texi >> make[3]: L

Re: What tools do you use with Guile?

2018-04-03 Thread Jeremy Korwin-Zmijowski
>What do you use to build your projects? Do you use autotools, >handwritten Makefiles, some other build system, or don't even use any >build tools? I use autotools, thanks to your blog post about it ! >How do you manage your software written in Guile? Do you use a package >manager like GNU Guix,

Re: Meet Cybo, my personal organizer

2019-03-15 Thread Jeremy Korwin-Zmijowski
Hey Nala ! Thank you very much for your interest in cybo ! The format I chose for the TODO is called "todo.txt" (actually just a subset of it). You can find informations about it here : https://github.com/todotxt/todo.txt It is a plain text format thus a simple `echo "(A) fix critical bug of XXX

Re: Code coverage

2019-04-13 Thread Jeremy Korwin-Zmijowski
Le vendredi 12 avril 2019 à 12:35 +0200, jer...@korwin-zmijowski.fr a écrit : > Hello dear guilers ! > > I have implemented a code coverage test with a piece of code I > modified > for my usage, here it is (filename : cybo-cov.scm): > > (use-modules (system vm coverage) >(system vm v

Re: [ANN] Gash 0.1 released

2019-06-01 Thread Jeremy Korwin-Zmijowski
Le samedi 01 juin 2019 à 14:53 -0400, Timothy Sample a écrit : > Hi all, > > I am very pleased to announce that Gash version 0.1 has been > released. > This is the very first release, but it represents 569 commits from > three > authors over the course of three years. > > About > = > > Gash

Re: sorted?

2024-12-09 Thread Jeremy Korwin-Zmijowski
No problem---I'm too. Think about it this way: How would you sort this list of numbers: 7 1 3 8 2 1 4 ? It's 1 1 2 3 4 7 8, right? That is what we want (sort '(7 1 3 8 2 1 4)) to output (+ the parentheses of course). Now, `sorted?' returns true if its input is what `sort' would have produced a

sorted?

2024-12-09 Thread Jeremy Korwin-Zmijowski
Hi Guilers, Doing Advent of Code 2024, I was trying to use `sorted?` procedure. And something bothered me. The reference says : Scheme Procedure: *sorted?* items less C Function: *scm_sorted_p* (items, less) Return |#t| if items is a list or vector such that, for each el