<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://blog.shuvangkardas.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://blog.shuvangkardas.com/" rel="alternate" type="text/html" /><updated>2026-02-11T19:25:26+00:00</updated><id>https://blog.shuvangkardas.com/feed.xml</id><title type="html">Shuvangkar Das’ Blog</title><subtitle>Productivity, Note-taking &amp; Research</subtitle><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><entry><title type="html">Automated Task Management System in Obsidian (EP 1)</title><link href="https://blog.shuvangkardas.com/automated-obsidian-task-management-system/" rel="alternate" type="text/html" title="Automated Task Management System in Obsidian (EP 1)" /><published>2026-02-11T00:00:00+00:00</published><updated>2026-02-11T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/automated-task-management-system-in-obsidian-ep-1</id><content type="html" xml:base="https://blog.shuvangkardas.com/automated-obsidian-task-management-system/"><![CDATA[<p>Every morning the first thing I open isn’t email—it’s Obsidian. And waiting for me there is my daily dashboard. It tells me what to do, what is urgent, what is the focus today and what is the focus of this week and it also tells me what I shouldn’t waste time on.</p>

<p>But the problem is that my knowledge vault has grown to over 6,400 notes. I have tasks scattered across projects, meeting notes, and random ideas. I used to waste time every morning deciding what to work on, missing deadlines, and feeling overwhelmed by the sheer volume of information. The #1 pain point I faced was: how do I surface only the relevant tasks and priorities from thousands of notes without manually copying them each day?</p>

<p>If you’ve ever felt lost in your own notes, not knowing what to focus on today, you’re not alone. This is the exact struggle that led me to build a system that automatically curates my daily dashboard.</p>

<h2 id="what-youll-get-from-this">What You’ll Get From This</h2>

<p>By following this tutorial, you’ll learn how to:</p>
<ul>
  <li>Set up Obsidian’s Daily Notes plugin to create a new daily note every morning</li>
  <li>Configure a template that automatically pulls in tasks from across your vault</li>
  <li>Use the Task plugin to filter overdue tasks, weekly goals, and daily priorities</li>
  <li>Build a dashboard that updates itself—no manual copying required</li>
  <li>Customize the system to match your workflow and preferences</li>
</ul>

<h2 id="the-solution-building-your-automated-daily-dashboard">The Solution: Building Your Automated Daily Dashboard</h2>

<h3 id="step-1-install-the-obsidian-starter-kit-optional-but-recommended">Step 1: Install the Obsidian Starter Kit (Optional but Recommended)</h3>

<p>The easiest way to follow along is to download my free Obsidian Starter Kit. It comes pre‑configured with the folder structure, templates, and plugin settings you’ll need. You can find the link in the description below.</p>

<p>After downloading and unzipping, open the vault. You’ll see a folder structure like this:</p>

<ul>
  <li><code class="language-plaintext highlighter-rouge">Home/</code> – your personal notes</li>
  <li><code class="language-plaintext highlighter-rouge">Work/</code> – professional documents</li>
  <li><code class="language-plaintext highlighter-rouge">Projects/</code> – ongoing work</li>
  <li><code class="language-plaintext highlighter-rouge">Journal/</code> – where daily notes will live</li>
</ul>

<h3 id="step-2-enable-the-daily-notes-plugin">Step 2: Enable the Daily Notes Plugin</h3>

<p>Go to <strong>Settings → Community Plugins</strong> and enable the <strong>Daily Notes</strong> plugin. This plugin is built into Obsidian and is the foundation of our system.</p>

<p>Once enabled, configure the daily note location:</p>
<ul>
  <li>Set the <strong>Daily note folder</strong> to <code class="language-plaintext highlighter-rouge">Journal/Daily Notes/</code> (or any folder you prefer)</li>
  <li>Set the <strong>Template file location</strong> to <code class="language-plaintext highlighter-rouge">Templates/Daily Note Template.md</code> (we’ll create this next)</li>
  <li>Enable <strong>Open daily note on startup</strong> so Obsidian shows your dashboard every morning</li>
</ul>

<h3 id="step-3-create-the-daily-note-template">Step 3: Create the Daily Note Template</h3>

<p>Create a new note in your template folder called <code class="language-plaintext highlighter-rouge">Daily Note Template.md</code>. Inside, add the following YAML front matter and structure:</p>

<div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nn">---</span>
<span class="na">date</span><span class="pi">:</span> 
<span class="nn">---</span>

<span class="c1">## Today's Tasks</span>

<span class="c1">## Daily Journal</span>

<span class="c1">## Notes</span>
</code></pre></div></div>

<p>The `` placeholder will be replaced with today’s date when the template is used.</p>

<h3 id="step-4-configure-the-task-plugin">Step 4: Configure the Task Plugin</h3>

<p>Install the <strong>Task</strong> community plugin. This plugin allows you to query tasks from across your vault based on due dates, tags, and other criteria.</p>

<p>In your daily note template, add a task query that pulls all tasks due today:</p>

<div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="gu">## Today's Tasks</span>

</code></pre></div></div>

<p>You can also add queries for overdue tasks, weekly tasks, and upcoming deadlines.</p>

<h3 id="step-5-curate-tasks-from-multiple-projects">Step 5: Curate Tasks from Multiple Projects</h3>

<p>The real power comes when you start tagging tasks in your project notes. For example, in a project note for “DustPlotter” you might add:</p>

<div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">-</span> [ ] #task Integrate new feature into Python version :: due 2026-02-11
</code></pre></div></div>

<p>When you open your daily note, the Task plugin will automatically pull that task into the “Today’s Tasks” section. No manual copying needed.</p>

<h3 id="step-6-customize-and-beautify">Step 6: Customize and Beautify</h3>

<p>The Task plugin offers advanced filtering options. You can sort tasks by priority, group them by project, or hide completed tasks. Explore the plugin’s documentation to tailor the system to your needs.</p>

<p>Remember: the goal isn’t to have a perfect system on day one. Start simple, then iterate as you discover what works for you.</p>

<h2 id="watch-the-full-video">Watch the Full Video</h2>

<p>For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/jKDnXnuC-8Y" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Knowledge Management" /><category term="Obsidian" /><category term="task management" /><category term="automation" /><category term="daily note" /><category term="productivity" /><category term="Obsidian starter kit" /><summary type="html"><![CDATA[Learn how to build an automated task management system in Obsidian that pulls urgent tasks, today's focus, weekly goals, and overdue reminders automatically.]]></summary></entry><entry><title type="html">Create Multimedia Notes in Obsidian for Distraction-Free Learning</title><link href="https://blog.shuvangkardas.com/multimedia-notes-obsidian-distraction-free/" rel="alternate" type="text/html" title="Create Multimedia Notes in Obsidian for Distraction-Free Learning" /><published>2026-02-11T00:00:00+00:00</published><updated>2026-02-11T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/create-multimedia-notes-in-obsidian-for-distraction-free-learning</id><content type="html" xml:base="https://blog.shuvangkardas.com/multimedia-notes-obsidian-distraction-free/"><![CDATA[<p>You’ve been there: you’re trying to learn something new, but you’re jumping between a video player, your note-taking app, a PDF reader, and maybe even an audio player. Each switch breaks your focus. You lose context, you lose time, and you lose the thread of what you were trying to understand. The digital world is full of learning mediums—videos, podcasts, PDFs, images—and keeping them organized across different apps is a recipe for distraction. If you’re a knowledge worker, student, or researcher, you know this pain intimately: the struggle to stay focused when your learning materials are scattered everywhere.</p>

<p>What if you could bring everything together into one place? One note where you can watch videos, listen to audio, read PDFs, and view images without ever leaving your note-taking app. That’s the promise of creating multimedia notes in Obsidian. It’s about reducing distraction by consolidating all your learning materials into a single, centralized note. By the end of this post, you’ll understand exactly how to do this and why it’s such a powerful productivity hack.</p>

<h2 id="why-multimedia-notes-reduce-distraction">Why Multimedia Notes Reduce Distraction</h2>

<p>The core idea is simple: keep everything in one note. Obsidian has the capability to open many types of files directly within your vault. This means you can embed videos, play audio, view images, and even read PDFs without opening separate applications. This approach minimizes context switching, which is a major productivity killer. When you’re learning from a single note, you maintain your flow state. You don’t have to remember which app has which material; everything is right there.</p>

<p>This method works especially well for building what’s called a “Map of Content” (MOC)—a single index note that organizes all your notes on a particular topic. In the video, the creator demonstrates how they’ve organized all their investment-related notes inside a “Mock Investment Index” note. Similarly, you can create a multimedia MOC for any topic you’re learning about.</p>

<h2 id="how-to-embed-and-play-videos-in-obsidian">How to Embed and Play Videos in Obsidian</h2>

<p>Embedding videos directly in Obsidian is straightforward. Here’s how:</p>

<h3 id="step-1-get-the-video-embed-code">Step 1: Get the Video Embed Code</h3>
<p>Go to YouTube, click “Share” on the video you want to embed, and copy the embed code. This will give you an HTML iframe snippet.</p>

<h3 id="step-2-paste-the-embed-code-in-your-note">Step 2: Paste the Embed Code in Your Note</h3>
<p>Paste the embed code directly into your Obsidian note. Obsidian will render the video inline. You can actually watch the video without leaving your note. This is a huge distraction-free win because you don’t have to open a browser tab or switch applications.</p>

<h3 id="step-3-enable-web-viewer-for-links-optional">Step 3: Enable Web Viewer for Links (Optional)</h3>
<p>If you don’t want to embed every video (sometimes embedding can be heavy), you can still open video links within Obsidian using the Web Viewer plugin. Here’s how:</p>
<ol>
  <li>Go to Settings → Community Plugins</li>
  <li>Install and enable the “Web Viewer” plugin</li>
  <li>Now when you click on a video link in your note, it will open directly in Obsidian instead of your external browser</li>
</ol>

<p>This keeps you in your learning flow. You can watch videos and follow links without ever leaving your vault.</p>

<h2 id="adding-and-playing-audio-notes-in-obsidian">Adding and Playing Audio Notes in Obsidian</h2>

<p>Audio is another powerful medium for learning. You can either:</p>
<ol>
  <li><strong>Drag and drop existing audio files</strong> directly into your note. Obsidian will link them automatically.</li>
  <li><strong>Record audio notes directly in Obsidian</strong> using the Audio Recorder core plugin.</li>
</ol>

<p>To record audio:</p>
<ol>
  <li>Go to Settings → Core Plugins</li>
  <li>Enable “Audio Recorder”</li>
  <li>A recording button will appear in your note editor</li>
  <li>Click it to record meetings, thoughts, or any audio content</li>
  <li>The recording will be embedded directly in your note and saved in your vault</li>
</ol>

<p>All your audio materials will appear in the left sidebar of your vault, giving you a clear overview of all your multimedia content. This centralized approach gives you peace of mind—everything is in one place, in its original format.</p>

<h2 id="embedding-images-and-pdfs-into-your-notes">Embedding Images and PDFs into Your Notes</h2>

<p>Images and PDFs are essential for comprehensive learning notes.</p>

<h3 id="images">Images</h3>
<p>Simply drag and drop an image file into your note, or use the standard Markdown image syntax: <code class="language-plaintext highlighter-rouge">![alt text](image-path)</code>. Obsidian will display the image inline.</p>

<h3 id="pdfs">PDFs</h3>
<p>PDFs are particularly powerful in Obsidian. Here’s how to add them:</p>
<ol>
  <li>Drag the PDF file directly into your note</li>
  <li>Obsidian will render the PDF inline, allowing you to read it without opening an external PDF viewer</li>
  <li>If you prefer to open the PDF in a separate tab, hold Control (or Command on Mac) and click the PDF. It will open in a new tab within Obsidian, acting as a native PDF viewer</li>
</ol>

<p>This means you can read entire research papers, manuals, or ebooks directly within your note-taking app. No more switching between your note-taking app and a PDF reader.</p>

<h2 id="building-a-centralized-learning-system">Building a Centralized Learning System</h2>

<p>The ultimate goal is to create a distraction-free learning environment where all your materials live in one place. Here’s how to structure it:</p>

<ol>
  <li><strong>Create a topic-specific MOC</strong>: Make an index note for your learning topic (e.g., “Obsidian Start Here Series” or “Investment Basics”).</li>
  <li><strong>Add multimedia content</strong>: Embed videos, add audio notes, include images, and link PDFs—all within this single note.</li>
  <li><strong>Use the Web Viewer</strong>: Enable the Web Viewer plugin to open external links within Obsidian.</li>
  <li><strong>Maintain a single source of truth</strong>: Keep all materials for a topic in one note to avoid fragmentation.</li>
</ol>

<p>This approach works because it:</p>
<ul>
  <li>Reduces context switching</li>
  <li>Keeps your focus on learning, not app management</li>
  <li>Provides a clear overview of all your materials</li>
  <li>Makes review and reference much easier</li>
</ul>

<h2 id="watch-the-full-video">Watch the Full Video</h2>

<p>For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/gXmlGedRdDM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Knowledge Management" /><category term="Obsidian" /><category term="multimedia-notes" /><category term="distraction-free" /><category term="productivity" /><category term="second-brain" /><category term="map-of-content" /><summary type="html"><![CDATA[Learn how to embed videos, audio, PDFs, and images in a single Obsidian note to eliminate distractions and boost productivity.]]></summary></entry><entry><title type="html">Johnny Decimal Organization Method for Obsidian: A Complete Guide</title><link href="https://blog.shuvangkardas.com/johnny-decimal-obsidian-organization-method/" rel="alternate" type="text/html" title="Johnny Decimal Organization Method for Obsidian: A Complete Guide" /><published>2026-02-11T00:00:00+00:00</published><updated>2026-02-11T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/johnny-decimal-organization-method-for-obsidian-a-complete-guide</id><content type="html" xml:base="https://blog.shuvangkardas.com/johnny-decimal-obsidian-organization-method/"><![CDATA[<p>You’ve been there: you’re staring at a messy folder structure, wondering where to put that new note. You search through countless files, trying to remember if you saved something under “Personal” or “Projects” or maybe “Ideas”. The digital clutter has taken over, and you’re spending more time organizing than actually working. The worst part? Even when you think you’ve found a good system, it breaks down as your knowledge grows. What if there was a way to give every single note a permanent address? Like a Google Map for your knowledge—where everything has its own spot, and you never have to guess again.</p>

<p>That’s exactly what the Johnny Decimal method does for your Obsidian vault. In this video, my friend walks you through how to build a complete organization system that eliminates guesswork forever. By the end of this post, you’ll understand exactly how to set up this system and why it might be the last organization method you’ll ever need.</p>

<h2 id="why-johnny-decimal-beats-para-for-permanent-organization">Why Johnny Decimal Beats PARA for Permanent Organization</h2>

<p>Before diving into the system, let’s understand the comparison. Most people know about PARA (Projects, Areas, Resources, Archive), which is great for temporary focus. But PARA doesn’t provide permanent addresses—it’s more about grouping based on current needs. Johnny Decimal is different: it gives every note a permanent, unchanging address that works for years.</p>

<p>The key difference is permanence. PARA answers “Where does this belong right now?” while Johnny Decimal answers “Where will this live forever?” This makes Johnny Decimal ideal for building a long-term knowledge base that won’t need reorganization every few months.</p>

<h2 id="how-johnny-decimal-works-the-100-subcategory-system">How Johnny Decimal Works: The 100-Subcategory System</h2>

<p>Johnny Decimal works by dividing your whole life into 10 big buckets (0-9), then creating 10 small categories inside each bucket (00-09, 10-19, etc.). That gives you exactly 100 permanent addresses.</p>

<h3 id="the-top-level-10-main-categories">The Top Level: 10 Main Categories</h3>

<p>Here’s how I organize my digital life using this method:</p>

<p><strong>00 - Home</strong>
This is where everything personal lives: about me, health, legal, finance, family and social, digital life, assets and liabilities, buy and sell, travel and journal.</p>

<p><strong>01 - Learning &amp; Teaching</strong>
All your learning goes here: courses, books, skills you’re developing, and everything you’re teaching others.</p>

<p><strong>02 - Work &amp; Career</strong>
Professional documents, CVs, LinkedIn information, job hunting folders, and career-related materials.</p>

<p><strong>03 - Project &amp; Hobby</strong>
Fun projects, hobby work, side projects like building plugins or learning new skills.</p>

<p><strong>04 - Content &amp; Creativity</strong>
The “internet folder” where everything you plan to publish lives: social media posts, blogs, videos. This separates personal from public content.</p>

<p><strong>05 - Knowledge Library</strong>
Your reading and learning library: book notes, paper and article annotations, podcast insights, notes on people and thinkers.</p>

<p><strong>06 - Archive</strong>
Everything not useful for the current moment. Just like a backup—you can retrieve anything here if needed later.</p>

<p><strong>07-09 - Future Categories</strong>
The beauty of Johnny Decimal is that you have room to expand. You can add up to 3 more main categories as your life evolves.</p>

<h3 id="the-subcategories-10-permanent-addresses">The Subcategories: 10 Permanent Addresses</h3>

<p>Inside each main category, you create 10 subcategories. For example, inside “00 Home,” you might have:</p>
<ul>
  <li>00: About Me</li>
  <li>01: Health</li>
  <li>02: Legal</li>
  <li>03: Finance</li>
  <li>04: Family &amp; Social</li>
  <li>05: Digital Life</li>
  <li>06: Assets &amp; Liabilities</li>
  <li>07: Buy &amp; Sell</li>
  <li>08: Travel</li>
  <li>09: Journal</li>
</ul>

<p>Every note or file gets a permanent address like “00-01-Health-Note” or “05-03-Podcast-Insight.” No guessing, no clutter, no reorganization needed.</p>

<h2 id="practical-examples-of-johnny-decimal-in-action">Practical Examples of Johnny Decimal in Action</h2>

<p>Let me show you how this works in real life:</p>

<p><strong>Going on a Trip?</strong>
It goes under travel subdirectory “08 Travel.” Every trip note, itinerary, and memory lives there permanently.</p>

<p><strong>Making a New YouTube Video?</strong>
It lives under “04 Content and Creativity” → “40 Blog and Videos.” Every video idea, script, and note has its place.</p>

<p><strong>Reading a New Book?</strong>
Your note goes straight to “05 Knowledge Library” → “51 Book Notes.” No wondering where to put it.</p>

<h3 id="inside-your-home-directory">Inside Your Home Directory</h3>

<p>Let’s look at some practical examples:</p>

<p><strong>About Me (00-00)</strong>
I maintain a bio note here to keep my biography consistent across different platforms—academic, LinkedIn, YouTube. I also have quick-access information for filling out online forms faster.</p>

<p><strong>Legal &amp; Finance (02-03)</strong>
One comprehensive note for credit cards, investments, and legal documents.</p>

<p><strong>Buy &amp; Sell (07)</strong>
I track all my purchases and Facebook Marketplace sales here. Everything is systematically organized.</p>

<h2 id="the-knowledge-library-your-reading-system">The Knowledge Library: Your Reading System</h2>

<p>The Knowledge Library is where your reading system lives:</p>

<p><strong>Book Notes (05-01)</strong>
Whenever you read a book, annotate it and save it here.</p>

<p><strong>Paper &amp; Article Notes (05-02)</strong>
Research papers and articles with annotations.</p>

<p><strong>Podcast Insights (05-03)</strong>
Key insights from podcasts you listen to.</p>

<p><strong>People &amp; Thinkers (05-04)</strong>
Notes on authors, speakers, or thinkers you follow.</p>

<p>The beauty is that every piece of knowledge has a permanent address. You never waste time hunting for “that one note about that author.”</p>

<h2 id="the-master-map-of-content-moc">The Master Map of Content (MOC)</h2>

<p>The master MOC is the root index note for your entire vault. From this single note, you can trace any note in your system. It’s your navigational center—like the main map in a GPS app.</p>

<p>When you need to find something, you don’t search through folders. You go to your MOC and follow the permanent addresses. This is how Johnny Decimal gives you a “Google Map for your knowledge.”</p>

<h2 id="why-numbers-work-the-psychology-of-organization">Why Numbers Work: The Psychology of Organization</h2>

<p>I used to think numbering folders was unnecessary complication. After using Johnny Decimal for 4 years, I realized numbers are magic for two reasons:</p>

<p><strong>1. Auto-arrangement</strong>
When you number folders, the system automatically arranges them in the correct order. No manual sorting needed.</p>

<p><strong>2. Muscle Memory</strong>
Your brain gets used to the numbering system. After a while, you don’t even think about where things go—you just know.</p>

<p>Imagine walking into a grocery store where nothing is labeled. Milk is with snacks, bread is with electronics—total chaos. Now imagine a perfectly organized store: fruits in one aisle, frozen foods in another. That’s Johnny Decimal. It gives every piece of information its own shelf.</p>

<h2 id="future-proofing-your-system">Future-Proofing Your System</h2>

<p>The Johnny Decimal system is designed to scale. With 100 permanent addresses, you have room to grow. And the template system makes it even more powerful:</p>

<p><strong>Templates</strong>
Use templates for daily notes, meeting notes, and other recurring note types. Templates ensure consistency and speed.</p>

<p><strong>Future Extensions</strong>
You have 30 additional slots (70-99) for future categories. As your life evolves, your system can evolve too.</p>

<h2 id="the-core-benefits-of-johnny-decimal">The Core Benefits of Johnny Decimal</h2>

<p><strong>1. No Guesswork</strong>
Every note or file gets a clear permanent address. You never wonder “Where does this go?”</p>

<p><strong>2. No Clutter</strong>
Everything has its place. No messy folders or scattered files.</p>

<p><strong>3. No Second Guessing</strong>
You know exactly where to put something and where to find it.</p>

<p><strong>4. Speed</strong>
Your workflow stays fast because your system is predictable.</p>

<p><strong>5. Future-Proof</strong>
Even years from now, you know exactly where to find things.</p>

<h2 id="watch-the-full-video">Watch the Full Video</h2>

<p>For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/lU6pR0AIhW4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Knowledge Management" /><category term="Obsidian" /><category term="Johnny Decimal" /><category term="organization-method" /><category term="digital-organization" /><category term="knowledge-management" /><category term="second-brain" /><summary type="html"><![CDATA[Learn how to organize your digital life with permanent addresses using the Johnny Decimal method in Obsidian. No more guessing where to put notes.]]></summary></entry><entry><title type="html">How to Build Your Second Brain in Obsidian (Step by Step)</title><link href="https://blog.shuvangkardas.com/how-to-build-second-brain-obsidian/" rel="alternate" type="text/html" title="How to Build Your Second Brain in Obsidian (Step by Step)" /><published>2026-02-10T00:00:00+00:00</published><updated>2026-02-10T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/how-to-build-second-brain-obsidian</id><content type="html" xml:base="https://blog.shuvangkardas.com/how-to-build-second-brain-obsidian/"><![CDATA[<h2 id="the-pain-point-opening">The Pain Point (Opening)</h2>

<p>You’ve been there—staring at a messy collection of notes, PDFs, and tasks, wondering where to put each piece of information. “Where should I put this note?” “Should I create a new folder?” “Which index node should I connect this note with?” That tiny decision fatigue happens to so many of us. You are not alone.</p>

<p>As a researcher with over 6,500 notes, I faced the same problem. Manually tracking tasks scattered across thousands of notes was impossible. I needed a system that could automatically curate tasks from all notes into a single dashboard. I needed a future‑proof knowledge system that grows with me, not the other way around.</p>

<p>If you’ve ever wished you could connect your notes and PDFs in a way that lets you navigate from notes directly to PDF annotations and back, you’re in the right place. This step‑by‑step guide will show you how to build exactly that system inside Obsidian.</p>

<h2 id="what-youll-get-from-this">What You’ll Get From This</h2>

<p>After following this guide, you’ll have:</p>

<ul>
  <li><strong>A sustainable note‑taking system</strong> that adapts to your changing life and career</li>
  <li><strong>Bite‑sized notes</strong> that eliminate decision fatigue</li>
  <li><strong>An automated daily dashboard</strong> that curates tasks from all notes into one place</li>
  <li><strong>Bidirectional linking between notes and PDFs</strong> for effortless navigation</li>
  <li><strong>A personalized Obsidian vault</strong> (the free Obsidian Starter Kit) that you can customize</li>
</ul>

<h2 id="the-solution-main-content">The Solution (Main Content)</h2>

<h3 id="step-1-set-up-an-adaptive-notetaking-system">Step 1: Set Up an Adaptive Note‑Taking System</h3>

<p>The goal is to build a system that can adapt to your changing life and career. Start with the free Obsidian Starter Kit (download link in description). Open it in Obsidian and follow the short README. No pressure to learn everything at once—just explore a little and use what you need.</p>

<h3 id="step-2-take-bitesized-notes">Step 2: Take Bite‑Sized Notes</h3>

<p>Take notes on any topic, from daily chores to deep learning. Keep each note small and focused. This reduces the friction of note‑taking and makes it easier to connect ideas later.</p>

<h3 id="step-3-create-an-automated-daily-dashboard">Step 3: Create an Automated Daily Dashboard</h3>

<p>Manually tracking tasks across thousands of notes is impossible. Instead, build an automated daily dashboard inside Obsidian. The system curates tasks from all your notes into a single dashboard, so you never miss a task again.</p>

<h3 id="step-4-build-a-smart-literature-review-workflow">Step 4: Build a Smart Literature Review Workflow</h3>

<p>Connect your PDF highlights directly to your notes for effortless navigation. When you read a PDF, take notes that are automatically linked back to the exact PDF section. Weeks or months later, you can jump between your notes and the original source effortlessly.</p>

<h3 id="step-5-turn-obsidian-into-your-personal-knowledge-hub">Step 5: Turn Obsidian into Your Personal Knowledge Hub</h3>

<p>By combining an adaptive note‑taking system, automated task curation, and bidirectional linking with PDFs, you transform Obsidian into a powerful personal knowledge hub. This system grows with you, not the other way around.</p>

<h3 id="step-6-download-and-customize-the-free-obsidian-starter-kit">Step 6: Download and Customize the Free Obsidian Starter Kit</h3>

<p>The video references a free Obsidian Starter Kit—a customizable foundation for your Second Brain. Download the vault, open it in Obsidian, and follow along with the series. The kit is completely free, and you can customize it based on your needs.</p>

<h3 id="watch-the-full-video">Watch the Full Video</h3>

<p>For the complete step‑by‑step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/JtBOl-eFHZc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Second Brain" /><category term="Obsidian" /><category term="Note-taking" /><category term="PDF" /><category term="Automation" /><category term="Daily Dashboard" /><summary type="html"><![CDATA[Learn how to build your Second Brain in Obsidian with a step-by-step guide for connecting notes, PDFs, tasks, and automating your daily dashboard.]]></summary></entry><entry><title type="html">How to Take Math Notes in Obsidian (Zero-Friction)</title><link href="https://blog.shuvangkardas.com/how-to-take-math-notes-obsidian-zero-friction/" rel="alternate" type="text/html" title="How to Take Math Notes in Obsidian (Zero-Friction)" /><published>2026-02-10T00:00:00+00:00</published><updated>2026-02-10T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/how-to-take-math-notes-obsidian-zero-friction</id><content type="html" xml:base="https://blog.shuvangkardas.com/how-to-take-math-notes-obsidian-zero-friction/"><![CDATA[<h2 id="the-pain-point-opening">The Pain Point (Opening)</h2>

<p>You’ve been there—staring at a complex equation in Obsidian, feeling the friction of typing LaTeX syntax, wondering if there’s a faster way. Math notes in Obsidian can be time-consuming, especially when dealing with integration, matrices, or multi-line equations. Many researchers and students avoid taking math notes altogether because the process feels like a “nightmare.” If you’ve ever procrastinated on note-taking because of complex equations, you’re not alone.</p>

<p>As a researcher, you need to capture mathematical concepts, but the effort required to format equations can halt your workflow. The fear of making syntax errors or spending hours on a single equation can be overwhelming. This friction leads to skipped notes, lost insights, and a knowledge system that’s incomplete.</p>

<h2 id="what-youll-get-from-this">What You’ll Get From This</h2>

<p>After reading this blog post and watching the video, you’ll walk away with:</p>

<ul>
  <li><strong>A clear understanding of how to write equations in Obsidian</strong> using inline and block LaTeX syntax</li>
  <li><strong>Practical steps to handle complex equations</strong> without getting lost in syntax</li>
  <li><strong>Zero-friction math note-taking</strong> using Mathpix—a tool that converts screenshots to perfectly formatted LaTeX</li>
  <li><strong>A workflow that eliminates procrastination</strong> and makes math note-taking effortless</li>
  <li><strong>Integration with your existing Obsidian vault</strong> (using the investment vault example from the series)</li>
</ul>

<h2 id="the-solution-main-content">The Solution (Main Content)</h2>

<h3 id="writing-equations-in-obsidian-inline-vs-new-line">Writing Equations in Obsidian: Inline vs. New Line</h3>

<p>Obsidian supports LaTeX equations natively. There are two primary ways to write equations:</p>

<ol>
  <li><strong>Inline equations</strong>: Wrap your equation in single dollar signs <code class="language-plaintext highlighter-rouge">$...$</code>. This places the equation within a line of text.
    <ul>
      <li>Example: <code class="language-plaintext highlighter-rouge">$f = P(1 + r)^t$</code> renders as $f = P(1 + r)^t$</li>
    </ul>
  </li>
  <li><strong>Block equations</strong>: Wrap your equation in double dollar signs <code class="language-plaintext highlighter-rouge">$$...$$</code>. This centers the equation on its own line.
    <ul>
      <li>Example: <code class="language-plaintext highlighter-rouge">$$f = P(1 + r)^t$$</code> renders as a centered block equation</li>
    </ul>
  </li>
</ol>

<h3 id="handling-complex-equations-with-latex-in-obsidian">Handling Complex Equations with LaTeX in Obsidian</h3>

<p>Obsidian supports almost all LaTeX equation styles. If you know LaTeX syntax, you can write any equation—integrals, matrices, fractions, etc. However, complex equations can be time-consuming to type manually. The video shows a complex compound interest equation with periodic contributions, which would take many minutes to type.</p>

<h3 id="zero-friction-math-note-taking-with-mathpix">Zero-Friction Math Note-Taking with Mathpix</h3>

<p>Mathpix is a snipping tool that converts screenshots of equations (or any text) into LaTeX code instantly. The workflow:</p>

<ol>
  <li>Take a screenshot of the equation (or a block of text containing equations)</li>
  <li>Use Mathpix to convert the screenshot to LaTeX</li>
  <li>Copy the LaTeX output and paste directly into Obsidian</li>
  <li>Obsidian renders the equation perfectly</li>
</ol>

<p>This turns a 10-minute typing job into a 10-second screenshot-and-paste. The video demonstrates Mathpix converting a complex compound interest equation with periodic contributions into formatted LaTeX, which is then pasted into Obsidian.</p>

<h3 id="integration-with-your-obsidian-vault">Integration with Your Obsidian Vault</h3>

<p>The video uses the “investment” vault from the Obsidian Starter Series. The note is created under a Map of Content (MOC) called “Mock Investment,” which organizes notes about index funds and investment calculations. By using MOCs, you keep your notes connected and easy to navigate.</p>

<h3 id="watch-the-full-video">Watch the Full Video</h3>

<p>For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/-AQ4R_4ZqKU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Obsidian" /><category term="Math" /><category term="LaTeX" /><category term="Note-taking" /><category term="Mathpix" /><category term="Zero-friction" /><summary type="html"><![CDATA[Learn how to take math notes effortlessly in Obsidian using LaTeX equations and Mathpix for zero-friction note-taking.]]></summary></entry><entry><title type="html">Learn Obsidian in One Video (2025)</title><link href="https://blog.shuvangkardas.com/learn-obsidian-one-video/" rel="alternate" type="text/html" title="Learn Obsidian in One Video (2025)" /><published>2026-02-10T00:00:00+00:00</published><updated>2026-02-10T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/learn-obsidian-one-video</id><content type="html" xml:base="https://blog.shuvangkardas.com/learn-obsidian-one-video/"><![CDATA[<h2 id="the-pain-point-opening">The Pain Point (Opening)</h2>

<p>You’ve been there—staring at a blank page, struggling to organize your thoughts, tasks, and learning in one place. Your mind is for having ideas, not holding them, but where do you put all those ideas? You’ve probably tried multiple note-taking apps, each with its own friction: messy folders, scattered tasks, and a system that breaks down after a few months. The frustration of losing track of important information, forgetting tasks, and feeling overwhelmed by a chaotic knowledge base is real.</p>

<p>If you’ve ever felt like you’re drowning in notes, bookmarks, and to-dos, you’re not alone. As a researcher and content creator, I’ve spent years searching for a tool that can hold my entire knowledge system—something that connects thoughts, manages tasks, and scales with my brain. That’s where Obsidian comes in.</p>

<p>But Obsidian can be intimidating. With so many features, plugins, and themes, where do you even start? That’s why I created this video: to teach you how to use Obsidian like a pro in one go.</p>

<h2 id="what-youll-get-from-this">What You’ll Get From This</h2>

<p>After watching this video, you’ll walk away with:</p>

<ul>
  <li><strong>A clear understanding of Obsidian’s core features</strong>—Quick Switcher, Graph View, Canvas, Command Palette, and more</li>
  <li><strong>Practical shortcuts and hotkeys</strong> to make note-taking frictionless</li>
  <li><strong>How to customize Obsidian</strong> with themes and plugins to fit your workflow</li>
  <li><strong>Tips for organizing attachments and notes</strong> like a second brain</li>
  <li><strong>A sustainable knowledge management system</strong> that grows with you</li>
</ul>

<h2 id="the-solution-main-content">The Solution (Main Content)</h2>

<h3 id="mastering-obsidians-sidebar-quick-switcher-graph-view-and-canvas">Mastering Obsidian’s Sidebar: Quick Switcher, Graph View, and Canvas</h3>

<p>Obsidian’s left sidebar is your command center. Here you’ll find:</p>

<ul>
  <li><strong>Quick Switcher (Ctrl+O)</strong>: Instantly search and jump to any note in your vault</li>
  <li><strong>Graph View</strong>: Visualize the connections between your notes</li>
  <li><strong>Canvas</strong>: A plugin that lets you connect images, notes, and other media on a limitless canvas</li>
  <li><strong>Insert Template</strong>: Apply pre-defined templates to notes</li>
  <li><strong>Command Palette (Ctrl+P)</strong>: Access every Obsidian function without memorizing shortcuts</li>
  <li><strong>Base</strong>: A database plugin that mimics Notion-like tables</li>
  <li><strong>Audio Recorder</strong>: Record audio directly into your notes</li>
</ul>

<h3 id="templates-command-palette-and-databases-in-obsidian">Templates, Command Palette, and Databases in Obsidian</h3>

<p>Templates save time. Use the “Insert Template” button to apply pre-formatted note structures. The Command Palette is your best friend—type any action you want, and Obsidian will execute it. Base lets you create structured databases inside Obsidian, perfect for tracking projects, tasks, or resources.</p>

<h3 id="optimizing-workflow-opening-and-arranging-multiple-notes">Optimizing Workflow: Opening and Arranging Multiple Notes</h3>

<p>Productivity increases when you can see multiple notes at once. Right-click a note tab and choose “Split” to view notes side-by-side. Use shortcuts like <strong>Ctrl+Alt+Click</strong> to open notes in separate windows. Drag notes to different panes to create a multi-pane workspace. This is essential for writing reports, connecting ideas, or researching.</p>

<h3 id="boosting-productivity-with-obsidian-shortcuts">Boosting Productivity with Obsidian Shortcuts</h3>

<p>Shortcuts are the key to frictionless note-taking. The most important shortcuts:</p>

<ul>
  <li><strong>Ctrl+O</strong>: Quick Switcher</li>
  <li><strong>Ctrl+P</strong>: Command Palette</li>
  <li><strong>Ctrl+B</strong>: Toggle bold</li>
  <li><strong>Ctrl+I</strong>: Toggle italic</li>
  <li><strong>Ctrl+L</strong>: Toggle bulleted list</li>
  <li><strong>Ctrl+Shift+L</strong>: Toggle bullet list (custom shortcut)</li>
</ul>

<p>You can assign any shortcut to any function in Settings → Hotkeys. Explore and customize!</p>

<h3 id="customizing-hotkeys-for-streamlined-note-taking">Customizing Hotkeys for Streamlined Note-Taking</h3>

<p>Go to Settings → Hotkeys to assign shortcuts to any command. For example, assign <strong>Ctrl+Shift+L</strong> to toggle bullet lists. This removes friction and makes note-taking faster.</p>

<h3 id="efficiently-searching-your-obsidian-vault">Efficiently Searching Your Obsidian Vault</h3>

<p>Search is powerful. Click the search icon or use <strong>Ctrl+Shift+F</strong> to search across all notes. Search by keyword, phrase, or even regular expressions. Obsidian’s search is fast and accurate, even with thousands of notes.</p>

<h3 id="personalizing-obsidian-with-themes-and-plugins">Personalizing Obsidian with Themes and Plugins</h3>

<p>Obsidian has over 2,500 community themes and 2,600+ plugins. Themes change the look and feel—try different ones to find your favorite. Plugins extend functionality: from citation managers to Kanban boards. Start with essential plugins and add as needed.</p>

<h3 id="organizing-attachments-and-notes-in-obsidian">Organizing Attachments and Notes in Obsidian</h3>

<p>Attachments (images, PDFs, etc.) can clutter your vault. Set a default attachment folder in Settings → Files &amp; Links. Use Maps of Content (MOCs) to index notes instead of deep folder hierarchies. This keeps your vault clean and searchable.</p>

<h3 id="sustainable-knowledge-management-the-ofid-starter-kit">Sustainable Knowledge Management: The OFID Starter Kit</h3>

<p>The video references the “OFID Starter Kit”—a system I developed for organizing notes in a sustainable way. It uses a Johnny Decimal-style folder structure, MOCs, and templates. This system scales with your knowledge base and prevents clutter.</p>

<h3 id="watch-the-full-video">Watch the Full Video</h3>

<p>For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/W2-kHZGk49s" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Obsidian" /><category term="Note-taking" /><category term="Shortcuts" /><category term="Themes" /><category term="Plugins" /><category term="Second Brain" /><summary type="html"><![CDATA[Master Obsidian in one video: learn note-taking, task management, shortcuts, themes, plugins, and more for ultimate productivity.]]></summary></entry><entry><title type="html">Obsidian Knowledge Management: Connect Ideas and Build Your Second Brain</title><link href="https://blog.shuvangkardas.com/obsidian-knowledge-management/" rel="alternate" type="text/html" title="Obsidian Knowledge Management: Connect Ideas and Build Your Second Brain" /><published>2026-02-10T00:00:00+00:00</published><updated>2026-02-10T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/obsidian-knowledge-management</id><content type="html" xml:base="https://blog.shuvangkardas.com/obsidian-knowledge-management/"><![CDATA[<p>I’ve been there. Staring at a book or article, thinking “this is important,” only to forget the details weeks later. Or worse, having a brilliant idea at 2 AM and having no system to capture it properly. The frustration of information overload is real—so many dots to connect, but no way to make them meaningful.</p>

<p>You’ve probably experienced this too. You read something fascinating, take a quick note, then never look at it again. The knowledge gets buried somewhere in your digital graveyard, never to be seen or used. It’s like having all the ingredients for a great meal but no recipe to combine them. The result? Half-baked ideas, forgotten insights, and a sense that you’re working harder but learning less effectively.</p>

<p>What You’ll Get From This
Here’s what you’ll walk away with after understanding this approach:</p>

<ul>
  <li>A practical system for connecting ideas using Obsidian’s powerful linking features</li>
  <li>How to create smart placeholders that automatically organize as you learn</li>
  <li>The technique of space repetition for building long-term knowledge retention</li>
  <li>A method to learn any topic by building connected knowledge nodes</li>
  <li>The simplest investment strategy for those who want results without the complexity</li>
</ul>

<p>The Solution
Let’s dive into the practical steps for building your knowledge management system. I’ll show you exactly how to leverage Obsidian’s features to create a connected knowledge base that grows with you.</p>

<h2 id="the-power-of-connected-knowledge">The Power of Connected Knowledge</h2>

<p>When you’re learning something new, don’t just take notes—create connections. The video demonstrates using investment as our example topic. Start with one concept, then branch out as questions arise.</p>

<p>Instead of creating isolated notes, create placeholders that link to each other. When you encounter a term like “financial statement” while reading, create a placeholder immediately. This creates a visual map in your graph view that shows how ideas relate.</p>

<p>The beauty of this approach is that your knowledge base becomes self-organizing. You don’t need to spend hours categorizing everything upfront. As you learn, the connections form naturally, and your graph view becomes a living representation of your understanding.</p>

<h2 id="creating-smart-placeholders">Creating Smart Placeholders</h2>

<p>One of Obsidian’s most powerful features is its ability to create note placeholders with simple keyboard shortcuts. When you’re reading something and encounter an unfamiliar term or concept, just select the text and press the left square bracket twice.</p>

<p>This creates a placeholder note that’s automatically linked to your current note. It’s like planting a flag that says “I need to learn about this later.” The placeholder appears in your graph view as a node that’s waiting to be filled with knowledge.</p>

<p>This approach is particularly useful when you’re learning complex topics. For example, when learning about stock investment, you might encounter terms like IPO, financial statements, or valuation metrics. Each becomes a placeholder, creating a web of interconnected concepts that you can explore and fill in as you gain understanding.</p>

<h2 id="building-a-knowledge-network">Building a Knowledge Network</h2>

<p>The real magic happens when you start connecting existing notes to new concepts. Let’s say you already have a note about “stock investing” and you’re now learning about “how stock price is decided.” You can link them together to create a rich knowledge network.</p>

<p>When you type the name of an existing note inside double brackets, Obsidian searches and filters intelligently. Just type a few letters and it shows matching notes and placeholders. This makes it easy to find and connect related information without breaking your workflow.</p>

<p>This connected approach means you’re not just learning about one topic in isolation. You’re building a comprehensive understanding where every concept connects to and reinforces others. When you review your notes, you can hover over linked terms to see their content without leaving your current note.</p>

<h2 id="different-types-of-stock-pricing">Different Types of Stock Pricing</h2>

<p>Understanding how stock prices work is crucial for any investor. The video explains two main scenarios:</p>

<p>For newly listed companies, the price is determined through a process called IPO (Initial Public Offering). Investment banks analyze the company’s financial statements, compare it to industry peers, assess growth potential, and evaluate market conditions. Based on this comprehensive analysis, they determine the initial stock price.</p>

<p>For established companies, it’s simpler—supply and demand. When more people want to buy a stock than sell it, the price goes up. When more people want to sell than buy, the price goes down. This daily fluctuation is what you see on financial news channels.</p>

<p>The key insight is that both methods are valuable to understand. The IPO process helps you evaluate new opportunities, while supply and demand helps you understand day-to-day market movements.</p>

<h2 id="the-lazy-investors-strategy">The Lazy Investor’s Strategy</h2>

<p>Here’s where it gets interesting. Not everyone has the time or desire to become a stock market expert. What if you’re busy and want a simple, effective investment approach?</p>

<p>The answer is index funds. Instead of trying to pick individual stocks (which is complex and time-consuming), you buy a basket of stocks that tracks a market index like the S&amp;P 500. This gives you exposure to 500 of the largest US companies with a single purchase.</p>

<p>The beauty of index funds is that they’re diversified by design. You’re not betting on one company’s success—you’re participating in the overall growth of the market. Historical data shows that S&amp;P 500 index funds have delivered approximately 10% annual returns over the long term.</p>

<h2 id="the-space-repetition-advantage">The Space Repetition Advantage</h2>

<p>This is where your connected knowledge base becomes truly powerful. When you review your notes, you’re not just reading—you’re reinforcing connections in your brain. This is called space repetition.</p>

<p>The graph view becomes your learning dashboard. You can start at any node and explore related concepts, creating an intuitive learning path. For example, start with “investment,” move to “how stock price is decided,” then to “IPO,” and eventually to “index funds.” The journey creates a complete picture.</p>

<p>When you revisit these notes periodically, you refresh the information in your memory. This strengthens neural pathways and makes knowledge stick. Over time, you’re not just collecting information—you’re building a lifelong learning system that makes you smarter every day.</p>

<p>Watch the Full Video
For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/cJKBa8CjD9c" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Knowledge Management" /><category term="Obsidian" /><category term="note-taking" /><category term="knowledge-management" /><category term="second-brain" /><category term="learning" /><category term="productivity" /><summary type="html"><![CDATA[Learn how to connect ideas, build a knowledge base, and master Obsidian note-taking for lifelong learning with this practical guide.]]></summary></entry><entry><title type="html">Organize Notes in Obsidian Using MOC (Map of Content)</title><link href="https://blog.shuvangkardas.com/obsidian-moc-map-of-content/" rel="alternate" type="text/html" title="Organize Notes in Obsidian Using MOC (Map of Content)" /><published>2026-02-10T00:00:00+00:00</published><updated>2026-02-10T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/obsidian-moc-map-of-content</id><content type="html" xml:base="https://blog.shuvangkardas.com/obsidian-moc-map-of-content/"><![CDATA[<p>I’ve been there. You create hundreds of notes, each one valuable, but then you can’t find anything. You scroll through endless lists, search blindly, and feel overwhelmed by your own knowledge base. It’s like having a library with thousands of books but no catalog system.</p>

<p>You’ve probably experienced this too. You’re learning something new, taking notes diligently, but after a few weeks, you’ve created so many disconnected notes that you don’t even remember what you have. The notes become a digital graveyard instead of a living, breathing knowledge system.</p>

<p>What You’ll Get From This
Here’s what you’ll learn from this guide:</p>

<ul>
  <li>How to create a Map of Content (MOC) to index your notes in Obsidian</li>
  <li>The zero-friction approach to note-taking and organizing simultaneously</li>
  <li>Using quick switcher to find notes in seconds</li>
  <li>Creating a mental map that helps you locate information fast</li>
  <li>Future-proofing your notes with plain text storage</li>
</ul>

<p>The Solution
Let’s dive into the practical steps for organizing your Obsidian notes with MOC. I’ll show you exactly how to create an index system that makes your knowledge base searchable and organized.</p>

<h2 id="what-is-a-map-of-content">What Is a Map of Content?</h2>

<p>MOC stands for “Map of Content” in Obsidian terminology. Think of it as an index or table of contents for your notes. Instead of having notes scattered everywhere, you create a central node that links to all related notes on a particular topic.</p>

<p>The beauty of MOC is that it’s not a fancy feature—it’s simply a note that lists and links to other notes. It’s your personal catalog system that makes finding information as easy as looking up a book in a library index.</p>

<h2 id="creating-your-first-moc">Creating Your First MOC</h2>

<p>Let’s say you’re learning about investment. You’ve been taking notes on various topics like how to invest, stock selection, IPO, index funds, and more. Instead of leaving these notes scattered, you create a MOC node called “MOC investment.”</p>

<p>Here’s how to create it:</p>

<ol>
  <li>Right-click in your vault and create a new note</li>
  <li>Name it “MOC investment” (the “MOC” prefix is important—it makes the note easy to find)</li>
  <li>Start indexing all your investment-related notes in this MOC</li>
</ol>

<p>When you start typing inside double brackets, Obsidian’s search feature kicks in. If you type “how,” it filters all notes starting with “how.” Type “stock,” and it shows all stock-related notes. This intelligent filtering makes it easy to find and link notes even when you have thousands in your vault.</p>

<h2 id="the-zero-friction-approach">The Zero-Friction Approach</h2>

<p>Here’s the key insight: note-taking and organizing should happen at the same time, not as separate tasks. The most common problem people face is the multi-step process: take note → organize note → repeat. This friction kills the habit.</p>

<p>Instead, use this zero-friction method:</p>

<p>When you create a new note or find an existing one you want to link, simply press the link shortcut (left square bracket twice), and start typing. Obsidian will show you matching notes and placeholders. Select the right one, and the link is created instantly.</p>

<p>You’re taking notes and organizing them in one step. No separate organizing session needed. This is how you build a sustainable note-taking habit that doesn’t feel like a chore.</p>

<h2 id="using-quick-switcher">Using Quick Switcher</h2>

<p>Quick Switcher is your best friend for finding notes. Press Ctrl+O (or Cmd+O on Mac) to open it. This shows you all your notes and lets you search instantly.</p>

<p>The key tip: Start your MOC notes with “MOC” at the beginning. This makes them easy to filter. When you open Quick Switcher and type “MOC,” you’ll see all your index notes. Select “MOC investment,” and you’re immediately in your investment index.</p>

<p>Once you’re in the MOC, you can see all your indexed notes. Click on any note to open it. If you need to find a specific note within the MOC, you can use the search feature inside Obsidian.</p>

<h2 id="creating-a-mental-map">Creating a Mental Map</h2>

<p>The MOC helps you build a mental map of your knowledge. When you look at your MOC investment, you see the structure:</p>

<ul>
  <li>How to invest</li>
  <li>How to buy good companies</li>
  <li>How to select a stock</li>
  <li>How stock price is decided</li>
  <li>IPO (Initial Public Offering)</li>
  <li>Index funds</li>
  <li>Investment advice for lazy people</li>
</ul>

<p>This visual organization helps your brain understand the relationships between concepts. You’re not just storing information—you’re building a connected knowledge structure that mirrors how concepts relate in the real world.</p>

<h2 id="making-your-moc-more-useful">Making Your MOC More Useful</h2>

<p>To make your MOC more functional, you can:</p>

<ol>
  <li><strong>Create bulleted lists</strong>: Organize notes in a logical structure</li>
  <li><strong>Use indentation</strong>: Create hierarchies by indenting notes (press Tab)</li>
  <li><strong>Add headings</strong>: Use headings to create sections within your MOC</li>
</ol>

<p>For example, you might have:</p>
<ul>
  <li>Basic concepts</li>
  <li>Stock-specific topics</li>
  <li>Investment strategies</li>
</ul>

<p>This structure makes it even easier to navigate your knowledge base.</p>

<h2 id="finding-notes-in-the-future">Finding Notes in the Future</h2>

<p>Here’s a common worry: “If I have thousands of notes, how will I find them months or years later?”</p>

<p>The answer is: through your MOCs and Quick Switcher. Let’s say you created an IPO note two years ago. When you open your MOC investment, you’ll see the IPO entry. Click on it, and you’re instantly at that note.</p>

<p>Even if you forget the exact title, Quick Switcher helps you find it. Open the MOC investment, browse through the list, and you’ll recognize “IPO” or “Initial Public Offering.”</p>

<p>This is the power of indexing: you don’t need to remember where you filed something. You just need to know it exists in your knowledge base.</p>

<h2 id="future-proofing-your-notes">Future-Proofing Your Notes</h2>

<p>One of the most important advantages of Obsidian is that your notes are stored in plain text format. This means:</p>

<ol>
  <li><strong>Your notes are future-proof</strong>: Even if Obsidian doesn’t exist in 10 or 20 years, your notes will still be readable</li>
  <li><strong>You own your data</strong>: Everything is stored locally in your directory</li>
  <li><strong>Easy backup and sync</strong>: You can copy your Obsidian vault to Google Drive, OneDrive, or any sync service</li>
  <li><strong>Cross-platform access</strong>: Open the same folder on any computer</li>
</ol>

<p>Unlike proprietary note-taking apps that lock you in, Obsidian gives you complete control over your knowledge base.</p>

<p>Watch the Full Video
For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/wGD001MTzm0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Knowledge Management" /><category term="Obsidian" /><category term="note-taking" /><category term="MOC" /><category term="map-of-content" /><category term="organization" /><category term="productivity" /><summary type="html"><![CDATA[Learn how to organize your Obsidian notes with MOC (Map of Content) for faster retrieval and better knowledge management.]]></summary></entry><entry><title type="html">Obsidian Note‑Taking Tutorial: Start Here &amp;amp; Connect Ideas</title><link href="https://blog.shuvangkardas.com/obsidian-note-taking-tutorial/" rel="alternate" type="text/html" title="Obsidian Note‑Taking Tutorial: Start Here &amp;amp; Connect Ideas" /><published>2026-02-10T00:00:00+00:00</published><updated>2026-02-10T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/obsidian-note-taking-tutorial</id><content type="html" xml:base="https://blog.shuvangkardas.com/obsidian-note-taking-tutorial/"><![CDATA[<h2 id="the-pain-point-opening">The Pain Point (Opening)</h2>

<p>You’ve probably tried a dozen note‑taking apps, only to end up with scattered files, broken links, or a subscription you can’t cancel. The biggest frustration? Spending hours organizing notes instead of actually learning. You feel the knowledge is there, but the connections between ideas are missing, making it hard to recall or apply what you’ve captured.</p>

<h2 id="what-youll-get-from-this">What You’ll Get From This</h2>

<p>By the end of this post you’ll walk away with:</p>

<ul>
  <li>A <strong>complete Obsidian setup</strong> guide – from downloading to creating your first vault.</li>
  <li><strong>Step‑by‑step instructions</strong> for linking notes so ideas automatically connect.</li>
  <li>Tips on keeping your notes <strong>future‑proof</strong> with plain‑text Markdown.</li>
  <li>A <strong>quick workflow</strong> to turn any video tutorial into a living knowledge graph.</li>
</ul>

<h2 id="the-solution-main-content">The Solution (Main Content)</h2>

<h3 id="1️⃣-install-obsidian-and-create-a-vault">1️⃣ Install Obsidian and Create a Vault</h3>
<ul>
  <li>Download Obsidian (free) from the official site.</li>
  <li>Open the app and choose <strong>Create new vault</strong> → give it a name (e.g., <code class="language-plaintext highlighter-rouge">ID‑nest</code>).</li>
  <li>Select a folder on your desktop or any location you prefer.</li>
</ul>

<h3 id="2️⃣-start-a-new-note--build-connections">2️⃣ Start a New Note &amp; Build Connections</h3>
<ul>
  <li>Click the <strong>New note</strong> button; name it <code class="language-plaintext highlighter-rouge">Welcome</code>.</li>
  <li>Use double brackets <code class="language-plaintext highlighter-rouge">[[</code> <code class="language-plaintext highlighter-rouge">]]</code> to create a link to a new note (e.g., <code class="language-plaintext highlighter-rouge">[[Investment]]</code>).</li>
  <li>Press <strong>Ctrl/Cmd‑click</strong> on the link to open the newly created note instantly.</li>
</ul>

<h3 id="3️⃣-organize-topics-with-nodes">3️⃣ Organize Topics with Nodes</h3>
<ul>
  <li>In the graph view, right‑click a note and select <strong>Create new node</strong> to add a concept like <code class="language-plaintext highlighter-rouge">Stock</code>.</li>
  <li>Link related notes (<code class="language-plaintext highlighter-rouge">[[Stock]]</code>) to weave a web of ideas.</li>
</ul>

<h3 id="4️⃣-keep-your-knowledge-futureproof">4️⃣ Keep Your Knowledge Future‑Proof</h3>
<ul>
  <li>All Obsidian notes are plain‑text Markdown files.</li>
  <li>You can sync them with any cloud service (Google Drive, OneDrive, etc.) without vendor lock‑in.</li>
  <li>If Obsidian ever disappears, your notes remain readable and portable.</li>
</ul>

<h3 id="5️⃣-leverage-the-power-of-connections">5️⃣ Leverage the Power of Connections</h3>
<ul>
  <li>The more you link, the easier it is for your brain to retrieve related concepts.</li>
  <li>Use the graph view to spot gaps in your knowledge and add missing notes.</li>
</ul>

<h2 id="watch-the-full-video">Watch the Full Video</h2>

<p>For the complete step‑by‑step walkthrough, watch the full video below:</p>

<div class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;iframe</span> <span class="na">width=</span><span class="s">"560"</span> <span class="na">height=</span><span class="s">"315"</span> <span class="na">src=</span><span class="s">"https://www.youtube.com/embed/fK2ZYKi7tBE"</span> <span class="na">title=</span><span class="s">"YouTube video player"</span> <span class="na">frameborder=</span><span class="s">"0"</span> <span class="na">allow=</span><span class="s">"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"</span> <span class="na">referrerpolicy=</span><span class="s">"strict-origin-when-cross-origin"</span> <span class="na">allowfullscreen</span><span class="nt">&gt;&lt;/iframe&gt;</span>
</code></pre></div></div>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong>
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter‑based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large‑scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands‑on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Obsidian" /><category term="Note‑taking" /><category term="Knowledge‑Management" /><category term="Learning" /><category term="Tutorial" /><summary type="html"><![CDATA[Learn how to set up Obsidian, create vaults, link notes, and build a connected knowledge base in this step‑by‑step tutorial.]]></summary></entry><entry><title type="html">Single Source of Truth in Obsidian: Centralize Your Knowledge</title><link href="https://blog.shuvangkardas.com/obsidian-single-source-of-truth/" rel="alternate" type="text/html" title="Single Source of Truth in Obsidian: Centralize Your Knowledge" /><published>2026-02-10T00:00:00+00:00</published><updated>2026-02-10T00:00:00+00:00</updated><id>https://blog.shuvangkardas.com/obsidian-single-source-of-truth</id><content type="html" xml:base="https://blog.shuvangkardas.com/obsidian-single-source-of-truth/"><![CDATA[<p>I’ve been there. You’re learning about a topic, taking notes here and there, but suddenly you realize the same information is scattered across multiple files. You have three different notes about investing, five about productivity, and seven about your research projects. When you need to find something, you don’t know which note to open. It’s like having copies of the same book in every room of your house—you never know which one has the information you need.</p>

<p>You’ve probably experienced this too. You read something valuable in a book or article, write it down in a quick note, then weeks later find yourself writing the same idea again in a different context. Or worse, you’re trying to review a topic and have to hunt through ten different notes to piece together your understanding. The fragmentation makes learning inefficient and frustrating.</p>

<p>What You’ll Get From This
Here’s what you’ll learn from this guide:</p>

<ul>
  <li>How to implement single source of truth in your note-taking system</li>
  <li>Why centralizing information improves knowledge retention</li>
  <li>Practical techniques for adding new information to existing notes</li>
  <li>Methods for reusing content without creating duplicates</li>
  <li>Ways to share your knowledge while maintaining one source of truth</li>
</ul>

<p>The Solution
Let’s dive into the practical steps for implementing single source of truth in Obsidian. I’ll show you exactly how to centralize your knowledge and avoid the fragmentation trap.</p>

<h2 id="what-is-single-source-of-truth">What Is Single Source of Truth?</h2>

<p>Single source of truth means maintaining only one location for each type of information. Instead of scattering notes about stocks across multiple files, you keep everything stock-related in one dedicated note. When you encounter new information about stocks, you add it to that existing note.</p>

<p>This concept isn’t new—it’s used in software development, project management, and knowledge management. The idea is simple: if you have one definitive source for information, you always know where to find it. You don’t waste time searching through multiple files or wondering which version is the most up-to-date.</p>

<p>In Obsidian, single source of truth works beautifully because of the linking system. You can reference the same note from anywhere without duplicating content.</p>

<h2 id="the-stock-note-example">The Stock Note Example</h2>

<p>Let me give you a practical example. You have a note called “stock” where you collect all your investment-related information. When you read a book about investing and find this powerful line: “When you buy a stock you are not just investing, you are becoming a partner in a real business,” you don’t create a new note for this insight.</p>

<p>Instead, you open your existing stock note and add this information there. Now all stock-related knowledge lives in one place: stock selection strategies, how stock prices are decided, information about IPOs, and this new business partnership perspective.</p>

<p>This approach makes sense because all these concepts are related to the same topic—investing in stocks. When you want to review or reference this information, you know exactly where to look: your stock note.</p>

<h2 id="why-centralization-matters">Why Centralization Matters</h2>

<p>When you maintain a single source of truth, you eliminate several problems:</p>

<ol>
  <li><strong>No confusion about where to store information</strong>: Every topic has a designated note</li>
  <li><strong>No duplication</strong>: You don’t waste time writing the same thing multiple times</li>
  <li><strong>Easy retrieval</strong>: You always know where to find information about a topic</li>
  <li><strong>Comprehensive understanding</strong>: All related information is in one place, helping you see connections</li>
</ol>

<p>The key is to think in terms of topics rather than documents. Instead of creating a new note for every piece of information, ask yourself: “What topic does this belong to?” Then add it to that topic’s note.</p>

<h2 id="ways-to-reuse-content-without-copying">Ways to Reuse Content Without Copying</h2>

<p>One common concern is: “If all information is in one place, how do I use that information elsewhere without copying?”</p>

<p>Obsidian provides several clever ways to reuse content while maintaining single source of truth:</p>

<h3 id="method-1-exclamation-mark--embedding">Method 1: Exclamation Mark (!) Embedding</h3>

<p>The most powerful method is using an exclamation mark to embed the entire content of another note. Here’s how it works:</p>

<ul>
  <li>In your current note, type <code class="language-plaintext highlighter-rouge">![[note name]]</code></li>
  <li>This displays the entire content of that note inside your current note</li>
  <li>The original note remains unchanged—you’re just displaying it</li>
</ul>

<p>For example, if you want to include your entire stock note in a new document, simply type <code class="language-plaintext highlighter-rouge">![[stock]]</code> and all the content appears. This is perfect for creating reports or sharing information.</p>

<h3 id="method-2-caret--embedding-for-specific-sections">Method 2: Caret (^) Embedding for Specific Sections</h3>

<p>But what if you only want to include a specific part of a note? Obsidian lets you do that too!</p>

<ul>
  <li>Go to the section you want to embed (like a heading or specific bullet point)</li>
  <li>Add a unique identifier using <code class="language-plaintext highlighter-rouge">^</code> (e.g., <code class="language-plaintext highlighter-rouge">^understand-business</code>)</li>
  <li>Reference it in another note with <code class="language-plaintext highlighter-rouge">![[stock#^understand-business]]</code></li>
</ul>

<p>This way, you can include just the relevant section without bringing in the entire note. It’s like having a quote from a book without copying the whole book.</p>

<h3 id="method-3-pdf-export">Method 3: PDF Export</h3>

<p>When you need to share your notes with others who don’t use Obsidian:</p>

<ol>
  <li>Open your note</li>
  <li>Export it as a PDF</li>
  <li>Share the PDF file</li>
</ol>

<p>This maintains single source of truth because the PDF is generated from your one true note. If you update the note, you can regenerate the PDF.</p>

<h2 id="practical-workflow">Practical Workflow</h2>

<p>Here’s how to implement single source of truth in your daily note-taking:</p>

<ol>
  <li>
    <p><strong>Create topic notes</strong>: For each major topic, create a dedicated note (e.g., “stock,” “productivity,” “research methods”)</p>
  </li>
  <li>
    <p><strong>Use naming conventions</strong>: Start topic notes with a clear identifier (like “MOC” for Map of Content or just a descriptive name)</p>
  </li>
  <li>
    <p><strong>Add new information immediately</strong>: When you learn something new about a topic, don’t create a new note—add it to the existing topic note</p>
  </li>
  <li>
    <p><strong>Link from elsewhere</strong>: When you need to reference this information, link to the topic note instead of copying</p>
  </li>
  <li>
    <p><strong>Use embeds for reports</strong>: When writing a document that needs to include topic information, use <code class="language-plaintext highlighter-rouge">![[topic]]</code> to embed the content</p>
  </li>
</ol>

<h2 id="benefits-of-this-approach">Benefits of This Approach</h2>

<p>When you adopt single source of truth, you’ll notice several improvements:</p>

<p><strong>Better Organization</strong>: Your knowledge base becomes structured around topics rather than random documents. This mirrors how our brains organize information.</p>

<p><strong>Reduced Clutter</strong>: You won’t have dozens of tiny notes about the same topic. Instead, you have one comprehensive note per topic.</p>

<p><strong>Easier Updates</strong>: When you want to update information, you only need to change one place. The updates propagate everywhere through links and embeds.</p>

<p><strong>Clearer Thinking</strong>: Seeing all related information in one place helps you understand connections and develop deeper insights.</p>

<p><strong>Time Savings</strong>: You spend less time searching for information and more time using it.</p>

<h2 id="addressing-common-concerns">Addressing Common Concerns</h2>

<p><strong>“What if the note becomes too long?”</strong>
This is actually a good sign! A long note about a topic means you’ve collected substantial knowledge. If it becomes unwieldy, you can create sub-topics or use headings to structure it better.</p>

<p><strong>“What if I need a different version for different audiences?”</strong>
You can still maintain one source of truth. Create a summary note that embeds relevant sections from your main note using the caret method.</p>

<p><strong>“What about daily notes or journaling?”</strong>
Some things naturally belong in daily notes—your daily activities, reflections, or time-sensitive information. Single source of truth applies to topical knowledge, not chronological records.</p>

<p>Watch the Full Video
For the complete step-by-step walkthrough, watch the full video below:</p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/V6tzrHNllPQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<hr />

<p><strong>Real stories. Practical lessons. Right in your inbox.</strong><br />
No spam—just once a week.</p>
<div id="newsletter-widget">
    <style>
        #newsletter-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #newsletter-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        #newsletter-widget #revue-form {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 10px;
            background-color: transparent;
            border: 2px solid #0073EC;
            border-radius: 5px;
            padding: 5px;
            display: flex;
        }
        #newsletter-widget .revue-form-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            border: 0;
            flex-grow: 1;
            background-color: transparent;
            color: inherit;
        }
        #newsletter-widget .revue-form-field::placeholder {
            color: #888;
        }
        #newsletter-widget .revue-form-field:focus {
            outline: none;
        }
        #newsletter-widget #member_submit {
            background-color: #0073EC;
            padding: 14px 34px;
            border: 0;
            cursor: pointer;
            color: #fff;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            flex-shrink: 0;
        }
        @media only screen and (max-width: 768px) {
            #newsletter-widget #revue-form {
                display: block;
            }
            #newsletter-widget #member_submit {
                width: 100%;
            }
        }
    </style>
    <div id="revue-embed">
        <form action="https://script.google.com/macros/s/AKfycbyuvBSFKTLyhVk6nSOfVgmTckNSnC2Fm0KN4p37PCc482ys7XSMX34YCsDT7z0a1Bey/exec" method="post" id="revue-form" name="revue-form" target="_blank">
            <input type="hidden" name="source" value="shuvangkardas.com" />
            <input class="revue-form-field" placeholder="Your email address..." type="email" name="email" id="member_email" required="" />
            <div class="revue-form-actions">
                <input type="submit" value="Subscribe" name="member[subscribe]" id="member_submit" />
            </div>
        </form>
    </div>
</div>

<hr />

<h3 id="-about-me">👋 About Me</h3>

<p>Hi, I’m <strong>Shuvangkar Das</strong> — a power systems researcher with a Ph.D. in Electrical Engineering, currently working as a Research Scientist. I work at the intersection of power electronics, inverter-based DERs (IBRs), and AI to help build smarter, greener, and more stable electric grids.</p>

<p>My work spans large-scale EMT simulations, firmware development, reinforcement learning, and hardware prototyping. Beyond engineering, I’m also a <a href="https://www.youtube.com/@ShuvangkarDas">YouTuber</a> and content creator — sharing hands-on insights on productivity, research, and knowledge management. My goal is simple: to make complex ideas more accessible and actionable for everyone.</p>

<p><strong>Connect with me:<br /></strong>
<a href="https://www.youtube.com/@ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/YouTube-Subscribe-red?style=for-the-badge&amp;logo=youtube" />
  </a>
  <a href="https://www.linkedin.com/in/ShuvangkarDas" target="_blank">
    <img src="https://img.shields.io/badge/LinkedIn-Connect-blue?style=for-the-badge&amp;logo=linkedin" />
  </a>
  <a href="https://newsletter.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Newsletter-Subscribe-blue?style=for-the-badge" />
  </a>
  <a href="https://twitter.com/shuvangkar_das" target="_blank">
    <img src="https://img.shields.io/badge/Twitter-Follow-blue?style=for-the-badge&amp;logo=twitter" />
  </a>
  
  <a href="https://github.com/shuvangkardas" target="_blank">
    <img src="https://img.shields.io/badge/GitHub-Follow-black?style=for-the-badge&amp;logo=github" />
  </a>
  <a href="https://blog.shuvangkardas.com" target="_blank">
    <img src="https://img.shields.io/badge/Blog-Read-blueviolet?style=for-the-badge" />
  </a>
  
</p>

<h3 id="-obsidian-notes-i-used-for-this-blog">📚 Obsidian Notes I Used for This Blog</h3>]]></content><author><name>Shuvangkar Das, PhD</name><email>shuvangkarcdas[AT]gmail[DOT]com</email></author><category term="Productivity" /><category term="Knowledge Management" /><category term="Obsidian" /><category term="single-source-of-truth" /><category term="knowledge-management" /><category term="note-taking" /><category term="organization" /><category term="productivity" /><summary type="html"><![CDATA[Learn how to maintain a single source of truth in Obsidian for better knowledge management and avoiding information duplication.]]></summary></entry></feed>