Personal Vault
Save anything you want to reuse. Capture instantly, find effortlessly.
5 codes
1 command
1 link
4 notes
Recent
Testing Vercel migration
Testing Vercel migration
hi
hi
SSH Config for Jump Host
Host bastion HostName bastion.example.com User admin IdentityFile ~/.ssh/bastion_key Host production Ho...
Python FastAPI Starter
from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str pr...
System Prompt Template
You are a helpful assistant specialized in {domain}. Your responses should be: - Concise and actionable - Based on veri...
SQL Query โ Find Duplicate Records
SELECT email, COUNT(*) as count FROM users GROUP BY email HAVING COUNT(*) > 1 ORDER BY count DESC;
Git Interactive Rebase
git rebase -i HEAD~3
React Custom Hook Pattern
import { useState, useCallback } from 'react'; export function useToggle(initial = false) { const [value, setValue] =...
Docker Compose PostgreSQL
version: '3.8' services: db: image: postgres:15 environment: POSTGRES_DB: myapp POSTGRES_USER: adm...
LangGraph Documentation
https://github.com/langchain-ai/langgraph
AI Agent Architecture Notes
Today the CTO explained the core concepts of AI agent architecture: 1. **Inference** โ Running the LLM to generate resp...