shiblukhan's comments

shiblukhan | 6 years ago | on: Two new ways to read a file quickly

Hmm, how is one actually supposed to use O_SPECIFICFD in real life though? I mean, picking some specific FD nr can work in trvial, single threaded programs maybe, but how is that supposed to work on typical generic userspace code that has many threads and many libraries/subsystems all running in the same address space (and fd space) that want to take possession of some fd? I mean are apps supposed to block fd ranges ahead of time, by dup()ing /dev/null a couple of times, or how is that supposed to work? not getting this...

shiblukhan | 6 years ago | on: Intel x86 Root of Trust: Loss of Trust

A vulnerability has been found in the ROM of the Intel Converged Security and Management Engine (CSME).

A reference to the specific vulnerability would be nice. CVE? Conference presentation? El Reg? Sketchy blogspam? Maybe I've been living under a rock, but it would still help the reader out.

shiblukhan | 6 years ago | on: Timsort, the Python sorting algorithm

If you want to master how Timsort works and get a feel for it, I highly suggest you try to implement it yourself!

This article is based on Tim Peters’ original introduction to Timsort, found here.

page 1