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

Windows 11 is little more than a reskin of windows 10, and they still fucked it up.

Rounded corners are mandatory (Why? I really preferred squared ones). But developers can choose to have their windows square. Why only the developers? Let the user decide how a windows looks like!

And don't get me started on the start menu. It was a complete massacre. Tiles are gone (am I the only one that liked them?). Instead, now we pin apps to the start menu. Fine I guess, except for the fact that half of the fucking menu is taken up by fucking recomendations. If I remove every single recommendation, instead of having my space back for more pinned programs I get this message: "oh you like this precious white space? If you turned on some recommendations it would show something". No, i don't want recommendations, I want my start menu space back. Which btw in windows 10 used to be resizable to whatever size I wanted.

Oh and lets not forget about the volume mixer. Which some genius decided that it was better to keep it 10 clicks away from the user in the settings, instead of conveniently at one click in the taskbar. Which they also made the sound settings their own special taskbar element, instead of another taskbar program. So now if I want to replace their shitty sound settings with the ones I like (trumpet btw), now I would have 2 sound settings in the taskbar, while in win10 I only had 1.

And whose Idea was to join the sound settings and internet settings in the same taskbar button visually? Which is also not the same button functionally. You see, if you press the left side of the button it opens the sound settings, but the right side opens the internet settings. How much do Microsoft UI people get paid?

I guess we got dark notepad, that's nice.

[-] calcopiritus@lemmy.world 8 points 1 day ago* (last edited 1 day ago)

Logistical problems are still financial problems though. That's my point. Hire enough people/develop the appropriate automation and the issue is no more.

We have the technology to solve this, the problem is the money.

In fact, you could just buy enough batteries and the problem will also go away. Still a financial problem, not a technology one.

EDIT: just to clarify, if at some point energy prices go negative, it means that it is cheaper to buy energy usage than a solution. Unless the energy company is dumb enough to just lose money for the lazyness of considering other options.

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

It should be illegal for companies with a legal budget over X€ to have illegal clauses on their terms and conditions.

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

It is a financial problem. Technically you can just cover the solar panels. But that's not good financially.

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

That's the exit. Because the woman is not inside.

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

TUIs are graphical interfaces. It's just that they use the terminal as their renderers instead of having their own.

It's just like WebApps, they use the browser as their renderer, but they are still graphical interfaces.

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

To be fair abortion is not risk-free and side-effectless. It's much preferable to encourage the use of contraceptives in those situations.

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

Presumably, if you're looking for a partner, if the potential partner is looking for a partner it's better.

[-] calcopiritus@lemmy.world 21 points 4 days ago

The tinder one is though. Someone being on tinder doesn't tell you anything about that person. Only that they're looking for either a partner or casual sex.

[-] calcopiritus@lemmy.world 17 points 4 days ago

What's up with all these posts lately talking as if C was the chain breaker that will let you achieve a higher spiritual level for your soul or some shit. This is at least the second I've seen this week.

It's a programming language. If you want to use it, use it. There is no illuminati pulling in the strings to prevent you from learning this holy language.

That being said, like all programming languages, it's a tool, with its upsides and downsides. Depending on the project it might be the best choice or the worst. But with the advancement in language design, there's very little upsides compared to more modern languages, taking into account its big downsides.

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

Well, game freak is still a Japanese developer. Mario Cart is a very computationally light concept, as usually are Mario games, idk about odyssey in particular though, but they tend to be small maps with small amount of entities each. Zelda is fair, I've heard good things about it.

It's easy to make a good performing game if its concept and art design are computationally light. Optimization is about turning a computationally hard problem into a light algorithm that doesn't take much resources.

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

The new Pokemon games grind to a halt if you are in the south of the map and look at the north. Because you are rendering the entire map. How is that optimized to hell and back?

8
submitted 1 year ago* (last edited 1 year 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 1 year ago