Cal Bryant

Results 165 comments of Cal Bryant

exports = function (server,config) {blah}

I think the current queue system performs well enough. Focus on redis article storage and sqlite article storage

What would help the symptom (but not the problem) is to only build when the branch has new commits: #44

> Sure, I think it's something worth adding. Great, I shall do a PR as soon as I get an hour spare. > As a result, I added the PIL...

For anyone with the same concern, I was successful in limiting the available algorithms: ``` sudo apt-get purge xmlsec1 mkdir xmlsec1 && cd xmlsec1 apt-get source xmlsec1 cd xmlsec1-1* #...

Thinking about this again -- is there any reason why the headers are filtered in the first place?

``` def compare_b64_fingerprint(a,b): 'returns inverse bit error rate in percent' a = b64decode(a) b = b64decode(b) matching_bits = 0 different_bits = 0 if len(b) != len(a): # trim to shortest...

It does exactly what I expect. Base64 strings were the input, generated with a (custom) executable, not the library. Not optimal but it worked bitwise. Thanks for the link, I'll...

They are base64 encoded chromaprints. Produced by an `fpcalc` modified to produce base64 encoded output instead of a series of ints.... The encoding is irrelevant, the method used to calculate...

What? No, I have 2 regular fingerprints which are base64 encoded **in a completely separate custom executable**. I then run the executable **in a python subprocess,** and run this on...