HN user

pdpi

14,448 karma
Posts11
Comments2,860
View on HN

If CEOs are going to start claiming that a core role of their job is emotional inspiration as a result of all those all hands meetings

Oh hell no. That's not where the value lies.

You can't send an AI CEO as part of a trade delegation. Sending an AI to close the deal doesn't tell the other party that you're there to make sure the deal happens. That's the sort of thing a human CEO does that an AI can't.

Mostly the latter.

There's another aspect to it, though — parent was in a navy ship, surrounded by sailors. That's a very specific population, in a very specific situation, and it's not necessarily true that that's the right crowd or situation to care (though it baffles me how a sailor at sea might look up at the stars without being in awe of the thought "damn, my predecessors navigated based on those")

Spelling used to be a big one. E.g. in the opening sentence of the article, the word "otimização" would've been an obvious sign it was Brazilian, because the usual European Portuguese spelling was "optimização" — we had a bunch of silent consonants like that all over the place, but most of those got removed once Portugal started adopting the 1990 orthographic agreement[0]. Speaking of spelling differences, now that I'm re-reading, I could've noticed it was Brazilian from "ingênua" in the first section (would've been "ingénua" in European Portuguese).

A common pattern in the readme is the use of "em um" ("in/on a" in English), which is idiomatic in Brazilian, but not in European Portuguese, where the contraction "num" would be standard. It's one of the cases that could be attributed to overly stiff academic writing, though.

0. https://en.wikipedia.org/wiki/Portuguese-Language_Orthograph...

Today I learned about the Bortle scale

When I first learned about the "clouds are noticeably brighter than the sky" part of Bortle 5, it was like it flipped a switch in my brain. I can't avoid noticing it now.

Doesn’t seem like these two guys were vegan for Instagram internet points or for following a trend. They’re not trying to game the system for steak, medium rare. Their dietary restrictions are part of a larger belief system — they’re vegans because it’s the only diet consistent with their beliefs about animal rights.

Irrespectively of my own personal opinion on ethical veganism, if it’s a sincerely held belief, it should be treated the same as, say, a Jewish inmate requesting to eat kosher, or a Muslim inmate requesting to eat halal. A prison sentence shouldn’t effectively force you to break with those beliefs.

`2>&1` redirects FD2 to the current contents of FD1 (stdout), then `> /dev/null` redirects FD1 to /dev/null. That results in your errors going into stdout, and discarding regular output altogether:

    0: stdin  -> stdin  -> stdin
    1: stdout -> stdout -> /dev/null
    2: stderr -> stdout -> stdout
When you flip the order, `> /dev/null 2>&1` moves FD1 to /dev/null first, and then FD2 to the contents FD1 (/dev/null again), so you discard both errors and standard output:
    0: stdin  -> stdin     -> stdin
    1: stdout -> /dev/null -> /dev/null
    2: stderr -> stderr    -> /dev/null
In your example, `cat file` is unlikely to produce any errors, which is why you're not seeing a difference.

Don't get me wrong: this system where Sony (or whomever else) just deletes stuff from your account with no recourse is absolutely batshit insane.

What I'm getting at is that people are getting the shape of the problem wrong (it was never ownership vs licensing), so the solution has to be different too. E.g. Bluray AACS revocation provides the technical means through which licences for physical media can be revoked just like purely downloadable stuff can.

The problem is that we've always been buying licences, it's just that the licence used to be attached to a physical object, so transferring the licence was as easy as transferring ownership of that physical object.

It's never been legal to copy a book, film, or music album and sell the copies, for example, because the licence doesn't allow it. Hence freeware, shareware, and copyleft licences.

Well, it's more than just OpenGL bindings mostly because it's bindings for a bazillion other things too. Just look at the javadoc[0]. The non-binding stuff in there is just utilities to make the bindings at least somewhat idiomatic in Java. In practice, LWJGL games are almost always just GLFW games, which I would still qualify as being pretty damn close to "from scratch".

0. https://javadoc.lwjgl.org

Casey Muratori and Jon Blow are both hyper-dogmatic "my way or the highway" types, and, crucially, neither of them has built any of the super high fidelity types of game that would require that level of optimisation. They're basically influencer types.

Yes, that's exactly my point — they're holding on to what is arguably a tiny kernel of truth, and blowing it way out of proportion. And, to be clear, "zealot" isn't meant as a compliment.

And yes, coreutils is a great example of what I mean. The GNU project was always meant to be the basis for a production grade operating system. I mean, GNU Hello is just a hello world program, and its source weighs in at 707kB zipped (or 3.6MB unzipped). The purpose is having a trivial application that can serve as reference for all the standard practices of the GNU Project. No amount of writing things in Rust can replace the engineering mentality that leads to GNU Hello existing. In comparison, as I understand it uutils was first and foremost an educational project that got coopted into being used in production. Things are very much not alike here.