calcopiritus

joined 2 years ago
[–] calcopiritus@lemmy.world 1 points 1 day ago

When people are told what they can or they can't do. They are gonna complain about it. Abd they'll go somewhere else where they don't tell them what to do

[–] calcopiritus@lemmy.world 19 points 1 day ago (1 children)

My gf knows nothing about math. And has to learn a bit. I'm a software engineer so of course I offered to teach her.

Gave her some exercises to do. Because she prefers to do them alone without help. And after 30 minutes she's like "can you help me decipher what chatgpt told me?".

Of course, what chatgpt told her was utter garbage. Bruh, I'm right here and I'm teaching you, just ask me for help, not a word predictor.

I'm actually impressed how bad chatgpt answered, this was low high school level maths/physics. The bot is advertised as if it were going to leave me without a job in the next year.

[–] calcopiritus@lemmy.world 0 points 1 day ago (2 children)

But if you put someone to supervise, they will complain because ACAB or something.

[–] calcopiritus@lemmy.world 20 points 1 day ago (1 children)

Was the driver driving a child-killing American truck? If so, both the driver and car company should be charged with voluntary manslaughter.

They knew this was going to happen, yet they still bought and produced the child-killing tank.

[–] calcopiritus@lemmy.world 3 points 2 days ago* (last edited 2 days ago)

Yes. Some mathematicians think that 0 is natural, others don't. So "natural number" is ambiguous.

In order to avoid ambiguity, instead of using fancy "N", you should use fancy "N0" to refer to {0,1,2,3,4,...} and "positive integers" to refer to {1,2,3,4,...}.

[–] calcopiritus@lemmy.world 9 points 2 days ago

Definitely the worst part of working is to give up 8+ hours of your day. It doesn't matter if it's a trip or staying in the chair looking at a computer. You still took away 8+ hours of my life.

In fact, when I signed up for the job, I did so wanting to be hours sitting in a chair looking at the computer. Not for "socializing" or whatever. I would prefer another day in the chair, since that trip will just give me less time to meet my deadlines.

[–] calcopiritus@lemmy.world 24 points 2 days ago (5 children)

It is not only an issue due to forever growth. Birthrates are so low in some places (like Japan), that the new generations will just be crushed by the (economic) burden of the older ones.

Older people don't contribute much to the economy, but they spend a lot. It's just how it is. Older people are usually less healthy, and less healthy people eventually consume more resources than they can provide. This burden means that the younger generations will demand change to the government, and that will make retirement either worse or harder to achieve. Which will lead to the old days of working until you drop dead. Or distopian-like situations where old people willingly die to not be a burden, or even worse, they are killed by the government.

And as you say, immigration just fixes the short-term effects. That future is inevitable with birthrates so low. Inmigrants usually adopt to the birthrate of the country very fast.

[–] calcopiritus@lemmy.world 10 points 3 days ago (1 children)

In the meantime. This is a valid business model.

[–] calcopiritus@lemmy.world -2 points 5 days ago

Take into account that Spain is in the "wrong" timezone.

Correcting for this, dinner was from 21:00 to 22:00. You got home around 23:00, most restaurants don't open before 20:00.

[–] calcopiritus@lemmy.world 1 points 6 days ago (1 children)

If you believe that more people being into politics will help the trans, we don't have the same experience.

In my experience, the people that approve of trans people are all politically active. The people that aren't politically active don't tend to like trans people.

[–] calcopiritus@lemmy.world 6 points 6 days ago (1 children)

The exponential function has a single horizontal asymptote at y=0. Asymptotes at x=1 and x=-4 would be vertical. Exponential functions have no vertical asymptotes.

[–] calcopiritus@lemmy.world 2 points 1 week ago (1 children)

Full size type B is not the only type B that exists. Micro-B also exists, which is a way more popular form of USB B.

 

For those that don't know: Mount Balrior Raid Expert is an achievement of the new W8 raid. To get that achievement you have to obtain 100 points for each of the bosses of the wing. You obtain one point for each person in your squad for whom it was the first kill time ever that they kill that boss.

  1. It is a pyramid scheme. By design, only about 1/11 players can get it (at best).
  2. It encourages people that don't wanna train to do trainings. They are irritated more easily and are way less patient towards new players. Because they don't wanna train new people, they only want to get the achievement.
  3. It will only be harder as time goes on to get this achievement, further increasing the toxicity of it, as people rush to get it.
  4. It makes non-training runs worse. If there is an underperformer, you can't kick him because people will get angry that they wont get points for the achievement and they will leave. If you don't kick him, you'll both waste time on easily preventable wipes and people will also leave because of it.

Training runs should be done by people that actually want to train. If you want to encourage trainings, you should reward re-clearing wings, doesn't matter if it's a training run or not.

 

I want to do basically this:

struct MyStruct < T> {
    data: T
}

impl < T> for MyStruct < T> {
    fn foo() {
        println!("Generic")
    }
}

impl for MyStruct < u32> {
    fn foo() {
        println!("u32")
    }
}

I have tried doing

impl < T: !u32> for MyStruct < T> {
    ...
}

But it doesn't seem to work. I've also tried various things with traits but none of them seem to work. Is this even possible?

EDIT: Fixed formatting

view more: next ›