Hans-Christoph Steiner
Hans-Christoph Steiner
What I mean is that there are a lot of important ideas in po4a that can be used in an Python/AST implementation: * the --keep option, e.g. a percentage translated...
The Markdown AST parser libraries will understand the HTML components, and then let us work directly with the AST.
Here are some examples of sites doing this with po4a: https://gitlab.com/fdroid/fdroid-website/ https://github.com/fsfe/reuse-docs/pull/61
last I looked, Crowdin's Markdown support was limited but better than nothing. The best way would be to actually use the AST (Abstract Syntax Tree). That means Markdown becomes structured...
I'm just starting to work on implementing ECH in Conscrypt, once boringssl supports ECH client-side. I'll track progress in google/conscrypt#730
Ok, good to know! Have you looked into ECH much yet? One key piece that I'm interested in is making sure that client libs like Conscrypt and OkHTTP have a...
There are use cases where the site operator does not want to publicly advertise a specific setup, so they want to keep that info out of DNS. Anyone can query...
So I have ECH working in Conscrypt at the most basic level, now I'm looking for feedback for how to best implement the API for getting the ECH Config List...
I'm not quite up to a pull request, but soon. I want to implement some of the ECH retry/error handling first. You can see my code here: https://github.com/eighthave/conscrypt Check the...
Is using [DnsResolver.rawQuery()](https://developer.android.com/reference/android/net/DnsResolver#rawQuery(android.net.Network,%20java.lang.String,%20int,%20int,%20int,%20java.util.concurrent.Executor,%20android.os.CancellationSignal,%20android.net.DnsResolver.Callback%3C?%20super%20byte[]%3E)) an option here? In theory, it would allow the required DNS to happen using the device's system resolvers.