Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)BI
Posts
6
Comments
293
Joined
2 yr. ago

  • The fact that we live in a land of plenty but people die due to malnutrition or lack of access to healthcare because it's not profitable is pretty damning.

    Capitalism is like a rabid dog. It has its uses, but you don't just let it roam freely, you keep it on a tight leash.

  • Much of the concept of "intellectual property". Here's a good essay by Richard Stallman:

    https://www.gnu.org/philosophy/not-ipr.en.html

    Copyright by and large needs to be abolished. Patents in software are nonsensical, and elsewhere they should be drastically scaled back. Trademark is alright, with a few adjustments needed.

    But all of the above is hiding behind a concept of "property" that just does not apply to intangible things, and we need to stop using that term to describe them.

  • READMEs aren't necessarily markdown. That is the most popular option, but there's others out there. Here's Github's list of supported README formats for example:

    The following markups are supported. The dependencies listed are required if you wish to run the library. You can also run script/bootstrap to fetch them all.

  • Have you tried including the docs in the prompt as well? I wouldn't have guessed that S__ is a variable in your example, but I would've known that after reading the docs. I'd expect ChatGPT to at least do OK if it had access to the docs.

  • That's not really the same thing. It's also bad, but the producers aren't shipping that themselves, the NSA modifies it the devices after shipment. That's in some ways worse, since installing Linux yourself won't help against adversarial firmware/hardware.

  • The X1 Carbon series is popular with Linux kernel devs, so it's had a lot of TLC. It makes a big difference for some stuff like sleeping. My Thinkpads handled sleeping really well, and I could expect to leave it sitting for at least a week and come back to somewhat low battery. My Framework laptops, as nice as they are otherwise, will drain the battery during sleep in 24h, no matter what I've tried. The situation is apparently better on the newer-gen Framework laptops, and IMO Framework's open nature will lead to a similar situation to Thinkpads, but it's not quite there yet.

    Apart from sleep, I've heard complaints about the manufacturing quality of some of the other options, but haven't used them myself so can't verify. Might be why some people recommend the Thinkpads, though. I do really like the quality of the Framework, and I'd recommend people take a look at them over Thinkpads now, unless they care about sleep battery usage.

    To chime in with some of the other answers, price also makes a difference. Thinkpads have been around long enough that there's a nice large used market. I got a rock-solid Thinkpad T480 for a few hundred dollars from some dude on Craigslist. My Framework is higher-specced and was paid for by my work, but it still starts out ~$800. I think it'll just take time before other manufacturers have a similar situation.

  • We're definitely going to see jobs affected by ChatGPT and the like. It's an open question of "Can LLMs do things as well as humans?" across the board, but when have you seen a company turn down a deal like "slightly shittier, but costs pennies on the dollar and doesn't have any pesky 'rights'"?

  • I like Python and use it a lot, but Dhall has several guarantees that Python doesn't. If you hand someone clever a Python interpreter, they can and will find a way to run rm -rf / or what-have-you, no matter what safeguards you put in place. Dhall also guarantees that it will terminate, which is pretty useful if you're embedding it in something else. In Python you could pretty easily accidentally or purposefully get into a while True loop.