Pierre

Results 20 comments of Pierre

Related to this discussion, the ```privacy-policy``` link type was recently added to the HTML standard. https://github.com/whatwg/html/pull/9860

@siddharthkp thanks for asking - that menu is back to normal, it now opens downwards, but I've since noticed the hamburger menu which comes in from the left is clipping...

Looking through the history, that was first introduced in commit 7dcc0ba. Does reducing the transition time make a difference, or is it the transition element itself that's the problem?

To track some of those dependencies already in Debian, I went through the [Debian Rust Maintainers list](https://qa.debian.org/developer.php?email=pkg-rust-maintainers%40alioth-lists.debian.net) and checked off the crates already present. - [ ] typst - [...

There's a pull request with some 36-key case files - #10

In case these issues are connected, is this the same problem with the YD-RP2040 mentioned in https://github.com/beekeeb/piantor/issues/22#issuecomment-2012335168 ? > My friend bought YD-RP2040 controllers and this same "hack" works on...

New image ![gh-foundations](https://github.com/user-attachments/assets/f2051265-d240-4c46-92b2-919d8f41a842)

This might be an unrelated issue but when I run the [read_file](https://github.com/jedireza/warc/blob/31235a29c7e277577b23648428232326144ecf48/examples/read_file.rs) example, I get an InvalidInput error. ```sh Error: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }...

Previously this was ```rust let file = fs::OpenOptions::new() .read(true) .write(true) .create(true) .open(&path)?; ``` And then [this commit](https://github.com/jedireza/warc/commit/31235a29c7e277577b23648428232326144ecf48#diff-f07f1fda9f03e6032497cf957d3fd0c212eaa6af094f9370bfbb98bda35e5849) removed `write(true)` and inserted `truncate(false)`. I tested it and just re-adding `write(true)` will...

> Why not just remove `.write` and `.truncate` since this is inside the reader? Good point, I've created [a pull request](https://github.com/jedireza/warc/pull/50) to cut the options down to just `read(true)` and...