]> git.mdlowis.com Git - projs/awiki.git/commitdiff
commit to sync
authorMichael D. Lowis <mike.lowis@gentex.com>
Mon, 15 Jun 2020 21:04:35 +0000 (17:04 -0400)
committerMichael D. Lowis <mike.lowis@gentex.com>
Mon, 15 Jun 2020 21:04:35 +0000 (17:04 -0400)
pages/20200609230839.md
pages/20200615164150.md [new file with mode: 0644]
pages/20200615165204.md [new file with mode: 0644]

index 2b49c9c68db1df5c6d84c90e69ce9a1657caa393..30c4276610b3a6ff13307c79bfda4506ab6197ed 100644 (file)
@@ -4,18 +4,17 @@
 
 ## Now
 ### Release Plugin
-* Fix links on release report
 * Fix up variant handling approach
 * Add support for reports generated by the assembly build
 
 ### Miscellaneous
-* Build for Andrew (FCA TT)
+* Get audio cable from garage
 * Build for Ryan (AR0233)
-* release plugin
 * review feedback
 * broken builds
 
 ## Soon
+* Look over ASPICE docs
 * Allen's review write-up
 * Get a dongle and DiVa setup for Randy
 
@@ -26,4 +25,5 @@
 ## Follow-Up
 * Corporate Gen 2 Backlight issue on startup
 * AR0233 Development (Will)
+* Raspberry Pi integration rig
 
diff --git a/pages/20200615164150.md b/pages/20200615164150.md
new file mode 100644 (file)
index 0000000..4239045
--- /dev/null
@@ -0,0 +1,12 @@
+@tags zettelkasten second-brain notes note-taking slip-box knowledge-base
+# Building a Second Brain: The Illustrated Notes
+
+Interesting article about building a personal knowledge base to use for helping to think through problems and organize your thoughts. The ideas talked about in the article strongly overlap with that of the [zettelkasten](notes/misc/zettelkasten.html) concepts I was exploring before. A couple of general notes:
+
+* The illustrations/diagrams are interesting and should be digested further
+* Article mentions [Roam Research](https://roamresearch.com/) as a tool he uses. Proponents of 
+[zettelkasten](notes/misc/zettelkasten.html) also use this tool.
+* Article also mentions [Keyboard Maestro](https://www.keyboardmaestro.com/main/) for automating tasks.
+
+## Further Reading
+* https://maggieappleton.com/basb
diff --git a/pages/20200615165204.md b/pages/20200615165204.md
new file mode 100644 (file)
index 0000000..a696bb7
--- /dev/null
@@ -0,0 +1,7 @@
+@tags git squash rebase
+# Git: Squashing Commits
+````
+git rebase -i <commit> # rebase everything after the commit
+# or 
+git rebase -i HEAD~<n> # rebase the last <n> commits
+````