Live data from Hacker News

Show HN: A Graphviz Implementation in Rust

github.com

1–10 of 56 posts

Re: Show HN: A Graphviz Implementation in Rust

#4
Does the standard implementation include any similar debug rendering? Seems like the coolest part of the project!

I tend to stay away from Graphviz a lot more than I otherwise would these days due to the lack of manual formatting controls (have spent waaaayyy too many hours writing code to add invisible edges between certain nodes to force row-ordered layouts).

Re: Show HN: A Graphviz Implementation in Rust

#5
post #4

Does the standard implementation include any similar debug rendering? Seems like the coolest part of the project! I tend to stay away from Graphviz a lot more than I otherwise would these days due to the lack of manual formatting controls (have spent waaaayyy too many hours writing code to add invisible edges between certain nodes to force row-ordered layouts).

The standard implementation does not have debug mode. Reverse engineering GV by reading the 90's style c code is not fun either.

Re: Show HN: A Graphviz Implementation in Rust

#7
post #4

Does the standard implementation include any similar debug rendering? Seems like the coolest part of the project! I tend to stay away from Graphviz a lot more than I otherwise would these days due to the lack of manual formatting controls (have spent waaaayyy too many hours writing code to add invisible edges between certain nodes to force row-ordered layouts).

Hah, that's hilarious. I also like graphs but hate manually laying them out, so I always use Graphviz and live with the results. Sometimes I think I could do better, but typing "foo -> bar" a few times is so much easier than spending any time thinking about what would look nicest. One time I added colors though, that was kind of nice.
Post reply on HN