Viewing profile — fratajcz
fratajcz
HN member- Joined
- Tue, May 26, 2020, 12:10 PM UTC
- HN karma
- 53
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About fratajcz
No profile information was provided.
Recent public activity
-
comment
Comment #33632691
That bothered me too, the default function for Ctrl-W in ipython is unix-word-rubout from python-prompt-toolkit [1], which uses spaces for word boundaries. You can rebind it to bac…
- comment
-
comment
Comment #27602017
In this case, most people will write the variable x with curved ends (𝑥) and the operator with straight ends.
-
comment
Comment #26184663
The japanese layout HHKB does have arrow keys, but the original (QWERTY) design never had them. https://www.reddit.com/r/MechanicalKeyboards/comments/36n5cl...
-
comment
Comment #26078264
When you add the next sentence in the original text, it's even more blatant: "And it induces regular effects of power. Each society has its régime of truth, its ‘general politics’ …
-
comment
Comment #25198264
You can check if stdout is a tty: if it's not, you output raw text. GNU ls does this: by default it outputs in a multiple column layout, but when piped, it outputs one file per lin…
-
comment
Comment #24833065
I don't think it's actually specified by POSIX, it only mentions arithmetic expansion with $(()) and there is no mention of (()) for arithmetic operations in the grammar: https://p…
-
comment
Comment #24750129
Most of them are ripped from Guitar Hero/Rock Band, because the games needed to mute individual instruments when you were not playing the correct notes. (With 10+ games and lots of…
-
comment
Comment #24740577
Not sure if it was actually relevant at the time of Unix v6, but Brian Kernighan writes in his memoir that "Arguably, one reason why many commands on Unix are short is that it took…
-
comment
Comment #24703752
I think that was just a way of the manual showing you how to have a sound "inspired by" Van Halen, since he famously got his distortion sound not from a pedal, but from a Marshall …
-
comment
Comment #24611093
ASAN is great for development, but a less cynical reason for not enabling it at an OS level is that it would add quite a bit of overhead: "Typical slowdown introduced by AddressSan…
-
comment
Comment #24591013
You should look into kinto, it completely remaps the modifier keys system-wide and worked pretty well when I tried it (I switched to i3wm so I use super for i3 shortcuts now) https…
-
comment
Comment #24498942
Multiple plugins are available to add LSP support in vim, such as coc.nvim (uses node.js, more features) or vim-lsp (lighter, written in vimscript). Neovim is also going to add nat…
-
comment
Comment #23331605
There's also https://danstonchat.com/ in France (formerly known as bashfr)
-
comment
Comment #23325122
They have only confirmed ordering some in case it is proven to be useful. (this was 1 month ago) https://factuel.afp.com/oui-larmee-francaise-sest-procure-de...
-
comment
Comment #23310167
fish abbreviations kinda do this, for example if you define your alias above as an abbrev and you type hello , it replaces hello by ~/Documents in your command line. You still have…