Live data from Hacker News

Viewing profile — aqula

aqula

HN member
Joined
Sat, Mar 22, 2025, 6:05 AM UTC
HN karma
19
Public activity
24 items

About aqula

No profile information was provided.

Recent public activity

  1. comment
    Comment #49151725

    I keep going back to xfce-terminal after trying anything else. Ridiculously small footprint and never drew attention to itself.

  2. comment
    Comment #48851118

    Not at this time, but down the line I probably will.

  3. comment
    Comment #48848224

    They're generated from source code using a combination of static analysis + llm analysis. They're not editable per se, but you can update them when you edit your code.

  4. comment
    Comment #48846946

    Something I do have in mind. Do you have an idea of the kind of UX you'd like to see?

  5. comment
    Comment #48846918

    It identifies telemetry, accessors, and other trivial code and strips them out of the graph. The idea is to retain architecturally relevant parts of the code.

  6. story
    Show HN: Arcaide – Explore code with multi-level call graphs

    One of the things I do when approaching a new codebase is to find the entry points and start exploring down the call paths. This gives a good overview of the different components i…

  7. comment
    Comment #48834047

    What are the memory requirements for pgGraph like? Does the entire graph for my dataset need to fit in memory?

  8. comment
    Comment #48706117

    You might be interested to look up the Williamson-Van der Mark model. It says that an electron is just light that loops in on itself and shows how properties like mass, charge and …

  9. story
    Show HN: Explore popular go codebases visually

    I've always thought call graphs are a great way to explore a codebase. But they tend to be noisy because programs typically have a lot of control flow going most of which is uninte…

  10. comment
    Comment #46630172

    Talking to insurance agents I realised, they don't bother to read the policy documents and have a very superficial knowledge of the policies they are selling. You can glean lot mor…

  11. comment
    Comment #46630089

    LSP is not great for non-editor use cases. Everything is cursor position oriented.

  12. comment
    Comment #46613366

    Really cool! I'm also dabbling with this idea. The biggest challenge I find is to reduce noise. Large codebases come with a lot of cruft. Surfacing every small detail in the visual…

  13. comment
    Comment #46339282

    People said the same thing about the internet, that you should be getting your information from actual books and that the internet will make you lazy and complacent. There was a ti…

  14. comment
    Comment #45779708

    Is there any write up on the tech behind nano texture? What makes them better than traditional matte screens?

  15. comment
    Comment #45747284

    Thanks for sharing. Although diagrams have a unique requirement that the boxes are inter-connected, and those connections must also look "nice".

  16. comment
    Comment #45745211

    I've had good results using ELK for a terraform diagram generator. You can see some samples here. https://marketplace.visualstudio.com/items?itemName=infragra...

  17. comment
    Comment #45745177

    Layout is one of those things humans do so easily and intuitively, yet you couldn't write an easy algorithm for it. I wonder if there's potential to use gen ai to achieve human lik…

  18. comment
    Comment #45393418

    I built something similar recently. We could take inspiration from each other :) [1] https://news.ycombinator.com/item?id=44534541

  19. comment
    Comment #45376940

    Playing around with code visualization. Built a vscode extension to generate architecture diagrams for terraform - https://marketplace.visualstudio.com/items?itemName=infragra... N…

  20. comment
    Comment #45209952

    This is a cool problem to solve! especially as more and more code is being generated with AI. But are you pivoting away entirely from code visualization? Curious to hear why it did…

  21. story
    Show HN: Infragram – C4 style interactive architecture diagrams for Terraform

    If you're not familiar with C4 model ( https://c4model.com ), the idea is to visualize your system at different "zoom levels" to see the abstraction you are interested in. When it …

  22. comment
    Comment #44440325

    Something like the C4 model? https://c4model.com/diagrams

  23. comment
    Comment #44440305

    This is something I'm working on. I'll probably do a separate post some time. https://marketplace.visualstudio.com/items?itemName=infragra...

  24. comment
    Comment #44020154

    Code-first is kinda moving towards prompt-first. A diagram is just another way to prompt, so I can see this making a comeback, esp. with AI taking over more and more code.