From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Zelphir Kaltstahl Newsgroups: gmane.lisp.guile.user Subject: Re: Guile Potluck 2021 Date: Thu, 25 Feb 2021 22:08:22 +0100 Message-ID: <0785b0ec-f952-3c05-0616-8a46347c1c7c@posteo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="16505"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Thu Feb 25 22:09:14 2021 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lFNsn-0004Bc-QY for guile-user@m.gmane-mx.org; Thu, 25 Feb 2021 22:09:13 +0100 Original-Received: from localhost ([::1]:44840 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lFNsm-0001rb-PB for guile-user@m.gmane-mx.org; Thu, 25 Feb 2021 16:09:12 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:55198) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lFNsA-0001qz-Hn for guile-user@gnu.org; Thu, 25 Feb 2021 16:08:34 -0500 Original-Received: from mout01.posteo.de ([185.67.36.65]:46916) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lFNs8-0006VC-72 for guile-user@gnu.org; Thu, 25 Feb 2021 16:08:34 -0500 Original-Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 63E7A160060 for ; Thu, 25 Feb 2021 22:08:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1614287306; bh=h5YbYmahryHF2IgLwwiN5/6+31c7+InFplhumU5TKro=; h=To:From:Subject:Date:From; b=MjvFiNYmE0F4pjmjO7LCktfqjwJc7sYWa2uVbefSDZf6VkQx3xsBApTLU2Pw+f8d3 adgKWiYAMDmO0d6OTr2LhvPHAdx1yh3B5zApgMjnT2GaKqE4+75TycCuZKsMabi7+J xO0v8M2q1TTrWAJh9pjNDLNCPe2Mcxtn55XBosCX2b3vvYin/GYVHyswueAZLb2nA6 dkDqlx2qm1oVxApBIYqIBE1FkyTI/tTVtNQ7utmCjeEMOo4p6Q+GdpRyN2qYI6WPnN xtBJHar7uXs0h+/laCMJThXHZKNx3viQ460JMTtN3sEzGWQucM1/cdqV/2tVnvqYWv v9VbbMp24NWaQ== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Dmlkd5Q72z9rxS for ; Thu, 25 Feb 2021 22:08:25 +0100 (CET) Content-Language: en-US Received-SPF: pass client-ip=185.67.36.65; envelope-from=zelphirkaltstahl@posteo.de; helo=mout01.posteo.de X-Spam_score_int: -15 X-Spam_score: -1.6 X-Spam_bar: - X-Spam_report: (-1.6 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FAKE_REPLY_A1=2.799, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:17314 Archived-At: Hello! I want to share some projects for the Potluck as well: - guile-fslib - library for working with file system locations / things (currently only supports typical locations of GNU/Linux systems, not Windows with any drive letters. - https://notabug.org/ZelphirKaltstahl/guile-fslib - awesome-guile: - list of great guile stuff - https://notabug.org/ZelphirKaltstahl/awesome-guile - fantasy-vacation-planner: - With restrictions due to pandemics happening all over the planet, why not play a little traveling game written in GNU Guile? I did cheat a little though, using Python to validate the JSON configuration files, as I do not know about a GNU Guile library for validating JSON using a JSON schema. However, none of the actual game code is Python, it is all pure GNU Guile. - https://notabug.org/ZelphirKaltstahl/fantasy-vacation-planner - guile-user-input-output: - Just a small library for querying the user on command line for stuff. Things like "ask for an integer" or "ask for a number satisfying the condition expressed in the given lambda". - https://notabug.org/ZelphirKaltstahl/guile-user-input-output - guile-examples: - The place where I keep examples of how to do many things in GNU Guile. - https://notabug.org/ZelphirKaltstahl/guile-examples - guile-risk-calculator:  - A program for calculating probabilities in the board game risk. Makes use of simulating dice roll outcomes. The user can specify how many time a simulation is run. Helped me win a few games, I think, and was tricky to get working correctly. - https://notabug.org/ZelphirKaltstahl/guile-risk-calculator - guile-ml: - A library containing a parallelized decision tree algorithm using futures. I envisioned the repository to grow in number of algorithms and offer a good basis for machine learning projects. I guess it is a good start, but still needs lots of utilities to be simple to use, when your data is not only numbers. - https://notabug.org/ZelphirKaltstahl/guile-ml Regards, Zelphir -- repositories: https://notabug.org/ZelphirKaltstahl