HackerTrans
トップ新着トレンドコメント過去質問紹介求人

rbonvall

no profile record

コメント

rbonvall
·23 日前·議論
Yes, that's the smoking gun!
rbonvall
·26 日前·議論
Socks are not getting lost; they are getting compacted to keep the context window small.
rbonvall
·先月·議論
(It's Barcelona)
rbonvall
·3 か月前·議論
In the soccer world, there is the International Federation of Football History and Statistics (IFFHS), that decides several rankings and awards that are regularly cited in traditional media. For example, if a player from my not-quite-football-powerhouse country makes the "best 100 goalkeepers" list or whatever, it'll be on the news.

Turns out the IFFHS was just one guy in Germany during the 80s that leveraged his contacts in news agencies to establish his brand as a reputable source.
rbonvall
·3 か月前·議論
Note that it's not a European thing. It's how most football leagues around the world work.
rbonvall
·3 か月前·議論
Of course. It's distributed.
rbonvall
·3 か月前·議論
Just like that place that's so crowded nobody goes there anymore.
rbonvall
·5 か月前·議論
That doesn't explain the "punctuating with multiple cryface emojis".
rbonvall
·6 か月前·議論
Lies, Damned lies, and Unreasonable Effectiveness For Fun and Profit
rbonvall
·8 か月前·議論
Example of replacing grep+cut with a single awk invokation:

    $ echo token:abc:def | grep -E ^token | cut -d: -f2
    abc
    
    $ echo token:abc:def | awk -F: '/^token/ { print $2 }'
    abc
Conditions don't have to be regular expressions. For example:

    $ echo $CSV
    foo:24
    bar:15
    baz:49
    
    $ echo $CSV | awk -F: '$2 > 20 { print $1 }'
    foo
    baz
rbonvall
·9 か月前·議論
I use dtrx, which also ensures that all files are extracted into a folder.
rbonvall
·9 か月前·議論
Python also pretty-prints out of the box:

    $ echo '{ "hello": "world" }' | python3 -m json.tool
    {
        "hello": "world"
    }
rbonvall
·10 か月前·議論
> I have always wondered what would happen if someone had to invent spreadsheets from scratch, today.

This is exactly what Joel Spolsky did:

> What was I talking about? Oh yeah… most people just used Excel to make lists. Suddenly we understood why Lotus Improv, which was this fancy futuristic spreadsheet that was going to make Excel obsolete, had failed completely: because it was great at calculations, but terrible at creating tables, and everyone was using Excel for tables, not calculations.

... so he went on and created Trello.

https://www.joelonsoftware.com/2012/01/06/how-trello-is-diff...