Live data from Hacker News

Viewing profile — delamon

delamon

HN member
Joined
Sat, Nov 30, 2024, 9:44 AM UTC
HN karma
94
Public activity
51 items

About delamon

No profile information was provided.

Recent public activity

  1. comment
    Comment #48990722

    You surely meant capacitors, not transistors

  2. comment
    Comment #48976827

    How so? PGO might indicate that most of the time arguments are in bounds, but that's not enough. It has to be a proof with 100% certainty before bound checks can be removed

  3. comment
    Comment #48919142

    Or even use acl(5), which is simplier than making arbitrary groups.

  4. comment
    Comment #48872394

    You can, in fact, give compiler a hint wether the branch will be predictable or not. E.g. clang has __builtin_unpredictable().

  5. story
  6. comment
    Comment #48683863

    He only gets 4-5Gbps in the other direction.

  7. comment
    Comment #48343881

    Inderect call cost is a few cycles, if predicted. Now, you can argue, that it may be mispredicted and misprediction would cost about 20-30 cycles. But if it is mispredicted, then y…

  8. story
  9. comment
    Comment #48178074

    can't help myself: how common to see code like https://github.com/oven-sh/bun/blob/main/src/bun_core/string... instead of simple ilog2()? I guess, ut somewhat explains how they got…

  10. comment
  11. comment
    Comment #48063014

    I assume you mean container, not VM. But yes, container makes it harder.

  12. comment
    Comment #48062247

    The attack gives you ability to overwrite any cached page. So you don't need to be root to "edit" /etc/passwd.

  13. comment
    Comment #48060403

    setuid binaries are not the only way to get root. E.g. one can change /etc/crontab or /etc/passwd. Or add trojan to /bin/ls and wait until admin type 'ls'

  14. comment
    Comment #48059554

    Apparently it is both...

  15. comment
    Comment #48059137

    If you "forget" to mark COW memory pointer as no-write, the net effect would be same, would it not? If I'm reading the diff correctly, the problem was that code missed to mark some…

  16. comment
    Comment #48058787

    How would've memory safety helped here?

  17. comment
    Comment #48039678

    Another data point: AMD T14 G4 with s2idle draws about 0.4% per hour of sleep.

  18. comment
    Comment #48039654

    Lenovo sells ThinkPad T-series laptops as “Linux-supported.” However, if you happen to buy an AMD version of one of these laptops, you may be surprised by how poorly the Wi‑Fi work…

  19. comment
    Comment #48037369

    Right, I misread the spec.

  20. comment
    Comment #48034491

    What kind of usage do you envision for 245TB drive with read speed of 3GB/sec?

  21. comment
    Comment #48033267

    QLC retention reported to be around 1 year in unpowered state. I would assume, that drive does background refresh, though. No idea what effect it has on total drive lifetime. It is…

  22. story
  23. comment
    Comment #47892516

    Zelic discovered 73 security problems with uutils, 7 critical, 11 of high impact, 29 of medium and rest is low.

  24. story
  25. comment
    Comment #47861678

    Not really. PgUp, PgDown are missing. It is possible to configure software combination that would emulate them. But emulation is emulation.