Remix.run Logo
recursivedoubts 4 hours ago

Building visualizations with LLMs has been a major boost for my CS classes:

https://htmx.org/essays/universities-and-ai/#demos-visualiza...

Many visualizations that I have always wanted but just didn't have the time to build, I now have.

To give an example, I wanted a simplified 8-bit computer to complement the 16-bit teaching computer I use and designed this in a few days with the help of claude:

https://bdp.cs.montana.edu/

Aurornis 2 hours ago | parent | next [-]

Using LLMs to build out the nice-to-haves that I’ve always wanted but never had time for is one of their great use cases. Visualizations are a perfect use case for this because they don’t have to be perfectly architected, maintainable code. Getting to the correct visual output is good enough, and LLMs excel at iterating something until it looks right.

atrettel an hour ago | parent [-]

I agree that visualization does not need to be perfect. One issue is that "correct visual output" depends on your expertise level. A visualization that is good to teach undergrads may be frustratingly bad to experts and researchers. Standards like "looking right" depend on the audience's ability to spot nuances and how focused they are on the fine details. If you want a visualization to work for the range of people from beginners to experts, you do need to focus a bit more on what it means for something to "look right" for multiple audiences, since the errors in the fine details may hinder a visualization's usefulness for more advanced audiences.

chorsestudios an hour ago | parent | prev | next [-]

I've been using LLMs to create visualizations for math papers I come across. Prompting "Create a visualization for each segment of this article in the style of a 3 brown 1 blue video using manim." has yielded impressive results.

It helps me digest the content faster and allows me to read more articles than I otherwise would.

fantasizr an hour ago | parent | prev | next [-]

LLMs to create and revise PIL (python image library) commands/params have saved me HOURs.

acbart an hour ago | parent | prev | next [-]

Regarding the changes to your grading weights: https://acbart.github.io/2026/04/19/proctored-grades/

Sounds like 50/50 for the distribution? That means you are okay with a student getting a 40% across all your quizzes and then passing the class with a C-?

nojvek 2 hours ago | parent | prev [-]

This is v cool.

When I did my microcontroller class with lecturer hand drawing an 8-bit computer, the registers, memory, instructions on the white board, it was v cool to understand how things worked under the hood.

Wondered if someone could make more simulations for what was being taught. Teaching is about deciphering a thing into it's components and seeing how they interact. Vibe coded simulations are a great tool for that.