From: Michael D. Lowis Date: Mon, 15 Jun 2020 21:04:35 +0000 (-0400) Subject: commit to sync X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=64037c2b30a86039e031ea4a5330dbef8effa72e;p=projs%2Fawiki.git commit to sync --- diff --git a/pages/20200609230839.md b/pages/20200609230839.md index 2b49c9c..30c4276 100644 --- a/pages/20200609230839.md +++ b/pages/20200609230839.md @@ -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 index 0000000..4239045 --- /dev/null +++ b/pages/20200615164150.md @@ -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 index 0000000..a696bb7 --- /dev/null +++ b/pages/20200615165204.md @@ -0,0 +1,7 @@ +@tags git squash rebase +# Git: Squashing Commits +```` +git rebase -i # rebase everything after the commit +# or +git rebase -i HEAD~ # rebase the last commits +````