• 1 Post
  • 1.09K Comments
Joined 3 years ago
cake
Cake day: June 9th, 2023

help-circle
  • It does provide nearly unlimited access to knowledge. But, the Internet user needs to bring their own ability distinguish knowledge from strongly held ignorant opinions.

    If you’re an eye surgeon you can probably use the Internet to find out the newest techniques in eye surgery. You probably have enough knowledge of your own to spot fraudulent things, and to know where the real information can be found and how it can be vetted. OTOH, if you’re an eye surgeon, you might know nothing about farming, so you might not be able to separate the wheat from the chaff. If you’re not careful you might come away believing some crazy farming-related conspiracies.





  • Right. Copyright is supposed to be for the good of the population. In order to encourage people to create things, they’re given a short monopoly on it after which it enters the public domain. The original copyright term was 14 years, I think.

    The new setup is absurd. The public doesn’t benefit for more than a century, at which point the copyrighted item is probably of next to no value.

    And, like you said, the artist rarely benefits. Writers are probably the ones who come the closest to benefitting. They only have to pay their agent a cut, their publisher, then, finally Amazon. With advances, etc. you have to wonder how much they get paid for each additional book sold. Musicians basically don’t make anything anymore, with the bullshit that Spotify (partially owned by the record companies) does. And then movies, TV, and other video stuff, the amount that creators get is massively watered down, and that’s after the “Hollywood accounting” makes profits from even successful things disappear.

    I really don’t respect copyright anymore because it doesn’t benefit me (a member of the public) nor does it benefit the artist. It’s just a tool to hand money to certain entertainment conglomerates.








  • Yes, then (as expected) the companies passed on the cost to their customers.

    If there were a competitive marketplace, retailers would be offering refunds to their customers or putting on huge deals so that annoyed customers didn’t switch to a rival retailer.

    But, when Amazon has some massive chunk of the market, what happens if they piss off a customer? What are they going to do, go to the mall? The mall closed a long time ago.


  • Blondies? Pound cakes? Cheesecakes? Honestly, none of those appeal to me. They all seem like such bland treats.

    Vanilla is a good flavour enhancer. I love it as an addition to something like a chocolate mousse or an egg nog. But, on its own it’s as exciting as white rice, or spaghetti without sauce.



  • Yes, ISO-8601 is objectively better than YYYY/DD/MM or MM/DD/YYYY or other strange formats. But, because it isn’t the most widely used format, it can be less efficient when there’s no danger of MM/DD vs DD/MM confusion.

    If person A is talking to person B and they’re from the same culture, some culture-specific version like DD/MM/YY might be easier for them because it’s what they’re both used to, even if it is objectively inferior. But, if person A is talking to person C who is from a different place/culture things get more challenging because if the day of the month is 12 or under, it’s hard to distinguish between DD/MM or MM/DD. Even if person C knows that person A comes from a place that does DD/MM, they don’t know if person C used the native DD/MM format they’re used to, or translated it to them to MM/DD because person A was trying to make things easy for person C.

    One of the advantages of the hyphens in ISO-8601, aside from them working with files, is that hyphens in dates are less common than slashes, so if someone sees 1212-11-12 they’re more likely to understand that it’s an ISO-formatted date. If they see 1212/11/12 it might be a MM/DD date or a DD/MM date.






  • As for why it’s better:

    1. It’s in sort order. Even if you use it for things that don’t understand dates, they sort properly because the day is the last part, month is the middle part, and year is the first part. If you include hours, minutes or seconds, the sort order is still preserved.
    2. Speaking of things that don’t understand dates, because there are no slashes, you can easily use it in file names, directories, and anything else that treats slash as a special character. In addition, if you include the time part, because it uses “T” to separate the date and time, it doesn’t use a space, so once again it can be easily used anywhere where a space might cause issues.