Nikita Sivukhin
Nikita Sivukhin
### Setup I setup marquez from `docker-compose.yml` in the repository with recent tag `0.23.0`: `./docker/up.sh -t 0.23.0 -d` ### Problem I experimenting with marquez integration into internal library that helps...
I want to say, that I spent a great time exploring `svgo` and creating this little patch. Big thanks to all of the maintainers for this cool project This PR...
I ran [govanish](https://github.com/sivukhin/govanish) linter (it still in the WIP phase) against `ssh3` repo and it found a but: compiler eliminated following error check from the binary: ```go remotePort, err =...
I ran [govanish](https://github.com/sivukhin/govanish) linter (it still in the WIP phase) against `pdfcpu` repo and it found several suspicious places. I don't use `pdfcpu` and don't have much context about the...
I ran [govanish](https://github.com/sivukhin/govanish) linter against `cloudflared` repo and it found suspicious issue: compiler eliminates err check in `CreateTunnel` function: ```go ... case http.StatusOK: var tunnel TunnelWithToken if serdeErr := parseResponse(resp.Body,...
I ran [govanish](https://github.com/sivukhin/govanish) linter (it still in the WIP phase) against `gval` repo and it found that one error handling branch were eliminated by compiler: ``` 2023/12/24 21:05:32 it seems...
function-level `err` variable were shadowed by goroutine local variable which effectively make useless errcheck after finish of goroutine: ```go
I tried to explore available approaches for distributed training of large-scale recommendation models with huge embedding tables and tried to use TFRA `DynamicEmbedding` combined with `MultiWorkerMirroredStrategy`. - Target task is...
I ran [govanish](https://github.com/sivukhin/govanish) linter (it still in the WIP phase) against `godropbox` repo and it found one suspicious place: ``` 2023/12/24 17:03:42 it seems like your code vanished from compiled...
## Description There are different keys and different values such that sequence of operations `SetBig(k1, v1), SetBig(k2, v2), GetBig(k1)` will return `v2` for last `GetBig` operation. This is definitely unexpected...