Henry Story
Henry Story
yes, in scala collections for example [IntMap line 390](https://github.com/scala/scala/blob/4905801fc161300ba20bae4f7adf045b1698e831/src/library/scala/collection/immutable/IntMap.scala#L386), but I had found another example in a more widely used collection yesterday.
I have a mini implementation of MultiDict for my needs in [org/w3/banana/quiver/util/MultiDict.scala](https://github.com/bblfish/banana-rdf/blob/milestoneW3/plantain/shared/src/main/scala/org/w3/banana/quiver/util/MultiDict.scala) with tests that pass and two implementations of Graph that use it whose tests also pass.
I am not sure. It may be an error in the refactoring code too. It does a huge amount of refactoring and then it returns (longer version) ``` - print...
I wrote up in detail how clients can be Authorized using Web Access Control here. https://github.com/co-operating-systems/PhD/blob/main/UseCases/ClientAuth.md Would be very happy for feedback. (updated ClientAuth.md at 13:39 CET)
Thanks for the tip. It would help I think if the documentation made clear that clock always starts in 1970... Or an example for verifying signatures could make that clear....
Mhh this works very differently in the browser than in Java. It works as desired in Java but all the tests fail in JS using this method. ```scala def doAt[A](start:...
The obvious workaround to this was given by @SystemFw on Discord [here](https://discord.com/channels/632277896739946517/632278585700384799/1050446501798752306): pass the time as a value to the function doing the testing. So instead of passing the Clock...
In [RFC 8288](https://www.rfc-editor.org/rfc/rfc8288.html#section-3) defines the value of the Link header via the following simple ABNF: ```ABNF Link = #link-value link-value = "" *( OWS ";" OWS link-param ) link-param =...
Akka is fixing it's production of Link headers in [PR 4267](https://github.com/akka/akka-http/pull/4267) to make it easier to parse with RFC8288 compliant parsers. It may still be worth making this parser more...
I wrote a first version of RFC8941 in two days of coding using `cats.parse` [see PR in issue 13](https://github.com/co-operating-systems/Reactive-SoLiD/issues/13#issuecomment-817196664) Would be great if it could be the base for a...