• 0 Posts
  • 260 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle


  • That’s one of the things, but it’s also adding a dedicated sidebar for AI. That’s the sort of thing that should just be an extension, there’s absolutely no reason at all why that needs to be something built into the browser.

    Developers should be providing alt text themselves, but in cases where they aren’t having a local image recognition model running to provide a description isn’t terrible as long as it’s either 100% local or completely opt-in.

    The dedicated sidebar on the other hand feels very much like a cheap attempt to cash in on the AI fad.


  • You shouldn’t underestimate people’s tendency to just do what they’re told and not rock the boat. Network head likes Trump interviews because it generates views, which attracts advertisers. Trump is a petulant child and will refuse to do interviews with any network that points out he has the mental capacity of a child. So the network head mandates that nobody is allowed to question Trumps mental state for fear of him refusing future interviews. Since their boss said so, the network talking heads just go along with it.

    As for the politicians, they can’t recalibrate to the reality that is Trump. They’re used to playing political chess with their equals and along comes the pigeon known as Trump to walk all over the board knocking pieces over and shitting everywhere. They literally have no playbook to deal with him. Normally this would be where the “referee” steps in which depending on context would be a debate moderator, the Supreme Court, or Congress, but the debate moderators won’t touch him because of the previously mentioned reasons, the Supreme Court has been stuffed with puppets that have a vested interest in protecting him, and Congress is so deadlocked and dysfunctional they can’t even pass legislation with bipartisan support nevermind impeaching him.

    Trump is the perfect storm of everything the US political system was never designed to counter. Every single check that was supposed to prevent this sort of thing has either been subverted or just plain failed because the supposition it was built on was faulty. He has highlighted that far too much of the US political apparatus has functioned purely by convention and concepts of fair play and as soon as someone came along that didn’t give a shit about any of that it all crumbled.







  • Because his supporters don’t care if he’s a gibbering idiot as long as he tells them their particular deplorable -ism is perfectly valid and fine. He gets the racist votes because he tells them that they’re right and all the non-white people are inferior and out to get them. He gets the Christian votes because he tells them that the US has, is, and always will be a Christian nation that should be run by their particular flavor of Christianity and btw all the non-Christians are out to get them. He gets the homophobe and transphobe votes because he tells them yes, LGBTQ+ is a choice, they’re all perverts, and they’re all out to get them and their children.

    Basically he tells everyone that’s on the wrong side of history who have been told that they are terrible people for decades that they are in fact not terrible people, that they’ve been right all along, and that it’s all a conspiracy by liberals/democrats/minorities/homosexuals/satanists/whoever to get them, and they eat that shit up. As long as he keeps spouting support for their particular prejudices he’ll keep getting their votes, because they rather elect a gibbering moron who validates them than someone sane and competent that tells them their prejudice is wrong.



  • Yeah that entire article basically agreed with everything I said. Technically broadcast TV does have some limitations enforced by the FCC (because it uses radio to transmit) even to this day, but broadcast TV is basically dead. I actually thought they had shut those stations down a few years ago, but I guess they’re still around. Regardless there are absolutely no government regulations that control what’s shown on cable and streaming services. 100% of censorship that occurs there is a business decision by the TV Networks and has absolutely nothing to do with the government.


  • You can, most networks just decide not to. Broadcast TV (which hasn’t really existed for I think more than a decade now) had restrictions about swearing (and other content) enforced by the FCC as it used a public good (RF bands). Cable TV (and now streaming services) are and pretty much have always been unregulated.

    TV Networks, being companies trying to make money, opt to self censor so as to appeal to the largest number of viewers, but that isn’t anything to do with the government, it’s 100% a business decision.



  • “If Trump wasn’t running, I’m not sure I’d be running,” Biden said at a fundraising event for his 2024 campaign outside of Boston. “We cannot let him win.”

    The irony of this is breathtaking. If Biden wasn’t running there’d be much less of a chance of Trump winning. I really wonder what would happen at this point if Biden dropped dead of a heart attack tomorrow. I find it hard to believe anyone else could possibly be doing worse than him. Harris might do just as badly because of guilt by association, but at least she wouldn’t do any worse.

    If there’s any justice in the world both Biden and Trump will kick the bucket before the next election, and we’ll actually get a couple candidates that aren’t a few decades past the average life expectancy for once. Maybe get a fresh faced 50 year old for a change. God forbid we get a candidate that we don’t seriously have to worry about if they need a diaper change for once.




  • I can confirm Samsung appliances are complete trash. Every single one I’ve owned has either died or had a non-replaceable part fail within a couple years. We had a Samsung fridge at one point and one of the door switches failed. No big deal right, easy to replace? No, apparently Samsung used some kind of custom switch instead of the bog standard cherry contact switch that basically everything and everyone has used for decades, and it’s no longer being manufactured.



  • It’s important to distinguish between lossy and lossless algorithms. What was specifically requested in this case is a lossless algorithm which means that you must be able to perfectly reassemble the original input given only the compressed output. It must be an exact match, not a close match, but absolutely identical.

    Lossless algorithms rely generally on two tricks. The first is removing common data. If for instance some format always includes some set of bytes in the same location you can remove them from the compressed data and rely on the decompression algorithm to know it needs to reinsert them. From a signal theory perspective those bytes represent noise as they don’t convey meaningful data (they’re not signal in other words).

    The second trick is substituting shorter sequences for common longer ones. For instance if you can identify many long sequences of data that occur in multiple places you can create a lookup index and replace each of those long sequences with the shorter index key. The catch is that you obviously can’t do this with every possible sequence of bytes unless the data is highly regular and you can use a standardized index that doesn’t need to be included in the compressed data. Depending on how poorly you do in selecting the sequences to add to your index, or how unpredictable the data to be compressed is you can even end up taking up more space than the original once you account for the extra storage of the index.

    From a theory perspective everything is classified as either signal or noise. Signal has meaning and is highly resistant to compression. Noise does not convey meaning and is typically easy to compress (because you can often just throw it away, either because you can recreate it from nothing as in the case of boilerplate byte sequences, or because it’s redundant data that can be reconstructed from compressed signal).

    Take for instance a worst case scenario for compression, a long sequence of random uniformly distributed bytes (perhaps as a one time pad). There’s no boilerplate to remove, and no redundant data to remove, there is in effect no noise in the data only signal. Your only options for compression would be to construct a lookup index, but if the data is highly uniform it’s likely there are no long sequences of repeated bytes. It’s highly likely that you can create no index that would save any significant amount of space. This is in effect nearly impossible to compress.

    Modern compression relies on the fact that most data formats are in fact highly predictable with lots of trimmable noise by way of redundant boilerplate, and common often repeated sequences, or in the case of lossy encodings even signal that can be discarded in favor of approximations that are largely indistinguishable from the original.