Feyd

joined 2 years ago
[–] Feyd@programming.dev 10 points 5 days ago (2 children)

Even outside of the performance problems, it's become clear the pattern is to release the base game which is ok, then eventually release an expansion that makes it feel like a complete experience. A lot of people that started with world or rise are just going to hold off for the expansion

[–] Feyd@programming.dev 15 points 5 days ago (1 children)

That sounds cool as fuck

[–] Feyd@programming.dev 25 points 5 days ago
[–] Feyd@programming.dev 197 points 5 days ago (19 children)

Going anywhere in public to socializing is expensive as hell, third places are dead, and the primary way people meet potential SOs is through apps whose purpose isn't to make anyone happy but to extract maximum value from them.

There are people who are off the deep end, yes, but the answer isn't to attack them like this. That's never going to snap anyone out of it, and there really are huge societal problems that are resulting in people withdrawing, which is obviously bad for their mental health.

[–] Feyd@programming.dev 7 points 5 days ago

Even if I ignored everything about the entire ecosystem, just the fact I can use ublock origin in firefox mobile is reason enough to choose it over chrome

[–] Feyd@programming.dev 13 points 5 days ago (2 children)

A lot of internet denizens go out of their way to highlight every misstep firefox has like it is fatal and downplay all of it's positives, even to the point of suggesting the usage of chromium derivitives.

[–] Feyd@programming.dev 4 points 6 days ago

I'm shocked I tell you

[–] Feyd@programming.dev 9 points 6 days ago

Your MyUnionType is defining an array (of any length) that only contains 1s and 2s. Setting values to [1,2] doesn't narrow the type down to a tuple of 2. I'm not sure why you think it would, but feel free to explain your reasoning and maybe I can clarify your misunderstanding.

In any case, it seems like you might be looking to use tuple types

// this is an array that can contain 1s and 2s
type ArrayOf1or2 = (1 | 2)[];
  

// fine, because regardless of the length, it only contains 1s and 2s
const ok1: ArrayOf1or2 = [1,1,1,2,2,2,1,2];

// no good, because it can't have a 3
const notok1: ArrayOf1or2 = [3];

type Size2ArrayOf1sAnd2s = [(1 | 2), (1 | 2)];

// has 2 so is fine
const ok2: Size2ArrayOf1sAnd2s = [1,1];

// has 1 so is not fine
const notok2: Size2ArrayOf1sAnd2s = [1];

// has 3 so is not fine
const notok3: Size2ArrayOf1sAnd2s = [1,1,1];
[–] Feyd@programming.dev 10 points 1 week ago

As a long time regular player of jrpgs, I was pretty skeptical of all the people I know that don't play them talking up expedition 33, but yeah it is really that good.

[–] Feyd@programming.dev 3 points 1 week ago

If we're holding grudges along religious and ethnic lines literally forever there will never be peace until one group has destroyed all the others. I hope that's not the fate of humanity.

[–] Feyd@programming.dev 3 points 1 week ago

Yet there are countless examples of webmasters alleviating traffic that is crushing their sites by deploying this solution. The reasoning is up in the air, but the effectiveness is there.

[–] Feyd@programming.dev 7 points 1 week ago

That they don't know how it works is a lie. The mysticism and anthropomorphization is purposeful marketing. Pretending they don't know how it works also lets them pretend that the fact they constantly lie is something that can be fixed rather than a fundamental aspect of the technology

view more: ‹ prev next ›