Live data from Hacker News

Viewing profile — sivizius

sivizius

HN member
Joined
Sun, Oct 20, 2019, 2:47 PM UTC
HN karma
288
Public activity
30 items

About sivizius

No profile information was provided.

Recent public activity

  1. comment
    Comment #34550684

    For the record: let squares: Vec = numbers.iter().filter(x => x >= 0).map(x => x * x).collect(); is not valid Rust, but this is: let squares: Vec = numbers.iter().filter(|&&x| x >=…

  2. comment
    Comment #33487986

    yes, because watching molecules is easy…right?

  3. comment
    Comment #33149113

    Issue with unconstrained template-based approaches: Only static dispatch is possible which means, the compiler has to duplicate the procedure for all actual type-combinations and a…

  4. comment
    Comment #33119120

    You seem to be the only one here pathologising ADHD.

  5. comment
    Comment #33118189

    There is also another term for this: ADHD. Even though ADHD does not really have anything to do with attention, it is more of a motivation-issue, which can led to starting new, pro…

  6. comment
    Comment #33038181

    And he is talking about the diesel effect. This implies the presence of an oxidiser like oxygen. Yes, CH₄ + 2 H₂O does react to CO₂ and 4 H₂, but not under high pressure and it is …

  7. comment
    Comment #32523561

    KOH is not soap, it is used in the production of soap and KOH will make your skin to soap. Destroying anything organic by cooking it in strong lye at 120 °C with quite polar solven…

  8. comment
    Comment #31433906

    Asbestos is a silicate…

  9. comment
    Comment #30882631

    RSA is bad, because developers do not implement it as specified and ECC is good, because most developers will not implement it themself, because they do not understand ECC and ther…

  10. comment
    Comment #30370627

    So, a RegEx (melody syntax) to RegEx (unspecified syntax) compiler? I mean, the syntax is nice, but 1. please specify which kind of regular expression it compiles to, 2. are those …

  11. comment
    Comment #29276242

    Do you like teapots? Fine, let us talk about the teapot currently orbiting the sun on the opposite side, so small, we cannot see it, but it is obviously there, ancient books and th…

  12. comment
    Comment #27765577

    Very interesting, but irrelevant for most of us.

  13. comment
    Comment #27367817

    Btw. as you can see in the figure about blood type distributions, »I am more likely to have a common blood type than a rare one"« is actually false. It is more likely to have any o…

  14. comment
    Comment #27367707

    Too many predictions with too many assumptions and too little data.

  15. comment
    Comment #27275889

    Someone reinvented ResearchGate and aRxiv, but made it worse?

  16. comment
    Comment #26444865

    This was actually a somewhat significant reason I shared this article. (^.^)

  17. story
  18. comment
    Comment #26290126

    …and might descend from Loki ( https://en.wikipedia.org/wiki/Lokiarchaeota#Evolutionary_sig... )

  19. story
  20. comment
    Comment #26013289

    The number of CVEs is for the most part a function of how-often-does-someone-look-at-it and only for a tiny part a function of safety. If I remember correctly, sometime ago a lot o…

  21. comment
    Comment #25999900

    And where is the advantage then to have a `call syscall_wrapper` over `mov rax, syscall_number; syscall` if the ROP was able to return just before the call?

  22. comment
    Comment #25999280

    https://lwn.net/Articles/806776/ says, system-call-origin verification is for mitigation of ROP. ROP is (always?) a result of stack buffer overflows, which are a result of bad prog…

  23. comment
    Comment #25415728

    Except for Baden-Württemberg, which has tuitions for non-EU-students (1.5k€ per semester afaik), it is irrelevant whether you are German, EU-citizen or from somewhere else. The onl…

  24. comment
    Comment #25415459

    or Germany, where the only cost you might have is for the public transport ticket or something like that, and even this is often optional…I am actually curious why there are not so…

  25. comment
    Comment #25007372

    Long time ago, I used PureBasic. It was easy to write simple GUI-applications with a bit of network stuff. But some day I had an issue and had to look at the assembly-output (it us…