al4s

joined 5 months ago
[–] al4s 3 points 4 days ago

Das ZDF Magazin Royale (aka. Jan Böhmermann) haben dazu mal eine ganz gute Folge gehabt: https://youtu.be/D92_Zhlb0qE?si=7nUJ1DakG6nHrIzz

Wenn ich mich richtig erinnere war das TL;DR, dass professionelle Zahnstein Entfernung sinnvoll ist und daher auch von den Kassen übernommen wird. Professionelle Zahnreinigung ist eher overkill, kannst du aber machen lassen wenn es dich glücklich macht.

[–] al4s 2 points 2 weeks ago

Zumindest zu Tabakwaren sagen sie offenbar was. Aus dem Artikel:

Die Ärzteorganisation spricht sich weiter für höhere Steuern auf Tabak- und Nikotinprodukte aus, die Erlöse daraus sollten dann in das Gesundheitswesen fließen. Einweg-E-Zigaretten und Aromastoffe in E-Zigaretten sollten ganz verboten werden.

[–] al4s 2 points 1 month ago

Bluesky also uses a federated protocol, AFAIK. But the feeds are generally better

[–] al4s 6 points 1 month ago

Irgendwie klingt der Artikel sehr beeindruckt, dass 24h nach dem Börsengang die U-Bahnen immer noch pünktlich fahren. Darauf zu basieren, dass man das in Deutschland ja auch so machen sollte finde ich abenteuerlich.

[–] al4s 10 points 2 months ago

ChatGPT is not a reliable source of information, I thought that was clear to everybody by now

[–] al4s 8 points 2 months ago

The processor architecture does not influence RAM usage. (At least not if both architectures are 64-bit)

[–] al4s 2 points 2 months ago (3 children)

I mean you'd still expect that critical security fixes would land in testing, no?

[–] al4s 2 points 2 months ago

Because you don't control third party libraries

[–] al4s 2 points 2 months ago (2 children)

A scope groups the initialization visually together, while adding the let app = app; feels like it just adds clutter - I'd probably just leave it mut in that case.

[–] al4s 2 points 2 months ago (2 children)

You can have setters that set private fields, there are also sometimes structs with mixed private and public fields

[–] al4s 6 points 2 months ago (4 children)

Yeah if you have the second option, use it, but if the struct has private fields it won't work.

[–] al4s 13 points 2 months ago (10 children)

If you're ever forced to do something the second way, you can also wrap it in braces, that way you end up with an immutable value again:

let app = {
  let mut app = ...
  ...
  app
};
view more: next ›