Renderwahn

joined 1 year ago
[–] Renderwahn@lemmy.world 2 points 1 year ago

I think some modded cars don't work with some of the modded tracks. When I tried it it was pretty random which car worked on which track.

[–] Renderwahn@lemmy.world 3 points 1 year ago* (last edited 1 year ago)
  • Assault Android Cactus
  • Electronic Super Joy
  • Jamestown
  • Lifeslide
  • Flatout 1&2
  • Splatter - Zombiecalypse Now
  • Yoku's Island Express
[–] Renderwahn@lemmy.world 6 points 1 year ago

I had a Logitech trackball start double clicking right after the warranty expired too. Seems intentional to me. Now logitech is on my company shitlist and I won't be buying anything from them.

[–] Renderwahn@lemmy.world 13 points 1 year ago

Look at that guy! He uses the F-16 deodorant, not the SR-71 one.

 

Recently I end up using structs everywhere as functions parameters to basically get named function parameters and better default arguments. Are there any downsides to this? So far the only annoying thing is to have to define those structs.

struct FunParams{
    int i = 5;
    float f = 3.14f;
    std::string s = "hello";
};

void Fun(const FunParams& params){}

int main(){
    Fun({.s = "hi there"});
}
 

I'm a midwit so for me it's inxi.

[–] Renderwahn@lemmy.world 1 points 1 year ago (1 children)

Why do you want to switch if everything is working out for you with pop-os?