Viewing profile — jonS90
jonS90
HN member- Joined
- Sat, Apr 27, 2013, 12:50 AM UTC
- HN karma
- 21
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About jonS90
No profile information was provided.
Recent public activity
-
comment
Comment #44633841
I migrated from omz to zimfw and am reasonably happy. But I have yet to meet anyone in real life who knows what zimfw is.
-
comment
Comment #41663553
Funny that I've been doing something nearly identical, but with way more boilerplate. fzfCommit() { local FZF_PROMPT="${FZF_PROMPT:=Commit: }" git log --oneline | fzf --border --pr…
-
comment
Comment #40163902
I use this in combination with FZF's ctrl-r command history which allows me to fuzzy search command history.
-
comment
Comment #39656665
This makes me think of an alternative that no one seems to be mentioning: http/rest files. They're git-friendly and there are community plugins to operate them from every major IDE…
-
comment
Comment #38696176
I used jsweet to accomplish something really cool once, bringing pieces of an archaic, tried-and-true java codebase into the browser. I had to downgrade java to accomplish it, and …
-
comment
Comment #38424487
If it takes 5 seconds for your prompt to display or become interactive, yes. As far as I'm aware, most of the other quality of life improvements can be reproduced in zsh with plugi…
-
comment
Comment #28681711
I came here to ask the same...
-
comment
Comment #26617425
This is how I make pbcopy/pbpaste work on both Linux and WSL (Windows Subsystem for Linux). if [[ "$(uname)" == "Linux" ]]; then if ! grep -q Microsoft /proc/version; then alias pb…
-
comment
Comment #26591353
In Android you can configure Do Not Disturb to allow notifications from specific apps. I'm very curious if iPhone can do this.
-
comment
Comment #24314189
Sometimes I wonder if we need a new metric for time of day. The 24 system is very inconsistent throughout the year with respect to daylight.
-
comment
Comment #24314133
Lifestyle choices only get you so far if you have to figbt against your circadian rhythm to wake up before the sun. Your body wants to stay up late and wake up late, so you just en…
-
comment
Comment #23233618
I do the same. This might be overboard to some, but I went a step further and installed a vim plugin that brought many of the emacs-style key bindings into vim.
-
comment
Comment #19417734
When making code changes feels quick and effortless, I think you become more willing to try out different things and experiment, which ultimately enables you to learn your language…
-
comment
Comment #19417569
It might be worth learning the readline keybindings. They are supported rather ubiquitously in all terminal shells (including REPLs and SQL prompts and such). If you use MacOS they…