Erkan Durmuş

Results 16 comments of Erkan Durmuş

@Kleissner just curious, what are you using now?

Try enabling CGO with `CGO_ENABLED=1` as we are importing "C".

Extending example at README: ```go .... switch command { case "install": deleted := 0 for i := range args { j := i - deleted if args[j] == "install" {...

Yes, I've already installed Goland plugin. When running inside Goland Teminal `fig` is trying to access non-existent path "/Content/..." at root

Thanks, looking forward for your implementation. Especially I needed this to use CockroachDB(uses pq's client)'s transactions which can retry. To use `godb`'s transaction directly it needs to implement `ExecContext` as...

As informed on [README.md](https://github.com/ruimarinho/google-libphonenumber/blob/master/README.md#usage), you should parse string phone value with `phoneUtil.parseAndKeepRawInput` as: ```js console.log("The possible number is" , PhoneNumberUtil.getInstance().isPossibleNumber(phoneUtil.parseAndKeepRawInput('202-456-1414', 'US'))) ```

When in a cluster environment, nodes in cluster will be known. Maybe [consistenthash](https://github.com/golang/groupcache/tree/master/consistenthash) may be usable here to detect which node will run which jobs.

Hi, at [gobenchorm](https://github.com/derkan/gobenchorm/blob/master/benchs/pop.go), I used following code for benchmarking BulkInsert: ```go ms = make([]PModel, 0, 100) for i := 0; i < 100; i++ { ms = append(ms, *NewPModel()) }...