Re: [go-nuts] Re: 'go run hello.go' taking ~30 seconds on windows

2023-09-19 Thread Hoo Luu
Windows defender slows apps first time ran. I had replaced several hard disks(HDDs and SSDs) and reinstalled OS systems(win7,win10,win11), nothing changed. After turning off windows defender, everything returns to normal. 在2023年6月24日星期六 UTC+8 02:00:20 写道: > Hi Declan, > > What's the full code?

[go-nuts] [ANN] GraphBLAS binding for Go

2023-09-19 Thread Pascal Costanza
Hi, I am happy to announce a library that we have been working on at Intel. It is a Go binding for the GraphBLAS C API that calls into the widely used SuiteSparse:GraphBLAS C library. You can find the Go binding at forGraphBLASGo

[go-nuts] Re: JSON Compare

2023-09-19 Thread Maxime Soulé
Hi, You can have a look at go-testdeep [1] and its JSON [2] operator. go-testddep is tailored for tests, but it provides EqDeeplyError [3] function that can perhaps be useful in your use case. json1 := json.RawMessage(`{"foo":{"a":1}}`) json2 := json.RawMessage(`{"foo":{"b":8}}`) err := td.EqDee