私はすべてのメモを単純なテキスト エディターで書いていますが、図やフローチャートなどを純粋なテキストとしてキャプチャするのに苦労しています。作図のためのテキストベースの省略形を知っていますか? それとも、共有しても構わない独自のテクニックを開発しましたか?
An example might be:
UI - user clicks button
|
TaskFactory - generates a Task based on user action and adds to TaskQueue
|
TaskManager - checks for tasks on its own thread
Or maybe:
UI --> TaskFactory --> TaskQueue --> TaskManager --O
UI - user clicks button
TaskFactory - generates a Task based on user action
TaskQueue - Task is added to queue
TaskManager - on separate thread; processes tasks from the queue