Live data from Hacker News

Viewing profile — johannkokos

johannkokos

HN member
Joined
Tue, Sep 25, 2018, 3:43 AM UTC
HN karma
53
Public activity
25 items

About johannkokos

No profile information was provided.

Recent public activity

  1. comment
    Comment #22476352

    What about binutils? Is it removed too?

  2. comment
    Comment #22135528

    Any one know if there is a text version of Intel's instruction set reference? Intel does provide a pdf, but I wish I can open a text file in vim and quick search through it.

  3. comment
    Comment #22077065

    Given that Chromium is a open source project, and lost of people here are strongly against Google's proposal to limit the ability of ad block extensions, with much stronger words c…

  4. comment
    Comment #21520386

    The RHEL version linked is 7.5, not 8.1. They might just forget to update the doc.

  5. comment
    Comment #21298148

    Linux users's first encounter with `ps` command usually leads to stackoverflow's question on RSS.

  6. comment
    Comment #21246419

    > This system will apply to foreign owned companies in China on the same basis as to all Chinese persons, entities or individuals. No information contained on any server located wi…

  7. comment
    Comment #21232982

    "Response to 'Fibers under the magnifying glass'" from the authors of boost.fiber, at http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p086... . And Response to response to …

  8. comment
    Comment #21232884

    Somehow I feel StackOverflow is preparing itself to be bought. Part of contract is for SO to deal with these hard problems before the it is made public.

  9. comment
    Comment #20479238

    gitlab publishes its about.gitlab.org source code. This pdf can be found in the repo link https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/sou...

  10. comment
    Comment #20392819

    Does it support multiple tabs? It doesn't seem to from the screenshot.

  11. comment
    Comment #20381137

    You can see why Nouveau devs are having difficulties with Nvidia in a Xorg developer confereence talk[1]. 1. Relations with NvidiaNVIDIA changes prevent us from releasing a driver …

  12. comment
    Comment #20047630

    How many tabs do you consider to be too many tabs? Most of the time I open up to 10 tabs, and Firefox is performing fine. But I have also seen people opening 40 tabs.

  13. comment
    Comment #19969213

    English translation by bing translator. https://www.translatetheweb.com/?from=&to=en&refd=www.bing.c...

  14. comment
    Comment #19896385

    > If we change foo2 to a declaration (such as would be the case if it was defined in an external translation unit, and its declaration included via header), then Clang can no longe…

  15. comment
    Comment #19797694

    I learned a new one recently. zt redraw so that current line is at top, zb redraw so that current line is at bottom, zz redraw so that current line is at the center. If you are on …

  16. comment
    Comment #19660184

    This is the original blog post by the author who filed the cve. https://www.trustwave.com/en-us/resources/blogs/spiderlabs-b...

  17. comment
    Comment #19643589

    Just like C++, your filter can be simplified like, filter(|string| {set.insert(string)} as insert return a bool.

  18. comment
    Comment #19643553

    > it just happens that C++ ships with a much bigger standard library than Go. I thought go had much bigger standard library. Go has archive, compression, crypto, database, encoding…

  19. comment
    Comment #19643524

    if (seen.find(lower) == std::end(seen)) { seen.insert(lower); return false; } You can just return seen.insert(lower).second as insert function return a pair

  20. comment
    Comment #19361817

    You're not wrong. Dtrace is gpl only in 2017.

  21. comment
    Comment #19024644

    > On what basis is what GP said a lie? stealing trade secrets is called “打破技术封锁”

  22. comment
    Comment #18903203

    I am confused by this article. It says, "Schellenberg was arrested in 2014 and received his original sentence in 2016 in a case that went unnoticed." But according to the Chinese c…

  23. comment
    Comment #18782180

    And Chair of Direction Group in 2018. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p093...

  24. comment
    Comment #18517509

    No one talks about the story from financial perspective? How much will Huawei lose, who is the competitor against Huawei? IMO it's the extension of trade war between US and China.

  25. comment
    Comment #18063429

    I cannot get the first simple example working. int main() { while (1) { if (fork()) _exit(0); } return 0; } If I run `htop` immediately after typing `./a.out`, it shows a error, Co…