[go-nuts] Re: url.parse issue if the first character of a url is a number

2019-02-10 Thread mailme . xu
What I said is the url content without http/https . On Sunday, February 3, 2019 at 4:09:05 PM UTC+8, Tamás Gulácsi wrote: > > An url must start with a scheme (i.e. http://). -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from

Re: [go-nuts] Pure Golang Online Mandelbrot Viewer and MORE

2019-02-10 Thread Hugh S. Myers
I've got a copy on my system (being the author has got to have some perks!) but I'm sad to say that the underlying OS has changed so much that it no longer runs. Even worse I lack the source code :( With that, I could easily port it to JavaScript and let it loose again, but without there are

Re: [go-nuts] Pure Golang Online Mandelbrot Viewer and MORE

2019-02-10 Thread jose . gomez . marquez
I just found this post. Do you know where we can get Fraczooms. I loved it as a high schooler! On Thursday, July 21, 2016 at 11:51:56 AM UTC-4, hsmyers wrote: > > Interface differences are often similar to discussions about calculator > styles. Some swear by RPN, others swear at it :) I'd be

[go-nuts] Enumerate query result fields using "github.com/go-ole/go-ole/oleutil"

2019-02-10 Thread Curtis Paul
Any ideas on how I can get a list of fields (not values) after executing something like this? resultRaw, _ := oleutil.CallMethod(service, "ExecQuery", "SELECT * FROM Win32_ComputerSystem") result := resultRaw.ToIDispatch() defer result.Release() Basically I just want a list of the field names

Re: [go-nuts] Go modules do not respect vendor folder of dependencies (is this by design?)

2019-02-10 Thread Ian Davis
On Sun, 10 Feb 2019, at 12:03 AM, s...@pion.ly wrote: > * I have a project 'A' that is importing 'B' > * 'B' uses a vendor folder, if you delete the vendor folder the project does > not compile. > * With `GO111MODULE=on` I am unable to project 'A'. It tries to pull the > latest of 'B', and