1,581 reputation
315
bio website meuh.org
location Paris, France
age
visits member for 2 years, 3 months
seen 15 mins ago
stats profile views 77

Free Software developer, GNU/Linux user, administrator, developer, etc. Former Consultant Engineer at Mandriva. Currently founder at OPTEYA SAS.

Interested in RDMA, InfiniBand and ARM.


1h
comment How to ensure correct file permissions
Thanks for your answer. Your comments are very interesting. It's refreshing a lot about whole system security. My threat model/security needs, is/are very narrow. I just want to be confident the configuration is not under control of non-trustable user (another user). Ensuring the file content is correct is outside of the scope of the question, it's another, whole system, problem.
16h
asked How to ensure correct file permissions
May
13
revised fwrite() alternative for large files on 32-bit system
edited tags
Apr
26
awarded  Popular Question
Apr
12
revised Bloom Filter: evaluating false positive rate
edited tags
Apr
12
comment Fastest implementation of log2(int) and log2(float)
Stefan de Bruijin using de Bruijin sequence, seems correct :)
Apr
12
comment Git rm, gives scary “Deletion of directory failed” when I only delete one file
AFAIK each time a file is removed from a directory, git try to unlink() it regardless of its content. It's harmless (if you're not using an almost broken filesystem like sshfs thread.gmane.org/gmane.comp.file-systems.fuse.sshfs/1136 )
Apr
12
comment why the following output?
printf("buf %s\n", buf+2); will try to read a string starting at address buf + 2, and it seems there's only zeros there.
Apr
12
comment why the following output?
printf("buf %f\n", buf); will interpret the address of buf as a double which is 8 bytes.
Apr
11
comment Bloom Filter: evaluating false positive rate
@Kaganar On the page I read p = (1 - e(-(m/n*l(2)) * n/m)) ^ (m/n * l(2)) before simplication as l(p) = - m/n * l(2)^2. I took the first formula and replace m/n*l(2) by k, but I'm sure about my reasoning to be correct.
Apr
11
comment Bloom Filter: evaluating false positive rate
@Kaganar I rewrote a bit the question and put emphasis on the important real question. Thanks for the comment.
Apr
11
revised Bloom Filter: evaluating false positive rate
more precise question
Apr
11
revised Bloom Filter: evaluating false positive rate
edited tags
Apr
11
asked Bloom Filter: evaluating false positive rate
Apr
11
comment gcc, strict-aliasing, and horror stories
An old one: gcc.gnu.org/ml/gcc-bugs/2000-03/msg00155.html : When memcpy() was used everything was fine, but when it was inlined by GCC, it doesn't cope with unaligned access ... wrong code
Apr
2
comment Will GCC leave arithmetic with fixed values for run-time or compile the output?
Just look at the assembler output: gcc -S
Mar
21
comment socket accept only specific addresses?
Use a firewall.
Mar
21
comment alignas specifier vs __attribute__(aligned), c++11
Please create a bug in gcc.gnu.org/bugzilla with your report/analysis of the problem (+test case)
Mar
20
comment alignas specifier vs __attribute__(aligned), c++11
even if clang++ accept 4096 as a parameter, does it really align it on 4096 boundary ?
Mar
18
comment Is it ALWAYS safe to assume that an HTTP packet with 'text/*' will NEVER have a '\0'?
And what about data corruption ... embedded device can be affected by EMI, solar radiation, etc.