Kevin Chen

Results 22 comments of Kevin Chen

I came across this the other day while setting up a new computer –– found that all completions I was adding to my `FPATH` weren't being found. I kept deleting...

Here to add another :+1:. I even tried dumping a escaped string to $BASH_ENV but it just gets unescaped on its way out.

@PrakashDahal how did you handle it? I'm encountering a similar issue. My node GRPC server is making a web request to fetch some data, then return data to client over...

Just as a follow up for anyone else experiencing this issue: we figured out that the usage is like this: ```go // create the CancelOrder instruction cancelInstruction := serum.InstructionCancelOrderByClientIdV2{ ClientID:...

> As for the current workaround, we suggest `# pyre-ignore[16]` -- there's a helper script we released called `pyre-upgrade` that can help you add error ignore comments in batch. Does...

The only build tag I have is `//go:build integration` for some integration test suites. Any ideas on where to look to try to reproduce this? I'm not sure how to...

I had the same issue -- check your `index.json` in `.atom/evnd/` for errors. Mine had a formatting issue, so the note index wasn't ever loaded properly, and so no more...

Found the solution –– whatever versions I'm running there's a mismatch in some fields. It's now `mchunk_size` and `mchunk_prev_size` instead of `size` and `prev_size`.

I'm running this in the [Python Docker container](https://hub.docker.com/_/python) with tag `3.8-rc,`. ``` $ cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 10 (buster)" NAME="Debian GNU/Linux" VERSION_ID="10" VERSION="10 (buster)" VERSION_CODENAME=buster ID=debian HOME_URL="https://www.debian.org/" SUPPORT_URL="https://www.debian.org/support" BUG_REPORT_URL="https://bugs.debian.org/" ```...

Also, the heap dump is struggling to categorized memory allocations correctly for me –– still looking into that. I'm using `python3.7-dbg` –– looks like a lot of the existing code...