HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rbonvall

no profile record

comments

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

    $ echo '{ "hello": "world" }' | python3 -m json.tool
    {
        "hello": "world"
    }
rbonvall
·10 maanden geleden·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...
rbonvall
·vorig jaar·discuss
Reminds me when Scala was translated to German some time ago, at about the same time of the year:

https://scala-lang.org/blog/2017/04/01/announcing-skala.html