2020-10-14

This commit is contained in:
2020-10-14 09:44:31 +02:00
parent 85a8b70172
commit 13d273fc6f
6 changed files with 46 additions and 1 deletions
+2
View File
@@ -0,0 +1,2 @@
# Facebook
+8
View File
@@ -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"
+16
View File
@@ -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"
+3
View File
@@ -0,0 +1,3 @@
# Query Language
+6 -1
View File
@@ -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"
+11
View File
@@ -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)