[-] calcopiritus@lemmy.world 9 points 7 hours ago

Inflation is not the only factor in the pricing on products. Otherwise a potato would cost 1000x what it does.

Even then, all the things you mention are media that was already produced, and the only cost associated to them now is licensing and distribution. Satisfactory is still in production, which costs orders of magnitude more.

[-] calcopiritus@lemmy.world 13 points 8 hours ago

Not only material costs go up with inflation.

Those materials have a price because you need labor to obtain them. The cost of everything is driven by the price of labor. The price of labor goes up with inflation.

There is no product that is unaffected by inflation.

[-] calcopiritus@lemmy.world 7 points 23 hours ago

Any editor that support LSP has the same (or better) auto complete. All IDEs also have the same (or better) auto complete, don't even need LSP.

[-] calcopiritus@lemmy.world 17 points 1 day ago

I meant native as in non-web. There are plenty of cross-platform GUI toolkits out there that don't use JavaScript. Some of them native-looking even. But more than the looks, it's about performance.

[-] calcopiritus@lemmy.world 9 points 1 day ago

In Spain the answer is 3. It was a question in the driving test. Idk if it's a europe-wide rule though.

[-] calcopiritus@lemmy.world 6 points 1 day ago

In Spain every single playing card company has its own design (even if they are all swords, sticks, coins and cups), probably more than one. I don't think I've ever seen the same design twice, every house I go to has different cards.

[-] calcopiritus@lemmy.world 13 points 1 day ago

I feel like browser support is such a niche. I don't understand why many IDEs dedicate so many resources to make it work on the browser. There are already many options to code on the web if you need it.

[-] calcopiritus@lemmy.world 50 points 1 day ago

Why would they copy VSCode including the aspect people hate most.

Had they made it in a native gui I might actually consider it. Otherwise, why wouldn't I just choose vscode.

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

It's almost impossible to get a 3rd party to win in the US. Their system is rigged so that voting for a 3rd party means throwing away the vote.

You also have to take into account that it is a country in which almost 50% believe Donald trump to be their best option as a president, there's no way you're gonna convince enough people to vote 3rd party.

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

What's the alternative?

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

Every time I come across porn I'm not interested in, I block the community. Now 99% of the nsfw I get is the one I like.

Only had the yiff experience for a short period of time.

[-] calcopiritus@lemmy.world 6 points 3 days ago

How is it better than rust-analyzer?

8
submitted 9 months ago* (last edited 9 months ago) by calcopiritus@lemmy.world to c/rust@lemmy.ml

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 ›

calcopiritus

joined 10 months ago