No, but I wouldn't be able to tell you what the player did wrong in general.
By contrast, the shortcomings of today's LLMs seem pretty obvious to me.
& you're basically seeing GPT-3 and saying it will never be used in any serious application.. the rate of improvement in their model is insane
As far as I can tell, from talking with Israelis both living in Israel and outside, there really isn't one majority thinking a certain way, it seems to me that there is an equal amount of people cheering the settlers as there are people against what they're doing.
Free expression means that objectionable things will be said, even published. There are certainly hairy exceptions, like doxxing, slander, or incitement to violence that can put people in immediate danger, but stuff like this clearly doesn't fall in that category, and giving finance the ability to censor in this way is not signficantly better than governments doing so
Otherwise, I'd love to be able to preemptively and without any prior communication charge (way in excess of the room rate, of course!) hotels for broken appliances, poor cleanliness etc., and put the burden of proof that everything was fine on them.
> thanks to the Steam Deck [...] but I would be reluctant to call that Linux Desktop anymore than I would call Android an uptick for Linux.
The Steam Deck very much runs Linux Desktop. Android runs the Linux kernel, but everything else is different. SteamOS is a Linux distribution based on Arch. If you run your Steam Deck in "desktop mode", it is very much a Linux Desktop (with a read-only system and A/B updates etc, but still).
Deleted Comment
API_KEY = os.environ.get("YOUTUBE_API_KEY")
CHANNEL_ID = os.environ.get("YOUTUBE_CHANNEL_ID")
if not API_KEY or not CHANNEL_ID:
print("Missing YOUTUBE_API_KEY or YOUTUBE_CHANNEL_ID.")
exit(1)
Presenting the user with "Missing X OR Y" when there's no reason that OR has to be there massively frustrates the user for the near zero benefit of having one fewer if statement. if not API_KEY:
print("Missing YOUTUBE_API_KEY.")
exit(1)
if not CHANNEL_ID:
print("Missing YOUTUBE_CHANNEL_ID.")
exit(1)
Way better user experience, 0.00001% slower dev time.