HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rbonvall

no profile record

comments

rbonvall
·vor 23 Tagen·discuss
Yes, that's the smoking gun!
rbonvall
·vor 27 Tagen·discuss
Socks are not getting lost; they are getting compacted to keep the context window small.
rbonvall
·letzten Monat·discuss
(It's Barcelona)
rbonvall
·vor 3 Monaten·discuss
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
·vor 3 Monaten·discuss
Note that it's not a European thing. It's how most football leagues around the world work.
rbonvall
·vor 3 Monaten·discuss
Of course. It's distributed.
rbonvall
·vor 3 Monaten·discuss
Just like that place that's so crowded nobody goes there anymore.
rbonvall
·vor 5 Monaten·discuss
That doesn't explain the "punctuating with multiple cryface emojis".
rbonvall
·vor 6 Monaten·discuss
Lies, Damned lies, and Unreasonable Effectiveness For Fun and Profit
rbonvall
·vor 8 Monaten·discuss
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
·vor 9 Monaten·discuss
I use dtrx, which also ensures that all files are extracted into a folder.
rbonvall
·vor 9 Monaten·discuss
Python also pretty-prints out of the box:

    $ echo '{ "hello": "world" }' | python3 -m json.tool
    {
        "hello": "world"
    }
rbonvall
·vor 10 Monaten·discuss
> 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...