Viewing profile — mechanical_jane
mechanical_jane
HN member- Joined
- Tue, May 08, 2018, 6:41 AM UTC
- HN karma
- 16
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About mechanical_jane
No profile information was provided.
Recent public activity
-
comment
Comment #23245954
This gives an (artificial) example of the power of GNU Parallel over xargs: https://unix.stackexchange.com/questions/405552/using-xargs-...
- story
-
comment
Comment #21806472
> This would break a cron-job as well. How so? GNU Parallel only outputs the notice if stderr is a terminal. I think you did not try this. Am I right about that? It is litteraly th…
-
comment
Comment #20792739
If it is as easy to silence as GNU Parallel and tells you how to do it (like GNU Parallel also does), I do not see a problem.
-
comment
Comment #20729259
Some of the alternatives to GNU Parallel are written in Go: https://www.gnu.org/software/parallel/parallel_alternatives.... Speed wise they are comparable to GNU Parallel. So the a…
-
comment
Comment #20729227
I think your example is wrong: $ seq 0 5 100000 | parallel touch {}.txt Or you you really want the infinite loop: $ yes | parallel touch '{= $_=seq()*5 =}'.txt '$' must be quoted $…
-
comment
Comment #20729147
Why not save some quoting: parallel --slf input_file_here -j16 --nonall echo 'Matrix has you'
-
comment
Comment #20729134
Why not simply do as GNU Parallel suggests in the message: Run 'parallel --citation' ONCE and have the notice silenced. I never understood the complaint: Is it because people do no…
-
comment
Comment #20729116
Does that also apply to platforms where you as a consultant for hire does not have access to a C compiler for that given platform? It used to be an issue that non-free UNIXes did n…
-
comment
Comment #20729101
Yeah, quoting redirection is a bitch, but as long as you know GNU Parallel is just a program and not part of the shell, you can usually deduct which parts will be interpreted by th…
-
comment
Comment #20729091
Comparison to GNU Parallel's syntax: https://www.gnu.org/software/parallel/parallel_alternatives....
-
comment
Comment #20729080
It would require your input not to have any special shell chars - e.g. no space. It is definitely not something I would dare to run in production.
-
comment
Comment #20729070
Maybe the cheat sheet is made for you: https://www.gnu.org/software/parallel/parallel_cheat.pdf
-
comment
Comment #20729056
But looking at the comparison, do you really find GNU Parallel that much harder to understand? parallel sh -c "echo hi; sleep 2; echo bye" -- 1 2 3 parallel echo hi";" sleep 2";" e…
-
comment
Comment #20729043
I think the cheat sheet is made for you: https://www.gnu.org/software/parallel/parallel_cheat.pdf If you have a hard time getting it to work and remember how, then it is likely tha…
-
comment
Comment #19392400
I like the definition that Big Data starts at the capacity of the biggest single hardddrive you can buy. So this year it is 14 TB.
-
comment
Comment #19345781
If you are just looking for an alternative, GNU Parallel publishes a list of alternatives: https://www.gnu.org/software/parallel/parallel_alternatives....
-
comment
Comment #19335104
We probably have to agree to disagree on that one: I see loads of commercials for buying iPhones. I do not see a lot of commercials for citing GNU Parallel. If I have to make a cit…
-
comment
Comment #19335040
I am trying to understand your take. Do you also call Firefox nagware, when it pops up with a dialog box where you can click "Don't show this again"? To me the dialog box is actual…
-
comment
Comment #19334958
Isn't that explained in the link in the very first question? https://lists.gnu.org/archive/html/parallel/2013-11/msg00006...
-
comment
Comment #19333108
I enjoy following your thought process. I cannot make that fit with the content of the FAQ: "In other words: It is preferable having fewer users, who all know they should cite, ove…
-
comment
Comment #19332440
Do you feel this is covered in the FAQ? http://git.savannah.gnu.org/cgit/parallel.git/plain/doc/cita...
-
comment
Comment #19332385
Are your questions answered in the FAQ? http://git.savannah.gnu.org/cgit/parallel.git/plain/doc/cita...
-
comment
Comment #19332271
Not LaTeX, but LibreOffice: http://git.savannah.gnu.org/cgit/parallel.git/tree/src/paral...
-
comment
Comment #17886917
What problems arose? I usually just run --citation once on a new system, and never see the notice again, and I have never had the notice cause any problems as it only shows if the …