Re: [go-nuts] Go/Python interop

2023-11-22 Thread Eli Bendersky
On Wed, Nov 22, 2023 at 11:31 AM Sebastien Binet wrote: > Hi there, > > In this week "compiler minutes" [1], one can read: > > """ > - Go on future platforms (RAM efficiency. NUMA?) > - (maybe) Go-Python interop for AI-powered applications > - [David]: is it a good idea to use cgo for Go-Python

Re: [go-nuts] a simple linux audio player pkg?

2023-11-22 Thread Raffaele Sena
I have used github.com/jfreymuth/oggvorbis to read the ogg file (and convert to PCM) and github.com/ebitengine/oto/v3 to play the PCM. I don't know of a full ogg player in Go On Wed, Nov 22, 2023 at 2:02 PM 'Mark' via golang-nuts < golang-nuts@googlegroups.com> wrote: > Is there a simple

[go-nuts] a simple linux audio player pkg?

2023-11-22 Thread 'Mark' via golang-nuts
Is there a simple vorbis/oga audio player package for Go that works on Linux. The only API I need is something like this: player.SetFilename(string) error // string is say tune.ogg; stops playing previous if any player.Play(float32) error // plays current filename from given second e.g. 0.0

Re: [go-nuts] Re: Mongo Go Models (mgm) module and order by

2023-11-22 Thread Tong Sun
Well, actually, it is at https://github.com/Kamva/mgm/issues/90, and my previous question (#89) was asked 3 weeks ago, but nobody has answered it yet. This mlist is my last resort, if nobody here can answer the question, then basically nowhere else I can find the answer. It's not the end of the

[go-nuts] Go/Python interop

2023-11-22 Thread Sebastien Binet
Hi there, In this week "compiler minutes" [1], one can read: """ - Go on future platforms (RAM efficiency. NUMA?) - (maybe) Go-Python interop for AI-powered applications - [David]: is it a good idea to use cgo for Go-Python interop? - [Michael]: no. better with pipe or RPC """ Would it be

[go-nuts] Re: Mongo Go Models (mgm) module and order by

2023-11-22 Thread 'Brian Candler' via golang-nuts
https://github.com/Kamva/mgm/discussions perhaps? (Open, but nothing posted since June 2022). On Wednesday, 22 November 2023 at 17:02:35 UTC Tong Sun wrote: > Any Mongo Go Models (mgm) user here? > https://github.com/Kamva/mgm > > Looks like that mgm can do aggregation but not "order by". > Is

[go-nuts] Mongo Go Models (mgm) module and order by

2023-11-22 Thread Tong Sun
Any Mongo Go Models (mgm) user here? https://github.com/Kamva/mgm Looks like that mgm can do aggregation but not "order by". Is that so? Can anyone do order by with mgm please? PS. Support requests are supposed to be post to mongo-go-models Google Group