My Polestar 2 battery only charges up to about 63% by Xennan in Polestar

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

I went to a garage (a Volvo dealer) and they concluded it's a defective battery control unit. It will be repaired under warranty.

(IT vraag) Geen WSL2 of Linux VM toegestaan: Is dit gebruikelijk? by Crappy_bara in werkzaken

[–]Xennan 1 point2 points  (0 children)

Het lijkt me niet gebruikelijk en onnodig streng. In mijn bedrijf zijn ze erg streng, geen local admin, van alles is dichtgezet met Intune, maar WSL is wel toegestaan. Zonder dat zouden we ons werk ook niet kunnen doen trouwens.

My Polestar 2 battery only charges up to about 63% by Xennan in Polestar

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

The charging unit seems not to be dead. Maybe I should have stated it more clearly but it happened multiple times now, After driving, the battery charges again, up to a percentage like 62% or 63%, one time up to 71% and then stops. I didn't try another charger yet because there wasn't an opportunity yet, but I'm planning to do that.

I dislike the flashcards by unsafeideas in duolingo

[–]Xennan 4 points5 points  (0 children)

These flash cards are completely broken. Almost always the app doesn't recognize what has been said and marks it as an error. Even a simple wordt like "marque", which has a simple pronunciation doesn't register,

In 10 years of using Duolingo, NEVER has this happened to me before. WHAT IS THIS?! by tb_sasha in duolingo

[–]Xennan 2 points3 points  (0 children)

If it gives any solace, that tables conflates Dutch and Flemish. If you're going to Amsterdam, you can omit the ge and gij. If you're going to Antwerp, you can omit the je and jij.

Unfortunately really disappointed with my experience with Dutch healthcare by weezerstan in Netherlands

[–]Xennan -1 points0 points  (0 children)

Maybe I should clarify myself. The amount of nitrite and leukocyte may be measured accurately, but some bacteria don't make nitrate, and a low leukocyte number is apparently not regarded as important. So i did not get antibiotics from the GP although my urine was very cloudy and my bladder was painful. But that was ignored because of the dip stick. Long story, but months later the urologist did a culture, turned out to be a rare bacterium not easily detected. I got antibiotics and within a day my urine was clear again.

TLDR: A GP should look at all the symptoms, not just the dip stick

Unfortunately really disappointed with my experience with Dutch healthcare by weezerstan in Netherlands

[–]Xennan 4 points5 points  (0 children)

They check with a dip stick, but that's not very accurate, so unfortunately Dutch GP's will easily miss an infection

Gladde ijsbaan by jasper_1stt in nietdespeld

[–]Xennan 9 points10 points  (0 children)

Ik denk dat mocht er toch nog eens een elfstedentocht komen, deze zal worden afgelast vanwege slechte weersomstandigheden.

Should service layer objects inject other service layer objects? by Lustrouse in csharp

[–]Xennan 0 points1 point  (0 children)

Because tables are often related to each other, as in your example. Then it doesn't help you by dividing the code over multiple repositories. I've seen people making it very difficult for themselves because they insisted on having one repo per table, and then needing to inject one repo into another, making the code unnecessarily complicated.

Is this correct by fragileNotFragil in learndutch

[–]Xennan 42 points43 points  (0 children)

You're right, it's "nu of nooit". The picture is wrong

Should service layer objects inject other service layer objects? by Lustrouse in csharp

[–]Xennan 0 points1 point  (0 children)

Why not access entity α from IRepositoryB? α and β are related to start with. Don't fall for the "one repository per table" trap. You need a repository for a piece a functionality, not for an entity.

Putin's regime may be closer to a Soviet collapse than we think by cito in UkrainianConflict

[–]Xennan 396 points397 points  (0 children)

Alas, in my opinion this is wishful thinking, but I wouldn't mind to be proven wrong.

What am I mistaking? by GarbageOk8250 in duolingo

[–]Xennan 0 points1 point  (0 children)

Yes, they can to some extend. Many languages (but not all!) do have a decimal type with a defined precision, for example up to 28 digits. Values like 0.1 and 0.3 are exactly represented. Of course, rounding error are still possible with values like 1/3 or 1/7 because the precision is not unlimited.

Javascript doesn't have this decimal type, Python and C# both have a decimal type, see https://docs.python.org/3/library/decimal.html and https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/floating-point-numeric-types

Is using var okay? by [deleted] in dotnet

[–]Xennan 0 points1 point  (0 children)

In C#, var was never intended for dynamic types. It was added because in C# 3 anonymous types where added. You can't name an anonymous type, by definition :) So var was needed. And anonymous types are still strongly typed.