This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: markdown-create | |
| description: MUST be invoked BEFORE writing or editing any .md file. | |
| --- | |
| # Markdown 撰写指南 | |
| ## 核心理念 | |
| Markdown 是**为读者服务**的轻量结构。本 skill 的所有规则都从这一点出发: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| # @Project : programming | |
| # @File : mpeg2_download_and_combine.py | |
| # @Author : Leo Chen <leo.dev@qq.com> | |
| # @Date : 2022/9/29 20:19 | |
| """ | |
| import os | |
| from concurrent.futures import ThreadPoolExecutor |