Re: [ANN] guile-gi v0.0.1 released

2019-01-31 Thread sirgazil
El 31/01/19 a las 5:46 p. m., Mike Gran escribió: On Thu, Jan 31, 2019 at 07:51:24PM +0100, Amirouche Boubekki wrote: Greetings, Anyone try guile-gi for something even tiny? I'm getting pretty close to putting out a new revision. Things are getting close to functional. But, you should probab

Re: [ANN] guile-gi v0.0.1 released

2019-01-31 Thread Mike Gran
On Thu, Jan 31, 2019 at 07:51:24PM +0100, Amirouche Boubekki wrote: > Greetings, > > Anyone try guile-gi for something even tiny? I'm getting pretty close to putting out a new revision. Things are getting close to functional. But, you should probably not use it for anything until then. Regards

Re: Tensorflow audio recognition

2019-01-31 Thread Aleix Conchillo Flaqué
On Thu, Jan 31, 2019 at 2:37 PM Jan Wedekind wrote: > > Hi, > I got a Tensorflow neural network for audio recognition of 4 > different words working. > There are three Scheme programs: > * software for recording audio training data > * software for performing the training > * software for testing

Tensorflow audio recognition

2019-01-31 Thread Jan Wedekind
Hi, I got a Tensorflow neural network for audio recognition of 4 different words working. There are three Scheme programs: * software for recording audio training data * software for performing the training * software for testing using live audio input I used the software to remote control a Ra

Re: fibers on a unix socket

2019-01-31 Thread tomas
On Thu, Jan 31, 2019 at 05:43:42PM +0100, Catonano wrote: > Hello > > in Fibers there's an example of a client connecting to a server > > I'd like to do the same thing BUT in my case the server provides a unix > socket. > > It's a unix socket provided by Postgresql. On Ubuntu it's here > /var/ru

Re: fibers on a unix socket

2019-01-31 Thread Chris Vine
On Thu, 31 Jan 2019 17:43:42 +0100 Catonano wrote: > Hello > > in Fibers there's an example of a client connecting to a server > > I'd like to do the same thing BUT in my case the server provides a unix > socket. > > It's a unix socket provided by Postgresql. On Ubuntu it's here > /var/run/post

Re: [ANN] guile-gi v0.0.1 released

2019-01-31 Thread Nala Ginrut
I planed to, since I want to wrap Artanis program to be an desktop application with WebkitGTK. Amirouche Boubekki 于 2019年2月1日周五 02:55写道: > Greetings, > > Anyone try guile-gi for something even tiny? > > Le jeu. 15 nov. 2018 à 15:44, Mike Gran a écrit : > > > Hello. I am announcing guile-gi v0.0

Re: [ANN] guile-gi v0.0.1 released

2019-01-31 Thread Amirouche Boubekki
Greetings, Anyone try guile-gi for something even tiny? Le jeu. 15 nov. 2018 à 15:44, Mike Gran a écrit : > Hello. I am announcing guile-gi v0.0.1. > > guile-gi is a library that autogenerates Guile bindings for GObject > libraries that provide typelib files. GNU Guile is an implementation > o

fibers on a unix socket

2019-01-31 Thread Catonano
Hello in Fibers there's an example of a client connecting to a server I'd like to do the same thing BUT in my case the server provides a unix socket. It's a unix socket provided by Postgresql. On Ubuntu it's here /var/run/postgresql/.s.PGSQL.5432 I'm wondering about these 3 lines the fibers cli

Re: Function set-gl-vertex-array in Guile-opengl

2019-01-31 Thread Luis Souto Graña
I think I almost have it. I made a minimal example with a square. It starts but the square doesn't appear. If anyone finds where the fault is, please let me know. (use-modules (gl) (glut)) (use-modules (gl contrib packed-struct)) (define-packed-struct vertices (x float) (y float) (z float)