That texture healing looks super nice. Is that something fonts can just do or does it require special editor support?
I might buy more from Epic if their launcher weren't So. Freaking. Slow. Even claiming the free game is such a chore that I can't be bothered to do it. It takes several minutes to load, responds sluggishly, and lags everything else on my computer the whole time it's running. The only game I play from them anymore is Celeste because I can start it without ever going through the launcher.
If you don't need to reuse the collection or access its items out of order, you can also use Iterable
which accepts even more inputs like generators.
I love the way Etho parkours through that hole in the crypt lava room, and over the fence and off the ledge in level 2 instead of sticking to the obvious path. Not sure if Tango intended for those to be doable but the extra pathing options seem to help a lot.
...What are they actually launching though? I mean I love the payment scheme but I can't get excited over this without an actual good product being sold.
The one case where I prefer video is when I know next to nothing about the topic and the other choice is mediocre to low-quality writing. Most people aren't great technical writers, and it's easy to skip over steps either because the writer assumes too much prior knowledge or simply because it takes effort to put that information in. On the other hand, videos are the opposite where it takes effort to cut stuff out, so you usually get all the steps which is what I need when I don't know anything.
If I have the option of a well-written, step-by-step tutorial though, or if I already know the topic and have a vague idea of what I'm looking for, then text is much better for being able to search/skim/go back and forth at my own pace.
I consider YabaIRyS more of an epithet than a nickname. I can't imagine anyone using it to replace her name like "I wonder what YabaIRyS (IRyS) is doing", only as a description replacing yabai like "Bruh, YabaIRyS (yabai)" in response to something she did/said.
Forgetting Faufau is pretty indefensible. It's been a long time, but that puts it in the same boat as Kronini and Sanana which I did remember.
I wasn't sure if Fuwa-chan and Moco-chan count as nicknames or if they're just how you say their names in Japanese. I guess dropping the last syllable is what makes it a nickname as opposed to just their real name + Japanese honorific?
It's a Substack thing, not added by the author
Ask it a question about basketball. It looks through all documents it can find about basketball...
I get that this is a simplified explanation but want to add that this part can be misleading. The model doesn't contain the original documents and doesn't have internet access to look up the documents (though that can be added as an extra feature, but even then it's used more as a source to show humans than something for the model to learn from on the fly). The actual word associations are all learned during training, and during inference it just uses the stored weights. One implication of this is that the model doesn't know about anything that happened after its training data was collected.
I disagree with the author on operator overloading. They claim that this function in C
float foo(float a, float b) {
return a+b;
}
is perfectly clear because you know it's doing floating point addition, while this function in Python isn't
def foo(a, b):
return a + b
because you don't know if it's floating point addition, integer addition, or string concatenation, and what happens if the inputs are different types?
I think that's fundamentally mistaken. You could also ask of the C version if it's doing normalized floating point addition, denormalized floating point addition, infinity addition, or NaN propagation. What happens if you mix different types of floats? And the answer is that it doesn't matter. These are all just aspects of floating point addition. It returns the most sensible result in whatever format is best to hold that value, and you don't need to worry yourself about how floats are stored under the hood.
The same is true of the Python version. It doesn't matter if it's integer addition or floating point addition or string concatenation. Those are just different aspects of the addition operator and it returns the most sensible result in whatever type is best to hold that value.
Bae and Fauna, probably because their streams times are the most convenient for me tbh. Not that I don't have reasons to love them but I'm pretty sure I could find something to love about any holomem I could consistently watch, and that just happens to be these two.
Hey, I like checked exceptions too! I honestly think it's one of Javas's best features but it's hindered by the fact that try-catch is so verbose, libraries aren't always sensible about what exceptions they throw, and methods aren't exception-polymorphic for stuff like the Stream API. Which is to say, checked exceptions are a pain but that's the fault of the rest of the language around them and not the checked exceptions per se.