Viewing profile — tomhrr
tomhrr
HN member- Joined
- Wed, Dec 21, 2022, 9:55 AM UTC
- HN karma
- 45
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About tomhrr
No profile information was provided.
Recent public activity
- story
-
comment
Comment #34452320
> That said, the examples could be better explained just like you did here now. The examples are not bad but things like the f iterator probably needs some explaining. Thanks, the …
-
comment
Comment #34452293
> Anyway, given from the examples for me this reads as a language to write hacky onliners of code which are probably easy to write once but hard to read anytime after. There is def…
-
comment
Comment #34423912
Thanks, and yep, the postfix notation allows for chaining commands together without parentheses. For example: 1 2 +; 3 * (The semicolon is used to indicate that the previous string…
-
comment
Comment #34418278
> Is explicitly disregarding several Unix philosophies, but not really discussing why the author believes those philosophies are wrong. I'm not sure I'd characterise these parts of…
-
comment
Comment #34417717
> but the examples are too hard for me: both sh & cosh Thanks, I'll look at adding some simpler examples. > I would have to look up `-0` The thing about '-0' is that it's not requi…
-
comment
Comment #34412602
Yep, at least as far as working with structured data rather than streams of text is concerned. Apart from the syntax differences, this is generally much lighter weight, though, in …
-
comment
Comment #34412252
The 'sh' command that it corresponds to is above it: find . -iname '*test*' -print0 | xargs -0 grep data but possibly a bad assumption on my part that the mapping was clear. In any…
- story
-
comment
Comment #34078930
It may not be helpful in your particular case depending on how your Slack is administered and similar, but my setup is like so: - https://github.com/wee-slack/wee-slack with WeeCha…