- Created Methodology.md to outline the P.A.R.A. system and its components. - Added Outline.md for a structured overview of P.A.R.A. content. - Documented PKM content organization decisions in PKM-Consolidation-Decision.md. - Introduced Workflows.md to explain practical applications of P.A.R.A. in work scenarios. - Moved sensitive information to security-sensitive folder and restructured the Personal folder to align with P.A.R.A. principles. - Archived backup files including Matrix Me.md and TTG Cookies.md. - Implemented a comprehensive refactor of the Personal folder to improve organization and security.
27 lines
327 B
Markdown
27 lines
327 B
Markdown
|
|
|
|
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
|
|
```
|
|
|