Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Hister: A private search engine for the pages you visit and the files you keep(github.com/asciimoo ↗)
    47comments
  2. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    145comments
  3. CrowdSec Source Code Leak(crowdsec.net ↗)
    25comments
  4. Rate limits on GitLab.com are changing(about.gitlab.com ↗)
    83comments
  5. T. Rex Had a Body Temperature of 97 Degrees(nytimes.com ↗)
    32comments
  6. Towards Self-Driving Codebases(detail.dev ↗)
    12comments
  7. Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data(arxiv.org ↗)
    8comments
  8. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    163comments
  9. How GLM built its own inference infrastructure(z.ai ↗)
    226comments
  10. Zettascale (YC S24) Is Hiring ASIC/FPGA Engineers to Build Chips for ASI(zscc.ai ↗)
    discuss
  11. One year of sponsored Servo development(servo.org ↗)
    127comments
  12. Launch HN: Skillsync (YC W26) – AI chat sessions made portable across agents
    17comments
  13. Grand MS-DOS Gaming General MIDI Showdown(johnnovak.net ↗)
    3comments
  14. The American Religion of Self-Storage Facilities(newyorker.com ↗)
    167comments
  15. CCC invites all model citizens to 40C3(ccc.de ↗)
    113comments
  16. Show HN: Navier-Stokes Visualized as 1kB i386 demos(juandecos.github.io ↗)
    1comments
  17. Ask HN: How to recover Google auth after phone stolen?
    56comments
  18. Running Ubuntu on the Lenovo IdeaPad Duet(vhaudiquet.fr ↗)
    1comments
  19. Show HN: Share your AI Setup, Learn from others(mysetup.ai ↗)
    69comments
  20. The Return of Sail Power: Cargo Ships Are Turning Back to the Wind(gcaptain.com ↗)
    101comments
  21. TSMC revealing details about next gen A14 node(mapyourshow.com ↗)
    6comments
  22. Whoisinspace.com/(whoisinspace.com ↗)
    51comments
  23. Show HN: Craigslist for agent skills, curated by a human(skillbay.sh ↗)
    2comments
  24. LLM Classification Is Feature Engineering(minimallysufficient.com ↗)
    12comments
  25. My temporary PHP fix from 2014 has nearly 20M installs. Today I'm deprecating it(jakeasmith.com ↗)
    85comments
  26. Artificial intelligence now beats some of the best human forecasters(economist.com ↗)
    74comments
  27. Economic policy for AGI(deepmind.com ↗)
    13comments
  28. Stallman: Thousands Dead, Millions Deprived of Liberties (2001)(slashdot.org ↗)
    15comments
  29. Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo(visual-paradigm.com ↗)
    6comments
  30. Vinix – A modern operating system written in V(vinix-os.org ↗)
    42comments

Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo

27 pointsby 2d agoguides.visual-paradigm.com
6 comments
3h agoHN ↗

If you don't even explain neato vs fdp, what's the point?

1h agoHN ↗

It's a sales website with a not-terrible hook.

Also AI generated diagrams with strange labelling doesn't persuade me much.

1h agoHN ↗

I occasionally use graphviz and pretty much always wind up frustrated with it. The syntax is pedantic and the resulting output is pretty ugly for all but the simplest graphs.

31m agoHN ↗

What's your use case for it? For manual diagrams, making an explanatory diagram for a presentation or something I would never recommend it. Declaratively typing out all your information is going to take just as long as setting it directly in drawio, but with less control over the result.

Where graphviz/dot has always shined for me is you have some application built around a data flow graph and occasionally need to debug a run with 50+ nodes at a time. So you write a file dumper for your structure. A visual makes understanding the structure so much faster, and nothing else seems to produce layouts nearly as good as dot.

54m agoHN ↗

I tried most of these declarative diagrams, while they work to some degree, the best outcome I had was with drawio but you should have the skill installed.

42m agoHN ↗

Depends on your use case. If i want to export some graph data structure from a program to visualise it for debugging purposes, graphviz is way more relevant than doing it by hand in drawio.

But if I'm making a presentation for a conference I would choose differently. And in between you get a whole spectrum of tradeoffs.