9 ms·
Nice to stumble over this thread. I'm not sure if Flint is the right tool for me. I'd like to have a tool that expresses code in visual form for me. For exampl
by manuel_w 2mo ago
Nice to stumble over this thread.
I'm not sure if Flint is the right tool for me. I'd like to have a tool that expresses code in visual form for me. For example, right now I need to reverse engineer some code for debugging purposes.
I already found out there are three tasks:
* Task one fills task two's queue and waits for an event to get notified
* Task two reads from its queue, forwards elements to task three's queue.
* Task three reads from its queue and sends a success/fail message back to task two's queue
* Task two then notifies the waiting task one.
Visually it's easily expressed: 3 bubbles lined up with 2 connections between the neighboring ones.
Which ML tools suited best for that?
- chenglong-hn 2mo agoSeems a bit more like https://mermaid.js.org https://mermaid.js.org use cases!
- westurner 2mo agoHere's the official mermaid vscode ext: MermaidChart.vscode-mermaid-chart: https://marketplace.visualstudio.com/items?itemName=MermaidChart.vscode-mermaid-chart https://marketplace.visualstudio.com/items?itemName=MermaidC... .. src: https://github.com/Mermaid-Chart/vscode-mermaid-chart https://github.com/Mermaid-Chart/vscode-mermaid-chart : > @mermaid-chart The functionality of the vscode-mermAId extension was merged into vscode FWIU? From https://code.visualstudio.com/updates/v1_109#_mermaid-diagrams-in-chat-responses https://code.visualstudio.com/updates/v1_109#_mermaid-diagra... : > Mermaid diagrams in chat responses > Chat responses can now render interactive Mermaid diagrams with the renderMermaidDiagram tool. This lets models use flowcharts, sequence diagrams, and other visualizations to visually break down complex concepts. The diagrams are interactive, so you can pan and zoom to explore them in detail, or open them in a full-sized editor for easier viewing.