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 enough

Re: [go-nuts] Math on Huge (2GB) numbers in GoLang

2017-07-22 Thread Hugh S. Myers
Like everything else, '*it depends…*' Do you want speed? Do you want the bulk of the coding already available as a library/module? With or without a user interface? Answer those first and then ask again. Oh! Replace Javascript with Perl… On Sat, Jul 22, 2017 at 7:48 AM, me wrote: > How does

Re: [go-nuts] Math on Huge (2GB) numbers in GoLang

2017-07-22 Thread Hugh S. Myers
Is math/big pari based? On Sat, Jul 22, 2017 at 8:36 AM, Rémy Oudompheng wrote: > 2017-07-22 17:19 GMT+02:00 Rémy Oudompheng : > > 2017-07-22 16:48 GMT+02:00 me : > >> How does GoLang compare to other languages for mathematics dealing with > >> really large numbers? > >> > >> Prefer the ability

Re: [go-nuts] Math on Huge (2GB) numbers in GoLang

2017-07-22 Thread Hugh S. Myers
time… On Sat, Jul 22, 2017 at 10:14 AM, Rémy Oudompheng wrote: > The math/big library has basic routines implemented in assembly for > most common architectures, with all the math written in Go atop those. > > Rémy. > > 2017-07-22 17:39 GMT+02:00 Hugh S. Myers : > > Is math/b

Re: [go-nuts] Problems with regexp

2017-08-28 Thread Hugh S. Myers
(.*) is greedy… try ([^\[]+) this should consume all till it runs into the open bracket, your next group… On Mon, Aug 28, 2017 at 7:17 PM, Paulo Coutinho wrote: > Hi, > > Well, I'm having a problem with regular expressions, so all online regexp > testers work, including those that run on go. > >

Re: [go-nuts] Re: Elphaba Chess

2017-12-02 Thread Hugh S. Myers
err…wouldn't that be "C an Bell product…" Bell Labs and all. On Sat, Dec 2, 2017 at 7:12 PM, as wrote: > Calling Go a Google product makes as much sense as calling C a Nokia > product. > > > On Friday, November 24, 2017 at 7:23:06 PM UTC-8, Hugh Aguilar wrote: >> >> I invented a chess variation

Re: [go-nuts] Elphaba Chess

2017-12-02 Thread Hugh S. Myers
yeah I guess, sick transom gloria monday and such… On Sat, Dec 2, 2017 at 11:57 PM, Ian Lance Taylor wrote: > On Sat, Dec 2, 2017 at 11:37 AM, wrote: > > > > Google is not going to be happy if somebody uses Go to compete against > > Google. > > I think that Go is a nice language, but it's not

Re: [go-nuts] XML Pretty Print

2017-12-15 Thread Hugh S. Myers
Has anyone tried HTML Tidy? I know it Pretty-prints HTML and I remember that the same is claimed for XML?… On Fri, Dec 15, 2017 at 10:27 AM, Mandolyte wrote: > I was able to do a minimalist pretty print with limitations just using > marshal/unmarshal. See the code here >

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

2016-07-20 Thread Hugh S. Myers
As a bit of a fractal UI pioneer (see FracZooms and related), my quick suggestion is to allow for drawing of a outline style box(i.e. edge only) with mouse or finger. Leave outline in place until user either draws another, or indicates desire to zoom on selection. Then zoom to the extent of the box

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

2016-07-21 Thread Hugh S. Myers
Interface differences are often similar to discussions about calculator styles. Some swear by RPN, others swear at it :) I'd be happy enough with leaving the box up and maybe an hour-glass cursor. Just avoid visual silence as it tends to look like nothing is going on... On Thu, Jul 21, 2016 at 1:4

Re: [go-nuts] Parse JSON in Template

2017-02-19 Thread Hugh S. Myers
The devil sitting on my shoulder tempts me to say "Of course, there is" and walk away. That said, by now there must exist code to read JSON (YAML, Windows config files, etc.) from a string. It's just a matter of finding it. - https://gobyexample.com/json - https://blog.golang.org/json-and-go