moon-chilled
moon-chilled
The book says MD5 alone is not sufficient to hash passwords (which is correct). But then it goes on to recommend ***using md5 together with a salt***??? Can you update...
Currently, _mm_max_pd is [implemented](https://github.com/simd-everywhere/simde/blob/master/simde/x86/sse2.h#L4092) in terms of vmaxq_f64 on neon. But their behaviour is not quite the same. When handed zeroes of opposite signs, the latter will return positive zero,...
[Here](https://github.com/radareorg/radare2book/blob/master/src/debugger/migration.md#shortcuts), it says that gdb uses `n` to step into and `s` to step over, but it's actually the other way around. (Also, the gdb command listings are inconsistent; some...
1. Are the scalar functions deterministic? 2. If so, are the vector functions guaranteed to give the same results as the scalar functions (given DETERMINISTIC)? 3. Are there plans to...
Disabling cursor blink in all of firefox turns off blinking for the insert mode cursor, but the normal and visual mode cursors still blink. Ideally, wasavi would respect the global...
In [bli_edge_case_defs.h:50](https://github.com/flame/blis/blob/master/frame/include/bli_edge_case_macro_defs.h#L50): ```c PASTEMAC(ch,ctype) _ct[ BLIS_STACK_BUF_MAX_SIZE / sizeof( PASTEMAC(ch,type) ) ] \ ``` I think it should be `sizeof( PASTEMAC(ch,ctype) )` (note **c**type, not type).
When I run it, I get ~1.4% failing test cases. Here's an example of one: {4.000010, 11.000005}, {4.999991, 4.999999}, {8.999989, 8.999995} {3.999999, 10.999990}, {5.000005, 4.999998}, {9.000001, 8.999989} Here's another: {3.999993,...