[go-nuts] Re: Best IDE for GO ?

2023-08-30 Thread Samuel Banks
Short answer: Goland Longer answer: It really depends on your level, the kinds of software you are building etc etc, However in terms of being fully featured, stable, and available multiple platforms. i have found that Goland by JetBrains to the best however its paid, if you are looking for

[go-nuts] Go 1.20.x undocumented change: t.Run panics when called in t.Cleanup

2023-03-09 Thread Samuel Nelson
I am a maintainer of a library that was calling `t.Run` inside of `t.Cleanup`, in order to call test functions after everything (the test functions and their corresponding setup/teardown functions) had been registered. Go 1.20.x changed that so that `t.Run` cannot be called inside of

[go-nuts] Re: I just published : Iterator lib for Go: Library providing Map(), Filter(), Reduce() for Go

2022-03-03 Thread Samuel Berthe
Go will have support for generics soon. You won't need reflection anymore. \o/ https://github.com/samber/lo On Friday, September 3, 2021 at 3:53:45 PM UTC+2 Howard C. Shaw III wrote: > Just so you are aware of what's out there: > > https://github.com/robpike/filter > > "I wanted to see how hard

Re: [go-nuts] Is there a Go native approch to MPI (Message passing interface) ?

2020-09-14 Thread Samuel Lampa
Nice, thanks a lot for sharing! Best Samuel On Monday, September 14, 2020 at 1:07:25 PM UTC+2 rcore...@gmail.com wrote: > I just wrote a wrapper around open mpi in Go: https://github.com/emer/empi > > Also, here's a set of random go bindings I found: > • https://github.com/yoo/go-m

[go-nuts] Re: Is there a Go native approch to MPI (Message passing interface) ?

2020-09-14 Thread Samuel Lampa
o (for HPC use cases if nothing else)? :) [1] https://en.wikipedia.org/wiki/Remote_direct_memory_access [2] https://en.wikipedia.org/wiki/InfiniBand Best Samuel -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and sto

[go-nuts] Help: Encrypting and Decrypting ASCII armor PGP Messages with golang.org/x/crypto/openpgp

2020-08-18 Thread Samuel Lorch
Hi, i have been trying to decrypt and encrypt ASCII armor PGP Messages that i receive and send to a API. I Wrote a function for decrypting messages and another one for encrypting messages. The Decrypting function Works and i can decrypt the API's messages. But My encrypt function Seems to

Re: [go-nuts] Re: Concurrent Routines in WASM

2019-06-24 Thread Samuel Warfield
.14, >> presumably). Feel free to submit patches. >> >> It looks like wasm threads is implemented in Chrome 70+, but I'm not sure >> how that relates to the spec and/or other wasm implementations. >> >> On Friday, June 21, 2019 at 1:13:17 PM UTC-4, samuel@gmail.co

[go-nuts] Concurrent Routines in WASM

2019-06-21 Thread samuel . warfield2
Does the golang WASM compiler support concurrent routines with WASM threads yet? If not is there a place that I can contribute to its development? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving

[go-nuts] Number threads run by a simple golang application

2018-12-26 Thread samuel
0:00 ./test 18344 18344 pts/3S+ 0:00 grep --color=auto test [smonderer@schmil ~]$ Can someone explain why there is more than one thread?? Thanks Samuel -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from t

[go-nuts] Re: Is there a workflow engine written in GO

2017-10-25 Thread Samuel Lampa
You might want to check out http://scipipe.org We developed it and are currently using it to run cheminformatics pipelines (data mangling, machine learning etc) on a HPC cluster, at http://pharmb.io at Uppsala University. Cheers // Samuel On Friday, May 8, 2015 at 2:30:20 PM UTC+2, Sriram

Re: [go-nuts] Re: Any way to somehow include readable source code into compiled binaries?

2017-10-19 Thread Samuel Lampa
unwarranted, undocumented changes if we'd just give them the Go source and the Go tools. Best // Samuel -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: [go-nuts] Re: Any way to somehow include readable source code into compiled binaries?

2017-10-19 Thread Samuel Lampa
anks, and Cheers // Samuel -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.

[go-nuts] Any way to somehow include readable source code into compiled binaries?

2017-10-19 Thread Samuel Lampa
led binary with the source code included in some form, would be the best of two worlds. Cheers // Samuel PhD Student @ pharmb.io -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails fr

[go-nuts] Extending net/http to make managing security relevant HTTP response headers easier

2017-08-22 Thread Mike Samuel
I'd appreciate feedback on a Go library I'm planning that might be of interest to people who write Go web frontends, https://tinyurl.com/sec-header-sets is the design doc. """ A proposed library that provides safe defaults (with opt-out) for security-relevant HTTP response headers. Background

Re: [go-nuts] Compiler plugins or something?

2016-08-31 Thread 'Samuel Tan' via golang-nuts
Got it. Thanks for the quick follow-up, Ian. On Wed, Aug 31, 2016 at 11:00 AM, Ian Lance Taylor wrote: > On Wed, Aug 31, 2016 at 10:31 AM, samueltan via golang-nuts > wrote: > > May I know what the status of compiler plugins are as of Go 1.7? I'm