calcopiritus

joined 1 year ago
[–] [email protected] 21 points 5 hours ago

The mistake was choosing a language, and afterwards searching for a use to the language you just learned.

[–] [email protected] 1 points 2 days ago

My screen gets dimm enough that it's almost impossible to see outside with the slider at the left.

The solution is extremely easy though. Put an option in the settings so pressing volume up/down while the screen is locked changes the brightness instead of the volume.

[–] [email protected] 3 points 3 days ago

So they should conquer the entirety of Asia in one turn, to get an extra 7 units per turn in order to afford their war with Europe?

[–] [email protected] 5 points 3 days ago* (last edited 3 days ago) (1 children)

That's because it's not the same feminist movement as it was when millennials were gen z's age.

The last questions are what feminism used to be (what millennials liked). Nowadays, however, feminism is plagued by not-feminist people, that instead of wanting equality want women superiority. That's the feminism gen z knows about, and the men don't like it. That's also the reason they answer "no" to "are you a feminist?" But they support actual feminist policies. The definition of feminism has changed.

EDIT: just for reference: my county (Spain) recently put porn under a passport with limited uses per month. Why did they do that? They claim feminism. Does that sound like feminism to you?

[–] [email protected] 2 points 4 days ago

I was totally ready for "green energy is good graphics and oil is good mechanics". But then the comment ended. I'm so lost

[–] [email protected] 1 points 4 days ago (1 children)

It not being fully 3D doesn't mean that it's of lower quality.

For example when consoles got powerful enough to draw 3D backgrounds you could see a significant decline in background quality, since you can have a higher quality 2D background for a fraction of the resources.

[–] [email protected] 6 points 6 days ago* (last edited 6 days ago) (1 children)

I don't think changing a profession's terms to "prevent stupid jokes" is a smart move.

[–] [email protected] 4 points 6 days ago

Fold it twice, still free

[–] [email protected] 4 points 6 days ago

I poo almost daily at work. It's almost impossible to hold it in for 8:30 continuous hours.

If someone tells me off for it, they will find out how much my productivity drops when I have to focus on holding the shit instead of doing my work.

Poo in work. Not only is it a nice break, but it also is more productive than not pooing. Win-win for everyone.

[–] [email protected] 1 points 6 days ago

Except 12. That's a single dozen.

[–] [email protected] 5 points 6 days ago (1 children)

In Spain we used to have the same system. However it's been a while since I've seen it, most carts still have the euro slot, but they are not chained, so you don't need to insert a coin.

[–] [email protected] 1 points 6 days ago (1 children)

To be fair, in that article mentions the way to get rust from C. Sure, there is not a compiler written in C, but C is down there in the list of compilers needed for rust, so "just" need to compile some other compilers in the middle.

 

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 ›