ttys3
ttys3
> If you do `rm -rf ~/.cargo/registry`, then `cargo upgrade` (`cargo-edit-upgrade 0.11.9`) then Ctrl+C it a few seconds later, then try it again, you get that error. Incomplete checkout, I...
https://github.com/bitwarden/clients/issues/6689#issuecomment-1786252068 solution: ``` npm install punycode --save ``` ``` // Replace this: const punycode = require('punycode'); // With this: const punycode = require('punycode/'); ``` basically just add a trailing forward...
> @ttys3 > > Do you have any logs which show that the npm module [tr46](https://www.npmjs.com/package/tr46) is used by [fast-url-parser](https://www.npmjs.com/package/fast-url-parser) from this repo? this is not about tr46. this is...
@MikeMcC399 I came to here because I am using facebook docusaurus. and [@docusaurus/core](https://www.npmjs.com/package/@docusaurus/core?activeTab=dependencies) depends on -> [serve-handler](https://www.npmjs.com/package/serve-handler?activeTab=dependencies) which depends on [fast-url-parser](https://www.npmjs.com/package/fast-url-parser)
@MikeMcC399 I have updated the content and removed the non-related words
I do not think it is actively maintained.
just filed a PR https://github.com/sashabaranov/go-openai/pull/214
here's a backup of the `removed` code: https://github.com/ttys3/gojieba-bleve
1. as the extractor documented: > Extractor that resolves the hostname of the request ref: https://docs.rs/axum/latest/axum/extract/struct.Host.html hostname does not contains the `port` part. host does. even in js:  so,...
this may fix: in `go.mod` append this line: ``` replace github.com/yanyiwu/gojieba v1.1.2 => github.com/ttys3/gojieba v1.1.3 ``` remember to run `go clean -cache` , then `go build .` , the warning...