Bei Tausenden von Folge, hat man irgendwann ein Szenario welches auch mal passieren kann.

...zur Antwort

Also Filmliebhaber ist mir die höhere Auflösung wichtiger. Deine Beschreibung der Frage macht keinen zwar keinnen Sinn weil 60hz=60hz sind.

...zur Antwort

UNetbootin soll ganz gut sein.
MacOS aber auf eienn externe Speichermedium bekommen ist sehr schwer bis unmöglich. Mit UNetbootin könntest du vielleicht Windows oder Linux drauf machen weiß aber nicht wieiviel dir das bringt.

...zur Antwort

Entweder hast du deine Grafikkarte nicht richtig angeschlossen oder irgendein Cache Speicher wurde geröstet :/

...zur Antwort

Du möchtest an dem Code vom jemand anderem herumfuschen? Das geht technisch nicht wirklich und selbst wenn du es schaffst wäre es nicht Legal.

...zur Antwort

Klar geht das. Aber nicht mit reinem HTML da bräuchte man schon PHP und vielleicht wäre wenn möglichkeit vorhanden das erstellen einer REST-API eine gute Option. Aber bleiben wir mal bei PHP.

<?php
$url = 'https://example.com/ziel-seite';

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

if ($response) {
    include 'simple_html_dom.php';

    $html = str_get_html($response);
    $zielDiv = $html->find('div#ziel-div', 0);

    echo $zielDiv->innertext;

    $html->clear();
    unset($html);
} else {
    echo 'Fehler beim Abrufen der Webseite.';
}
?>
  

Dieses Snippet würde jetzt deine erstellte Webseite anzeigen und mit "echo $zielDiv->innertext;" den Text aus der Tabelle.
Ich hoffe ich konnte helfen.

...zur Antwort
categorielister:nth-child(even) 

Dank mir später ;D

...zur Antwort

Ich hab keine Ahnung welche Sprache bei Robot Karol verwendet wird. Mit Python würde das so aussehen:

gehe_solange_es_möglich_ist:
    while vorne_frei():
        vorwärts_gehen()

    wenn_links_möglich_ist():
        links_drehen()
    sonst_wenn_rechts_möglich_ist():
        rechts_drehen()
    sonst:
        umdrehen()

wiederhole_gehe_solange_es_möglich_ist_bis_zum_Ausgang()

 

Wenn du aber programmieren lernen willst hättest du das schon selber schaffen könenn ;D

...zur Antwort
Quellcode mit einem Platzierungsfehler?
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CatPhotoApp</title>
</head>
<body>
  <main>
    <h1>CatPhotoApp</h1>
    
    <section>
      <h2>Cat Photos</h2>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    </section>
    
    <section>
      <h2>Cat Lists</h2>
      
      <h3>Things cats love:</h3>
      <ul>
        <li>cat nip</li>
        <li>laser pointers</li>
        <li>lasagna</li>
      </ul>
      
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
        <figcaption>Cats <em>love</em> lasagna.</figcaption>
      </figure>
      
      <h3>Top 3 things cats hate:</h3>
      <ol>
        <li>flea treatment</li>
        <li>thunder</li>
        <li>other cats</li>
      </ol>
      
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
        <figcaption>Cats <strong>hate</strong> other cats.</figcaption>
      </figure>
    </section>
    <section>
      <h2>Cat Form</h2>
      <form action="https://freecatphotoapp.com/submit-cat-photo" method="post">
        <!-- Erstes fieldset -->
        <fieldset>
          <legend>Is your cat an indoor or outdoor cat?</legend>
          <label><input type="radio" name="indoor-outdoor" id="indoor" value="indoor"> Indoor</label>
          <label><input type="radio" name="outdoor-indoor" id="outdoor" value="outdoor"> Outdoor</label>
        </fieldset>
        <fieldset> 
          <!-- Direkt unter dem legend-Tag können weitere Inhalte hinzugefügt werden -->
          <legend>Additional Information</legend>
          
          <label for="catName">Cat's Name:</label>
          <input type="text" id="catName" name="catName" placeholder="Enter your cat's name" required>
          <label for="catAge">Cat's Age:</label>
          <input type="number" id="catAge" name="catAge" placeholder="Enter your cat's age" required>
          <label for="catColor">Cat's Color:</label>
          <input type="text" id="catColor" name="catColor" placeholder="Enter your cat's color" required>
          <label for="catPhotoURL">Cat's Photo URL:</label>
          <input type="text" id="catPhotoURL" name="catPhotoURL" placeholder="Enter cat photo URL" required>
          <button type="submit">Submit</button>
       
</fieldset>
      </form>
    </section>
  </main>
</body>
</html>

Könntet ihr mir bitte helfen das <fieldset> richtig zu platzieren.

...zum Beitrag

Keine Ahnung was du willst.

So hab ich es gemacht.

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CatPhotoApp</title>
</head>
<body>
  <main>
    <h1>CatPhotoApp</h1>
    
    <section>
      <h2>Cat Photos</h2>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    </section>
    
    <section>
      <h2>Cat Lists</h2>
      
      <h3>Things cats love:</h3>
      <ul>
        <li>cat nip</li>
        <li>laser pointers</li>
        <li>lasagna</li>
      </ul>
      
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
        <figcaption>Cats <em>love</em> lasagna.</figcaption>
      </figure>
      
      <h3>Top 3 things cats hate:</h3>
      <ol>
        <li>flea treatment</li>
        <li>thunder</li>
        <li>other cats</li>
      </ol>
      
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
        <figcaption>Cats <strong>hate</strong> other cats.</figcaption>
      </figure>
    </section>
    <section>
      <h2>Cat Form</h2>
      <form action="https://freecatphotoapp.com/submit-cat-photo" method="post">
        <!-- Erstes fieldset -->
        <fieldset>
          <legend>Is your cat an indoor or outdoor cat?</legend>
          <label><input type="radio" name="indoor-outdoor" id="indoor" value="indoor"> Indoor</label>
          <label><input type="radio" name="outdoor-indoor" id="outdoor" value="outdoor"> Outdoor</label>
        </fieldset>
        <fieldset style="display: flex;flex-direction: column;"> 
          <!-- Direkt unter dem legend-Tag können weitere Inhalte hinzugefügt werden -->
          <legend>Additional Information</legend>
          
          <label for="catName">Cat's Name:</label>
          <input type="text" id="catName" name="catName" placeholder="Enter your cat's name" required>
          <label for="catAge">Cat's Age:</label>
          <input type="number" id="catAge" name="catAge" placeholder="Enter your cat's age" required>
          <label for="catColor">Cat's Color:</label>
          <input type="text" id="catColor" name="catColor" placeholder="Enter your cat's color" required>
          <label for="catPhotoURL">Cat's Photo URL:</label>
          <input type="text" id="catPhotoURL" name="catPhotoURL" placeholder="Enter cat photo URL" required>
          <button type="submit">Submit</button>
       
</fieldset>
      </form>
    </section>
  </main>
</body>
</html>

...zur Antwort

100% Scam, passiert so oft. Meist wird ein verkaufter Account auch gebannt

...zur Antwort

Ein Freund der dich verleugnet ist jetzt nichts gute. Egal. Du weißt doch bestimmt was er für interessen hat. Vielleicht ein Musikalbum oder Merch geht immer.

...zur Antwort

Dich fesselt doch keiner, nutze die Forumseite die die am Sympatischten ist ;D

...zur Antwort