Stuart D. Gathman

Results 147 comments of Stuart D. Gathman

Verbose output shows the expected files and rotations. It is the merge operation itself that is doing it.

Ok, I "printed" the overlay pdf to a new pdf, and that doesn't get rotated. Not sure what's up with that. Now, the white background of the data printout is...

I think you are using "P2P" to suggest 5 - fully decentralized.

Dropping this note as I am searching for another IP6 SIP client that supports peer to peer. For me, the killer application of SIP with IPv6 is peer to peer...

> It seems the idea is that if IPv6 is used to contact the SIP server, then IPv6 is to be used for SDP and consequently RTP. Alas, I cannot...

> mixing them both results in two messages How about generating a structure/array with two messages to pass to the networking part - and pick the right one for each...

One work around is to use NAT64 to map an internal private IP to a public IPv6. But this requires a way to tell the SIP engine about the public...

I've never actually had to implement NAT64, generally installing tunnels/vpn to bring IPv6 to IP4 only networks and ditching IP4 only apps. So I greatly appreciate your detailed description from...

So, problem is reusing resp_data reference means that when there is an error parsing the string, it is still a string and not a dict. So running with this patch...

Ok, this patch is minimal code change and makes the error much clearer: ```diff @@ -39,7 +39,7 @@ try: resp_data = json.loads(resp_data) # try to parse json results except ValueError:...