Viewing profile — i15e
i15e
HN member- Joined
- Sun, Jan 05, 2020, 3:17 AM UTC
- HN karma
- 24
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About i15e
No profile information was provided.
Recent public activity
-
comment
Comment #48864204
I'm not seeing any ? marks in my code. Are you referring to the instances of $'\t' ? In bash (and other shells, including recent versions of the POSIX sh specification) $'...' is t…
-
comment
Comment #48863206
A variant: docker image ls -a | stdbuf -oL sed -r 's/\s{2,}/\t/g' | { head -n1; tail -n+2 | sort -hrk5 -t$'\t'; } | column -ts$'\t' I used docker since that's what I have installed…
-
comment
Comment #46238645
You can use Ctrl+z to suspend the foreground process, bg to resume it in the background, and then wait to wait for it to complete. By default wait will wait for all jobs to finish …
-
comment
Comment #40454817
You could install the Google Drive client and then run WinDirStat against the virtual drive letter that it creates: https://support.google.com/drive/answer/10838124
-
comment
Comment #40441395
In Firefox you can go to about:profiles to easily open new windows using other profiles. I bookmark that page with a keyword for quick access. (Also see about:about for a list of o…
-
comment
Comment #38158347
gf2 is worth looking at: https://github.com/nakst/gf
-
comment
Comment #37795680
Something to watch out for with nl is that by default it doesn't number empty lines. e.g.: $ printf 'one\n\nthree\n' | nl 1 one 2 three Set -ba to enable numbering all lines. For t…
-
comment
Comment #36127447
Your original command should work fine. find does not pass arguments through an intermediate shell, so there are no quoting concerns with regard to spaces in filenames, etc. And wi…
-
comment
Comment #22991644
I did something similar using the 'at' daemon's 'now' time specification to "fork" off background tasks from a web request using the same .php file. It actually worked well for wha…
-
comment
Comment #22815484
Another plus of DroidCam is that it supports streaming the video over USB so no WiFi is necessary.