Viewing profile — frankerz
frankerz
HN member- Joined
- Wed, Mar 11, 2015, 9:42 AM UTC
- HN karma
- 20
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About frankerz
No profile information was provided.
Recent public activity
-
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 …
-
comment
Comment #9574645
I think what he means is just put both set relativenumber set number In your .vimrc
-
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 …
-
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?
-
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.
-
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
-
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