Explore
Public clips anyone can open. Make a clip public from its settings to list it here.
- docker-compose-quickstart# Docker Compose quickstart ## Minimal web + db ```yaml services: web: image: nginx:alpine ports: - "8080:80" depends_on: - db db: image:…
- ssh-config-examples# Useful ~/.ssh/config examples Host * AddKeysToAgent yes IdentitiesOnly yes # Short alias Host box HostName 203.0.113.10 User deploy Ide…
- markdown-cheatsheet# Markdown cheat sheet ## Headings # H1 ## H2 ### H3 ## Emphasis *italic* or _italic_ **bold** or __bold__ ~~strikethrough~~ ## Lists - I…
- curl-examples# Practical curl examples ## GET / POST JSON curl https://httpbin.org/get curl -X POST https://httpbin.org/post \ -H "Content-Type: appli…
- sql-joins-cheatsheet-- SQL joins cheat sheet -- INNER JOIN: rows matching in both tables SELECT u.name, o.total FROM users u INNER JOIN orders o ON o.user_id…
- json-escape-examples# JSON escape examples ## Characters to escape inside strings - Quote (") -> \" - Backslash (\) -> \\ - Newline -> \n - Tab -> \t - Unico…
- git-cheat-sheet# Git cheat sheet ## Everyday git status git add -p # stage interactively git commit -m "message" git pull --rebase git push ## Branches …
- demoWelcome to Webklip! This is a sample clip so you can see how it works before creating your own. Try editing this text — if you open this …