Skip to content

Commit b3d1093

Browse files
committed
new post / 2025-08-31-vibe-coding-cheat-sheet.md
1 parent 815680d commit b3d1093

2 files changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
authors:
3+
- copdips
4+
categories:
5+
- ai
6+
- vibe-coding
7+
- vscode
8+
comments: true
9+
date:
10+
created: 2025-08-31
11+
---
12+
13+
# Vibe coding cheat sheet
14+
15+
Some useful patterns for Vibe coding. This blog will be regularly updated with new tips and tricks.
16+
17+
<!-- more -->
18+
19+
## Github Copilot instructions
20+
21+
[Azure SDK for Python copilot instructions](https://github.com/Azure/azure-sdk-for-python/blob/main/.github/copilot-instructions.md)
22+
23+
## Claud Code rules
24+
25+
Chris Dzombak's [claude code rules](https://www.dzombak.com/blog/2025/08/getting-good-results-from-claude-code/)
26+
27+
## Other instructions
28+
29+
```markdown title="python instructions"
30+
- How to enable venv: ...
31+
- How to test and lint: ...
32+
33+
- Write code in Python 3.13+ syntax.
34+
- Use modern Python features, such as pathlib over os.path, asyncio over multithreading, pytest over unittest, polars over pandas, fastapi over flask, etc.
35+
- Use pydantic v2 if you need data validation and settings management.
36+
- Use sqlalchemy v2 for database interactions.
37+
- Give comments for complex logic.
38+
```

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ plugins:
134134
- ubuntu
135135
- unittest
136136
- vault
137+
- vibe-coding
137138
- video
138139
- vmware
139140
- vscode

0 commit comments

Comments
 (0)