Donovan Baarda
Donovan Baarda
For the record, the corresponding asn1 definition that causes this is; ```asn1 SubstringFilter ::= SEQUENCE { type AttributeDescription, substrings SEQUENCE SIZE (1..MAX) OF substring CHOICE { initial [0] AssertionValue, --...
Note in the logs there are three of these; ``` [16:49:24][V][mqtt.idf:111]: MQTT_EVENT_DATA underhouse/sleep_mod ``` Before two of these; ``` [16:49:24][V][mqtt.idf:111]: MQTT_EVENT_DATA underhouse/sleep_mode ``` Note the missing 'e' on the first...
OH yeah, another interesting observation; all 5 of these `MQTT_EVENT_DATA` events are eventloop event_id=6, as indicated by the earlier line of logging before all of them; ``` [16:49:24][V][mqtt.idf:073]: Event dispatched...
Ugh, the event_id is just the event type used to select the event handler in the case statement. It's not some kind of event count, so forget my last observation.
Another interesting observation: The three first subscription `MQT_EVENT_DATA` events have topic `sleep_mod` which is the right length for the `log_level` subscription messages, but the wrong topic string. This suggests the...
The main advantage of polipo caching, in theory at least, is it can cache partial downloads. None of those others you mention can do partial download caching. In fact, polipo...
True... it is a pretty good HTTP/HTTPS -> SOCKS proxy, and also HTTP 1.0 -> HTTP 1.1 proxy. But I don't use it for that, and in theory it should...
In case you are interested, I've also just finished some testing and analysis of chunker algorithms inspired by FastCDC here; https://github.com/dbaarda/rollsum-chunking/blob/master/RESULTS.rst The insights gained from this prompted me to post...
I'd be fine with including/supporting a Python wrapper for librsync in librsync itself. The packaging etc for this would need to be worked out, but it seems like a reasonable...
I haven't looked closely at how you are using this, but perhaps you could just exec the rdiff binary? Though compiling the rdiff binary on windows has it's own issues,...