Live data from Hacker News

Viewing profile — frankerz

frankerz

HN member
Joined
Wed, Mar 11, 2015, 9:42 AM UTC
HN karma
20
Public activity
7 items

About frankerz

No profile information was provided.

Recent public activity

  1. comment
    Comment #9574678

    Since I usually work with small laptop screens I tend to use vim tabs more than split. I find these key combinations quite comfortable: nnoremap L :tabnext nnoremap H :tabprevious …

  2. comment
    Comment #9574645

    I think what he means is just put both set relativenumber set number In your .vimrc

  3. comment
    Comment #9483843

    It's quite sad that some people's first reaction to everything is to assume that the other carries an agenda and there's a need to be defensive. Person A thinks that everyone else …

  4. comment
    Comment #9471276

    I'm not very good at C, but from my understanding this library uses longjmp functions which means it's cooperative multithreading rather than preemptive isn't it?

  5. comment
    Comment #9464504

    > The problem you now see is that nginx never actually exists I think you meant exits instead of exists . Nice write up btw.

  6. comment
    Comment #9189026

    It seems like fish shell's ">" process substitution equivalence is not working as well as bash's though https://github.com/fish-shell/fish-shell/issues/1786

  7. comment
    Comment #9183305

    How does the > process substitution differ from simply piping the output with | ? For example (from Wikipedia) tee >(wc -l >&2) bigfile.gz vs tee bigfile.gz