Coco
Coco
I'm trying to create two services, one available at "/something" and the other at "/something.txt". Using a suffix regexp as follows does not work: ```ocaml let raw_service = create ~path:(Path...
This would allow for additional input validation to be done directly in the route, which is not possible with plain route parameters. E.g. ```perl prefix qr{/user/(?[a-z0-9]{3,16})}, sub { get '/page'...
I'm using crystal-pg to build a [web-based query UI](https://code.blicky.net/yorhel/sqlbin), which means I don't control the queries that are being executed nor which types are being used. Postgres does a much...
**Mithril.js version:** v2.0.4-156-gad9aa97d **Browser and OS:** Firefox on Linux. **Project:** ## Code ```javascript var toggle = true; m.mount(document.body, { view: function() { return m('div', { onclick: () => toggle =...
### Zig Version 0.13.0-dev.4+c7ffdbcd4 ### Steps to Reproduce and Observed Behavior I had set `preferred_optimize_mode` in [ncdu's build.zig](https://code.blicky.net/yorhel/ncdu/src/commit/d0d064aaf9659ec96baacf67222537954eab4e65/build.zig#L9) in order to provide a good default when building in release mode,...
BLAKE3, by virtue of being a tree-based hash, supports incremental verification of data. But I don't see a way to actually make use this feature with the current API. I'm...