- Backfill `created` frontmatter on 266 active notes (git date or mtime) - Normalize `status` to 4 values: draft/active/done/archived (11 notes) - Active/进行中/needs-review → active - archive → archived - 待执行/conditional → draft - 完成/accepted → done - Declare clipper boundary: 04_Archive/Inbox-Clippings/** exempt from migration - Update depth rule: max 3 → max 4 levels (new notes only) - Add metadata-converge.mjs script for reproducibility
30 lines
355 B
Markdown
30 lines
355 B
Markdown
---
|
|
created: 2026-01-05
|
|
---
|
|
|
|
|
|
login by wexin qrcode
|
|
|
|
login id generate:
|
|
```python
|
|
def generate_qr_login_id():
|
|
|
|
"""
|
|
|
|
Generate a unique id for qr code login
|
|
|
|
word-by-word copied from js code
|
|
|
|
"""
|
|
|
|
rand_str = f"{int(time.time() * 1000)}{random.random()}"
|
|
|
|
return md5(rand_str.encode()).hexdigest()
|
|
```
|
|
|
|
generated:
|
|
```id
|
|
607d21bf2f06142e52d2057de49eed8d
|
|
```
|
|
|