Sergey Kozlov

Results 10 comments of Sergey Kozlov

@RajivSah I use this package https://github.com/brianvoe/gofakeit

```go package main import ( "fmt" "github.com/h2non/filetype" ) func main() { kind, _ := filetype.MatchFile("DSC_6381.MOV") if kind == filetype.Unknown { fmt.Println("Unknown file type") return } fmt.Printf("File type: %s. MIME: %s\n",...

``` brew instal libjpeg-turbo Warning: No remote 'origin' in /usr/local/Homebrew, skipping update! Warning: jpeg-turbo 2.1.3 is already installed and up-to-date. To reinstall 2.1.3, run: brew reinstall jpeg-turbo ```

Embedded application Bitconf for Bitrix24 ERP system uses pongo2 https://www.bitrix24.com/apps/?app=ipkozlovzoom.zoom Florian thank you for your great project!

Metrics ``` timer batch_lat count: 2000 min: 1349488 max: 32897844 mean: 2655657.80 stddev: 2777425.79 median: 2084017.00 75%: 2427595.50 95%: 5578827.05 99%: 20812701.96 99.9%: 32835897.80 1-min rate: 241.21 5-min rate: 310.37...

@cristaloleg what I have to do?

Could we make cluster API public? I need access to `tokenRing`, `getRoutingKey` etc, hence I could make an utils like package which will provide extended batch API

@vikmik unfortunately batch API bloated so this PR wouldn't be merged 😢

@dankinder @nemosupremo This PR implements batch partitioning for insert statements https://github.com/gocql/gocql/pull/1307

I've found a solution You could override _init method of `gino.dialects.asyncpg.Pool` and pass dsn string directly to asyncpg It works since gino original Pool pass hosts as an arguments to...