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 ↗)
    77comments
  2. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    153comments
  3. Missouri governor orders guardrails on Flock cameras and ALPRs(stlpr.org ↗)
    discuss
  4. CrowdSec Source Code Leak(crowdsec.net ↗)
    27comments
  5. Rate limits on GitLab.com are changing(about.gitlab.com ↗)
    90comments
  6. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    188comments
  7. Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data(arxiv.org ↗)
    10comments
  8. How GLM built its own inference infrastructure(z.ai ↗)
    233comments
  9. Running Ubuntu on the Lenovo IdeaPad Duet(vhaudiquet.fr ↗)
    3comments
  10. One year of sponsored Servo development(servo.org ↗)
    132comments
  11. Zettascale (YC S24) Is Hiring ASIC/FPGA Engineers to Build Chips for ASI(zscc.ai ↗)
    discuss
  12. The American Religion of Self-Storage Facilities(newyorker.com ↗)
    186comments
  13. Launch HN: Skillsync (YC W26) – AI chat sessions made portable across agents
    23comments
  14. TSMC revealing details about next gen A14 node(mapyourshow.com ↗)
    9comments
  15. Show HN: Share your AI Setup, Learn from others(mysetup.ai ↗)
    72comments
  16. CCC invites all model citizens to 40C3(ccc.de ↗)
    133comments
  17. Wax Motor(wikipedia.org ↗)
    discuss
  18. Grand MS-DOS Gaming General MIDI Showdown(johnnovak.net ↗)
    7comments
  19. The Return of Sail Power: Cargo Ships Are Turning Back to the Wind(gcaptain.com ↗)
    106comments
  20. LLM Classification Is Feature Engineering(minimallysufficient.com ↗)
    12comments
  21. Show HN: Craigslist for agent skills, curated by a human(skillbay.sh ↗)
    5comments
  22. Don't Make Job Referrals Public(melashri.net ↗)
    6comments
  23. Ask HN: How to recover Google auth after phone stolen?
    71comments
  24. Stallman: Thousands Dead, Millions Deprived of Liberties (2001)(slashdot.org ↗)
    36comments
  25. My temporary PHP fix from 2014 has nearly 20M installs. Today I'm deprecating it(jakeasmith.com ↗)
    85comments
  26. Economic policy for AGI(deepmind.com ↗)
    28comments
  27. Vinix – A modern operating system written in V(vinix-os.org ↗)
    46comments
  28. Artificial intelligence now beats some of the best human forecasters(economist.com ↗)
    82comments
  29. Towards Self-Driving Codebases(detail.dev ↗)
    47comments
  30. Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo(visual-paradigm.com ↗)
    6comments

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

33 pointsby 2d agoguides.visual-paradigm.com
6 comments
4h agoHN ↗

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

2h agoHN ↗

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

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

2h 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.

1h 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.

1h 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.

1h 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.