AnotherGoodName 31 minutes ago

Fwiw this absolutely works amazingly well with modern coding assistants. “I want a diagram of equation X morphing into Y” or similar is always a one shot success for me.

Part of it is the simplistic syntax and the sheer amount of open source manim examples to train on but it’s a pretty great demonstration of ai coding agents time saving. Especially since the output video looking correct is all you care about here. Ie. I don’t actually care about the specifics of how my explanatory videos were created, just that they were created via a simple prompt and it gave me what i wanted.

pkoird 3 hours ago

I used Manim for one of my class presentations, absolutely a delight to use and as expected many people recognized the style and overall the presentation was well received. Incredibly, I had the opportunity to meet Grant as well a few years back. I told him I have used Manim and he was genuinely excited. Such a cool person with so much contribution to human knowledge and understanding.

esperent 5 hours ago

It seems like the community fork would be the better link for most people.

https://github.com/ManimCommunity/manim/

  • Waterluvian 4 hours ago

    For good reasons or for drama reasons? I read the blurb about the fork and can’t tell why exactly if Grant is continuing to maintain the original.

    • Jorge1o1 4 hours ago

      Well, to me it seems like he just shared the original so that others could benefit from the work he had already done, but that since his main priority is to continue making new videos, he may not have the time resources to:

      - Avoid breaking changes

      - Keep APIs stable

      - Test and document everything, etc.

      I personally think there's nothing wrong with that. We wouldn't say that a musician is *obligated* to put out a second album or a remaster. We wouldn't say that an author *must* make a sequel to their popular book. But when it comes to code sometimes we feel like the original author has an obligation to keep working on it just because it would convenience us.

      (edited for formatting)

      • dleeftink 4 hours ago

        I agree, but want to add that while we may perceive other creative works as 'finished' (to an extent), code often is not. It unfortunately, needs perpetual work.

        • 0_____0 4 hours ago

          It's pretty wild to me (I do hardware) that data goods like code can rot the way they do. If my electronics designs sit for a couple years, they'll need changes to deal with parts obsolescence etc. if you want to make new units.

          If you did want your software project to run the same as today when compiled/interpreted 10 years from now, what would you have to reach for to make it 'rot-resistant'?

          • bee_rider an hour ago

            Write it in a specific version of a language with a strong history of backwards compatibility, like Fortran90. Maybe c99? And just use very famous libraries, like BLAS, that are never going away.

            No idea what to do if it needs a gui, though.

            • miki123211 2 minutes ago

              Try to run it on a 20-year-old system.

              If it ran 20 years ago and it still runs now, it's very likely to still run in another 20 years.

          • fsmv 3 hours ago

            It's the same sort of thing, parts obsolescence. The world around you changes and the interfaces you used to interact with the world may not exist anymore. Your dependencies may have been abandoned and have gone through their own bitrot.

            I think the best defence is to choose a platform that has longevity, like x86 Linux, and then seriously limit dependencies beyond the platform to the point of maybe not having any extra dependencies.

            The problem is eventually platforms change too. The longest lasting platform for software ever created is x86 + BIOS which lasted from 1981 to 2020 when Intel officially deprecated BIOS.

          • kevindamm 3 hours ago

            The biggest factor is dependencies' changes, so a good defense against bitrot is to reduce the dependencies as much as possible and try to limit dependencies to those which are exceptionally stable.

            This greatly limits velocity, though, and still doesn't help against security issues that need patching.. or if any of the stable dependencies made certain assumptions about hardware that has since changed. But, with the right selection of dependencies and some attention to good design, it is possible to write code durable against bitrot. It's just very uncommon.

          • iamflimflam1 3 hours ago

            One big thing is just losing knowledge of why things were done a certain way and how they actually work.

            Documentation helps and keeping code simple helps.

            But what really what rots away is human memory.

          • n0n0n4t0r 3 hours ago

            There is also the coopling issue: when your code depend of another part of your own code, it may be broken by this inner dependecy. If the code is not intégration tested enough, then rarely used features may be broken without you noticing, thus the roting expression. Modern standards help protect against this with the test pyramid.

          • vntok 3 hours ago

            > If you did want your software project to run the same as today when compiled/interpreted 10 years from now, what would you have to reach for to make it 'rot-resistant'?

            Target Windows, avoid Linux.

            • the__alchemist 2 hours ago

              ABI compatibility is one of several components involved. The OS the software runs out plays a small role in this problem.

              There is a relevant point about OSes though, and it has a different conclusion from yours: Write our software (And OSes) in a way that doesn't create barriers and friction between systems.

        • imadr 3 hours ago

          And it shouldn't need to. Making (relatively) simple changes like checking-in fixed versions of dependencies in the code base and abstracting away core logic from the platform layer goes a long way. This works well for video games

        • Jorge1o1 4 hours ago

          That’s actually a really good point! I wonder if one day there will be analogues for music and writing?

          I suppose you have gumroad / serialized novels or webcomics but I’m not sure if there’s any albums where the musician is putting out one song at a time

          • bavell 3 hours ago

            It's fairly common for artists to release a single or two from an upcoming album. Some artists release more singles than they do albums.

            • dleeftink 3 hours ago

              And more common nowadays, to re-release/master the recording as 'the artist intended'. But once you are familiarised with an original work and its (unintended) artefacts, a re-do is likely to lose some of the initial magic that drew you to the work in the first place.

      • Waterluvian 4 hours ago

        Yeah for sure! Listing that kind of thing would probably be helpful. I think this is one of those “you’ve gotta already be on the inside and already know” things as the fork’s read me doesn’t seem to explain it.

        • mistercow 4 hours ago

          This is pretty clear from the readme though?

          > While Grant Sanderson continues to maintain his own repository, we recommend this version for its continued development, improved features, enhanced documentation, and more active community-driven maintenance. If you would like to study how Grant makes his videos, head over to his repository

          • Waterluvian 4 hours ago

            Hm, yeah. And I read that. But I still didn’t feel equipped to know which I ought to focus on. Maybe it’s just too early on a Saturday for me.

    • pbronez 4 hours ago

      Looks like the projects have slightly different goals.

      Grant developed the software originally as a personal tool for his YouTube videos. The software is optimized for his personal needs.

      The community version tries to make the tool useful for more people. They’ve built out the docs and apparently improved testing.

lordnacho 4 hours ago

3b1b is truly a wonder of the internet world. Such beautiful animations, such well thought out explanations.

What I don't quite understand is how one library can animate so many different concepts. To me they seem like they'd all be a custom job, but I guess he works on a higher plane of mathematical existence.

voat 5 minutes ago

Is there a typescript alternative?

jasonjmcghee 6 hours ago

This gets submitted quite regularly to HN with many good discussions- so instead of posting the discussions I'll just link the search.

https://hn.algolia.com/?q=manim

emaro 5 hours ago

Grant's work with 3blue1brown and Manim is simply amazing. The quality of the videos is so high, not the least thanks to the visualizations. Not an easy task given the abstract nature of the topic.

It's linked in the readme, but I want to highlight the demo video [0], where Grant explains how he works with Manim.

[0] https://www.youtube.com/watch?v=rbu7Zu5X1zI

reactordev 7 hours ago

This is cool. I immediately clicked because I thought of this awesome video from a couple years ago, Animation vs Math:

https://youtu.be/B1J6Ou4q8vE

I like math but showing someone a giant graph isn’t always the best approach. :)

  • maxbond 6 hours ago

    > I like math but showing someone a giant graph isn’t always the best approach. :)

    Agreed. 3Blue1Brown has, by making their videos, publishing Manim, and critically by fostering a broader community of math YouTubers instead of trying to hoard the audience for themselves (through SoME), moved mathematics pedagogy forward immensely. (Sal Khan also deserves credit here.) He's created a genre that makes math feel like an exciting and approachable journey, rather than a process of memorization and symbol manipulation.

    • reactordev 3 hours ago

      Made math like building blocks vs a foreign language.

GTP 7 hours ago

Wanted to look for this a while back. Thank you for sharing the link.

sachinaag 6 hours ago

I have been using this with cursor to make videos to explain papers and math concepts to myself.

Some of the results are not perfect (AI sometimes misaligns some shapes), but it's quite helpful and with a couple of iterations you get to a really good explainer video.