[go-nuts] Re: [ANN] oksvg and rasterx; SVG 2.0 path compliant renderer and rasterizer

2018-04-23 Thread ajstarks
I'm very glad to see this. FYI, [1] has a bunch of examples for testing. It will be nice to have a pure Go tool chain for both generation and rendering. [1] https://github.com/ajstarks/deck/tree/master/cmd/codepicdeck/code On Sunday, April 22, 2018 at 1:41:07 PM UTC-4, Steven Wiley

Re: [go-nuts] [ANN] oksvg and rasterx; SVG 2.0 path compliant renderer and rasterizer

2018-04-30 Thread ajstarks
, but the speed and capability improvements are impressive. [1] https://github.com/ajstarks/deck/tree/master/cmd/codepicdeck/code [2] https://gist.github.com/ajstarks/78e55b92f9a62200ef5ab7211549589b [3] https://gist.github.com/ajstarks/9ce776afc3feed9ed957a24c567d -- You received t

[go-nuts] Helping to fixing Windows virus scanner false positives

2019-02-26 Thread ajstarks
One annoyance for gophers on Windows is the false positives from virus scanners when running the Go toolchain. This is mentioned in the FAQ: * This is a common occurrence, especially on Windows machines, and is almost* * always a false positive. Commercial virus scanning programs are often* * con

[go-nuts] Re: Helping to fixing Windows virus scanner false positives

2019-02-27 Thread ajstarks
FYI, the Go 1.12 toolchain is now blessed by Symantec. > I reported these false positives for the go command, compiler, assembler > and linker at > https://submit.symantec.com/false_positive/ and the good news is that the > go command (1.12 version) is now whitelisted. I'm waiting for the others

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

2017-08-28 Thread ajstarks
it would be helpful to better understand what you want to do, but: https://speakerdeck.com/ajstarks/svgo-code-plus-picture-examples includes the code below (with many other examples would should be illustrate the capabilities of the package) package main import ( "math/rand" &

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

2017-08-28 Thread ajstarks
Also note that the "richter" program is included in the package. On Monday, August 28, 2017 at 9:35:25 AM UTC-4, ajstarks wrote: > > it would be helpful to better understand what you want to do, but: > > https://speakerdeck.com/ajstarks/svgo-code-plus-picture-examples >

[go-nuts] Re: Go on ARM 32bit and 64bit resources and groups

2017-09-22 Thread ajstarks
I built the openvg library and its clients on the Raspberry Pi. See:[ https://github.com/ajstarks/openvg Other examples are in https://twitter.com/ajstarks/status/905198211274559488 and referenced in https://speakerdeck.com/ajstarks/go-for-information-displays In general I treat the Raspberry

[go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread ajstarks
SVGo is library for SVG generation, but others (some cited in this thread), have used it as a basis for building graphics and visualizations. See: [1] for examples (including how to interface to data, there's even a barchart [2] example :) [1] https://speakerdeck.com/ajstarks/the-

[go-nuts] Re: Mermaid parser

2017-10-27 Thread ajstarks
Not markdown, but here is compx a program for going "component" diagrams: basically placing items on a grid, and describing their connections. It was one of the first clients for SVGo See: https://github.com/ajstarks/svgo/tree/master/compx On Saturday, October 21, 2017 at 11:16:1

[go-nuts] Re: OpenGL Fonts

2017-04-21 Thread ajstarks
My OpenVG go wrapper uses TTF files: See: github.com/ajstarks/openvg On Wednesday, April 19, 2017 at 8:57:53 PM UTC-4, saif wrote: > > have found that you can do TTF to OpenVG. > but not sure how gl on go mobile will render slant lines for W. > > if you happen to know this is no

Re: [go-nuts] encoding/csv: Is this a bug?

2017-07-18 Thread ajstarks
See: https://github.com/golang/go/issues/7897 See also: https://gist.github.com/ajstarks/04a61ace4fc8e18f51fda8da6adac017 for a program I use to read CSVs on a Mac. I typically use "Windows Comma Separated" when saving from Excel. On Monday, July 17, 2017 at 11:07:43 PM UTC-4, M

[go-nuts] Virus detection issues on Windows/386 binaries built with -ldflags -s -w

2020-02-11 Thread ajstarks
When building Windows binaries for pdfdeck [1] ( https://github.com/ajstarks/deck/tree/master/cmd/pdfdeck) I noticed that the binary generated with on linux with: GOOS=windows GOARCH=386 go build -ldflags="-s -w" -o windows-386-pdfdeck.exe github.com/ajstarks/deck/cmd/pdfdeck will

Re: [go-nuts] Virus detection issues on Windows/386 binaries built with -ldflags -s -w

2020-02-11 Thread ajstarks
> positive on go code. not sure if they have an open channel to address > this. > > On Tue, Feb 11, 2020 at 9:15 PM ajstarks > > wrote: > > > > When building Windows binaries for pdfdeck [1] ( > https://github.com/ajstarks/deck/tree/master/cmd/pdfdeck) I not

Re: [go-nuts] Virus detection issues on Windows/386 binaries built with -ldflags -s -w

2020-02-11 Thread ajstarks
VT detected issues. As mentioned these are false positives: https://www.virustotal.com/gui/file/77cbc92defdabf7e308849f0dd5e784010d9b4548b99b50df52533b949a14d85/detection On Tuesday, February 11, 2020 at 11:50:37 PM UTC-5, ajstarks wrote: > > A bit more info: building natively on Wind

[go-nuts] Re: [security] Vulnerability in golang.org/x/net/html

2021-05-20 Thread ajstarks
thanks for the update. In future announcements it may be useful to include the command to perform the upgrade as in $ go get -u -v golang.org/x/net On Thursday, May 20, 2021 at 1:21:20 PM UTC-4 Filippo Valsorda wrote: > Hello gophers, > > Version v0.0.0-20210520170846-37e1c6afe023 of golang