Live data from Hacker News

Viewing profile — hielke

hielke

HN member
Joined
Mon, May 02, 2022, 8:25 PM UTC
HN karma
15
Public activity
5 items

About hielke

No profile information was provided.

Recent public activity

  1. comment
    Comment #47181778

    With exec you can open file descriptors of your current process. if [[ ! -e /proc/$$/fd/3 ]]; then # check if fd 3 already open and if not open, open it to /dev/null exec 3>/dev/nu…

  2. comment
    Comment #39313331

    The phrase in the title is also not from Frank Herbert. It is from Lynch's movie adaptation of the books.

  3. comment
    Comment #39251404

    >Do modules actually make compilation appreciably faster in msvc? For a small toy example, about 10x times faster. Don't know how that looks in real life projects.

  4. comment
    Comment #39249824

    In modern C++ there will be modules (C++20). Even std will be available as a module (C++23). This will likely bring down compile times massively. But so far the only compiler with …

  5. comment
    Comment #37220846

    I was stuck on the same struggles, but eventually managed to bodge something together: https://github.com/hwalinga/dotfiles/blob/master/CapsLockCtr... It also implements the double…