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] 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] 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

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

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

2017-07-22 Thread Hugh S. Myers
… On Sat, Jul 22, 2017 at 10:14 AM, Rémy Oudompheng <remyoudomph...@gmail.com> 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.

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

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

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 -