Show HN: Create diagrams of complex data flows in software systems
61–67 of 67 posts
Re: Show HN: Create diagrams of complex data flows in software systems
#62Re: Show HN: Create diagrams of complex data flows in software systems
#63When going to https://gg-charts.com all I got is a popup of 1 and displayed Hacked by NSF instead.
Re: Show HN: Create diagrams of complex data flows in software systems
#64Earlier quoted context omitted.
Org files with embedded PlantUML blocks get close to what you want.
Who is using this? I have only seen plantuml written about on blogs, never actually in use.
Re: Show HN: Create diagrams of complex data flows in software systems
#65Earlier quoted context omitted.
My take is that it's a bit worse than that: the whole doc tooling scene is a dumpster fire. I want to maintain technical documentation under revision control (same revision control system as I use for source code), and I want to be able to embed diagrams in said documents (also under revision control) and I want to wysiwyg edit those things. Amazingly in 2024 this does not exist.
I think this captures the sentiment I have been seeing and feeling myself. Docs and diagrams die because they aren't code. When the code changes, the docs are left behind. What is interesting here is that mermaid and graphviz could be committed to source control, but I have never seen it done anywhere likely because the burden of drawing/updating is still too high (hence your wysiwyg comment).
Re: Show HN: Create diagrams of complex data flows in software systems
#66Re: Show HN: Create diagrams of complex data flows in software systems
#67Thanks for this! I love how minimal and intuitive it is. Feature request - ability to export to Animated PNG!
I'll create an issue to support exporting the animation in v1. Any particular reason for APNG vs GIF? The animation in the README.md was captured with the MediaRecorder API. It produced a webm that I "cropped -> clipped -> to gif" manually. I am not that far to produce a looping webm that is perfectly cropped & clipped. I may release that first, and then tackle gif / apng / ??? later.
GIFs support only 256 colors while APNG supports millions of colors and does have multi-browser support now. PNGs are also inherently high quality and don't pixelate like lossy image formats - GIF, JPG etc.