Ben Sidhom
Ben Sidhom
NOTE: I have not tested this fix because I was unable to get the gradle build working. I did test a similar fix in a [different branch](https://github.com/ianhanniballake/LocalStorage/compare/5b336a4f185decb334bc6233909d1c18bcee3480...bsidhom:314378fcc8c79c3e42a8f7373368d824bf21d836) using nio and...
I don't know which update is the cause, but this code does not work with patterns involving lists of dictionaries. For example, the following pattern ``` python {* {{ [links].title...
This results because data is automatically interpreted as though it used utf-8 encoding. This page uses SHIFT_JIS. The encoding is correctly detected by chardet.detect (this is a third-party module). If...
I can see this being a useful feature, but please consider the security implications of the implementation. For example constructing an in-memory index of the passwords themselves adds a lot...
Thanks for clarifying the situation; that makes sense. I thought that was a possibility, but haven’t had a chance to look at the protected entry code yet. Yes, given the...
Note that pretty much all KeePass desktop clients allow you to export directly to the bare XML format, which you can then use for arbitrary analysis. I'm not sure how...
I'm not sure if it would be acceptable to make a breaking change to fix this or if this should go in as a new method, e.g., `Tree::walk2()`.
This patch is a bit rough, but I've verified that it works with new clients and also when redirected through a SOCKS proxy. This is important since it's now the...
Ah, I think that's an issue due to partially-typed interfaces never evaluating as nil. Anyway, as the contents of the message indicate, there's no error there, so it's fine. Further,...
Turns out there were 2 problems. I wasn't checking for `http.ErrServerClosed` _and_ I was printing the wrong error message (`err` instead of `closeErr`). Should be fixed now.