L. Kärkkäinen

Results 252 comments of L. Kärkkäinen

Adding to that mess, the values should be either mathematically rounded or floored towards negative infinity. Integer arithmetics truncate towards zero, which is incorrect because then integer value 0 covers...

For reference, https://colab.research.google.com/drive/1ux8HvZrH0KJX5j4H5s_QSPvQl0jk7x1p

FWIW, both seem flawed in that they may cause clipping. The first one divides by maximum amplitude (+ 1e-10) failing to consider dc_offset. The second attempts to subtract dc_offset even...

I believe that this would accomplish the original intention, with the notion that the `signal` array is now modified in place. ```python signal -= signal.mean() # Remove DC offset (by...

I have never seen true DC offset in recorded signals. That is simply not happening with any modern hardware due to hardware DC filtering. It could occur in poorly synthesised...

Actually the function for calculating those parameters is included as `nacl_bindings_pick_scrypt_params`, with an added note that you need `n = 1

@ladar Not likely, would need to dig into the code again (having forgotten all of it by now). Trying multiple options is risky because it easily locks the drive (you...

@oren-nonamesecurity Can you see with packet capture at which point of connection this occurs? Has Sanic already handled some request(s) on that connection or does it reset prior to responding...

@oren-nonamesecurity It certainly looks like the idle connection timing out after five seconds and Sanic is closing it at 31781 (no logging because this is a normal operation). The default...

> The FIN from sanic and the extra POST from nginx happen almost simultaneously (6ms difference). > Maybe the shutdown is what's missing here. Oops, I misread the capture, although...