Cornelius Roemer

Results 537 issues of Cornelius Roemer

@shay671 mentioned to me that he gets a weird error using USHER in the browser ![Screenshot_2022-09-14-20-52-03-10_0b2fce7a16bf2b728d6ffa28c8d60efb~2.jpg](https://user-images.githubusercontent.com/25161793/190239314-64172b56-54ff-42b6-a004-c0d93300c9fb.jpg) Also encountered by @ryhisner I think

I'm using mamba 0.27.0 on an M1 mac. I'm confused why mamba often seems to redownload the entire package index (~25MB) instead of simply checking whether there have been any...

When I mistype the channel, e.g. `mamba install -c onda-forge python` instead of telling me in an understandable error message: `Error: provided channel onda-forge does not exist` I get an...

Great work, haven't had time to try it out myself. But I was wondering how the whitelisting workaround works. Would be grea if you could add a high-level description to...

I noticed you mentioned that this extension has been acquired. Can you tell by whom? OpenAI?

When using `rev: main`, pre-commit throws the following warning: ```log pre-commit run --all-files [WARNING] The 'rev' field of repo 'https://github.com/rhysd/actionlint' appears to be a mutable reference (moving tag / branch)....

### Reproducible example ```python import polars as pl import pkg_resources from packaging import version polars_version = version.parse((pkg_resources.get_distribution("polars").version)) print(f"Polars version: {polars_version}") import requests url = "https://gist.githubusercontent.com/corneliusroemer/c571208e307e38f4424fd8b3c2a348fd/raw/0608135754f2bb23c92256be361225d70b0a2226/nearest_nodes.ndjson" r = requests.get(url, allow_redirects=True) open('nearest_nodes.ndjson',...

bug
python
needs triage

I tried `go build` but it doesn't work: ``` go: cannot find main module, but found vendor/vendor.json in /Users/corneliusromer/code/go-excusegen to create a module there, run: go mod init ``` would...

The major shortcoming of `sd` right now is that it doesn't support streaming stdin to stdout, instead, all input is read into memory which means `sd` can't be used for...

I was happy with sd until I noticed that it reads the _entire_ input into memory. There's no streaming support at all. This is mentioned in the following issues: -...