[go-nuts] Re: Go channels overused and hyped?

2017-08-09 Thread Jason Stillwell
Here's the thing about channels in go. They're a primitive. Just like int is a primitive and string is a primitive. They're not an entire library, or framework. they're just a primitive. In other languages, currency "tools" are usually provided as some part of a fully featured library, or

Re: [go-nuts] Is slice in golang thread-safe for appending

2017-01-19 Thread Jason Stillwell
But it returns the new slice. On Thursday, January 19, 2017 at 2:40:30 PM UTC-8, freeformz wrote: > > No, it is not.* > > * appending can replace the underlying array, so in certain situations it > can be, but that's more by accident IMO so just don't rely on that. > > On Thu, Jan 19, 2017 at

[go-nuts] Using the new plugin API to create a Go REPL

2016-11-25 Thread Jason Stillwell
https://github.com/dragonfax/go_repl_plugin_example Its just a toy, but I thought it was an interesting idea. You compile a plugin with the code the user typed, and then load that into the process and execute it. -- You received this message because you are subscribed to the Google Groups

Re: [go-nuts] [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-12 Thread Jason Stillwell
example of a > case where it needs to communicate more information: > http://doc.qt.io/qt-5/qregexp.html#errorString > > On Nov 12, 2016, at 4:17 AM, Jason Stillwell <drag...@gmail.com> wrote: > > I gave it a try using QMdiArea. It seems to work well. > > But I'm confuse

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-12 Thread Jason Stillwell
I gave it a try using QMdiArea. It seems to work well. But I'm confused about where the errors go. There doesnt' seem to be a way to check for errors. Does it panic in every error situation? On Thursday, November 10, 2016 at 12:34:36 PM UTC-8, therecipe wrote: > > Hey everyone, > > I would like