Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. LocalLLaMA
  3. Qwen3-32b: Windows95 Starfield Screensaver Web App With Warp Drive On Click

Qwen3-32b: Windows95 Starfield Screensaver Web App With Warp Drive On Click

Scheduled Pinned Locked Moved LocalLLaMA
localllama
5 Posts 3 Posters 1 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • X This user is from outside of this forum
    X This user is from outside of this forum
    [email protected]
    wrote on last edited by
    #1

    It's amazing how far open source LLMs have come.

    Qwen3-32b recreated the Windows95 Starfield screensaver as a web app with the bonus feature to enable "warp drive" on click. This was generated with reasoning disabled (/no_think) using a 4-bit quant running locally on a 4090.

    Here's the result: https://codepen.io/mekelef486/pen/xbbWGpX

    Model: Qwen3-32B-Q4_K_M.gguf (Unsloth quant)

    Llama.cpp Server Docker Config:

    docker run \
    -p 8080:8080 \
    -v /path/to/models:/models \
    --name llama-cpp-qwen3-32b \
    --gpus all \
    ghcr.io/ggerganov/llama.cpp:server-cuda \
    -m /models/qwen3-32b-q4_k_m.gguf \
    --host 0.0.0.0 --port 8080 \
    --n-gpu-layers 65 \
    --ctx-size 13000 \
    --temp 0.7 \
    --top-p 0.8 \
    --top-k 20 \
    --min-p 0
    

    System Prompt:

    You are a helpful expert and aid. Communicate clearly and succinctly. Avoid emojis.

    User Prompt:

    Create a simple web app that uses javascript to visualize a simple starfield, where the user is racing forward through the stars from a first person point of view like in the old Microsoft screensaver. Stars must be uniformly distributed. Clicking inside the window enables "warp speed" mode, where the visualization speeds up and star trails are added. The app must be fully contained in a single HTML file. /no_think

    j4k3@lemmy.worldJ G 2 Replies Last reply
    1
    28
    • X [email protected]

      It's amazing how far open source LLMs have come.

      Qwen3-32b recreated the Windows95 Starfield screensaver as a web app with the bonus feature to enable "warp drive" on click. This was generated with reasoning disabled (/no_think) using a 4-bit quant running locally on a 4090.

      Here's the result: https://codepen.io/mekelef486/pen/xbbWGpX

      Model: Qwen3-32B-Q4_K_M.gguf (Unsloth quant)

      Llama.cpp Server Docker Config:

      docker run \
      -p 8080:8080 \
      -v /path/to/models:/models \
      --name llama-cpp-qwen3-32b \
      --gpus all \
      ghcr.io/ggerganov/llama.cpp:server-cuda \
      -m /models/qwen3-32b-q4_k_m.gguf \
      --host 0.0.0.0 --port 8080 \
      --n-gpu-layers 65 \
      --ctx-size 13000 \
      --temp 0.7 \
      --top-p 0.8 \
      --top-k 20 \
      --min-p 0
      

      System Prompt:

      You are a helpful expert and aid. Communicate clearly and succinctly. Avoid emojis.

      User Prompt:

      Create a simple web app that uses javascript to visualize a simple starfield, where the user is racing forward through the stars from a first person point of view like in the old Microsoft screensaver. Stars must be uniformly distributed. Clicking inside the window enables "warp speed" mode, where the visualization speeds up and star trails are added. The app must be fully contained in a single HTML file. /no_think

      j4k3@lemmy.worldJ This user is from outside of this forum
      j4k3@lemmy.worldJ This user is from outside of this forum
      [email protected]
      wrote on last edited by
      #2

      Is 13k your max context at Q4K_M?

      X 1 Reply Last reply
      2
      • j4k3@lemmy.worldJ [email protected]

        Is 13k your max context at Q4K_M?

        X This user is from outside of this forum
        X This user is from outside of this forum
        [email protected]
        wrote on last edited by
        #3

        I'm close to the limit at 23886MiB / 24564MiB of VRAM used when the server is running. I like to have a bit of headroom for other tasks.

        But I'm by no means a llama.cpp expert. If you have any tips for better performance I'd love to hear them!

        1 Reply Last reply
        4
        • System shared this topic on
        • X [email protected]

          It's amazing how far open source LLMs have come.

          Qwen3-32b recreated the Windows95 Starfield screensaver as a web app with the bonus feature to enable "warp drive" on click. This was generated with reasoning disabled (/no_think) using a 4-bit quant running locally on a 4090.

          Here's the result: https://codepen.io/mekelef486/pen/xbbWGpX

          Model: Qwen3-32B-Q4_K_M.gguf (Unsloth quant)

          Llama.cpp Server Docker Config:

          docker run \
          -p 8080:8080 \
          -v /path/to/models:/models \
          --name llama-cpp-qwen3-32b \
          --gpus all \
          ghcr.io/ggerganov/llama.cpp:server-cuda \
          -m /models/qwen3-32b-q4_k_m.gguf \
          --host 0.0.0.0 --port 8080 \
          --n-gpu-layers 65 \
          --ctx-size 13000 \
          --temp 0.7 \
          --top-p 0.8 \
          --top-k 20 \
          --min-p 0
          

          System Prompt:

          You are a helpful expert and aid. Communicate clearly and succinctly. Avoid emojis.

          User Prompt:

          Create a simple web app that uses javascript to visualize a simple starfield, where the user is racing forward through the stars from a first person point of view like in the old Microsoft screensaver. Stars must be uniformly distributed. Clicking inside the window enables "warp speed" mode, where the visualization speeds up and star trails are added. The app must be fully contained in a single HTML file. /no_think

          G This user is from outside of this forum
          G This user is from outside of this forum
          [email protected]
          wrote on last edited by
          #4

          People implement this on their calculator during class. This is the kind of thing you would write to learn programming, the definition of entry-level. You're using a device that can execute billions of trigonometric calculations per millisecond to produce code that calculates X and Y coordinates for few dozens of points on a radial trajectory.

          What the fuck...

          X 1 Reply Last reply
          0
          • G [email protected]

            People implement this on their calculator during class. This is the kind of thing you would write to learn programming, the definition of entry-level. You're using a device that can execute billions of trigonometric calculations per millisecond to produce code that calculates X and Y coordinates for few dozens of points on a radial trajectory.

            What the fuck...

            X This user is from outside of this forum
            X This user is from outside of this forum
            [email protected]
            wrote on last edited by
            #5

            Fair point. My original prompt asked for more, but the model wasn't capable enough. Not sure if the "warp drive" part would be part of any standard algo.

            Any ideas on challenges that are new and more fun than the "balls rolling in a hexa-,hepta-,octagon" or "simulate a solar system" prompts everyone's using these days?

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups