grep -r "tutorial"
74 posts tagged tutorial
- Kubernetes A-to-Z Series: Complete Learning Path
- Kibana từ A đến Z: Series Plan
- LLM từ zero: Series Plan
- Claude Code từ zero: Series Plan
- [1/24] K is for Kubernetes: Understanding the Basics and Architecture
- [2/24] C is for Containers: Docker Fundamentals Before Kubernetes
- [26/26] X is for eXtensibility: CRDs, Webhooks, and the API Aggregation Layer
- LLM hoạt động thế nào: mental model cho dev
- Calculus cho LLM: gradient, chain rule, backprop intuition
- Linear algebra cho LLM: vector, matrix, dot product
- Neural network tối giản: perceptron, MLP từ zero
- Probability cho LLM: softmax, cross-entropy, perplexity
- Build BPE tokenizer từ đầu (theo Karpathy minbpe)
- Attention mechanism: Query, Key, Value intuition
- Embeddings: word2vec, contextual, và positional encoding (RoPE)
- Multi-head attention: tại sao chia nhiều head
- nanoGPT: 300 dòng PyTorch tái tạo GPT từ đầu
- Self-attention: code từ đầu bằng NumPy
- Transformer block: attention + MLP + layer norm + residual
- Tokenization: BPE, WordPiece, SentencePiece
- Claude Code là gì: CLI, IDE, Web, SDK và anatomy của 1 session
- autoMemoryDirectory: chia memory theo project hoặc client
- Branch-per-machine: sync ~/.claude/ giữa các máy
- Auto-memory: file-based, MEMORY.md index, các loại memory
- CLAUDE.md và rules: kiến trúc instructions hierarchical, path-scoping
- Context window: prompt được dựng thế nào mỗi turn
- Compaction và prompt cache: cách CC quản lý conversation dài
- Anatomy của 1 hook production-grade: shell script và exit codes
- Hooks: lifecycle events, exit codes, và các kiểu hook thực tế
- Mobile coding qua Telegram bridge
- MCP servers: context bên ngoài, khi nào tự build, khi nào dùng có sẵn
- Plan mode: state file, exit prompt, plan vs todo vs memory
- Permission model: ask, auto, acceptEdits, bypassPermissions và deny list
- Plugins: khác skill thế nào, marketplace, khi nào dùng
- Settings.json load-bearing: env, permissions, hooks, plugins
- Anatomy của 1 skill production-grade: từ ý tưởng đến SKILL.md
- Skills: SKILL.md frontmatter, slash command, và disable-model-invocation
- Subagents: anatomy, tools whitelist, system prompt, và examples block
- TeamCreate và SendMessage: persistent addressable agents
- Spawning patterns: foreground, background, sequential, teammate
- Tool use loop: vòng giữa model và tool, retry, parallel calls
- Worktree hotfix trong khi main session đang debug production
- Worktree isolation: vì sao tách working tree và base branch hook
- Background session và worktree: setting worktree.bgIsolation từ 2.1.143
- Distributed training: DP, DDP, FSDP, pipeline parallel
- DPO và RLHF: alignment với preference data
- Hands-on fine-tune Llama-3 với dataset tiếng Việt LoRA $20 GPU
- LoRA và QLoRA: parameter-efficient fine-tuning
- Scaling laws: Chinchilla, compute-optimal, data efficient
- SFT: supervised fine-tuning với instruction dataset
- Training loop: forward, backward, optimizer, lr schedule
- Agent là gì: LLM cộng tools cộng memory cộng loop
- Control loop: ReAct, agentic loop, điều kiện dừng
- Chain-of-Thought so với structured reasoning
- Build agent từ đầu: 100 dòng Python với Anthropic SDK
- Memory cho agent: context window, scratchpad, summarization
- Plan-and-Execute: tách planning khỏi execution
- Tree of Thoughts và tree search cho agent
- Agent communication: shared state so với message passing
- Eval cho agent: trace, replay, golden set, regression
- Cost và latency: token budget, streaming, prompt caching
- Failure modes: hallucination, infinite loop, hijacking
- On-call cho agent: monitoring, alerts, rollback, A/B test
- Security: prompt injection, tool sandboxing, secrets
- Browser automation cho agent: Playwright và computer use
- Code execution sandbox: subprocess, Docker, e2b
- MCP (Model Context Protocol): chuẩn hoá tool layer
- Multi-agent patterns: supervisor, handoff, debate
- RAG cho agents: retrieval trong vòng lặp, không phải QA
- ReAct: thought, action, observation cycle
- Self-reflection: critic, verifier, retry pattern
- Specialized agent roles: planner, executor, reviewer
- Tool design: schema, validation, idempotency
- Tool use cơ bản: function calling, JSON schema, error handling