diff --git a/do.md b/do.md index dc737c1ed..981639b58 100644 --- a/do.md +++ b/do.md @@ -3,6 +3,9 @@ - I'm trying to use [[pomodoro]] more. It signals an [[intent]]. - Whenever I notice the risk of getting distracted from the task at hand, I dump thoughts in [[later]]. - My current running contexts or intents follow (they expand into lists of todo items/trees/graphs depending on level of modelling): + - [[rdf]] + - [[graphs]] + - [[force graph]] - [[agora search]] - implementing a provider - support [[yubnub]] like particles diff --git a/force graph.md b/force graph.md new file mode 100644 index 000000000..a8dab133d --- /dev/null +++ b/force graph.md @@ -0,0 +1,33 @@ +# force graph + +- [[go]] https://github.com/vasturiano/force-graph + - I think it makes sense. Seems reasonable fast at the high-thousand-nodes level; the agora is currently at 10k. And most of the visualizations I want to do are actually node-scoped plus links, so really just an issue for hugely outlier nodes degree wise (like [[person]] or [[go]]). + - Unfortunately it doesn't seem to provide labels for edges? + - False, it does: https://vasturiano.github.io/force-graph/example/text-links/ + - Data format, JSON: + +``` +{ + "nodes": [ + { + "id": "id1", + "name": "name1", + "val": 1 + }, + { + "id": "id2", + "name": "name2", + "val": 10 + }, + (...) + ], + "links": [ + { + "source": "id1", + "target": "id2" + }, + (...) + ] +} +``` + diff --git a/journal/2021-04-08.md b/journal/2021-04-08.md index 62f621c85..81d8cebee 100644 --- a/journal/2021-04-08.md +++ b/journal/2021-04-08.md @@ -8,4 +8,5 @@ - had a lovely discussion with [[codex]], [[bruno-winck]], [[miguel-marcos-martinez]] and [[vera]]. - [[asus]] ux391FA - [[later]] +- [[do]]