[go-nuts] New tutorial:Code a simple P2P blockchain in Go!

2018-04-14 Thread noor
https://medium.com/@mycoralhealth/code-a-simple-p2p-blockchain-in-go-46662601f417 Hi Everyone, We will show you how to run a simple blockchain in a truly decentralized, Peer-to-Peer fashion. Let us know what you think! -- You received this message because you are subscribed to the Google

Re: [go-nuts] Re: latest go examples

2018-04-14 Thread Fernando Rodriguez
I second the Just for Func video series by Francesc Campoy, great series. I also highly recommend the following resources to go along with that: 1. https://gophercises.com by Jon Calhoun 2. Go Data Structures & Algorithms: https://github.com/floyernick/Data-Structures-and-Algorithms by Mykyta

Re: [go-nuts] Re: Implementing JDBC Driver

2018-04-14 Thread Philip Chapman
There is nothing particularly magic about JDBC. It's just an implementation of a RDBMS' communication protocol either implemented in Java or a Java wrapper around a C library that implements the protocol. If you have access to the source of the JDBC driver in question, you could probably use

Re: [go-nuts] Re: All the Go project history, live in RAM

2018-04-14 Thread Brad Fitzpatrick
Yeah, I think that should work. IIRC, the cache files aren't appended to, but atomically rewritten & replaced. So running two on the same filesystem will waste a bit of network & disk I/O, but it should be correct. On Sat, Apr 14, 2018 at 5:25 PM, Dmitri Shuralyov wrote:

[go-nuts] Re: All the Go project history, live in RAM

2018-04-14 Thread Dmitri Shuralyov
Brad, another question. I've read the documentation at https://godoc.org/golang.org/x/build/maintner/godata, but it doesn't make it clear: is it safe/supported to have more than 1 process on one machine call godata.Get and use returned maintner.Corpus at the same time? I know each call uses

Re: [go-nuts] sync.Cond implementation

2018-04-14 Thread Penguin Enormous
Could it be this: Initially wait == notify == 0 Waiter Signaler 479 atomic.Xadd(, 1) = 1 522 atomic.Load() = 0 atomic.Load() = 0 523 return (because those above are equal) 485 notifyListWait(l, t) (blocked forever) But looking at your answer, I see that you may imply certain race

[go-nuts] Re: Implementing JDBC Driver

2018-04-14 Thread Asif Jalil
If Netezza can work with IBM CLI interface, then you can check out the Go CLI driver that I wrote for DB2: https://github.com/asifjalil/cli. Thanks. On Friday, April 13, 2018 at 2:49:59 PM UTC-4, Ken Bailey wrote: > > So at my new Job I'm the only one using Go and it's going quite well, but >

[go-nuts] Implementing JDBC Driver

2018-04-14 Thread Tamás Gulácsi
Btw it seems that Netezza uses postgres under the hood, so you can try the native pg or pgx drivers, too! https://www.ibm.com/support/knowledgecenter/SSULQD_7.2.1/com.ibm.nz.datacon.doc/c_datacon_architecture-JDBC.html -- You received this message because you are subscribed to the Google

[go-nuts] Implementing JDBC Driver

2018-04-14 Thread Tamás Gulácsi
Wouldn't ODBC be an option? -- 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