Rūdolfs Ošiņš

Results 13 comments of Rūdolfs Ošiņš

Still happening in `serde_json` "1.0.53" (in combination with `serde` "1.0.111"). ``` use serde_json::json; fn main() { let number: u128 = 0; let obj = json!({ "number": number, }); println!("{}", obj.to_string());...

Also just ran into this issue. It started happening when we upgraded our project to Node 18. Saw something similar in the language-tools repo, might be related: https://github.com/sveltejs/language-tools/issues/1455 https://github.com/sveltejs/language-tools/pull/1464 Haven't...

Ran into the problem with [cypress](https://docs.cypress.io/guides/references/best-practices.html#Selecting-Elements) needing custom data-* attributes for e2e testing. It would be really great if we didn't have to rely on `cloneElement` for this.

Is this a sign that the project is not maintained anymore? https://github.com/b4b4r07/dotfiles/commit/49402ab8571a57cc86757f77e7aa201aae9f0711#diff-ec20fb240e117fea7b0049c21edf1ef3

Was wondering about this as well. Would like to use it in an Electron app, where either hash-based or in-memory routing would work.

Here's a snippet for adding the cache headers: ```diff diff --git a/http-api/Cargo.toml b/http-api/Cargo.toml index 006cd1f..50f5794 100644 --- a/http-api/Cargo.toml +++ b/http-api/Cargo.toml @@ -34,7 +34,7 @@ chrono = { version = "0.4.19",...

Realistically, how likely is it that we'll have `rX` and `Rx` and `rx` as distinct project names though? With a case insensitive search we would just return all of them...

> Not sure on the probability, but it could be a way to mislead people into a malicious copy of a repo. Hmm, didn't think of this before 🤔 So...

@xla yea, we do: ``` --name "Seedling 🌱" \ --description "This is the dashboard for Radicle's first public seed node. It maintains a real-time view of activity on the Radicle...