Henry Story

Results 422 comments of Henry Story

Thanks for that pointer. It makes complete sense that that is possible to return URIs with hashes in responses.

As I understand the [Akka gRPC](https://doc.akka.io/docs/akka-grpc/current/overview.html#grpc) uses HTTP/2 . The designers of that protocol may find P2P HTTP brings some valuable benefits to gRPC. It may be worth asking the...

> @bblfish For p2p we may need some distributed adress table。 Mhh. I am using P2P in the sense of Peer to Peer, that is two way communication on a...

I just came across [rsocket](https://rsocket.io) which also has this peer to peer feature: namely it is a connection oriented protocol where client and server roles can be switched. I am...

I find the [letsencrypt](https://letsencrypt.org) certificate service really helpful for my 5 domains running on a single Apache server. As I would like to replace that with my Akka based web...

Note: there are a lot of [implementations of Quic in Rust](https://lib.rs/search?q=quic), probably because of its use by browser vendors. It seems to be implemented in most browsers now too (see...

An interesting article on Quic adoption by Alibaba: [Ali XQUIC: the road to self-research of standard QUIC](https://www.programmersought.com/article/90775262094/).

Some links from my research - An article from April 2020 on [Enabling Quic in the browsers](https://www.bram.us/2020/04/08/how-to-enable-http3-in-chrome-firefox-safari/). - This "HTTP/3 Deep Dive" (no date) article argues that provide serious [efficiency...

The [2020 Web Almanach](https://almanac.httparchive.org/en/2020/) has a very informed chapter on [HTTP/2.0 and Quic](https://almanac.httparchive.org/en/2020/http2) deployment, usage, ...

For clients code one could use or be inspired by the [Quiche4j](https://github.com/kachayev/quiche4j) wrapper of the rust library. Perhaps one could do something similar for the server connection? (there is one...