RTX 3080

Für das Geld bekommst du auch eine 6800XT, welche in fast allen Titeln mehr oder gleiche Leistung bietet. Sie besitzt auch 16GB VRAM, hat aber auch Nachteile in Raytracing, DLSS und Produktivität.
(Habe mich verklickt.)

...zur Antwort

Artix Linux! Das einzig Wahre.

...zur Antwort

Hast du WLP drauf gemacht? Plastik bei der WaKü runter bzw die WaKü richtig Montiert? Laufen Pumpe oder Lüfter nicht richtig? Wie sieht es mit dem Airflow in deinem Case aus?

...zur Antwort

Ich habe einen 27 Zoll, Curved, 165Hz Monitor.

...zur Antwort

Der ist wirklich Schrott.

...zur Antwort

Gute Einsteigerdistributionen sind:

  • Manjaro
  • Linux Mint
  • Ubuntu
...zur Antwort

Könntest ein Array mit Keys machen und dann für jeden Monat eine Bestimmte Anzahl an Tagen machen.

$months_in_days = [
   1 => 31,
   2 => 30,
   3 => 31,
   ...
];

$current_month = getdate("mon");
$current_day = getdate("mday");

$current_total = 0;

foreach ($months_in_days as $months => $days) {
   if ($months <= $current_month) {
      $current_total += $days;
   } else { break; }
}

$month = 3;
$day = 20; // Beispiel

$total = 0;

foreach ($months_in_days as $months => $days) {
   if ($months <= $month) {
      $total += $days;
   } else { break; }
} 

if ($total - $current_total <= 7) {
  echo("Yes");
}
...zur Antwort

Das Mainboard ist eine ganz schlechte Wahl.
Nimm hier das B550 Tomahawk.

Für die SSD: Da du eh eine sekundäre HDD hast, würde ich eine kleinere, aber dafür deutlich schnellere WD_BLACK SN750 nehmen.

Das Gehäuse ist zwar leise, aber der airflow ist schlecht.
Wenn es auch hier von be quiet sein soll, dann das 500DX (ist auch schallgedämmt).

Alles andere passt soweit.

...zur Antwort