Kaveh Shahbazian
Kaveh Shahbazian
For this C code: ```c #include #include "math.h" typedef __int32_t int32; int32 sampleFunc(int32 input) { return input * 2; } int32 sampleAction() { int32 i, t, dt, dummy; dummy =...
Is it OK to define a collection variable once (like `col := s.DB("sample-db").Col("sample")`) and reuse it (from a single goroutine, no concurrent access)? Instead of calling `s.DB("sample-db").Col("sample")` every time? *...
How to get number of affected rows after calling `Update(...)`? Consider this code: ``` cond := db.Cond{"id": p.ID, "updated_at": oldUpdateAt} found := products.Find(cond) if found != nil { err :=...
Please add FlatBuffers benchmarks (ref: https://google.github.io/flatbuffers/md__benchmarks.html).
Is it possible/an_API for adding hooks? For example having a hook, for adding a functionality, just before commit. And having access to all **bucket/(key, value)** pairs that are staged for...
There is this package-level `log` variable. Package compiles. Even though `goreturns` keeps adding an import from some `log` packages that it finds. Go 1.9.2 Ubuntu 16.04 VSCode (Updated) I had...
When running `mix coveralls.html`, in the generated html, line numbers start from `0` instead of `1`. This makes the line numbers in the generated html, to be different from the...
It would be very helpful if it was possible to use secondary indexes in bolt. [This](https://github.com/dc0d/boltron) is a sample implementation. But having it built-in, makes things easier and cleaner. ([Usage...