renormalizer

joined 8 months ago
[–] [email protected] 4 points 2 weeks ago

The doctor's program could be a quantum state that just can't be copied, only transferred. They do it all the time, to the mobile emitter, to the holodeck, etc. And if the state degrades too much during transfer, it can't be recovered, so all that makes sense.

Then there is that episode with the EMH backup set hundreds of years after Voyager...

[–] [email protected] 2 points 2 weeks ago

Nein, die Direktmandate gingen 2021 an Sören Pellmann (Leipzig II), Gregor Gysi (Berlin-Treptow-Köpenick) und Gesine Lötzsch (Berlin-Lichtenberg). Hatte für mich damals auch schon Geschmäckle, dass die als Mitglieder der Linken Gewählten aus der Partei austreten, aber an ihrem Mandat kleben.

[–] [email protected] 2 points 1 month ago

Der Angreifer erlangt Kontrolle über den Mailserver des Absenders oder Empfängers und verhindert den Versand der echten Mail und ersetzt sie durch die gefälschte. Oder er löscht sie aus dem Postfach des Empfängers und lädt stattdessen die falsche Mail hoch. Zugang zum Managementsystem beim Webhoster reicht dafür aus.

Die andere Variante ist, dass der Angreifer direkt Kontrolle über das versendende/empfangende Gerät hat und die Mail dort manipuliert.

Eine echte Man-in-the-Middle Attacke ist schwierig. Der schwächste Punkt ist wahrscheinlich der Router der Firma oder des Kunden, sonst muss man Internet-Infrastruktur angreifen, die (hoffentlich) besser gewartet und überwacht ist. Versand und Empfang auf der letzten Meile (Mailprogramm/Webbrowser <-> Mailserver) laufen aber mittlerweile eigentlich immer mit TLS. Da müsste man die Verschlüsselung knacken oder die Zertifikatsvalidierung aushebeln. Beides sollte für normale Kriminelle nicht möglich sein.

[–] [email protected] 8 points 2 months ago

Dann hast du die richtige Bank. Sparkasse Darmstadt Giro Flex: Zum Preis von nur 3,99 im Monat. Geld abheben? 25 cent. Überweisung am Terminal? 25 cent. Online-Überweisung? Du wirst es nicht glauben: 25 cent.

[–] [email protected] 11 points 3 months ago (3 children)

Ohne Gummibärchen funktioniert der Sysadmin doch nicht.

[–] [email protected] 5 points 6 months ago* (last edited 6 months ago)
[–] [email protected] 2 points 7 months ago

Beltalowda best at rock tossing! Not Olympic discipline, sasa que. Damn inyalowda.

[–] [email protected] 5 points 7 months ago* (last edited 7 months ago) (2 children)

I've been a four-star programmer a few times. Imagine a blocked symmetric matrix where the rows and columns are indexed by triples (u,v,w). The entries are zero whenever u != u' or v != v', and because of symmetry you only store entries with w <= w'. But the range of v depends on the value of u and the range of w on the value of v. So you do

double ****mat = calloc (UMAX, sizeof(*mat));
for (int u = 0; u < UMAX; ++u) {
  mat[u] = calloc (u + 1, sizeof(**mat));
  for (int v = 0; v <= u; ++v) {
    mat[u][v] = calloc (v + 1, sizeof(***mat));
    for (int w = 0; w <= v; ++w) {
      mat[u][v][w] = calloc (w + 1, sizeof(****mat));
      for (int ww = 0; ww <= w; ++ww)
        mat[u][v][w][ww] = some_function (u, v, w, ww);
    }
  }
}

and weep a little. In reality, this gets a bit optimized by allocating a single chunk of memory and carving that up into the pointer and data arrays, so everything is reasonably close together in memory.

[–] [email protected] 5 points 7 months ago

Sieht eher wie Lemguine aus. Ist die Wissenschaft zu weit gegangen?

[–] [email protected] 2 points 7 months ago

Eine Kunst, bitte!

[–] [email protected] 3 points 8 months ago

Yes, for the (anti-)electrons. Antiprotons and neutrons should be able to annihilate as well, and vice versa. They are composite particles made of (anti) up and down quarks, so processes like antiproton (anti u anti u anti d) + neutron (udd) -> photons + pi- (anti u d) ( + pi0 maybe) could happen. The pions are short-lived particles called mesons, made of a quark and an antiquark.

view more: next ›