Generate Flowcharts from Text
121–130 of 135 posts
Re: Generate Flowcharts from Text
#122I have come to the conclusion there are two kinds of audience and two kinds of diagram, abs they almost exactly overlap 1. Engineering diagrams, explaining concepts to other engineers who are using the diagram as a jumping off point to deeper explorations 2. "Business" diagrams - the sort of thing we want to see in a Medium article or presentation. The style and correct placement matters far more than engineering. Th…
For (1), I am sold on goat . ASCII art to SVG, from the command line: https://github.com/blampe/goat Embed diagrams in source code comments; build script greps through and writes out an SVG. A caveat is that to be adequately productive, you need rectangle-oriented editing, such as with Emacs’ “M-x string-rectangle”.
Re: Generate Flowcharts from Text
#123I have come to the conclusion there are two kinds of audience and two kinds of diagram, abs they almost exactly overlap 1. Engineering diagrams, explaining concepts to other engineers who are using the diagram as a jumping off point to deeper explorations 2. "Business" diagrams - the sort of thing we want to see in a Medium article or presentation. The style and correct placement matters far more than engineering. Th…
Have you tried PlantUML? It provides means of adjusting the layout. I use it often, most of the time the adjustment is good enough for engineering communication within minutes of adjustment. It could be better if there is more cohesive documentation of its support for the adjustment. I had to search on Google many times to figure out how to add the adjustment. The adjustment consists of directives of placement and di…
Re: Generate Flowcharts from Text
#124I have come to the conclusion there are two kinds of audience and two kinds of diagram, abs they almost exactly overlap 1. Engineering diagrams, explaining concepts to other engineers who are using the diagram as a jumping off point to deeper explorations 2. "Business" diagrams - the sort of thing we want to see in a Medium article or presentation. The style and correct placement matters far more than engineering. Th…
Have you tried PlantUML? It provides means of adjusting the layout. I use it often, most of the time the adjustment is good enough for engineering communication within minutes of adjustment. It could be better if there is more cohesive documentation of its support for the adjustment. I had to search on Google many times to figure out how to add the adjustment. The adjustment consists of directives of placement and di…
Re: Generate Flowcharts from Text
#125Re: Generate Flowcharts from Text
#126Re: Generate Flowcharts from Text
#127I have come to the conclusion there are two kinds of audience and two kinds of diagram, abs they almost exactly overlap 1. Engineering diagrams, explaining concepts to other engineers who are using the diagram as a jumping off point to deeper explorations 2. "Business" diagrams - the sort of thing we want to see in a Medium article or presentation. The style and correct placement matters far more than engineering. Th…
"A picture paints a thousand words", so why should we expect it possible to describe some pictures with less words.
Some paintings can be described effectively with "four tins of campbells tomato soup, one in each quadrant".
Other pictures cannot - "Adam reaching out to touch Gods finger"
Maybe we just need to paint sometimes, and maybe learn the difference between the two kinds - when we need to escape from code.
Re: Generate Flowcharts from Text
#128Earlier quoted context omitted.
I’ve started doing the same. Folks’ reading comprehension is in the gutter these days. Bullet points help structure thoughts and ideas.
Is reading comprehension in the gutter, or are people more resistant to emails full of badly-structured fluff?
That might be their outlet perhaps after a spending a day being acutely focused on cutting code!
Re: Generate Flowcharts from Text
#129Earlier quoted context omitted.
I totally had this thought too when making it. The logic is super simple as-is, so I was scared if I went down the rabbit whole of trying to auto increment/decrement line numbers I might muddy things up. I'll see if add that functionality cleanly at some point (or if you'd like to feel free to take out a PR!) Thanks for the feedback!
alternatively you could link to nodes by referencing their label? You might just also want an option to not render that label (ie have it be for the writer's benefit only).
[custom id] hello world
child 1
child 2
(custom id)Re: Generate Flowcharts from Text
#130Earlier quoted context omitted.
alternatively you could link to nodes by referencing their label? You might just also want an option to not render that label (ie have it be for the writer's benefit only).
added the concept of node ids and linking directly to them last night! now you can do something like [custom id] hello world child 1 child 2 (custom id)