Quick Start
Get started quickly with the most commonly used commands and reference materials.
Most Used Commands
Docker Quick Commands
bash
# List all containers
docker container list --all
# Start a container
docker container start <container_name>
# View logs
docker logs --follow <container_name>
# Execute shell in container
docker container exec -it <container_name> /bin/bashGit Quick Commands
bash
# Stash specific file
git stash push -m "message" -- file.txt
# Stash including untracked files
git stash push -m "message" -u
# Apply specific stash
git stash apply stash@{0}Cross-Platform Commands
| Task | Linux/Mac | Windows PowerShell |
|---|---|---|
| List environment variables | printenv | dir env: |
| Show specific variable | echo $JAVA_HOME | $env:JAVA_HOME |
| Find file | find ./ -iname "*file*" | dir -Recurse file.txt |
See full cross-platform reference →
External Cheatsheet Resources
Quick access to excellent external cheatsheet collections:
General Programming
- cheatsheets.zip - Comprehensive collection of programming cheatsheets
- DevHints - Developer cheatsheets for various technologies
- Learn X in Y Minutes - Quick language tutorials
- QuickRef - Quick reference cheatsheets
Specialized Resources
- Python Cheatsheet - Comprehensive Python reference
- Linux Guide - Linux command guide (Portuguese)
- Flexbox Cheatsheet - CSS Flexbox visual guide
- Crontab Guru - Cron schedule expression editor
Advanced Topics
- Git Snippets Collection - Advanced Git snippets
- Linux Performance Gist - Linux performance analysis
Browse by Category
Choose a category to explore detailed references:
- Platforms - Windows, Linux, and cross-platform commands
- Tools - Git, Docker, .NET, FFMPEG
- Editors - VS Code configuration and LSP shortcuts
- Network & System - SSH, networking, and system configuration
Search
Use the search bar (click or press /) to quickly find specific commands or topics across all documentation.