plurid VS depict

Compare plurid vs depict and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
plurid depict
5 2
21 26
- -
7.2 6.6
4 months ago 11 months ago
TypeScript Rust
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

plurid

Posts with mentions or reviews of plurid. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-06.
  • VisionOS
    2 projects | news.ycombinator.com | 6 Jun 2023
    Been thinking since 2015 how to explore information as a 3D structure: plurid [1]. The stable library is for now only for React.

    [1] https://github.com/plurid/plurid

  • Show HN: How to create a 3D space using CSS
    5 projects | news.ycombinator.com | 9 Jan 2023
    Since 2015 I have been thinking how to explore information as a 3D structure. This thought has led to developing plurid [1], [2], a component library (for React for now) to transform a web page into a rotate-able/translate-able/scale-able space with the content on planes.

    [1] Code, https://github.com/plurid/plurid

    [2] Demo, https://www.youtube.com/watch?v=aV7MWFDVFkk

  • plurid'?
    1 project | /r/plurid | 1 Jul 2022
    plurid' is an open-sourced software package to generate 3D user interfaces
  • Ask HN: Visualizing software designs, especially of large systems (if at all)?
    20 projects | news.ycombinator.com | 31 May 2022
    I gave this a bit of thought earlier this year (https://alexanderell.is/posts/visualizing-code/) and, with the help of HN commenters, collected a small list of ways people are working to help with code visualization. I don't think most of them are production ready (some are just research papers), but you may find them interesting all the same.

    SoftVis3D (https://softvis3d.com/): where a "‘code city’ view provides a visualization for the hierarchical structure of the project".

    Code Park: A New 3D Code Visualization Tool (2017) (https://arxiv.org/pdf/1708.02174.pdf), a “novel tool for visualizing codebases in a 3D game-like environment” with code represented as “code rooms” with code on the walls.

    Code Structure Visualization Using 3D-Flythrough (2016) (https://opus-htw-aalen.bsz-bw.de/frontdoor/deliver/index/doc...), with spatial metaphors and first-person exploration of code.

    Primitive (https://primitive.io/), a VR collaboration startup with a Matrix-looking “Immersive Development Environment” with “new tools for visually analyzing software in 3D”.

    AppMap (https://appland.com/docs/how-to-use-appmap-diagrams.html), an automated code analysis tool that includes dependency maps and trace views.

    plurid (https://github.com/plurid/plurid), a framework for visualizing and debugging code in a 3D explorable structure.

    fsn (file manager) (https://en.wikipedia.org/wiki/Fsn_(file_manager)), an experimental application to view a file system in 3D (featured in Jurassic Park).

  • Plurid: Underframe to Render Information as a 3D Explorable Structure
    1 project | news.ycombinator.com | 14 May 2021

depict

Posts with mentions or reviews of depict. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-29.
  • A CSS-Inspired Syntax for Flowcharts
    5 projects | news.ycombinator.com | 29 Aug 2022
    One potential solution direction, which you can try out via my own incomplete drawing toy [1] is to treat punctuation characters like SP (“ “), COMMA (“,”), and SEMICOLON (“;”) as markers for the product operations of a family of monoids that allow you to specify more and more complicated sequences without requiring the typist to “move the cursor left” to add a matching character.

    This way, simple lists can be specified via juxtaposition:

    a b c

    And then more complex lists

    thing 1, thing 2, thing 3

    and still more complex lists like

    A complex thing; with data, and more data

    can be specified in a way that is potentially still human-legible and easily editable.

    Combined with ~instant feedback while typing and, ideally, a “brushing” system to allow selection of parts of the textual model via the linked drawing, I am hopeful that this can be solved resiliently, at least for the most common use cases.

    (Part of why I am excited about OP’s work here though is that while I have done a fair bit in my own project on drawing a related kind of diagrams, I have myself only begun thinking about how to make the resulting drawings nicely stylable/themeable.)

    [1] https://mstone.info/depict/ -> https://github.com/mstone/depict

  • Ask HN: Visualizing software designs, especially of large systems (if at all)?
    20 projects | news.ycombinator.com | 31 May 2022
    You might find it helpful to distinguish between visualizing the design of the system being implemented by your software, visualizing protocols being implemented by your software, visualizing the design of the your software itself, and visualizing important implementation details at runtime, e.g. for debugging, profiling, and operations.

    For visualizing system designs, you should take a look at STAMP, e.g., via “Engineering A Safer World” + the resources at mit.edu/psas + on YouTube.

    (Multiple tools, both commercial and libre, exist and are being developed to make these diagrams, although for what it’s worth, I mostly hear about people making them using draw.io, Google Drawings, on physical paper/whiteboards, or occasionally with specialized tooling.

    I have also recently published a project in this area, https://github.com/mstone/depict, which I believe is well on its way toward addressing some unmet needs here.)

    For visualizing protocols, things like sequence diagrams, data flow diagrams, DRAKON flow charts, value stream maps, and occasional more specialized objects like CPSA “cryptographic protocol shapes” / strand space skeletons are where I start depending on the flavor of what’s needed.

    For visualizing the design of implementations themselves, I have not yet seen anything that I feel obliged to recommend; rather, here, I suggest investing in adding illustrations to your existing documentation in whatever way is easiest for you to use to clarify whatever subtleties you need to clarify for your audience.

    (Here I tend to look at things like ASCII-art, SQLite’s railroad diagrams (now made with pikchr, AIUI), and sequence diagrams, as mentioned by other commenters, as helpful examples to start with.)

    Finally, for implementing debugging/profiling/operational illustrations, there is a such a rich set of examples to turn to — whether from the very specialized (custom process model video rendering pipelines in robotics) to TensorBoard for TensorFlow to general-purpose tools like browser performance debugging suites, flame charts, or Go’s built-in profile graphing tools - that rather than learn any particular such tools, I’d instead suggest trying to get comfortable with the building blocks underlying these systems, which include contemporary GUI/web apps, custom drawing and animation tools like SVG, pretty printers, and Grammar-of-Graphics systems like vega-lite.

    (Note: although it may seem superficially extraneous to your question, the reason I also suggest thinking about debugging visualizations in this context is because IMO, to work, they ~necessarily encode a visual model of the design of your implementation since it is the design of the implementation that provides the vocabulary and relationships that have to be understood and navigated in order to successfully debug/optimize/monitor any given running instance of whatever system you are building.)

What are some alternatives?

When comparing plurid and depict you can also consider the following projects:

spekt8 - Visualize your Kubernetes cluster in real time

shotglass - Tools to visualize large code bases in different ways.

ScrivanoForLinux - Scrivano is a notetaking application for handwritten notes.

digital-gardeners - Resources, links, projects, and ideas for gardeners tending their digital notes on the public interwebs

saddle-data-graph - where does it come from, where does it go?

TypeScript-Call-Graph - CLI to generate an interactive graph of functions and calls from your TypeScript files

glTF - glTF – Runtime 3D Asset Delivery

Pythonocc-nodes-for-Ryven - Pythonocc nodes for Ryven

LookAtThat - Render source code in 3D, for macOS and iOS.

flowchart-fun - Easily generate flowcharts and diagrams from text ⿻