惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Y
Y Combinator Blog
月光博客
月光博客
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
博客园 - 司徒正美
V
Visual Studio Blog
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Built a Developer Knowledge Base in Obsidian That I...
AppZ · 2026-06-22 · via DEV Community

AppZ

Every developer I know has the same problem: knowledge scattered across five places at once.

Browser bookmarks they never re-read. Notion docs that become graveyards. Slack threads with critical context that disappear into the archive. README files that contradict each other. Stack Overflow answers bookmarked with zero recall of why.

I tried most of the "second brain" setups and none of them stuck until I figured out why they kept failing: generic productivity systems are not built for how developers actually think and work.

A developer's knowledge is fundamentally different from a writer's or a manager's. It is:

  • Code-linked (a note about a library is useless without the actual code it explains)
  • Decision-heavy (architecture decisions need context, rationale, and alternatives considered)
  • Debugging-intensive (solutions to bugs need the exact error message, environment, and what you tried)
  • Time-sensitive (that API migration note is only relevant for a 3-month window)

Here is the structure that actually worked.

The Core Structure

00-Inbox/
10-Projects/
20-Areas/
  - Language: Python/
  - Stack: AWS/
  - Domain: Auth/
30-Resources/
  - Libraries/
  - Tools/
  - Patterns/
40-Archive/

The key insight: Resources are evergreen, Projects are temporary, Areas are ongoing responsibilities.

A note about how JWT works lives in 30-Resources/Domain-Auth/. A note about implementing JWT for the current sprint lives in 10-Projects/Sprint-42-Auth-Revamp/. When the sprint is done, the project gets archived. The JWT fundamentals note stays forever.

The Templates That Made It Click

Architecture Decision Record (ADR)

# ADR-042: Use Postgres over DynamoDB for user sessions

Status: Accepted | Date: 2026-06-22

## Context
We need session storage that supports complex queries for the audit log feature.

## Decision
Postgres with connection pooling via PgBouncer.

## Alternatives Considered
- DynamoDB: rejected (query limitations for audit log requirements)
- Redis: rejected (not durable enough for compliance requirements)

## Consequences
- Positive: Full SQL query support for audit reporting
- Negative: Need to manage connection pool tuning

This template changed how our team makes decisions. When someone asks "why did we choose X six months ago?" the answer is one Cmd+O search away.

Debug Log

# Debug: [error message or symptom]

Date: 
Environment: 
Reproduction Steps:

## What I Tried
- Attempt 1: [result]
- Attempt 2: [result]

## Root Cause

## Fix

## Links

The discipline here: write the debug log BEFORE you fix it, not after. The moment you close the bug you lose 80% of the context. The notes you write mid-investigation are the ones that actually help future-you.

Code Snippet Vault

# [What this does in plain English]

Tags: #python #pandas #data-cleaning

## Use When
[Specific scenario this applies to]

## Code


python

the actual code


## Gotchas
- [Edge case 1]
- [Edge case 2]

## Source
[Link to SO answer, docs page, or colleague who showed you this]


datastudio

The "Use When" field is what separates useful snippets from ones you never re-find. If you cannot write one sentence about when to use it, you probably do not understand it well enough to save it.

The Dataview Queries That Make It Useful

Install the Dataview plugin and add these to your homepage:

Open architecture decisions (needing review):

TABLE status, date FROM "20-Areas"
WHERE contains(file.name, "ADR") AND status != "Accepted" AND status != "Superseded"
SORT date DESC

Notes tagged with a specific tech stack:

LIST FROM #aws AND #lambda
SORT file.mtime DESC
LIMIT 10

Recent debug logs (last 14 days):

TABLE file.mtime as "Date" FROM "10-Projects"
WHERE contains(file.name, "Debug")
WHERE date(file.mtime) > date(today) - dur(14 days)
SORT file.mtime DESC

What Actually Changed My Behaviour

The three things that made this stick where other systems did not:

1. The quick capture shortcut. I have a hotkey that opens a new note in 00-Inbox/ in under a second. If capturing requires more than one action, you stop capturing during flow state.

2. Weekly 20-minute inbox processing. Every Monday, everything in 00-Inbox/ gets filed, linked, or deleted. The inbox is not storage -- it is a queue.

3. The "what would make this note findable" principle. Before closing any note, I ask: if I search for this in 6 months with a vague memory of what it's about, what search term will I use? Then I make sure that term is in the title or first paragraph.

Getting Started Without Building From Scratch

The hardest part is the initial structure and templates. You can build everything above yourself in a few hours, or use a pre-built Developer KB OS with the ADR, debug log, snippet vault, and Dataview queries already wired up.

I put one together and it's available at zarchitectstudio.gumroad.com/l/rncjp -- but everything in this post is enough to build your own if you prefer starting from scratch.

The setup matters less than the habit. Pick a structure, commit to it for 30 days, and adjust from there.