## 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
## Follow-Up
* Corporate Gen 2 Backlight issue on startup
* AR0233 Development (Will)
+* Raspberry Pi integration rig
--- /dev/null
+@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
--- /dev/null
+@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
+````