├── .gitignore ├── Baidu ├── __init__.py ├── baidu_cookies_login.py ├── baidu_count_login.py ├── baidu_server.py ├── readme.md └── tiebaGUI │ ├── Gtieba.py │ ├── TiebaGUI.py │ ├── __init__.py │ └── readme.md ├── CODE_OF_CONDUCT.md ├── CloudMusic ├── README.md ├── __init__.py └── login.py ├── CodeSnippets ├── README.md ├── change_wallpaper.py ├── create_count_and_grant.sql ├── flask_file_serve.py ├── flask_form_template.jinja └── multiprocessing_dummy_pool.py ├── Dailyv2ex ├── readme.md └── v2ex.py ├── Drcom ├── LICENSE ├── README.md ├── __init__.py ├── drcom │ ├── __init__.py │ ├── drcom.py │ ├── encrypt │ ├── login.py │ └── utils.py ├── encrypt ├── encrypt.c ├── encrypt.exe ├── manage.py └── requirements.txt ├── GitHubThon ├── README.md ├── __init__.py ├── github_marathon.py ├── mara.sh ├── marathon.json └── marathon_log ├── InsResource ├── InsPic.py └── __init__.py ├── LICENSE ├── Newtouch ├── README.md └── atouch.py ├── PicToChar └── readme.m ├── QQRobot ├── .gitignore ├── LICENSE ├── QQRobot │ ├── Login.py │ ├── ShowQRcode.py │ ├── __init__.py │ ├── main.py │ └── test │ │ └── __init__.py ├── README.md ├── __init__.py ├── requirements.txt └── setup.py ├── README.md ├── StuScore ├── README.m ├── Score.py ├── __init__.py └── utils.py ├── TumblrResource ├── .gitkeep ├── Tumblr.py └── __init__.py ├── __init__.py ├── downloadMV ├── CloudMusicMV.py └── README.m ├── flask_upload_file_service ├── README.md ├── app.py ├── requirements.txt ├── static │ ├── css │ │ ├── custom.css │ │ └── dropzone.css │ └── js │ │ └── dropzone.js └── templates │ ├── index.html │ └── upload.html └── utils ├── HTTPRequest.py ├── __init__.py ├── foo.py └── log.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Baidu/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding:utf-8 3 | -------------------------------------------------------------------------------- /Baidu/baidu_cookies_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Baidu/baidu_cookies_login.py -------------------------------------------------------------------------------- /Baidu/baidu_count_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Baidu/baidu_count_login.py -------------------------------------------------------------------------------- /Baidu/baidu_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Baidu/baidu_server.py -------------------------------------------------------------------------------- /Baidu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Baidu/readme.md -------------------------------------------------------------------------------- /Baidu/tiebaGUI/Gtieba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Baidu/tiebaGUI/Gtieba.py -------------------------------------------------------------------------------- /Baidu/tiebaGUI/TiebaGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Baidu/tiebaGUI/TiebaGUI.py -------------------------------------------------------------------------------- /Baidu/tiebaGUI/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding:utf-8 3 | -------------------------------------------------------------------------------- /Baidu/tiebaGUI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Baidu/tiebaGUI/readme.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CloudMusic/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CloudMusic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CloudMusic/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CloudMusic/login.py -------------------------------------------------------------------------------- /CodeSnippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CodeSnippets/README.md -------------------------------------------------------------------------------- /CodeSnippets/change_wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CodeSnippets/change_wallpaper.py -------------------------------------------------------------------------------- /CodeSnippets/create_count_and_grant.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CodeSnippets/create_count_and_grant.sql -------------------------------------------------------------------------------- /CodeSnippets/flask_file_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CodeSnippets/flask_file_serve.py -------------------------------------------------------------------------------- /CodeSnippets/flask_form_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CodeSnippets/flask_form_template.jinja -------------------------------------------------------------------------------- /CodeSnippets/multiprocessing_dummy_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/CodeSnippets/multiprocessing_dummy_pool.py -------------------------------------------------------------------------------- /Dailyv2ex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Dailyv2ex/readme.md -------------------------------------------------------------------------------- /Dailyv2ex/v2ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Dailyv2ex/v2ex.py -------------------------------------------------------------------------------- /Drcom/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Drcom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/README.md -------------------------------------------------------------------------------- /Drcom/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding:utf-8 3 | -------------------------------------------------------------------------------- /Drcom/drcom/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding:utf-8 3 | -------------------------------------------------------------------------------- /Drcom/drcom/drcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/drcom/drcom.py -------------------------------------------------------------------------------- /Drcom/drcom/encrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/drcom/encrypt -------------------------------------------------------------------------------- /Drcom/drcom/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/drcom/login.py -------------------------------------------------------------------------------- /Drcom/drcom/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/drcom/utils.py -------------------------------------------------------------------------------- /Drcom/encrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/encrypt -------------------------------------------------------------------------------- /Drcom/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/encrypt.c -------------------------------------------------------------------------------- /Drcom/encrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/encrypt.exe -------------------------------------------------------------------------------- /Drcom/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Drcom/manage.py -------------------------------------------------------------------------------- /Drcom/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GitHubThon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/GitHubThon/README.md -------------------------------------------------------------------------------- /GitHubThon/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding:utf-8 3 | -------------------------------------------------------------------------------- /GitHubThon/github_marathon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/GitHubThon/github_marathon.py -------------------------------------------------------------------------------- /GitHubThon/mara.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/GitHubThon/mara.sh -------------------------------------------------------------------------------- /GitHubThon/marathon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/GitHubThon/marathon.json -------------------------------------------------------------------------------- /GitHubThon/marathon_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/GitHubThon/marathon_log -------------------------------------------------------------------------------- /InsResource/InsPic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/InsResource/InsPic.py -------------------------------------------------------------------------------- /InsResource/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding:utf-8 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Newtouch/README.md: -------------------------------------------------------------------------------- 1 | Linux 新建文件自动添加头部信息 2 | 3 | ## 使用 4 | 5 | -------------------------------------------------------------------------------- /Newtouch/atouch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/Newtouch/atouch.py -------------------------------------------------------------------------------- /PicToChar/readme.m: -------------------------------------------------------------------------------- 1 | 用Python将图片转换为字符 2 | -------------------------------------------------------------------------------- /QQRobot/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | /QQrobot/cookies 3 | *.log 4 | -------------------------------------------------------------------------------- /QQRobot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/QQRobot/LICENSE -------------------------------------------------------------------------------- /QQRobot/QQRobot/Login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/QQRobot/QQRobot/Login.py -------------------------------------------------------------------------------- /QQRobot/QQRobot/ShowQRcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/QQRobot/QQRobot/ShowQRcode.py -------------------------------------------------------------------------------- /QQRobot/QQRobot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QQRobot/QQRobot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/QQRobot/QQRobot/main.py -------------------------------------------------------------------------------- /QQRobot/QQRobot/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QQRobot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/QQRobot/README.md -------------------------------------------------------------------------------- /QQRobot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QQRobot/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | requests 3 | -------------------------------------------------------------------------------- /QQRobot/setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/README.md -------------------------------------------------------------------------------- /StuScore/README.m: -------------------------------------------------------------------------------- 1 | 成绩查询 2 | -------------------------------------------------------------------------------- /StuScore/Score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/StuScore/Score.py -------------------------------------------------------------------------------- /StuScore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StuScore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/StuScore/utils.py -------------------------------------------------------------------------------- /TumblrResource/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TumblrResource/Tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/TumblrResource/Tumblr.py -------------------------------------------------------------------------------- /TumblrResource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downloadMV/CloudMusicMV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/downloadMV/CloudMusicMV.py -------------------------------------------------------------------------------- /downloadMV/README.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/downloadMV/README.m -------------------------------------------------------------------------------- /flask_upload_file_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/README.md -------------------------------------------------------------------------------- /flask_upload_file_service/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/app.py -------------------------------------------------------------------------------- /flask_upload_file_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/requirements.txt -------------------------------------------------------------------------------- /flask_upload_file_service/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/static/css/custom.css -------------------------------------------------------------------------------- /flask_upload_file_service/static/css/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/static/css/dropzone.css -------------------------------------------------------------------------------- /flask_upload_file_service/static/js/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/static/js/dropzone.js -------------------------------------------------------------------------------- /flask_upload_file_service/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/templates/index.html -------------------------------------------------------------------------------- /flask_upload_file_service/templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/flask_upload_file_service/templates/upload.html -------------------------------------------------------------------------------- /utils/HTTPRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/utils/HTTPRequest.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding:utf-8 3 | -------------------------------------------------------------------------------- /utils/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/utils/foo.py -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/Daily_scripts/HEAD/utils/log.py --------------------------------------------------------------------------------