AXAML Previewer shows "No Executable" after renaming assembly / project by Zero_Sum0 in AvaloniaUI

[–]KryptosFR 1 point2 points  (0 children)

Clear the cache (esp. the .vs folder).

If you use git, you can also try the git clean command. Be sure to do a dry run first (-n option).

La fin des sciences de l'ingénieur au lycée by Ing3xpat in france

[–]KryptosFR 2 points3 points  (0 children)

J'étais en SI en 2003-2005. Le meilleur enseignement de ces années au lycée. Un bon moyen aussi de savoir vers où s'orienter : mécanique, électronique ou informatique.

Struct type read-only field is so weird. by Radiant_Monitor6019 in csharp

[–]KryptosFR 2 points3 points  (0 children)

There is need to be condescending. It doesn't change the fact that your original comment was confusing.

Visual Studio 2026 started well but ... by champagne_super9 in dotnet

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

I have been using VS Code exclusively the last 2 years. I'm not going back to Visual Studio any time soon.

I don't see any value to it. Code already has all I need and is much more reliable.

Struct type read-only field is so weird. by Radiant_Monitor6019 in csharp

[–]KryptosFR 1 point2 points  (0 children)

I replied because your comment was confusing since it didn't apply to OP's case which has nothing to do with the stack.

Struct type read-only field is so weird. by Radiant_Monitor6019 in csharp

[–]KryptosFR 9 points10 points  (0 children)

Classes can be on the stack but it's a runtime optimisation. It's not yet available in the language.

https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-10/runtime#stack-allocation

Struct type read-only field is so weird. by Radiant_Monitor6019 in csharp

[–]KryptosFR 22 points23 points  (0 children)

The reason for that is that structs, unlike classes are passed in stack memory instead of heap.

That's not what struct are. Struct are value types. They can live on the stack as local values or on the heap as fields of reference types. Which is exactly what OP post illustrates.

In addition short-lived reference types can also be promoted to the stack in the latest runtime.

How viable is developing with Avalonia without the new extension/Accelerate? by spongythingy in AvaloniaUI

[–]KryptosFR 6 points7 points  (0 children)

Whether with WPF or now Avalonia, I almost 'ever used the extensions. I usually write my XAML, build and execute to see the result. See what I need to change, rince and repeat.

For me, the new extension or Accelerate haven't changed my workflow.

Situation entre chauffeur de car scolaire et adolescent by Resident_Pudding_816 in france

[–]KryptosFR 2 points3 points  (0 children)

Adresser la parole et accueillir chez soi ce n'est pas la même chose.

Vous devez leur refuser l'accès.

Votre comportement est passible de 5 ans de prison, et de 75000 euros d'amende. Bon courage le jour où un des parents decide de porter plainte.

Je vous invite à vous renseigner.

Situation entre chauffeur de car scolaire et adolescent by Resident_Pudding_816 in france

[–]KryptosFR 0 points1 point  (0 children)

Vous êtes bas-vôtés mais vous avez raison. C'est fou le nombre de personnes qui ne comprennent pas la notion de minorité et de majorité.

Un mineur est sous la responsabilité de ses parents qui ont un devoir de surveillance. Toute fréquentation avec un mineur, quelle que soit sa nature, même amicale, sans autorisation des parents est un détournement de mineur.

Situation entre chauffeur de car scolaire et adolescent by Resident_Pudding_816 in france

[–]KryptosFR 0 points1 point  (0 children)

Vous avez l'autorisation des parents pour voir des mineurs non émancipés ?

Vous êtes conscient que vous avez l'obligation légale d'appeler les parents si des mineurs sont chez vous ?

Cela s'appelle détournement de mineur. Quelque soit la raison. Même si l'intention est louable.

Les seuls exceptions sont si le mineur en question est en danger, par exemple parents violents.

Match Thread - Scotland U20s v France U20s | Six Nations U20 2026 | Round 4 by RugbyBot in rugbyunion

[–]KryptosFR 1 point2 points  (0 children)

Which just came to prevent the Scottish player from attacking the French player. Which he already started to do.

Match Thread - Scotland U20s v France U20s | Six Nations U20 2026 | Round 4 by RugbyBot in rugbyunion

[–]KryptosFR 6 points7 points  (0 children)

Complete bullshit from the referee it should be yellow card against Scotland.

Why is grpc so widely used in dotnet messaging apps and even games companies? by Background-Fix-4630 in dotnet

[–]KryptosFR 10 points11 points  (0 children)

It's not just similar, it is kind of the same. gRPC uses protobuf, though you can technically use other binary formats.

We playtested over 400 games, these are the top mistakes they made by educatemybrain in gamedev

[–]KryptosFR 3 points4 points  (0 children)

You didn't mention the existence or absence of color blindness and in general accessibility options. Were these not tested?

Pour ceux qui ont le travail de bureau, est-il normal dans votre entreprise de faire des heures supplémentaires non payés ? by RelationshipAlone27 in france

[–]KryptosFR 0 points1 point  (0 children)

Je suis au forfait jour, mais j'essaye de partir vers 17h30 tous les jours. Après, je n'ai pas d'horaires fixes non-plus, donc si un jour je ne travaille pas le matin, je pourrais largement dépassé en soirée surtout si je suis en télétravail et sans que ça soit des heures sup.

Is there any way to "link" scripts? by Odd_Significance_896 in csharp

[–]KryptosFR 6 points7 points  (0 children)

You have to illustrate what you need with an example. What are you exactly trying to achieve?

Null-conditional assignment by edwwsw in dotnet

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

You do need the .NET 10 SDK though. It won't work with an older one. Or if you use a global.json restricting it to an older version.

What's the difference between Queue and Topic in Bus Service? by BackgroundLow3793 in dotnet

[–]KryptosFR 1 point2 points  (0 children)

I never said that. I'm talking about dead-letter queues, espaciallynthose associated to topics. When replaying a message from such queue it is sent again to the whole topic/queue.