Taras Bunyk
Taras Bunyk
I have a `db.Model` called `Widget` with approximately 10 fields of different types. And I create rows in database using ``` await Widget.create(**request.json) ``` Everything is fine while request payload...
I'm finding https://fasiha.github.io/ebisu/ very fascinating, thanks for creating it. I'm reading your documentation every time the idea to build my own Memrise/Duolingo clone struck me again, but one obstacle is...
Because, quoting documentation, "The statements prepared for a transaction by calling the transaction's Prepare or Stmt methods are closed by the call to Commit or Rollback.". https://pkg.go.dev/database/sql#Tx Linter should avoid...
`go get github.com/go-delve/delve/cmd/dlv` gives ``` go: go.mod file not found in current directory or any parent directory. 'go get' is no longer supported outside a module. To build and install...
### Steps to reproduce 1. Create file with following source: ```python """Example of pylint scope error""" from unittest.mock import MagicMock def test1(): """No complains here""" bigquery = MagicMock() def get_table(ds_table):...
I run pylint from Vim using syntastic and lately it became painfully slow. For example for [this ~200 lines file](https://gist.github.com/bunyk/615d69abf89c8d9f88c95dd071c869e2) it takes 10 seconds to be linted: ``` $ python3.7...
### Bug Description Hello! I'm trying to connect to Google cloudsql Mariadb database using worload identity federation from AWS. Here is the code I run: ```go func connectWithProxy(conf config.GCPDB) (*sqlx.DB,...