Live data from Hacker News

Viewing profile — social_monad

social_monad

HN member
Joined
Tue, Sep 10, 2013, 9:34 PM UTC
HN karma
2
Public activity
3 items

About social_monad

No profile information was provided.

Recent public activity

  1. comment
    Comment #7829647

    Simple solution in R: > '%+%' '+' 2+2 [1] 5 Regards

  2. comment
    Comment #6837299

    # this command fails to explain: : abc $(xclock) def

  3. comment
    Comment #6363682

    look at: man utf8 man syscalls ... and the best hint imo to process malformed filenames per 'find -print0' is: find ... -print0 | { while read -d $'\0' fil ... # use variable fil }…