Live data from Hacker News

Viewing profile — ephemeris

ephemeris

HN member
Joined
Wed, Apr 27, 2016, 11:15 PM UTC
HN karma
17
Public activity
4 items

About ephemeris

No profile information was provided.

Recent public activity

  1. comment
    Comment #12990552

    there was figr a web based realtime version. I think it is dead now last known location http://figr.bzero.se

  2. comment
    Comment #12990530

    heh I knew them lines looked familiar digraph { "Hey" [shape=circle] "Welcome to graphiz" [shape=box] "You are new" [shape=diamond] "How are you" [shape=box] "It's super easy" [sha…

  3. comment
    Comment #11585494

    unix pipes are multidimensional via fifo. I have done like follows when I want a poor mans "GROUP BY" mkfifo p1 cat data | tee p1 | awk '{print $5}' | sort | uniq -c | join -1 5 -2…

  4. comment
    Comment #11585389

    I have dealt with cms pipelines. It is a lot like everything ibm vs unix, over-specified, verbose and awkward. The unix pipeline is designed around making the normal case easy and …