Viewing profile — MainJane
MainJane
HN member- Joined
- Fri, Aug 21, 2020, 10:41 AM UTC
- HN karma
- 15
- Public activity
- 20 items
- HN profile
- View on Hacker News ↗
About MainJane
No profile information was provided.
Recent public activity
-
comment
Comment #30985993
If you feel I am "moving the goalposts" why not just prove your original case? If you are spending 5 minutes on reading the source code, why not instead spend them on proving your …
-
comment
Comment #30904112
Honestly, I fail to see the problem, if I had to run `ls --no-awesome-ls-pro-upgrade-msg` once when I installed it the first time. And if I did not like it, I could use one of the …
-
comment
Comment #30896161
> This is an unreasonable standard when you do not know in advance how big the output is. Why is that unreasonable? Let us say a single job outputs 10% of the free space. As long a…
-
comment
Comment #30895499
> The comparison is not very fair to modern day xargs. I am curious how you come to that conclusion. > `nproc` is a relatively standard utility (coreutils). So, xargs -P$(nproc) ge…
-
comment
Comment #30894804
Would it not be more fruitful addressing the hard issue: Funding. https://git.savannah.gnu.org/cgit/parallel.git/tree/doc/cita... I think many free software developers would rejoic…
-
comment
Comment #30894768
I think that is the right thing to do: Don't like it? Don't use it. Also: https://git.savannah.gnu.org/cgit/parallel.git/tree/doc/cita...
-
comment
Comment #30894737
I was curious how much breakage GNU Parallel has suffered. So I fetched all versions (in parallel) and ran: parallel -k --tag --argsep -- {} echo ::: 1 -- parallel-* Every version …
-
comment
Comment #30894631
Also try: parallel --tmux ...
-
comment
Comment #30894629
cat hosts.txt | parallel --quote --timeout=10 ssh {} 'echo {} $(md5sum ~/.config/file)' Also try: parallel --slf hosts.txt --timeout=10 --nonall --tag md5sum .config/file
-
comment
Comment #30894609
> I don't care what GNU thinks, but it's simply not scalable. How so? A lot of software requires you to configure it before the first run, and we regard that as scalable. A lot of …
-
comment
Comment #30894579
I still remember when those were not of the "OK, don't show this again" type, so you could not simply stop them first after the first run.
-
comment
Comment #30894569
> If you're not describing an experiment or system that uses GNU parallel as one of its key components then it makes no sense to cite it any more than it does to cite any other uti…
-
comment
Comment #29345106
git-bisect is nice if you are looking for a git commit. If you are looking for a limit or the failing part of a file have a look at: https://gitlab.com/ole.tange/tangetools/-/tree/…
-
comment
Comment #28903526
> Try using GNU parallel to sort a list of numbers, [...] – it's not possible, Yet it clearly is possible, so your blanket statement is clearly wrong. `parsort` a simple wrapper, a…
-
comment
Comment #28897608
> Try using GNU parallel to sort a list of numbers, `parsort` is part of GNU Parallel.
-
comment
Comment #28263948
In your examples you fail to put 'xargs -P' in the middle of a pipeline: You only put it at the end. In other words: some command | xargs -P other command | third command This is u…
-
comment
Comment #28262284
Have you read the FAQ? https://git.savannah.gnu.org/cgit/parallel.git/tree/doc/cita...
-
comment
Comment #28262220
Your `do_one`: * does not buffer stderr * does not check if the disk is full for a period of time during a task (thus risking incomplete output) * does not clean up, if killed * do…
-
comment
Comment #28262152
> anything that is more than a single script ... which is exactly what GNU Parallel is. Your concern is even mentioned in the design documentation: https://www.gnu.org/software/par…
-
comment
Comment #28262135
It is documented in the GNU Parallel documentation: https://www.gnu.org/software/parallel/parallel_alternatives.... If you seriously believe you can implement everything using xarg…