d4h0
d4h0
Hi, I'm debugging my [PR for `color_eyre`](https://github.com/yaahc/color-eyre/issues/58) at the moment. For some reason, the source code lines were not printed out. The reason was, that I'm using a workspace and...
Hi, Something that sometimes would be useful, is `bunt::format_args` (and maybe `bunt::format`). This would come in handy, for example, to format logging messages with `bunt`. In this case, a user...
`stage0` looks amazing! I'm wondering what the advantages and disadvantages are to similar libraries/frameworks. Would it be possible to create a comparison? I'm interested in using a library that doesn't...
Hi, It would be great, if you would publish some instructions about how to update this crate to the latest Playwright version, and how to contribute to this crate in...
Hi, If a browser is started with the following config: `BrowserConfig::builder().incognito().with_head().build()` ...later calls of `Browser::start_incognito_context` do not open an incognito context. If `.incognito()` above is removed, everything works as expected.
Hi, The [following code of this plugin](https://github.com/kremalicious/gatsby-plugin-matomo/blob/403092eff7fb65fd81d5adc2ad713394642f6f18/src/gatsby-browser.js#L44) is based on code from `gatsby-plugin-google-analytics`: ```javascript // Minimum delay for reactHelmet's requestAnimationFrame const delay = Math.max(32, 0) setTimeout(sendPageView, delay) ``` In browsers...
Hi, This adds a warning to the docs of `RawValue` for [this bug](https://github.com/serde-rs/json/issues/497) (deserializing to an untagged enum with `RawValue` always fails). Because there is basically [no usable information if...
Hi, Mustache supports [lambdas sections](https://mustache.github.io/mustache.5.html) – is my understanding correct that this isn't supported in `ramhorns`? If so, are there any plans for this?
Today I experimented with text in svg.js and it seems newLine() doesn't have enough documentation (and the behavior was unexpected for me). Here is the example from [the documentation for...
Hi, [Tera::one_off](https://docs.rs/tera/1.5.0/tera/struct.Tera.html#method.one_off) has an 'autoescape' option (that makes it possible to define if HTML escaping is on or off). [Tera::render_str](https://docs.rs/tera/1.5.0/tera/struct.Tera.html#method.render_str) – which seems to be the same method but for...