├── .github └── workflows │ ├── claude-code-review.yml │ └── claude.yml ├── .gitignore ├── .obsidian ├── app.json ├── appearance.json ├── backlink.json ├── canvas.json ├── community-plugins.json ├── core-plugins-migration.json ├── core-plugins.json ├── daily-notes.json ├── file-recovery.json ├── graph.json ├── hotkeys.json ├── note-composer.json ├── plugins │ ├── calendar │ │ ├── data.json │ │ ├── main.js │ │ └── manifest.json │ ├── dataview │ │ ├── data.json │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css │ ├── find-unlinked-files │ │ ├── data.json │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css │ ├── nldates-obsidian │ │ ├── data.json │ │ ├── main.js │ │ └── manifest.json │ ├── obsidian-linter │ │ ├── data.json │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css │ ├── obsidian-outliner │ │ ├── data.json │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css │ ├── periodic-notes │ │ ├── data.json │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css │ └── tag-wrangler │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css ├── switcher.json ├── templates.json ├── types.json ├── workspace.json ├── workspaces.json └── zk-prefixer.json ├── Atomic Notes ├── .gitkeep ├── 202504231231 The Stoic dichotomy of control divides reality into things we can control—our judgments, desires, and actions—and things we cannot, such as external events, other people, and outcomes.md ├── 202508311058 An atomic note is a self-contained unit of knowledge that captures a single, complete idea.md ├── 202508311127 The principle of atomicity is the practice of breaking information into small, self-contained units, with each unit focused on a single, complete idea.md ├── 202508311132 Modularity is a software design principle that involves dividing a program into separate, independent modules, where each module is responsible for a specific piece of the program's functionality.md ├── 202508311142 A graph is a non-linear data structure composed of a set of vertices (or nodes) and a set of edges that represent connections between these vertices.md ├── 202509010952 Spaced repetition is a learning technique that involves reviewing information at increasing intervals to improve long-term retention.md ├── 202509010956 The Ebbinghaus forgetting curve is a model showing how memory retention declines exponentially over time if there is no attempt to review the learned information.md ├── 202509011003 The Zettelkasten method is a knowledge management system that organizes information into a network of interconnected, atomic notes.md ├── 202509011019 A structure note serves as a curated entry point or an organized overview of a specific topic or line of thought within a note network.md ├── 202509030621 A reference note captures key ideas from an external source, serving as a bridge between consuming information and creating original thought.md ├── 202509030636 The DAE framework is a structured method for writing atomic notes that ensures clarity and retention by organizing each note into three parts—a concise Definition, a relatable Analogy, and a concrete Example.md ├── 202509030651 The 5W framework is a system that uses five quality-gate questions to decide whether to engage with a piece of information.md ├── 202511181119 Abstraction is the process of identifying and isolating the essential features of a concept or object while deliberately ignoring irrelevant details.md └── 202511181121 Pattern recognition is the cognitive ability to identify recurring structures, regularities, or relationships across different instances of data or experiences.md ├── Attachments ├── .gitkeep └── 20240905205858 Ebbinghaus forgetting curve.png ├── GETTING-STARTED.md ├── Inbox └── .gitkeep ├── LICENSE.md ├── Meetings ├── .gitkeep └── 202511180902 Consolidating scattered team knowledge.md ├── People ├── .gitkeep ├── Carl Sagan.md ├── Grace Hopper.md └── Your Name.md ├── Places and Things └── .gitkeep ├── Projects └── .gitkeep ├── Prompts ├── .gitkeep └── atomic-note-generator.md ├── README.md ├── Reference Notes ├── .gitkeep └── Books │ └── How to Take Smart Notes.md ├── Reviews ├── Daily Notes │ ├── .gitkeep │ ├── 2025-08-31.md │ ├── 2025-09-01.md │ ├── 2025-09-03.md │ ├── 2025-11-14.md │ └── 2025-11-18.md ├── Decisions │ └── .gitkeep ├── Quarterly Reviews │ └── .gitkeep └── Weekly Review │ └── .gitkeep ├── Structure Notes ├── .gitkeep ├── Networked Thinking System.md ├── System Design.md └── Thinking and Learning.md ├── Templates ├── Atomic Note Template (Anki).md ├── Atomic Note Template (Default).md ├── Daily Note Template.md ├── Decision Template.md ├── General Note Template.md ├── Meeting Template.md ├── Person Template.md ├── Quarterly Review Template.md ├── Reference Note Template.md ├── Structure Note Template.md ├── Vocabulary Template.md └── Weekly Review Template.md └── Vocabulary Notes └── .gitkeep /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.gitignore -------------------------------------------------------------------------------- /.obsidian/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/app.json -------------------------------------------------------------------------------- /.obsidian/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/appearance.json -------------------------------------------------------------------------------- /.obsidian/backlink.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlinkInDocument": true 3 | } -------------------------------------------------------------------------------- /.obsidian/canvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/canvas.json -------------------------------------------------------------------------------- /.obsidian/community-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/community-plugins.json -------------------------------------------------------------------------------- /.obsidian/core-plugins-migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/core-plugins-migration.json -------------------------------------------------------------------------------- /.obsidian/core-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/core-plugins.json -------------------------------------------------------------------------------- /.obsidian/daily-notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/daily-notes.json -------------------------------------------------------------------------------- /.obsidian/file-recovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/file-recovery.json -------------------------------------------------------------------------------- /.obsidian/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/graph.json -------------------------------------------------------------------------------- /.obsidian/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/hotkeys.json -------------------------------------------------------------------------------- /.obsidian/note-composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "askBeforeMerging": true 3 | } -------------------------------------------------------------------------------- /.obsidian/plugins/calendar/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/calendar/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/calendar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/calendar/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/calendar/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/calendar/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/dataview/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/dataview/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/dataview/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/dataview/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/dataview/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/dataview/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/dataview/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/dataview/styles.css -------------------------------------------------------------------------------- /.obsidian/plugins/find-unlinked-files/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/find-unlinked-files/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/find-unlinked-files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/find-unlinked-files/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/find-unlinked-files/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/find-unlinked-files/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/find-unlinked-files/styles.css: -------------------------------------------------------------------------------- 1 | Not Found -------------------------------------------------------------------------------- /.obsidian/plugins/nldates-obsidian/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/nldates-obsidian/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/nldates-obsidian/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/nldates-obsidian/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/nldates-obsidian/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/nldates-obsidian/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-linter/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-linter/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-linter/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-linter/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-linter/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-linter/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-linter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-linter/styles.css -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-outliner/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-outliner/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-outliner/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-outliner/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-outliner/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-outliner/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-outliner/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/obsidian-outliner/styles.css -------------------------------------------------------------------------------- /.obsidian/plugins/periodic-notes/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/periodic-notes/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/periodic-notes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/periodic-notes/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/periodic-notes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/periodic-notes/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/periodic-notes/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/periodic-notes/styles.css -------------------------------------------------------------------------------- /.obsidian/plugins/tag-wrangler/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/tag-wrangler/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/tag-wrangler/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/tag-wrangler/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/tag-wrangler/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/plugins/tag-wrangler/styles.css -------------------------------------------------------------------------------- /.obsidian/switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/switcher.json -------------------------------------------------------------------------------- /.obsidian/templates.json: -------------------------------------------------------------------------------- 1 | { 2 | "folder": "Templates" 3 | } -------------------------------------------------------------------------------- /.obsidian/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/types.json -------------------------------------------------------------------------------- /.obsidian/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/workspace.json -------------------------------------------------------------------------------- /.obsidian/workspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/workspaces.json -------------------------------------------------------------------------------- /.obsidian/zk-prefixer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/.obsidian/zk-prefixer.json -------------------------------------------------------------------------------- /Atomic Notes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Atomic Notes/202504231231 The Stoic dichotomy of control divides reality into things we can control—our judgments, desires, and actions—and things we cannot, such as external events, other people, and outcomes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202504231231 The Stoic dichotomy of control divides reality into things we can control—our judgments, desires, and actions—and things we cannot, such as external events, other people, and outcomes.md -------------------------------------------------------------------------------- /Atomic Notes/202508311058 An atomic note is a self-contained unit of knowledge that captures a single, complete idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202508311058 An atomic note is a self-contained unit of knowledge that captures a single, complete idea.md -------------------------------------------------------------------------------- /Atomic Notes/202508311127 The principle of atomicity is the practice of breaking information into small, self-contained units, with each unit focused on a single, complete idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202508311127 The principle of atomicity is the practice of breaking information into small, self-contained units, with each unit focused on a single, complete idea.md -------------------------------------------------------------------------------- /Atomic Notes/202508311132 Modularity is a software design principle that involves dividing a program into separate, independent modules, where each module is responsible for a specific piece of the program's functionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202508311132 Modularity is a software design principle that involves dividing a program into separate, independent modules, where each module is responsible for a specific piece of the program's functionality.md -------------------------------------------------------------------------------- /Atomic Notes/202508311142 A graph is a non-linear data structure composed of a set of vertices (or nodes) and a set of edges that represent connections between these vertices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202508311142 A graph is a non-linear data structure composed of a set of vertices (or nodes) and a set of edges that represent connections between these vertices.md -------------------------------------------------------------------------------- /Atomic Notes/202509010952 Spaced repetition is a learning technique that involves reviewing information at increasing intervals to improve long-term retention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202509010952 Spaced repetition is a learning technique that involves reviewing information at increasing intervals to improve long-term retention.md -------------------------------------------------------------------------------- /Atomic Notes/202509010956 The Ebbinghaus forgetting curve is a model showing how memory retention declines exponentially over time if there is no attempt to review the learned information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202509010956 The Ebbinghaus forgetting curve is a model showing how memory retention declines exponentially over time if there is no attempt to review the learned information.md -------------------------------------------------------------------------------- /Atomic Notes/202509011003 The Zettelkasten method is a knowledge management system that organizes information into a network of interconnected, atomic notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202509011003 The Zettelkasten method is a knowledge management system that organizes information into a network of interconnected, atomic notes.md -------------------------------------------------------------------------------- /Atomic Notes/202509011019 A structure note serves as a curated entry point or an organized overview of a specific topic or line of thought within a note network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202509011019 A structure note serves as a curated entry point or an organized overview of a specific topic or line of thought within a note network.md -------------------------------------------------------------------------------- /Atomic Notes/202509030621 A reference note captures key ideas from an external source, serving as a bridge between consuming information and creating original thought.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202509030621 A reference note captures key ideas from an external source, serving as a bridge between consuming information and creating original thought.md -------------------------------------------------------------------------------- /Atomic Notes/202509030636 The DAE framework is a structured method for writing atomic notes that ensures clarity and retention by organizing each note into three parts—a concise Definition, a relatable Analogy, and a concrete Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202509030636 The DAE framework is a structured method for writing atomic notes that ensures clarity and retention by organizing each note into three parts—a concise Definition, a relatable Analogy, and a concrete Example.md -------------------------------------------------------------------------------- /Atomic Notes/202509030651 The 5W framework is a system that uses five quality-gate questions to decide whether to engage with a piece of information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202509030651 The 5W framework is a system that uses five quality-gate questions to decide whether to engage with a piece of information.md -------------------------------------------------------------------------------- /Atomic Notes/202511181119 Abstraction is the process of identifying and isolating the essential features of a concept or object while deliberately ignoring irrelevant details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202511181119 Abstraction is the process of identifying and isolating the essential features of a concept or object while deliberately ignoring irrelevant details.md -------------------------------------------------------------------------------- /Atomic Notes/202511181121 Pattern recognition is the cognitive ability to identify recurring structures, regularities, or relationships across different instances of data or experiences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Atomic Notes/202511181121 Pattern recognition is the cognitive ability to identify recurring structures, regularities, or relationships across different instances of data or experiences.md -------------------------------------------------------------------------------- /Attachments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attachments/20240905205858 Ebbinghaus forgetting curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Attachments/20240905205858 Ebbinghaus forgetting curve.png -------------------------------------------------------------------------------- /GETTING-STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/GETTING-STARTED.md -------------------------------------------------------------------------------- /Inbox/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Meetings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Meetings/202511180902 Consolidating scattered team knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Meetings/202511180902 Consolidating scattered team knowledge.md -------------------------------------------------------------------------------- /People/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /People/Carl Sagan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/People/Carl Sagan.md -------------------------------------------------------------------------------- /People/Grace Hopper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/People/Grace Hopper.md -------------------------------------------------------------------------------- /People/Your Name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/People/Your Name.md -------------------------------------------------------------------------------- /Places and Things/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prompts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prompts/atomic-note-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Prompts/atomic-note-generator.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/README.md -------------------------------------------------------------------------------- /Reference Notes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Reference Notes/Books/How to Take Smart Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Reference Notes/Books/How to Take Smart Notes.md -------------------------------------------------------------------------------- /Reviews/Daily Notes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Reviews/Daily Notes/2025-08-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Reviews/Daily Notes/2025-08-31.md -------------------------------------------------------------------------------- /Reviews/Daily Notes/2025-09-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Reviews/Daily Notes/2025-09-01.md -------------------------------------------------------------------------------- /Reviews/Daily Notes/2025-09-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Reviews/Daily Notes/2025-09-03.md -------------------------------------------------------------------------------- /Reviews/Daily Notes/2025-11-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Reviews/Daily Notes/2025-11-14.md -------------------------------------------------------------------------------- /Reviews/Daily Notes/2025-11-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Reviews/Daily Notes/2025-11-18.md -------------------------------------------------------------------------------- /Reviews/Decisions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Reviews/Quarterly Reviews/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Reviews/Weekly Review/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Structure Notes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Structure Notes/Networked Thinking System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Structure Notes/Networked Thinking System.md -------------------------------------------------------------------------------- /Structure Notes/System Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Structure Notes/System Design.md -------------------------------------------------------------------------------- /Structure Notes/Thinking and Learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Structure Notes/Thinking and Learning.md -------------------------------------------------------------------------------- /Templates/Atomic Note Template (Anki).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Atomic Note Template (Anki).md -------------------------------------------------------------------------------- /Templates/Atomic Note Template (Default).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Atomic Note Template (Default).md -------------------------------------------------------------------------------- /Templates/Daily Note Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Daily Note Template.md -------------------------------------------------------------------------------- /Templates/Decision Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Decision Template.md -------------------------------------------------------------------------------- /Templates/General Note Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/General Note Template.md -------------------------------------------------------------------------------- /Templates/Meeting Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Meeting Template.md -------------------------------------------------------------------------------- /Templates/Person Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Person Template.md -------------------------------------------------------------------------------- /Templates/Quarterly Review Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Quarterly Review Template.md -------------------------------------------------------------------------------- /Templates/Reference Note Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Reference Note Template.md -------------------------------------------------------------------------------- /Templates/Structure Note Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Structure Note Template.md -------------------------------------------------------------------------------- /Templates/Vocabulary Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Vocabulary Template.md -------------------------------------------------------------------------------- /Templates/Weekly Review Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrgilbertson/networked-thinking/HEAD/Templates/Weekly Review Template.md -------------------------------------------------------------------------------- /Vocabulary Notes/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------