From 13d273fc6fb49762ee26fd8aed09d591219953b9 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Wed, 14 Oct 2020 09:44:31 +0200 Subject: [PATCH] 2020-10-14 --- facebook.md | 2 ++ graphql.md | 8 ++++++++ journal/2020-10-14.md | 16 ++++++++++++++++ query-language.md | 3 +++ titushora.md | 7 ++++++- tools/dash-separated-format.py | 11 +++++++++++ 6 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 facebook.md create mode 100644 graphql.md create mode 100644 journal/2020-10-14.md create mode 100644 query-language.md create mode 100755 tools/dash-separated-format.py diff --git a/facebook.md b/facebook.md new file mode 100644 index 000000000..760ef1f51 --- /dev/null +++ b/facebook.md @@ -0,0 +1,2 @@ +# Facebook + diff --git a/graphql.md b/graphql.md new file mode 100644 index 000000000..1e347ca80 --- /dev/null +++ b/graphql.md @@ -0,0 +1,8 @@ +# GraphQL +- Originally developed by [[Facebook]]. +- A [[query language]]. + + +[//begin]: # "Autogenerated link references for markdown compatibility" +[Facebook]: facebook "Facebook" +[//end]: # "Autogenerated link references" \ No newline at end of file diff --git a/journal/2020-10-14.md b/journal/2020-10-14.md new file mode 100644 index 000000000..8015c28f9 --- /dev/null +++ b/journal/2020-10-14.md @@ -0,0 +1,16 @@ +# 2020-10-14 + + - [[Agora v0.5]]: publishing + - [ ] I still have the problem that gatsby-digital-garden does not play well with having notes in many different paths. I should fix it or look elsewhere? + - Alternative: https://github.com/yenly/foamy-nextjs + - [ ] Another problem: some pages aren't found. + - [[Stephen Wolfram]] is found. + - [[X]] is not (what is X?) + - Probably need to learn [[Gatsby]] proper today, or part of it. Go through a tutorial? + - Read about underlying technologies: [[React]], [[GraphQL]] + - Perhaps should at least check out the [[React]] docs as well. + - [ ] I'd like to cook [[Baingan Bharta]]. + - [ ] I need to order more coffee +[//begin]: # "Autogenerated link references for markdown compatibility" +[GraphQL]: ../graphql "GraphQL" +[//end]: # "Autogenerated link references" \ No newline at end of file diff --git a/query-language.md b/query-language.md new file mode 100644 index 000000000..e678241e2 --- /dev/null +++ b/query-language.md @@ -0,0 +1,3 @@ +# Query Language + + diff --git a/titushora.md b/titushora.md index 4347098a4..13b124103 100644 --- a/titushora.md +++ b/titushora.md @@ -1,4 +1,9 @@ # Titushora - A [[person]] on [[twitter]]. - Nice and gives great feedback. -- +- Recommended https://www.amazon.com/Interactive-Visual-Analysis-Peters-Visualization/dp/0367898756/ref=sr_1_1?dchild=1&keywords=Interactive+Visual+Data+Analysis+Christian+Tominski%2C+Heidrun+Schumann&qid=1602607510&sr=8-1 + +[//begin]: # "Autogenerated link references for markdown compatibility" +[person]: person "Person" +[twitter]: twitter "twitter" +[//end]: # "Autogenerated link references" \ No newline at end of file diff --git a/tools/dash-separated-format.py b/tools/dash-separated-format.py new file mode 100755 index 000000000..9aed02136 --- /dev/null +++ b/tools/dash-separated-format.py @@ -0,0 +1,11 @@ +#!/usr/bin/python3 +import pathlib +import subprocess + +for filename in pathlib.Path('.').glob('**/*.md'): + # f = open(filename) + print('file: %s' % filename) + new_filename = str(filename).lower().replace(' ', '-') + command = ['git', 'mv', filename, new_filename] + print('would run: %s' % command) + # subprocess.run(command)