[go-nuts] Go and AI Recommendations

2020-12-27 Thread Philip Chapman
I am an experienced developer and fairly knowledgeable in Go, but new to AI and machine learning. I'd like to expand my skillset in that direction. I would be happy for and recommendations and advice on good material for learning AI and machine learning with Go. Most of the material out there

Re: [go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-09-11 Thread Philip Chapman
There is a gtk binding, but I'm not sure if it's fully cross platform. https://github.com/gotk3/gotk3 On Fri, Sep 11, 2020, 6:26 PM Kent Sandvik wrote: > I tested fyne on my Mac, hey didn't crash, that's a big plus with these > cross-platform GUI frameworks. The Look is somewhat different but

Re: [go-nuts] Is it possible to build Linux executables on Windows with lxn/walk?

2020-04-08 Thread Philip Chapman
. I've not tried it though, so your mileage may vary. On Wed, Apr 8, 2020 at 7:27 AM Kevin Chadwick wrote: > On 2020-04-08 12:00, Philip Chapman wrote: > > I personally like Wails. Here is a breakdown of some of the options so > that you > > can research which o

Re: [go-nuts] Is it possible to build Linux executables on Windows with lxn/walk?

2020-04-08 Thread Philip Chapman
There are a few options, but it rather depends on what you need to do. The most similar to walk for linux would be go-gtk3. However, for cross-platform, probably the QT bindings. If you want to go the embedded html route, there are a few different options. I personally like Wails. Here is a

Re: [go-nuts] Http header and CR LF

2019-05-29 Thread Philip Chapman
This is not a golang question per-se, but a question about HTTP headers. My suggestion is to read up on HTTP headers and their requirements here: https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html And concerning inserting an actual carriage return followed by a line feed, you can see how to

Re: [go-nuts] what does p stand for in io.Reader.Read argument

2019-04-06 Thread Philip Chapman
p is the array of bytes that you want to fill with data read. The method returns the count of the number of bytes read which may be any value from zero to p's length. You must make multiple reads if the thing being read from holds more data than your buffer array can hold. On Sat, Apr 6, 2019

Re: [go-nuts] Re: Cross-compiled program for Raspberry Pi crashes

2018-08-13 Thread Philip Chapman
Another option may be to run 32 bit raspberian OS and compile in a virtual machine and compile it there, perhaps. VirtualBox comes to mind. On Mon, Aug 13, 2018 at 1:52 PM, Stephan Mühlstrasser < stephan.muehlstras...@gmail.com> wrote: > > Am Montag, 13. August 2018 22:36:56 UTC+2 schrieb Dave

Re: [go-nuts] go 1 on Ubuntu 18.04

2018-05-05 Thread Philip Chapman
Since you installed it through the package management system rather than manually, it would be best to wait for new versions of go be packaged and provided through the same package management system. Should you want to do otherwise, it would be best to uninstall the go package using apt-get and

Re: [go-nuts] Re: Implementing JDBC Driver

2018-04-14 Thread Philip Chapman
There is nothing particularly magic about JDBC. It's just an implementation of a RDBMS' communication protocol either implemented in Java or a Java wrapper around a C library that implements the protocol. If you have access to the source of the JDBC driver in question, you could probably use