mirror of
https://github.com/flancian/garden.git
synced 2026-08-07 06:56:19 +00:00
2020-10-14
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
# Facebook
|
||||
|
||||
@@ -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"
|
||||
@@ -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"
|
||||
@@ -0,0 +1,3 @@
|
||||
# Query Language
|
||||
|
||||
|
||||
+6
-1
@@ -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"
|
||||
Executable
+11
@@ -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)
|
||||
Reference in New Issue
Block a user