Viewing profile — social_monad
social_monad
HN member- Joined
- Tue, Sep 10, 2013, 9:34 PM UTC
- HN karma
- 2
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About social_monad
No profile information was provided.
Recent public activity
-
comment
Comment #7829647
Simple solution in R: > '%+%' '+' 2+2 [1] 5 Regards
-
comment
Comment #6837299
# this command fails to explain: : abc $(xclock) def
-
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 }…