Live data from Hacker News

Viewing profile — caro11ne

caro11ne

HN member
Joined
Sun, Apr 03, 2022, 9:24 AM UTC
HN karma
2
Public activity
9 items

About caro11ne

No profile information was provided.

Recent public activity

  1. comment
    Comment #37225078

    Do you mean like: parallel 'sleep {= $_=rand()*10+5; =} ; possibly_flaky {}' ::: {1..5} The {= =} escapes to perl, so you have a full programming language available.

  2. comment
    Comment #36843615

    Stop starting more jobs if load > number of cpus: cat list_of_file | parallel --load 100% run_intensive_process

  3. comment
    Comment #36737048

    I use paralel often and find the syntax reasonable: cat args | parallel this-program {} parallel this-program {} ::: arg1 arg2 arg3 ... The only really new thing is ::: which separ…

  4. comment
    Comment #35249396

    Is this not covered in depth in the f.a.q? https://git.savannah.gnu.org/cgit/parallel.git/tree/doc/cita...

  5. comment
  6. comment
    Comment #31012984

    > You also seem to have missed (twice!) the main thrust that [GNU Parallel is slow] I did not miss that. I did not comment on it because I agree and so does GNU Parallel. man paral…

  7. comment
    Comment #30992785

    So you knew of this limitation, but failed to mention it?! Wow. Just wow. I thought you were trying to show a general way to run jobs in parallel in a safe, reliable way that was f…

  8. comment
    Comment #30982872

    I find this scary: $ export LC_ALL=C $ $tm xargs -0P1 grep $lb t It greps for lines containing t, sorts the lines and computes a hash. Note how "xargs -P16 grep" gives the wrong an…

  9. comment
    Comment #30982303

    I use: iwashere() { sleep $(shuf -i 1-9 | head -1) date echo "===> $(hostname) ~/I_WAS_HERE } env_parallel -Sserver-0{1..5} --tag --nonall iwashere I like that I can try out the fu…