Jan Procházka
Jan Procházka
https://github.com/housleyjk/ws-rs/issues/315#issuecomment-599161792
@housleyjk the documentation can be placed in the repository and hosted on [github pages](https://pages.github.com/)
@housleyjk I converted most of https://ws-rs.org/ to markdown, which can run on github pages. The pull request is awaiting review. For now, anyone who needs access to the website can...
There are two reasons why this is happening: 1. The `resize_canvas_to_screen_size` function, somewhat confusingly named, attempts to set the `width` and `height` CSS properties (*not* the DOM attributes!) of the...
It's setting the width and height _DOM attributes_, not the _style properties_. You control the size of the canvas on the page, `eframe` controls the size of the framebuffer. It...
Newtypes/Adapters should solve this without requiring an impl of those traits directly in `garde`
There's an issue open for serializing _constraints_, which are rules + their inputs: - https://github.com/jprochazk/garde/issues/3
There are at least two issues which I believe to be pre-requisites: 1. https://github.com/jprochazk/garde/issues/1 2. https://github.com/jprochazk/garde/issues/64 (1) because `message` should act as a switch that turns on fail-fast validation for...
I think this and https://github.com/jprochazk/garde/issues/1 can be combined into a single design. There are two use cases for "custom messages": 1. Append the custom message as an extra error if...
> is there's anything that I could do? I think adding a comment here with a code snippet showing how you'd use this feature would be super helpful! Depending on...