Re: [go-nuts] Convert grid of colors to SVG

2017-08-28 Thread steve_bagwell
Thanks Konstantin. That's a good point. I've posted an issue on that repo. Unfortunately, there is another issue there from Sep 2016 which doesn't appear to have a reply yet. We'll see if I get a reply. On Monday, August 28, 2017 at 3:36:13 AM UTC-4, Konstantin Khomoutov wrote: > > On Fri, Aug

Re: [go-nuts] Convert grid of colors to SVG

2017-08-28 Thread Konstantin Khomoutov
On Fri, Aug 25, 2017 at 10:18:17AM -0700, steve_bagw...@sil.org wrote: > > There's svgo: https://github.com/ajstarks/svgo [...] > Thanks Andrey, > SVGO didn't seem to include that particular functionality. Maybe I just > didn't look carefully enough? So, this begs the question: why producing ye

Re: [go-nuts] Convert grid of colors to SVG

2017-08-25 Thread andrey mirtchovski
I'm sorry, I assumed that you were looking for an SVG library. I think putting your code on bitbucket or elsewhere is a good idea. On Fri, Aug 25, 2017 at 11:18 AM, wrote: > Thanks Andrey, > SVGO didn't seem to include that particular functionality. Maybe I just > didn't look carefully enough?

Re: [go-nuts] Convert grid of colors to SVG

2017-08-25 Thread steve_bagwell
Thanks Andrey, SVGO didn't seem to include that particular functionality. Maybe I just didn't look carefully enough? On Friday, August 25, 2017 at 12:32:25 PM UTC-4, andrey mirtchovski wrote: > > There's svgo: https://github.com/ajstarks/svgo > > When in doubt, put your code out there :) > > -

Re: [go-nuts] Convert grid of colors to SVG

2017-08-25 Thread andrey mirtchovski
There's svgo: https://github.com/ajstarks/svgo When in doubt, put your code out there :) On Fri, Aug 25, 2017 at 9:37 AM, wrote: > I've been experimenting with Go recently, having been more of a Python > programmer. > As an exercise, I've written a Go program that creates simple SVG xml based >

[go-nuts] Convert grid of colors to SVG

2017-08-25 Thread steve_bagwell
I've been experimenting with Go recently, having been more of a Python programmer. As an exercise, I've written a Go program that creates simple SVG xml based on a 2-dimensional grid of colors. I'm wondering if that's something worth putting up on Bitbucket or is there already a repo out there