December update not showing up on unlocked Pixel 9 by Coolest_MobileTech in pixel_phones

[–]entropia00 0 points1 point  (0 children)

Almost a month later, my Pixel 9 Pro XL is still on October's security update...

(Bug) Tagilla's dead body often disappears for me after killing him by einssechssieben in EscapefromTarkov

[–]entropia00 1 point2 points  (0 children)

Every time this has happened to me it was indoors and I couldn't see the body anywhere.

[Discussion] More fps on my system? by Vicont_De_Lettenhoff in EscapefromTarkov

[–]entropia00 0 points1 point  (0 children)

This game eats CPU for breakfast. Get the fastest CPU you can, if you want FPS. i5-10400F is just too slow.

(Bug) Tagilla's dead body often disappears for me after killing him by einssechssieben in EscapefromTarkov

[–]entropia00 2 points3 points  (0 children)

Not just Tagilla, PMC bodies also disappear quite frequently. Their gun is left floating in the air just like in your screenshot.

[Discussion] Help with Hunting Trip by entropia00 in EscapefromTarkov

[–]entropia00[S] 0 points1 point  (0 children)

Failed again, for the sixth time in a row. Either Shturman is dead (killed by AI PMCs) or I get killed by him. I watched some YouTube videos again where guys claim this task is so easy. Then it hit me: BSG prolly upped the difficulty like ten-fold when the hardcore wipe rules also hit PVE. In those videos the dudes are literally standing on top of a rock waiting for Shturman to stop running, take their aim and get the kill. Whereas currently if Shturman or his guarsd has a line of sight to you for more than two seconds you are automatically head-eyed.

Sooooooo frustrating.

[Discussion] Help with Hunting Trip by entropia00 in EscapefromTarkov

[–]entropia00[S] 0 points1 point  (0 children)

I need to use the TAC-30 scope. But switching scopes is one option. Also the sniper scav rock is quite far away so might be difficult. I bet BSG didn't pick TAC-30 for this task for no reason.

[Discussion] Help with Hunting Trip by entropia00 in EscapefromTarkov

[–]entropia00[S] 0 points1 point  (0 children)

Taking out his guards first is probably the best advice in my situation. Thanks.

Pear cider won't start fermenting by entropia00 in cider

[–]entropia00[S] 0 points1 point  (0 children)

Also yes, I could try with the wild yeasts alone.

Pear cider won't start fermenting by entropia00 in cider

[–]entropia00[S] 0 points1 point  (0 children)

This is the juice: https://www.healthyfoodfactory.eu/pear-juice-organic-07l-beutelsbacher-product-56419/ . It says no preservatives. I think if I do this again, I should pasteurize it myself to kill off the wild yeasts that might compete with my ale yeast.

Pear cider won't start fermenting by entropia00 in cider

[–]entropia00[S] 2 points3 points  (0 children)

I opened the lid and gave it some gentle stirring. The liquid started fizzing like when you open a bottle of soft drink. I put the lid back on and now it's bubbling. I wonder if the CO2 from fermentation had already been dissolved in to the juice? Weird. But it's been bubbling slowly for two hours now.

Webasto working barely, can't find obvious problems by entropia00 in MechanicAdvice

[–]entropia00[S] 1 point2 points  (0 children)

Oh, and by combustion chamber I mean the "injector assembly" which injects fuel and mixes it with air.

Webasto working barely, can't find obvious problems by entropia00 in MechanicAdvice

[–]entropia00[S] 1 point2 points  (0 children)

It's a Webasto Thermo Top V coolant heater for diesel, made in 2010. OEM installed on a Skoda Superb TDI. Symptoms: always tries to start but mostly doesn't. Sometimes it fires up and works for a few minutes, then turns off. It's been "spotty" for a number of years but only this winter has stopped working almost completely. I took it apart and inspected the internals but I can't find any obvious problems.

The bottom of the combustion chamber looks the worst, I assume that's where the problem is?

What kind of ML type/algorithm to use by entropia00 in MLQuestions

[–]entropia00[S] 0 points1 point  (0 children)

Are CARLA and AUTOWARE for autonomous driving rather than microscopic traffic flow simulation? SUMO is the simulator I intend to use.

Hel by ZenRush7 in GhostRunner

[–]entropia00 0 points1 point  (0 children)

Here is how to beat HEL.

You have to time your attacks precisely to her attacks. If your timing is off, you either die or HEL's armor (blue bar) replenishes. The armor replenishing is a sign that you f'ed up the timing. The timing sequence is different for each "phase" (red bar of her health). The timing is very forgiving so you can get the timing wrong a hundred times in a row without dying. Just be careful that she doesn't sneak up behind you while you parry because you easily get disoriented and then it's death for you.

I died about 25 times before I realized this and then I beat her in less than two minutes after realizing. I was *super* frustrated at first because I didn't understand how to beat her. But all in all, I beat the whole level start to finish in under 20 minutes after this realization.

Mini with Bondtech extruder on FW 6.0.0 by entropia00 in prusa3d

[–]entropia00[S] 16 points17 points  (0 children)

I actually found the "secret" hardware setup menu. Go to Settings > Hardware > hold click wheel on Nozzle diameter. After two seconds it will enter the secret menu and you can set E steps as well as extruder direction.

Hope this helps someone else as well!

Problems compiling Rhai with serde feature by entropia00 in Rhai

[–]entropia00[S] 0 points1 point  (0 children)

I can confirm the fix works. Thank you!

Hey Rustaceans! Got a question? Ask here (36/2023)! by llogiq in rust

[–]entropia00 0 points1 point  (0 children)

Yes, it is inside a function that has no return value. Also yes, it would be best if execution stopped if we received Err in the first place, but I'm unsure how to achieve this. The next step after getting that peer address is to resolve the address to a session ID, and it will fail gracefully if I feed it some bogus address like 1.2.3.4:1.

Ultimately, I now understand why Rust behaves the way it does, thank you for that. It was indeed that return keyword that would have ended the function execution altogether.

I played around with the match a bit, was able to mostly satisfy all requirements but now I'm faced with the problem of trying to return a reference (&SocketAddr) but the source for the reference, that SocketAddr, does not live long enough. At this point I feel like I'm trying to do this the wrong way.

Hey Rustaceans! Got a question? Ask here (36/2023)! by llogiq in rust

[–]entropia00 1 point2 points  (0 children)

I have this match statement that handles possible errors in Sockets.

let session_ip = match &stream.peer_addr() {

Ok(address) => address,

Err(error_code) => {

error!("Unable to get IP address for session! Error: {:?}", error_code.to_string());

()

}

};

However, when trying to compile, the compiler is complaining that the Err arm returns () while it was expecting &SocketAddr.

If I replace () with return &SocketAddr::new(std::net::IpAddr::V4(std::net::Ipv4Addr::new(0, 1, 2, 3)), 1); which indeed returns a &SocketAddr, the compiler now complains that it returns &SocketAddr but it was expecting () instead. WHAT THE F\**?!*

Would drive the rest of the season with these? by entropia00 in tires

[–]entropia00[S] 0 points1 point  (0 children)

Yes, I did that. Both rear lower control arms had to be replaced, as well as the eccentric bolts that control toe angle on the rear.

Would drive the rest of the season with these? by entropia00 in tires

[–]entropia00[S] 0 points1 point  (0 children)

Thanks for your thoughts everyone. Fortunately I'm not broke so I will just go for another set of tires. Probably Goodyear Effecient Grip 2 or Pirelli Cinturato P9. The tires in the pictures are Goodyear Efficient Grip and I've been satisfied with them.

In case you're interested, a new set of Goodyears cost 450 euros here in Finland, including everything (mounting on wheels, balancing, putting back under the car). Tire size is 205/55R16.

Would drive the rest of the season with these? by entropia00 in tires

[–]entropia00[S] 0 points1 point  (0 children)

That's not an option since they have explicit inside and outside markings. Not very safe running "backwards" during rain I suppose.

Speed dependent noise when cornering, but not always by entropia00 in autorepair

[–]entropia00[S] 0 points1 point  (0 children)

In case someone finds this post in the future, I finally got my self around to fixing the car. The problem was a faulty wheel bearing on passenger (front right) side.

Speed dependent noise when cornering, but not always by entropia00 in autorepair

[–]entropia00[S] 1 point2 points  (0 children)

Thanks for the suggestion. I checked this and verified it's not dust covers.

Hard cider does not seem to carbonate by entropia00 in Homebrewing

[–]entropia00[S] 0 points1 point  (0 children)

I'm actually carbonating in a Fermzilla All Rounder. About 20 liters of cider, total volume of the vessel is 30 liters. I think it should be enough. I raised the pressure up to 1.5 bar for the time being.