├── 01 - Personal ├── Daily │ └── .gitkeep ├── Plans │ └── .gitkeep ├── Fleeting │ └── .gitkeep ├── Health │ └── .gitkeep └── Reflections │ └── .gitkeep ├── 02 - Knowledge ├── Computer │ ├── .gitkeep │ └── Algorithm_complexity.md ├── Health │ └── .gitkeep ├── History │ └── .gitkeep ├── Literature │ └── .gitkeep └── Philosophy │ └── .gitkeep ├── 03 - Projects ├── Project1 │ └── .gitkeep ├── Project2 │ └── .gitkeep └── Project3 │ └── .gitkeep ├── 04 - References ├── Articles │ └── .gitkeep ├── Books │ └── .gitkeep ├── Courses │ └── .gitkeep └── Tutorials │ └── .gitkeep ├── .obsidian ├── community-plugins.json ├── backlink.json ├── app.json ├── templates.json ├── appearance.json ├── daily-notes.json ├── graph.json ├── core-plugins.json ├── types.json └── workspace.json ├── .gitignore ├── 99 - Meta ├── Templates │ ├── (TEMPLATE) Task.md │ ├── (TEMPLATE) Studies.md │ ├── (TEMPLATE) Reflection.md │ ├── (TEMPLATE) Review.md │ ├── (TEMPLATE) Daily.md │ ├── (TEMPLATE) Idea.md │ └── (TEMPLATE) Project.md └── System │ ├── General guide.md │ ├── Guide to Tags and Links - Note Organization in Obsidian.md │ ├── Practical Usage Guide.md │ └── Organizational Methods in Obsidian.md ├── LICENSE ├── 00 - Dashboard └── HOME.md └── README.md /01 - Personal/Daily/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01 - Personal/Plans/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01 - Personal/Fleeting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01 - Personal/Health/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02 - Knowledge/Computer/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02 - Knowledge/Health/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02 - Knowledge/History/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 - Projects/Project1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 - Projects/Project2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 - Projects/Project3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04 - References/Articles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04 - References/Books/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04 - References/Courses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.obsidian/community-plugins.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /01 - Personal/Reflections/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02 - Knowledge/Literature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02 - Knowledge/Philosophy/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04 - References/Tutorials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.obsidian/backlink.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlinkInDocument": true 3 | } -------------------------------------------------------------------------------- /.obsidian/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "propertiesInDocument": "visible" 3 | } -------------------------------------------------------------------------------- /.obsidian/templates.json: -------------------------------------------------------------------------------- 1 | { 2 | "folder": "99 - Meta/Templates" 3 | } -------------------------------------------------------------------------------- /.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme": "obsidian", 3 | "cssTheme": "", 4 | "accentColor": "" 5 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .trash/ 2 | .DS_Store 3 | 4 | 5 | 6 | 7 | 8 | # Ignore Smart Environment folder 9 | .smart-env 10 | -------------------------------------------------------------------------------- /.obsidian/daily-notes.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "99 - Meta/Templates/(TEMPLATE) Daily", 3 | "folder": "01 - Personal/Daily" 4 | } -------------------------------------------------------------------------------- /02 - Knowledge/Computer/Algorithm_complexity.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: [Algorithm Notes] 3 | tags: 4 | - type/study 5 | - context/academic 6 | - theme/algorithms 7 | - status/in-progress 8 | date: 2024-01-01 9 | last_updated: 2024-01-10 10 | --- 11 | 12 | # Algorithm Complexity 13 | 14 | ## Overview 15 | Key concepts of algorithmic complexity analysis. 16 | 17 | ## Content 18 | 1. Big O Notation 19 | 2. Time Complexity 20 | 3. Space Complexity 21 | 22 | ## References 23 | - [[Data Structures]] 24 | - [[Algorithm Analysis]] 25 | -------------------------------------------------------------------------------- /99 - Meta/Templates/(TEMPLATE) Task.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Task - {{title}} 4 | tags: 5 | - type/task 6 | - context/studies 7 | - theme/default 8 | - priority/high 9 | - status/in-progress 10 | date: {{date}} 11 | last_updated: {{date}} 12 | --- 13 | 14 | # {{title}} 15 | 16 | ## Due date 17 | - {{date}} 18 | 19 | ## Description 20 | [Brief description of the task] 21 | 22 | ## Steps 23 | - [ ] Step 1 24 | - [ ] Step 2 25 | - [ ] Step 3 26 | 27 | ## Notes 28 | [Additional important information or context] 29 | 30 | ## References 31 | - [Link description](url) -------------------------------------------------------------------------------- /.obsidian/graph.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapse-filter": false, 3 | "search": "", 4 | "showTags": true, 5 | "showAttachments": false, 6 | "hideUnresolved": false, 7 | "showOrphans": true, 8 | "collapse-color-groups": true, 9 | "colorGroups": [], 10 | "collapse-display": true, 11 | "showArrow": false, 12 | "textFadeMultiplier": 0, 13 | "nodeSizeMultiplier": 1, 14 | "lineSizeMultiplier": 1, 15 | "collapse-forces": false, 16 | "centerStrength": 0.518713248970312, 17 | "repelStrength": 15.0520833333333, 18 | "linkStrength": 1, 19 | "linkDistance": 250, 20 | "scale": 0.13168724279835375, 21 | "close": true 22 | } -------------------------------------------------------------------------------- /99 - Meta/Templates/(TEMPLATE) Studies.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Study - {{title}} 4 | tags: 5 | - type/study 6 | - context/studies 7 | - theme/default 8 | - status/in-progress 9 | - review/pending 10 | date: {{date}} 11 | last_updated: {{date}} 12 | --- 13 | 14 | # Study: {{title}} 15 | 16 | ## Objective 17 | What is the goal of this study? 18 | 19 | ## Content 20 | ### Topic 1 21 | Main content here... 22 | 23 | ### Topic 2 24 | Main content here... 25 | 26 | ## Review Questions 27 | - Question 1? 28 | - Question 2? 29 | 30 | ## Summary 31 | Write a summary of what you've learned. 32 | 33 | ## References 34 | - [Reference 1](link) 35 | - [Reference 2](link) -------------------------------------------------------------------------------- /99 - Meta/Templates/(TEMPLATE) Reflection.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Reflection - {{title}} 4 | tags: 5 | - type/reflection 6 | - context/personal 7 | - theme/default 8 | - review/pending 9 | date: {{date}} 10 | last_updated: {{date}} 11 | --- 12 | 13 | # Reflection: {{title}} 14 | 15 | ## Context 16 | Describe the situation or context that led to this reflection. 17 | 18 | ## Thoughts 19 | - Initial thoughts 20 | - Deeper reflections 21 | 22 | ## Insights & Realizations 23 | - Insight 1 24 | - Insight 2 25 | 26 | ## Questions & Future Considerations 27 | - How does this connect to [[related topic]]? 28 | - What can I learn from this? 29 | - How can I apply these insights? 30 | 31 | ## References 32 | - [Reference 1](link) 33 | - [Reference 2](link) -------------------------------------------------------------------------------- /.obsidian/core-plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "file-explorer": true, 3 | "global-search": true, 4 | "switcher": true, 5 | "graph": true, 6 | "backlink": true, 7 | "canvas": true, 8 | "outgoing-link": true, 9 | "tag-pane": true, 10 | "properties": false, 11 | "page-preview": true, 12 | "daily-notes": true, 13 | "templates": true, 14 | "note-composer": true, 15 | "command-palette": true, 16 | "slash-command": false, 17 | "editor-status": true, 18 | "bookmarks": true, 19 | "markdown-importer": false, 20 | "zk-prefixer": false, 21 | "random-note": false, 22 | "outline": true, 23 | "word-count": true, 24 | "slides": false, 25 | "audio-recorder": false, 26 | "workspaces": false, 27 | "file-recovery": true, 28 | "publish": false, 29 | "sync": false 30 | } -------------------------------------------------------------------------------- /99 - Meta/Templates/(TEMPLATE) Review.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Review - {{title}} 4 | tags: 5 | - type/review 6 | - context/studies 7 | - theme/default 8 | - status/in-progress 9 | - review/pending 10 | date: {{date}} 11 | last_updated: {{date}} 12 | related_study: [[original study note]] 13 | --- 14 | 15 | # Review: {{title}} 16 | 17 | ## Review Purpose 18 | What specific aspects need reviewing? 19 | 20 | ## Topics to Review 21 | - Topic 1 22 | - Topic 2 23 | 24 | ## Understanding Check 25 | - [ ] Topic 1 fully understood 26 | - [ ] Topic 2 fully understood 27 | 28 | ## Questions & Gaps 29 | - What remains unclear? 30 | - How can I apply this knowledge? 31 | 32 | ## Next Steps 33 | - [ ] Areas needing further study 34 | - [ ] Practical applications to try 35 | 36 | ## References 37 | - [Reference 1](link) 38 | - [Reference 2](link) -------------------------------------------------------------------------------- /99 - Meta/Templates/(TEMPLATE) Daily.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Daily Note {{date}} 4 | tags: 5 | - type/daily 6 | - context/personal 7 | date: {{date}} 8 | last_updated: {{date}} 9 | --- 10 | 11 | # Daily Note - {{date}} 12 | 13 | ## Today's Focus 14 | Main goal for today: 15 | 16 | ## Wellbeing Metrics 17 | - Sleep: _/10 18 | - Energy: _/10 19 | - Mood: _/10 20 | - Productivity: _/10 21 | 22 | ## Habits 23 | - [ ] Exercise 24 | - [ ] Meditation 25 | - [ ] Reading 26 | - [ ] Water (2L) 27 | 28 | ## Today's Notes 29 | ### How I'm Feeling 30 | [Write about your day and emotions] 31 | 32 | ### Learnings & Insights 33 | - [Insight 1] 34 | 35 | ### Gratitude 36 | 1. 37 | 2. 38 | 3. 39 | 40 | ## Connected Notes 41 | - [[Related note 1]] 42 | - [[Related note 2]] 43 | 44 | ## Tomorrow's Intent 45 | ### Main Focus 46 | [Primary objective] 47 | 48 | ### Top 3 Priorities 49 | 1. 50 | 2. 51 | 3. 52 | 53 | --- -------------------------------------------------------------------------------- /99 - Meta/Templates/(TEMPLATE) Idea.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Idea - {{title}} 4 | tags: 5 | - type/idea 6 | - context/default 7 | - theme/default 8 | - status/idea 9 | date: {{date}} 10 | last_updated: {{date}} 11 | --- 12 | 13 | # Idea: {{title}} 14 | 15 | ## Description 16 | Describe the idea clearly and concisely. 17 | 18 | ## Context & Origin 19 | What sparked this idea? In what context did it emerge? 20 | 21 | ## Potential Applications 22 | - Application 1 23 | - Application 2 24 | 25 | ## Development Thoughts 26 | - Initial considerations 27 | - Possible directions 28 | - Challenges to consider 29 | 30 | ## Next Steps 31 | - [ ] Research needed 32 | - [ ] People to discuss with 33 | - [ ] Resources to explore 34 | 35 | ## Questions to Explore 36 | - What problems could this solve? 37 | - What obstacles might arise? 38 | - Who could benefit from this? 39 | 40 | ## References & Inspiration 41 | - [Reference 1](link) 42 | - [Reference 2](link) -------------------------------------------------------------------------------- /.obsidian/types.json: -------------------------------------------------------------------------------- 1 | { 2 | "types": { 3 | "aliases": "aliases", 4 | "cssclasses": "multitext", 5 | "tags": "tags", 6 | "excalidraw-plugin": "text", 7 | "excalidraw-export-transparent": "checkbox", 8 | "excalidraw-mask": "checkbox", 9 | "excalidraw-export-dark": "checkbox", 10 | "excalidraw-export-padding": "number", 11 | "excalidraw-export-pngscale": "number", 12 | "excalidraw-export-embed-scene": "checkbox", 13 | "excalidraw-link-prefix": "text", 14 | "excalidraw-url-prefix": "text", 15 | "excalidraw-link-brackets": "checkbox", 16 | "excalidraw-onload-script": "text", 17 | "excalidraw-linkbutton-opacity": "number", 18 | "excalidraw-default-mode": "text", 19 | "excalidraw-font": "text", 20 | "excalidraw-font-color": "text", 21 | "excalidraw-border-color": "text", 22 | "excalidraw-css": "text", 23 | "excalidraw-autoexport": "text", 24 | "excalidraw-embeddable-theme": "text", 25 | "excalidraw-open-md": "checkbox", 26 | "data": "date", 27 | "metrics": "number" 28 | } 29 | } -------------------------------------------------------------------------------- /99 - Meta/Templates/(TEMPLATE) Project.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Project - {{title}} 4 | tags: 5 | - type/project 6 | - context/default 7 | - theme/default 8 | - priority/high 9 | - status/planning 10 | date: {{date}} 11 | last_updated: {{date}} 12 | --- 13 | 14 | # Project: {{title}} 15 | 16 | ## Overview 17 | - **Main Objective**: 18 | - **Current Status**: 19 | 20 | ## Timeline 21 | - **Start Date**: 22 | - **Due Date**: 23 | - **Key Milestones**: 24 | 1. Milestone 1 25 | 2. Milestone 2 26 | 27 | ## Dependencies 28 | ### Prerequisites 29 | - Must be completed first: [[project1]], [[project2]] 30 | - Blocking: [[project3]], [[project4]] 31 | 32 | ## Required Resources 33 | - [ ] Resource 1 34 | - [ ] Resource 2 35 | 36 | ## Tasks 37 | ### Phase 1: Planning 38 | - [ ] Task 1.1 39 | - [ ] Task 1.2 40 | 41 | ### Phase 2: Execution 42 | - [ ] Task 2.1 43 | - [ ] Task 2.2 44 | 45 | ## Progress Log 46 | ### {{date}} 47 | - Completed: 48 | - Next steps: 49 | - Blockers: 50 | 51 | ## References & Resources 52 | - [Link 1](url) - Description 53 | - [Link 2](url) - Description -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 jeff 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /00 - Dashboard/HOME.md: -------------------------------------------------------------------------------- 1 | # 🎯 Personal Dashboard 2 | 3 | > [!quote] Thought of the Day 4 | > "Life is what happens while you're busy making other plans." - John Lennon 5 | 6 | > [!warning] **Important Notice** 7 | > - This dashboard is just an example, which assumes notes that don't exist in your vault and the "Dataview" plugin. 8 | > - Please adapt it to your use. 9 | > - Take this as inspiration to create your own dashboard. 10 | 11 | 12 | ## 🌅 Quick Links 13 | - [[Routine|My Routine]] 14 | - [[Training|Training Program]] 15 | - [[Diet|Diet]] 16 | - [[01 - Personal/Daily/{{date}}|Today's Entry]] 17 | - [[Tasks|Pending Tasks]] 18 | 19 | ## 🎯 Focus Areas 20 | 21 | > [!info] Active Studies 22 | > - [[02 - Knowledge/Computing/Cybersecurity|🔒 Cybersecurity]] 23 | > - [[02 - Knowledge/Computing/Development|💻 Development]] 24 | > - [[02 - Knowledge/Humanities/Stoicism|📚 Stoicism]] 25 | 26 | > [!tip] Ongoing Projects 27 | > - [[03 - Projects/Project 1|🚀 Main Project]] 28 | > - [[03 - Projects/Project 2|🎮 Game Dev]] 29 | > - [[Tasks#In Progress|📋 View All]] 30 | 31 | ## 💪 Health & Wellness 32 | 33 | > [!success] Routines & Habits 34 | > ```dataview 35 | > TASK FROM "01 - Personal/Routine" 36 | > WHERE !completed 37 | > LIMIT 5 38 | > ``` 39 | 40 | > [!note] Upcoming Workouts 41 | > ```dataview 42 | > LIST FROM #type/workout AND #status/in-progress 43 | > LIMIT 3 44 | > ``` 45 | 46 | ## 📚 Continuous Learning 47 | 48 | > [!note] Latest Study Notes 49 | > ```dataview 50 | > TABLE file.ctime as "Created" 51 | > FROM "02 - Knowledge" 52 | > SORT file.ctime DESC 53 | > LIMIT 3 54 | > ``` 55 | 56 | --- 57 | ## ⚡ Quick Capture 58 | - [ ] New Task 59 | - [ ] New Idea 60 | - [ ] New Project 61 | 62 | --- 63 | *Last updated: {{date}}* -------------------------------------------------------------------------------- /99 - Meta/System/General guide.md: -------------------------------------------------------------------------------- 1 | # **Knowledge Base - Personal Vault in Obsidian** 2 | 3 | This repository contains my Obsidian vault, where I centralize my notes, projects, and studies. The system was designed with a focus on simplicity and efficiency, using a carefully limited folder structure complemented by a robust system of tags and links. 4 | 5 | ## **System Principles** 6 | 7 | ### **Limited Hierarchy** 8 | The system adopts a controlled depth structure, allowing only one level of nesting within the main folders. This decision is based on proven knowledge management principles: 9 | 10 | - **Access Efficiency**: Maximum of two clicks to reach any information 11 | - **Complexity Reduction**: Avoids "analysis paralysis" when deciding where to store notes 12 | - **Redundancy Prevention**: Minimizes content duplication 13 | - **Simplified Maintenance**: Facilitates content organization and reorganization 14 | 15 | ### **Flexibility through Tags and Links** 16 | Instead of using deep folder hierarchies, the system uses: 17 | - Tags for multidimensional categorization 18 | - Links to create natural connections between content 19 | - MOCs (Maps of Content) to visualize hierarchies when needed 20 | 21 | ## **Folder Structure** 22 | 23 | ### **Main Folders:** 24 | 25 | - 📁 **00 - Dashboard** 26 | Central hub of the vault, with overviews and quick links. 27 | 28 | - 📁 **01 - Personal** 29 | Personal and daily content. 30 | *Subfolders*: Daily, Fleeting, Plans, Reflections, Health 31 | 32 | - 📁 **02 - Knowledge** 33 | Study notes by area. 34 | *Subfolders*: Computing, Philosophy, History, Literature, Health 35 | 36 | - 📁 **03 - Projects** 37 | Projects in development. 38 | *Subfolders*: Software, Games, Personal 39 | 40 | - 📁 **04 - References** 41 | Source material and bibliography. 42 | *Subfolders*: Articles, Courses, Books, Tutorials 43 | 44 | - 📁 **99 - Meta** 45 | System and templates. 46 | *Subfolders*: Templates, System 47 | 48 | ## **Tagging System** 49 | For more detailed information, visit the [[How to classify notes with tags|Tags List]] and [[Vault Usage Guide|Vault Guidelines]] 50 | 51 | ### **1. Type Tags** 52 | - `#type/task` → Tasks 53 | - `#type/project` → Projects 54 | - `#type/daily` → Daily notes 55 | - `#type/study` → Study material 56 | - `#type/idea` → Insights 57 | - `#type/reflection` → Reflections 58 | - `#type/habits` → Routines and habits 59 | - `#type/review` → Review material 60 | 61 | ### **2. Context Tags** 62 | - `#context/studies` → Learning 63 | - `#context/work` → Professional 64 | - `#context/personal` → Personal development 65 | - `#context/academic` → University 66 | - `#context/hobbies` → Personal interests 67 | 68 | ### **3. Theme Tags** 69 | 70 | #### **Computing** 71 | - `#theme/cybersecurity` → Security 72 | - `#theme/dev` → Development 73 | - `#theme/os` → Operating systems 74 | - `#theme/algorithms` → Algorithms and structures 75 | - `#theme/AI` → Artificial intelligence 76 | 77 | #### **Humanities** 78 | - `#theme/psychology` → Psychology 79 | - `#theme/stoicism` → Stoic philosophy 80 | - `#theme/history` → History 81 | - `#theme/mythology` → Mythology 82 | 83 | #### **Health** 84 | - `#theme/fitness` → Fitness and nutrition 85 | 86 | #### **Culture** 87 | - `#theme/music` → Music 88 | - `#theme/movies` → Cinema 89 | - `#theme/drawing` → Art 90 | - `#theme/games` → Games 91 | - `#theme/literature` → Literature 92 | 93 | ### **4. Status Tags** 94 | - `#priority/[high|medium|low]` → Prioritization 95 | - `#status/[completed|in-progress|planning|idea]` → Current state 96 | - `#review/[pending|completed|needed]` → Review status 97 | 98 | ## **Integrated Methods** 99 | 100 | The system incorporates several proven methods: 101 | 102 | ### **Main Methods** 103 | - **Adapted Pomodoro**: 60-90 min (focus) / 15-20 min (rest) cycles (Ultradian cycles) 104 | - **Zettelkasten**: Interconnected atomic notes 105 | - **Cornell**: Note structuring 106 | - **Pareto**: Focus on most relevant content 107 | - **Spaced Repetition**: Increasing review intervals 108 | - **Feynman**: Explain to learn 109 | 110 | ### **Complementary Methods** 111 | - **Kanban**: Progress visualization 112 | - **Active Recall**: Active retrieval 113 | - **SQ3R**: Structured reading 114 | 115 | ## **Conclusion** 116 | 117 | This system was designed to maximize efficiency while maintaining simplicity. The limited hierarchical structure, combined with tags and links, offers a balance between organization and flexibility, allowing easy navigation and maintenance while growing organically with use. -------------------------------------------------------------------------------- /99 - Meta/System/Guide to Tags and Links - Note Organization in Obsidian.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Tags and Links in Obsidian 4 | - Organization System 5 | tags: 6 | - context/studies 7 | - type/study 8 | - theme/organization 9 | - theme/productivity 10 | - status/completed 11 | date: 2024-10-30 12 | --- 13 | 14 | # **Guide to Tags and Links - Note Organization in Obsidian** 15 | 16 | ## **1. Note Type Tags** 17 | Identify the primary nature of the note, helping with basic content categorization. 18 | 19 | ### Examples: 20 | - `#type/task` → To-do items 21 | - `#type/project` → Projects in development 22 | - `#type/daily` → Daily notes 23 | - `#type/study` → Learning material 24 | - `#type/idea` → Insights and brainstorming 25 | - `#type/reflection` → Personal thoughts and analysis 26 | - `#type/habits` → Routines and habits 27 | 28 | ## **2. Context Tags** 29 | Indicate the environment or circumstance where the note applies. 30 | 31 | ### Examples: 32 | - `#context/studies` → General learning material 33 | - `#context/work` → Professional activities 34 | - `#context/personal` → Personal development 35 | - `#context/academic` → University studies 36 | - `#context/hobbies` → Recreational activities 37 | 38 | ## **3. Theme Tags** 39 | Organize content by area of knowledge or interest. 40 | 41 | ### Computing and Technology 42 | - `#theme/cybersecurity` → Information security 43 | - `#theme/dev` → Software development 44 | - `#theme/os` → Operating systems 45 | - `#theme/algorithms` → Algorithms and data structures 46 | - `#theme/AI` → Artificial intelligence 47 | 48 | ### Humanities 49 | - `#theme/psychology` → Human behavior 50 | - `#theme/stoicism` → Stoic philosophy 51 | - `#theme/history` → Historical studies 52 | - `#theme/mythology` → Mythological studies 53 | 54 | ### Health and Wellness 55 | - `#theme/muay-thai` → Martial arts 56 | - `#theme/fitness` → Exercise and nutrition 57 | 58 | ### Culture and Entertainment 59 | - `#theme/music` → Musical studies 60 | - `#theme/movies` → Cinema and series 61 | - `#theme/drawing` → Visual arts 62 | - `#theme/games` → Games and game dev 63 | - `#theme/literature` → Books and reading 64 | 65 | ## **4. Metadata Tags** 66 | Control notes' status, priority, and review needs. 67 | 68 | ### Status and Progress 69 | - `#status/completed` → Finished 70 | - `#status/in-progress` → Under development 71 | - `#status/planning` → Initial phase 72 | - `#status/idea` → Initial concept 73 | 74 | ### Prioritization 75 | - `#priority/high` → Urgent 76 | - `#priority/medium` → Important 77 | - `#priority/low` → Can wait 78 | 79 | ### Review Control 80 | - `#review/pending` → Awaiting review 81 | - `#review/completed` → Already reviewed 82 | - `#review/needed` → Needs review 83 | 84 | ## 5. Tag Usage Best Practices 85 | 86 | #### Required Minimum Tags 87 | To maintain consistency and facilitate search, each note should include at minimum: 88 | 1. One type tag (`#type/...`) 89 | 2. One context tag (`#context/...`) 90 | 3. One theme tag (`#theme/...`) 91 | 4. One status/priority tag when applicable 92 | 93 | ## **6. Using Links** 94 | Links are fundamental for creating connections between notes, forming an interconnected knowledge network. 95 | 96 | ### Link Types 97 | 98 | 1. **Direct Links** 99 | - Syntax: `[[Note Name]]` 100 | - Usage: Directly connects to another note 101 | - Example: `[[Cryptography Algorithms]]` 102 | 103 | 2. **Alias Links** 104 | - Syntax: `[[Note Name|Displayed Text]]` 105 | - Usage: Shows different text from the note title 106 | - Example: `[[Cryptography Algorithms|Encryption Methods]]` 107 | 108 | 3. **Section Links** 109 | - Syntax: `[[Note Name#Section]]` 110 | - Usage: Takes you to a specific section of a note 111 | - Example: `[[Cryptography#RSA]]` 112 | 113 | ### Recommended Link Practices 114 | 115 | 1. **Meaningful Connections** 116 | - Create links only when there's a relevant relationship 117 | - Avoid excessive links that might distract 118 | 119 | 2. **Index Notes (MOCs)** 120 | - Create notes that serve as maps of content 121 | - Use links to organize related themes 122 | - Example: A "[[Security Projects]]" note with links to all related projects 123 | 124 | 3. **Bidirectional Links** 125 | - Take advantage of Obsidian's automatic backlinks 126 | - Periodically review backlinks to discover new connections 127 | 128 | 4. **Hierarchy through Links** 129 | - Use links to create flexible hierarchical structures 130 | - Example: `[[Programming]]` → `[[Algorithms]]` → `[[Sorting]]` 131 | 132 | ## **7. Complete Usage Example** 133 | 134 | ### Title: **RSA Implementation** 135 | **Tags**: 136 | - `#theme/cybersecurity` 137 | - `#context/studies` 138 | - `#type/study` 139 | - `#priority/high` 140 | - `#status/in-progress` 141 | - `#review/pending` 142 | 143 | **Related Links**: 144 | - [[Asymmetric Cryptography]] 145 | - [[Security Projects]] 146 | - [[Cryptography Mathematics#Prime Numbers]] 147 | 148 | **Content**: 149 | Details about RSA implementation, with references to fundamental concepts through links. 150 | -------------------------------------------------------------------------------- /99 - Meta/System/Practical Usage Guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Vault Guidelines 4 | - Vault Directives 5 | tags: 6 | - context/studies 7 | - type/study 8 | - theme/organization 9 | - theme/productivity 10 | - status/completed 11 | date: 2024-10-20 12 | last_updated: 2024-10-29 13 | --- 14 | 15 | ## **Practical Usage Guide** 16 | 17 | ### **1. Creating New Notes** 18 | 19 | #### **Decision Process** 20 | 1. Identify the main note type (task, study, reflection, etc.) 21 | 2. Choose the appropriate main folder: 22 | - Personal knowledge → 02 - Knowledge 23 | - Reflections/diary → 01 - Personal 24 | - Source material → 04 - References 25 | - Active projects → 03 - Projects 26 | 27 | #### **Naming Convention** 28 | - Use descriptive and concise names 29 | - Avoid special characters 30 | - Examples: 31 | - `Introduction to Algorithms` 32 | - `2024-01-01 Daily Reflection` 33 | - `Project Game Engine` 34 | 35 | ### **2. Using Tags Effectively** 36 | For more detailed examples of tag usage, check [[How to classify notes with tags|Tag Organization System]] 37 | 38 | #### **Recommended Tag Structure** 39 | Always include at minimum: 40 | 1. One type tag (`#type/...`) 41 | 2. One context tag (`#context/...`) 42 | 3. One theme tag (`#theme/...`) 43 | 4. One status/priority tag when applicable 44 | 45 | Example: 46 | ```markdown 47 | tags: 48 | - type/study 49 | - context/academic 50 | - theme/algorithms 51 | - status/in-progress 52 | - priority/high 53 | ``` 54 | 55 | ### **3. Creating Connections** 56 | 57 | #### **Effective Links** 58 | - Use bidirectional links (`[[]]`) to connect related concepts 59 | - Create MOCs (Maps of Content) for main themes 60 | - MOC Example: 61 | ```markdown 62 | # MOC - Algorithms 63 | ## Fundamentals 64 | - [[Algorithm Complexity]] 65 | - [[Basic Data Structures]] 66 | 67 | ## Specific Algorithms 68 | - [[Sorting Algorithms]] 69 | - [[Search Algorithms]] 70 | ``` 71 | 72 | ### **4. Daily Workflow** 73 | 74 | #### **Recommended Routine** 75 | 1. **Start of Day** 76 | - Review notes with `#review/pending` 77 | - Update project status 78 | - Create daily note if needed 79 | 80 | 2. **During the Day** 81 | - Use fleeting notes for quick capture 82 | - Process fleeting notes regularly 83 | - Update status and tags as needed 84 | 85 | 3. **End of Day** 86 | - Review created notes 87 | - Check necessary connections 88 | - Plan future reviews 89 | 90 | ### **5. System Maintenance** 91 | 92 | #### **Weekly Review** 93 | 1. Process all fleeting notes 94 | 2. Update project status 95 | 3. Check pending tags 96 | 4. Plan next week's reviews 97 | 98 | #### **Monthly Review** 99 | 1. Archive completed projects 100 | 2. Update main MOCs 101 | 3. Check tag consistency 102 | 4. Identify areas for expansion/improvement 103 | 104 | ### **6. Common Problems and Solutions** 105 | 106 | #### **When Unsure Where to Put a Note** 107 | 1. Consider the note's main use 108 | 2. Use tags for multiple categories 109 | 3. Create links to related contexts 110 | 4. If still unsure, use the most generic folder and specific tags 111 | 112 | #### **When a Note Grows Too Large** 113 | 1. Split into smaller, more specific notes 114 | 2. Create a MOC note to connect them 115 | 3. Keep only the summary in the original note 116 | 4. Use links to detailed notes 117 | 118 | ### **7. Productivity Tips** 119 | 120 | #### **Recommended Shortcuts** 121 | - Configure template hotkeys 122 | - Create shortcuts for common tags 123 | - Use quick switcher for navigation 124 | 125 | #### **Essential Plugins** 126 | - Calendar for temporal view 127 | - Dataview for queries 128 | - Kanban for projects 129 | - Graph View for visualizing connections 130 | 131 | ### **8. Usage Examples** 132 | 133 | #### **Study Note** 134 | ```markdown 135 | --- 136 | aliases: [Sorting Algorithms] 137 | tags: 138 | - type/study 139 | - context/academic 140 | - theme/algorithms 141 | - status/in-progress 142 | date: 2024-01-01 143 | --- 144 | 145 | # Sorting Algorithms 146 | 147 | ## Objective 148 | Understanding main sorting algorithms and their complexities. 149 | 150 | ## Content 151 | 1. Bubble Sort 152 | 2. Quick Sort 153 | 3. Merge Sort 154 | 155 | ## Connections 156 | - [[Algorithm Complexity]] 157 | - [[Data Structures]] 158 | 159 | ## Notes 160 | [Content...] 161 | ``` 162 | 163 | #### **Project Note** 164 | ```markdown 165 | --- 166 | aliases: [Project: Game Engine] 167 | tags: 168 | - type/project 169 | - context/work 170 | - theme/dev 171 | - status/planning 172 | date: 2024-01-01 173 | --- 174 | 175 | # Project: Game Engine 176 | 177 | ## Objective 178 | Create basic 2D game engine. 179 | 180 | ## Stages 181 | 1. [ ] Basic setup 182 | 2. [ ] Rendering system 183 | 3. [ ] Physics system 184 | 185 | ## Required Resources 186 | - C++ 187 | - OpenGL 188 | 189 | ## Connections 190 | - [[Game Development]] 191 | - [[OpenGL Basics]] 192 | ``` 193 | 194 | ## **Conclusion** 195 | 196 | This system is designed to grow organically with use. The key is maintaining consistency in applying basic principles while allowing enough flexibility for adaptation to individual needs. Start with the basic structures and expand as needed, always keeping focus on simplicity and usability. -------------------------------------------------------------------------------- /99 - Meta/System/Organizational Methods in Obsidian.md: -------------------------------------------------------------------------------- 1 | --- 2 | aliases: 3 | - Organization in Obsidian 4 | - Study Methods 5 | tags: 6 | - context/studies 7 | - type/study 8 | - theme/organization 9 | - theme/productivity 10 | - status/in-progress 11 | date: 2024-10-20 12 | last_updated: 2024-10-21 13 | --- 14 | 15 | # Organizational Methods in Obsidian 16 | 17 | ## Introduction 18 | 19 | This note describes the main organizational methods that can be implemented in Obsidian to improve knowledge management, studies, and projects. They include **Zettelkasten**, the **Cornell Method**, the **Pareto Principle (80/20)**, **Spaced Repetition**, **Kanban**, **Elaborative Interrogation**, the **Pomodoro Technique**, and the **Feynman Technique**. Here, we describe how to apply each of these methods to your notes and routine management. 20 | 21 | --- 22 | 23 | ## 1. Zettelkasten (Card Method) 24 | 25 | **Concept**: Each note should be an "atomic note," containing a single idea. Connecting these notes through internal links builds a network of knowledge. 26 | 27 | ### How to apply in Obsidian: 28 | - **Atomic Notes**: Create smaller, more focused notes. Each note should address only one concept. 29 | - **Internal Links**: Connect related notes through `[[Note_Name]]` to create a web of interconnected ideas. 30 | - **MOC (Map of Content)**: Create MOC notes for larger topics, listing links to smaller notes about subtopics. 31 | - **Tags**: Classify notes with [[How to classify notes with tags|Tags in Obsidian]] 32 | 33 | #### Example: 34 | ```markdown 35 | # MOC - Cybersecurity 36 | ## Subtopics: 37 | - [[Cryptography]] 38 | - [[Firewall]] 39 | - [[DDoS Attacks]] 40 | ``` 41 | 42 | --- 43 | 44 | ## 2. Cornell Method for Study Notes 45 | 46 | **Concept**: Organizes notes into three parts: main notes, key points, and a final summary. 47 | 48 | ### How to apply in Obsidian: 49 | - **Main Notes**: Where you place discussed or learned topics. 50 | - **Key Points**: Main highlights or relevant questions. 51 | - **Final Summary**: Conclusion or synthesis of what was learned. 52 | 53 | #### Example Structure: 54 | ```markdown 55 | # Study of [Topic] 56 | 57 | ## Main Notes: 58 | - Concept 1 59 | - Concept 2 60 | 61 | ## Key Points: 62 | - Insight 1 63 | - Insight 2 64 | 65 | ## Summary: 66 | - Summary of what I learned. 67 | ``` 68 | 69 | --- 70 | 71 | ## 3. Pareto Principle (80/20) 72 | 73 | **Concept**: 80% of results come from 20% of efforts. Apply this by identifying the most important notes and reorganizing them for easy access. 74 | 75 | ### How to apply in Obsidian: 76 | - **Note Priority**: Mark the most important notes with tags like `#priority/high` and organize them for easy access. 77 | - **Reorganization**: Create a "Key Notes" section or use Obsidian's favorites panel for quick access. 78 | 79 | #### Example: 80 | ```markdown 81 | # MOC - Important Notes 82 | - [[Information Security]] 83 | - [[C++ Optimization]] 84 | ``` 85 | 86 | --- 87 | 88 | ## 4. Spaced Repetition Method 89 | 90 | **Concept**: Reviewing information at increasing intervals helps with long-term retention. 91 | 92 | ### How to apply in Obsidian: 93 | - **Spaced Repetition Plugin**: Use the Obsidian Spaced Repetition plugin to set automatic review reminders. 94 | - **Review Tags**: Add the `#type/review` tag to notes that need reviewing. 95 | 96 | #### Example: 97 | ```markdown 98 | tags: 99 | - type/review 100 | - theme/algorithms 101 | review_date: {{date}} 102 | ``` 103 | 104 | --- 105 | 106 | ## 5. Kanban (Task Boards) 107 | 108 | **Concept**: A visual method for tracking project progress. Ideal for dividing tasks and monitoring workflow. 109 | 110 | ### How to apply in Obsidian: 111 | - **Obsidian Kanban Plugin**: Use the plugin to create Kanban boards and visualize tasks. Create columns for project phases and move tasks according to progress. 112 | - **Project Management**: Ideal for managing game development stages or other personal projects. 113 | 114 | #### Example: 115 | ```markdown 116 | # Kanban - Game Development 117 | - **Concept**: 118 | - [ ] Create basic narrative 119 | - [ ] Define core mechanics 120 | - **Design**: 121 | - [ ] UI prototype 122 | - [ ] Character modeling 123 | ``` 124 | 125 | --- 126 | 127 | ## 6. Elaborative Interrogation 128 | 129 | **Concept**: Asking in-depth questions about the content helps with understanding and memorization. 130 | 131 | ### How to apply in Obsidian: 132 | - **Questions in Notes**: Add a questions section in your study notes, especially about complex topics. 133 | - **Reflection**: Ask questions that lead to deeper reflection on the content. 134 | 135 | #### Example: 136 | ```markdown 137 | ## Questions: 138 | - How can the concept of Amor Fati be applied to daily challenges? 139 | - How does this influence my decisions under pressure? 140 | ``` 141 | 142 | --- 143 | 144 | ## 7. Pomodoro Technique 145 | 146 | **Concept**: Divide study time into 25-minute focus blocks, followed by a short 5-minute break. After four cycles, take a longer break. 147 | 148 | #### Variation considering ultradian cycles 149 | 60-90 min of focus for 15-20 min rest (Ultradian cycles) 150 | 151 | ### How to apply in Obsidian: 152 | - **Task List**: Create a task list for the focus block and add time reminders. 153 | - **Timer**: Use a plugin or external application to control Pomodoro cycle times. 154 | 155 | #### Example: 156 | ```markdown 157 | # Pomodoro Tasks 158 | - [ ] Study data structures - 1 cycle 159 | - [ ] Review C++ concepts - 2 cycles 160 | - [ ] Research network security - 3 cycles 161 | ``` 162 | 163 | --- 164 | 165 | ## 8. Feynman Technique 166 | 167 | **Concept**: Teach what you're learning to someone as if it were simple. This helps identify gaps in understanding and consolidate knowledge. 168 | 169 | ### How to apply in Obsidian: 170 | - **Explanatory Notes**: Write explanations about the content as if you were teaching someone without prior knowledge. 171 | - **Review**: Always review your explanations to verify clarity and knowledge gaps. 172 | 173 | #### Example: 174 | ```markdown 175 | # Explaining Network Security 176 | 177 | Network security is like protecting a house, but instead of windows and doors, you have firewalls and encryption... 178 | ``` 179 | 180 | --- 181 | 182 | ## Conclusion 183 | 184 | These methods are powerful organizational tools that can be applied together in Obsidian, making your "second brain" more efficient and dynamic. Choose the methods that best adapt to your routine and adjust as needed. The combination of these practices will enhance your organization and information retention. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🗃️ Obsidian Vault Template 2 | 3 | A minimalist yet powerful template for organizing your Obsidian vault, focusing on simplicity and efficiency. The key feature of this system is its **intentionally controlled structure** with a two-level depth hierarchy, complemented by a robust properties and tagging system. 4 | 5 | ## ✨ Features 6 | 7 | - 📁 **Controlled Hierarchy**: Two-level depth maximum - keeps things organized yet simple! 8 | - 🏷️ Properties-based organization with comprehensive tagging 9 | - 🔗 Strategic use of links and MOCs (Maps of Content) 10 | - 📝 Ready-to-use templates for different note types 11 | - 🚀 Easy to start, powerful to scale 12 | 13 | ## 🎯 Why Use This Template? 14 | 15 | ### Key Benefits 16 | - **Simplicity**: Maximum two clicks to access any information 17 | - **Efficiency**: Reduces "analysis paralysis" when deciding where to store notes 18 | - **Flexibility**: Grows organically with your use 19 | - **Maintenance**: Easy to maintain and reorganize when needed 20 | 21 | ## 🚀 Getting Started 22 | 23 | 1. Clone this repository or download as ZIP 24 | 2. Open Obsidian 25 | 3. Select "Open folder as vault" and choose the template folder 26 | 4. Check `99 - Meta/System/` for detailed guides on how to use the system 27 | 28 | ## 📁 Folder Structure 29 | 30 | ``` 31 | . 32 | ├── 00 - Dashboard/ # Central hub of the vault 33 | ├── 01 - Personal/ # Personal content and diary 34 | │ ├── Daily/ 35 | │ ├── Fleeting/ 36 | │ ├── Plans/ 37 | │ ├── Reflections/ 38 | │ └── Health/ 39 | ├── 02 - Knowledge/ # Study notes by area 40 | │ ├── Computing/ # Examples of knowledge areas 41 | │ ├── Philosophy/ 42 | │ ├── History/ 43 | │ ├── Literature/ 44 | │ └── Health/ 45 | ├── 03 - Projects/ # Projects in development 46 | │ ├── Project1/ 47 | │ ├── Project2/ 48 | │ └── Project3/ 49 | ├── 04 - References/ # Source material and bibliography 50 | │ ├── Articles/ 51 | │ ├── Courses/ 52 | │ ├── Books/ 53 | │ └── Tutorials/ 54 | └── 99 - Meta/ # System and templates 55 | ├── Templates/ 56 | └── System/ 57 | ``` 58 | 59 | ## 📑 Note Properties Structure 60 | 61 | Every note in the system uses these standard properties in the YAML frontmatter: 62 | 63 | ```yaml 64 | --- 65 | aliases: [Alternative Names] 66 | tags: 67 | - type/study 68 | - context/academic 69 | - theme/algorithms 70 | - status/in-progress 71 | date: 2024-01-01 72 | last_updated: 2024-01-10 73 | --- 74 | ``` 75 | 76 | ### Example Note Structure 77 | 78 | [Check here](02%20-%20Knowledge/Computer/Algorithm_complexity.md) 79 | 80 | ## 🏷️ Tagging System 81 | Tags are implemented within the properties system as shown in the examples above. Check [tag guide](99%20-%20Meta/System/Guide%20to%20Tags%20and%20Links%20-%20Note%20Organization%20in%20Obsidian.md) for a complete list. 82 | 83 | ### 1. Type Tags 84 | Identify the nature of the note: 85 | ``` 86 | #type/task → Tasks 87 | #type/project → Projects 88 | #type/daily → Daily notes 89 | #type/study → Study material 90 | #type/idea → Insights 91 | #type/reflection → Reflections 92 | #type/habits → Routines and habits 93 | ``` 94 | 95 | ### 2. Context Tags 96 | Indicate the note's environment: 97 | ``` 98 | #context/studies → Learning 99 | #context/work → Professional 100 | #context/personal → Personal development 101 | #context/academic → University 102 | #context/hobbies → Personal interests 103 | ``` 104 | 105 | ### 3. Theme Tags 106 | Organize by knowledge area: 107 | ``` 108 | Computing: 109 | #theme/cybersecurity → Security 110 | #theme/dev → Development 111 | #theme/os → Operating systems 112 | #theme/algorithms → Algorithms and structures 113 | #theme/AI → Artificial intelligence 114 | 115 | ...and much more (see complete tag guide) 116 | ``` 117 | 118 | ### 4. Metadata Tags 119 | Control status and priority: 120 | ``` 121 | #status/[completed|in-progress|planning|idea] 122 | #priority/[high|medium|low] 123 | #review/[pending|completed|needed] 124 | ``` 125 | 126 | ### Tag Usage Best Practices 127 | 128 | #### Required Minimum Tags 129 | To maintain consistency and facilitate search, each note should include at minimum in its properties: 130 | 1. One type tag (`#type/...`) 131 | 2. One context tag (`#context/...`) 132 | 3. One theme tag (`#theme/...`) 133 | 4. One status/priority tag when applicable 134 | 135 | ## 🔗 Linking System 136 | 137 | ### Link Types 138 | 1. **Direct Links**: `[[Note Name]]` 139 | 2. **Alias Links**: `[[Note Name|Displayed Text]]` 140 | 3. **Section Links**: `[[Note Name#Section]]` 141 | 142 | ### Recommended Practices 143 | - Create meaningful connections 144 | - Use MOCs (Maps of Content) to organize themes 145 | - Leverage backlinks to discover relationships 146 | - Build flexible hierarchies through links 147 | 148 | ## 📚 Integrated Methods 149 | 150 | The system incorporates practices from: 151 | - **Zettelkasten**: Interconnected atomic notes 152 | - **PARA**: Projects, Areas, Resources, Archives 153 | - **Building a Second Brain**: Knowledge capture and organization 154 | - **GTD**: Getting Things Done for task management 155 | - **Feynman Technique**: Teaching to learn 156 | - **Interrogative Elaboration**: Question-based learning 157 | - **Cornell Method**: Systematic note-taking and review 158 | 159 | ## ⚙️ Suggested Plugins 160 | 161 | This template is designed to work without any community plugins, allowing you to start clean and build based on your needs. Here are some great plugin suggestions that can enhance your experience: 162 | 163 | ### Core functionality enhancers: 164 | - Dataview: For advanced data queries and dynamic content, making the best use of properties 165 | - Calendar: Better date management and daily notes 166 | - Tag Wrangler: Improved tag management 167 | - Homepage: Custom startup page 168 | - Iconize: Visual enhancement with icons 169 | 170 | ### Optional extensions: 171 | - Natural Language Dates: More intuitive date inputs 172 | - Kanban: Visual task management 173 | - Templater: Advanced template functionality 174 | 175 | All plugins are optional - feel free to install only what fits your workflow! 176 | 177 | ## 🤝 Contributing 178 | 179 | Contributions are welcome! Feel free to: 180 | 1. Create Issues with suggestions 181 | 2. Submit Pull Requests with improvements 182 | 3. Share your experiences using the template 183 | 4. Report bugs or problems 184 | 185 | ## 📝 License 186 | 187 | This project is under the MIT license. See the [LICENSE](LICENSE) file for more details. 188 | 189 | ## 🙏 Acknowledgments 190 | 191 | This template was inspired by various knowledge management systems and the Obsidian community. Special thanks to: 192 | - Zettelkasten Methodology 193 | - Tiago Forte's PARA System 194 | - r/Obsidian community 195 | -------------------------------------------------------------------------------- /.obsidian/workspace.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": { 3 | "id": "5324373015726ba8", 4 | "type": "split", 5 | "children": [ 6 | { 7 | "id": "4509724f8bf84da7", 8 | "type": "tabs", 9 | "children": [ 10 | { 11 | "id": "e7a7b303c61786dc", 12 | "type": "leaf", 13 | "state": { 14 | "type": "markdown", 15 | "state": { 16 | "file": "00 - Dashboard/HOME.md", 17 | "mode": "source", 18 | "backlinks": true, 19 | "source": false 20 | }, 21 | "icon": "lucide-file", 22 | "title": "HOME" 23 | } 24 | } 25 | ] 26 | } 27 | ], 28 | "direction": "vertical" 29 | }, 30 | "left": { 31 | "id": "136105fe5c0ddb96", 32 | "type": "split", 33 | "children": [ 34 | { 35 | "id": "57e20f04e8275926", 36 | "type": "tabs", 37 | "children": [ 38 | { 39 | "id": "68bb7de61e844525", 40 | "type": "leaf", 41 | "state": { 42 | "type": "file-explorer", 43 | "state": { 44 | "sortOrder": "alphabetical" 45 | }, 46 | "icon": "lucide-folder-closed", 47 | "title": "Files" 48 | } 49 | }, 50 | { 51 | "id": "9a10e6ef0d570334", 52 | "type": "leaf", 53 | "state": { 54 | "type": "search", 55 | "state": { 56 | "query": "tag:#contexto/pessoal", 57 | "matchingCase": false, 58 | "explainSearch": false, 59 | "collapseAll": false, 60 | "extraContext": false, 61 | "sortOrder": "alphabetical" 62 | }, 63 | "icon": "lucide-search", 64 | "title": "Search" 65 | } 66 | }, 67 | { 68 | "id": "4969f961c272dabd", 69 | "type": "leaf", 70 | "state": { 71 | "type": "bookmarks", 72 | "state": {}, 73 | "icon": "lucide-bookmark", 74 | "title": "Bookmarks" 75 | } 76 | } 77 | ] 78 | } 79 | ], 80 | "direction": "horizontal", 81 | "width": 300 82 | }, 83 | "right": { 84 | "id": "5de8b220cbeefcea", 85 | "type": "split", 86 | "children": [ 87 | { 88 | "id": "c2a7e015cce2c8b5", 89 | "type": "tabs", 90 | "children": [ 91 | { 92 | "id": "811f404e32f0ca6a", 93 | "type": "leaf", 94 | "state": { 95 | "type": "backlink", 96 | "state": { 97 | "file": "02 - Estudos/Obsidian/Como classificar notas com tags.md", 98 | "collapseAll": false, 99 | "extraContext": false, 100 | "sortOrder": "alphabetical", 101 | "showSearch": false, 102 | "searchQuery": "", 103 | "backlinkCollapsed": false, 104 | "unlinkedCollapsed": true 105 | }, 106 | "icon": "links-coming-in", 107 | "title": "Backlinks for Como classificar notas com tags" 108 | } 109 | }, 110 | { 111 | "id": "0ac43fd320574710", 112 | "type": "leaf", 113 | "state": { 114 | "type": "outgoing-link", 115 | "state": { 116 | "file": "02 - Estudos/Obsidian/Como classificar notas com tags.md", 117 | "linksCollapsed": false, 118 | "unlinkedCollapsed": true 119 | }, 120 | "icon": "links-going-out", 121 | "title": "Outgoing links from Como classificar notas com tags" 122 | } 123 | }, 124 | { 125 | "id": "d6f4130da538faf4", 126 | "type": "leaf", 127 | "state": { 128 | "type": "tag", 129 | "state": { 130 | "sortOrder": "frequency", 131 | "useHierarchy": true 132 | }, 133 | "icon": "lucide-tags", 134 | "title": "Tags" 135 | } 136 | }, 137 | { 138 | "id": "b177905d8a389fcc", 139 | "type": "leaf", 140 | "state": { 141 | "type": "outline", 142 | "state": { 143 | "file": "README.md" 144 | }, 145 | "icon": "lucide-list", 146 | "title": "Outline of README" 147 | } 148 | } 149 | ], 150 | "currentTab": 2 151 | } 152 | ], 153 | "direction": "horizontal", 154 | "width": 407.5 155 | }, 156 | "left-ribbon": { 157 | "hiddenItems": { 158 | "switcher:Open quick switcher": false, 159 | "graph:Open graph view": false, 160 | "canvas:Create new canvas": false, 161 | "daily-notes:Open today's daily note": false, 162 | "templates:Insert template": false, 163 | "command-palette:Open command palette": false 164 | } 165 | }, 166 | "active": "e7a7b303c61786dc", 167 | "lastOpenFiles": [ 168 | "README.md", 169 | "00 - Dashboard/HOME.md", 170 | "99 - Meta/Templates/(TEMPLATE) Task.md", 171 | "sda.md", 172 | "99 - Meta/Templates/(TEMPLATE) Daily.md", 173 | "99 - Meta/Templates/(TEMPLATE) Studies.md", 174 | "99 - Meta/Templates/(TEMPLATE) Review.md", 175 | "99 - Meta/Templates/(TEMPLATE) Reflection.md", 176 | "99 - Meta/Templates/(TEMPLATE) Project.md", 177 | "99 - Meta/Templates/(TEMPLATE) Idea.md", 178 | "aaa.md", 179 | "99 - Meta/System/Practical Usage Guide.md", 180 | "99 - Meta/System/Organizational Methods in Obsidian.md", 181 | "99 - Meta/System/Guide to Tags and Links - Note Organization in Obsidian.md", 182 | "99 - Meta/System/General guide.md", 183 | "Routine.md", 184 | "02 - Knowledge/Computer/Algorithm_complexity.md", 185 | "99 - Meta/Organizacao/Como classificar notas com tags.md", 186 | "01 - Pessoal/Diario/2024-10-20.md", 187 | "01 - Pessoal/Saude/Rotina.md", 188 | "99 - Meta/Organizacao/Guia de uso da Vault.md", 189 | "99 - Meta/Organizacao/Métodos Organizacionais no Obsidian.md", 190 | "99 - Meta/Templates/(TEMPLATE) Tarefa.md", 191 | "99 - Meta/Templates/(TEMPLATE) Projeto.md", 192 | "99 - Meta/Templates/(TEMPLATE) Ideia.md", 193 | "99 - Meta/Templates/(TEMPLATE) Estudos.md", 194 | "04- Referencias/Cursos", 195 | "02 - Conhecimento/Historia", 196 | "02 - Conhecimento/Saude", 197 | "02 - Conhecimento/Literatura", 198 | "01 - Pessoa/Diario", 199 | "01 - Pessoa", 200 | "Diário", 201 | "05 - Arquivados", 202 | "05 - Referencias/Untitled", 203 | "06 - Readwise/Books", 204 | "Untitled.canvas" 205 | ] 206 | } --------------------------------------------------------------------------------