Malthe Borch
Malthe Borch
```bash mborch@wavel:~/co/mlsub$ make all ocamlbuild -no-hygiene -r -cflag -bin-annot -cflag -g -lflag -g -pkg menhirLib -pkg str -use-menhir -yaccflag --explain main.byte + /Users/mborch/.opam/4.02.3/bin/ocamlc.opt -c -bin-annot -g -I /Users/mborch/.opam/4.02.3/lib/menhirLib -I /Users/mborch/.opam/4.02.3/lib/ocaml...
This crate would be really neat if it used generics – for example, one might want to convert an `http::HeaderMap` to a struct. In this vein, the term `GenericMap` is...
The current value is hard-coded to 30. This is sometimes not desirable, if one relies on the projected value to be used.
The `requests` library has a callable json attribute. To make `TestResponse.json` "optionally callable", we use the following work-around: ``` python class JsonResponseMixin(object): """ Mixin with testing helper methods """ @cached_property...
There is no documentation available online for 4.7; only 4.6.x and _master_.
According to [image manifest v2, schema 1](https://docs.docker.com/registry/spec/manifest-v2-1/), "application/json" should be accepted as the content-type, but I get the error: > encountered unknown type application/json If I provide "application/vnd.docker.distribution.manifest.v1+prettyjws" then there...
Co-authored-by: aziesemer
If the `d` string provided in node to `path(surface, node)` is incorrect or malformed, processing may never end. What should happen is that an exception should be raised.
I have found it useful to have a map that is able to hold a cached value, which can be used during the iteration. The name `fold_map` comes to mind...
Rust has https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.retain which would be useful for `http::HeaderMap` to sanitize headers.