Maybe I should have written a longer comment to elaborate on what I meant. What I meant to say is that if your primary concern is sound quality rather than the experience physical media gives you, I would assume a flac file would be a more popular option due to its convenience.
There's way more to a game's look than textures though. Arguably ray tracing will have a greater impact than textures. Not to mention, for retro games, you could just generate the textures beforehand, no need to do it in real time.
Nobody would ever say "Asian" when referring to the south east Asians powers though. Call it European colonial powers or something. It gets tiresome being lumped in with destruction caused by Britain, France, etc... when your own nation was nothing but potato farmers at the time.
programming.dev will migrate over to (lemmy compatible) Sublinks once it's ready, which will feature a different set of mod features. For that reason we will need new moderators to have an active programming.dev account. If you're willing keep an active user account on our instance let me know. We would prefer people we know will actively use their mod account to make sure reports are handled in a timely manner.
I'm pretty sure it's generating racially diverse nazis due to companies tinkering with the prompts under the hood to counterweight biases in the training data. A naive implementation of generative AI wouldn't output black or Asian nazis.
it doesn't have EQ or sociological knowledge.
It sort of does (in a poor way), but they call it bias and tries to dampen it.
The team is fairly unison in wanting to avoid defederation as much as possible and leave it users to filter out content they personally don't enjoy. Programming is a big and diverse field, and we want to make it as open as possible to everyone. Unless the instance breaks our own rules as described in the sidebar under "federation rules", I feel like it would be an overreach by us to defederate an instance due to personal opinion.
Personally I would recommend to use regex instead for parsing, which would also allow you to more easily test your expressions.
You could then get the list as
import re
result = re.findall(r'[\w_]+|\S', yourstring) # This will preserve ULLONG_MAX as a single word if that's what you want
As for what's wrong with your expressions:
First expression: Once you hit (, OneOrMore(Char(printables)) will take over and continue matching every printable char.
Instead you should use OR (|) with the alphanumerical first for priority OneOrMore(word | Char(printables))
Second expression. You're running into the same issue with your use of +. Once string.punctuation takes over, it will continue matching until it encounters a char that is not a punctuation and then stop the matching.
Instead you can write:
parser = OneOrMore(Word(alphanums) | Word(string.punctuation))
result = parser.parseString(yourstring)
Do note that underscore is considered a punctutation so ULLONG_MAX will be split, not sure if that's what you want or not.
Photoshop (if it does?) and any other believable face swap apps use some sort of neural networks, which is exactly the problematic tech we are talking about.
Lower skill ceiling. One option can be done by pretty much anyone at a high volume output, the other would require a lot training and are not available for your average basement dweller.
Good luck trying to regulate it though, Pandora's box is opened and you won't be able to stop the FOSS community from working on the tech.
I personally would prefer the if check and return 0 in most instances just because it's clearer and more readable. But the two previous functions were one-liners so it just looked better if get_winnings() also was.
Maybe I should have written a longer comment to elaborate on what I meant. What I meant to say is that if your primary concern is sound quality rather than the experience physical media gives you, I would assume a flac file would be a more popular option due to its convenience.