See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### OR take a look at | |
### https://github.com/HotCakeX/Harden-Windows-Security |
# -*- coding:utf-8 -*- | |
# !/usr/bin/env python3 | |
''' | |
Author: ayasakinagi | |
Email: xyz.wang@outlook.com | |
环境: Python3 | |
依赖: deluge_client | |
使用: 修改host, port, username, password, limitSize, dataPath变量 |
/** | |
Open Source Software Licenses | |
PUBLUS | |
Copyright(c) 2013-2014 ACCESS CO., LTD. All rights reserved. | |
This software includes all or part of the following open source software which is available under each license terms and conditions as follows: | |
* Backbone.js 0.9.2 | |
(c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc. |
Hi All! | |
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
App Description: | |
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
/** | |
* 使用方法: | |
* 1. 用 Chrome 打开歌单的 web 页面(可以通过分享拿到链接,链接类似这样:http://music.163.com/playlist?id=xxx&userid=yyy) | |
* 2. 然后右键“检查”(如果有左上角有 device 选项,需要选择 Laptop 开头的,可以在 Edit/编辑 里添加,添加的时候注意 “User Agent string” 里选择 Desktop) | |
* 3. 在 console 里输入下面脚本,即可输出 “歌曲名 - 歌手名” 格式的内容: | |
Springsteen - Eric Church | |
Chattahoochee - Alan Jackson | |
Baby Now That I Found You - Alison Krauss | |
Check Yes or No - George Strait |
IPv6 | 国家 | 省份 | 城市 | 学校/教育机构 | |
---|---|---|---|---|---|
2001:da8:0200::/48 | 中国 | 北京 | 北京 | 清华大学 | |
2001:da8:0201::/48 | 中国 | 北京 | 北京 | 北京大学 | |
2001:da8:0202::/48 | 中国 | 北京 | 北京 | 北京邮电大学 | |
2001:da8:0203::/48 | 中国 | 北京 | 北京 | 北京航空航天大学 | |
2001:da8:0204::/48 | 中国 | 北京 | 北京 | 北京理工大学 | |
2001:da8:0205::/48 | 中国 | 北京 | 北京 | 北京交通大学 | |
2001:da8:0206::/48 | 中国 | 北京 | 北京 | 北京城市学院 | |
2001:da8:0207::/48 | 中国 | 北京 | 北京 | 北京师范大学 | |
2001:da8:0208::/48 | 中国 | 北京 | 北京 | 北京科技大学 |
<!-- | |
* @Description: image clip | |
* @Author: ekibun | |
* @Date: 2020-07-31 22:39:41 | |
* @LastEditors: ekibun | |
* @LastEditTime: 2020-08-01 22:51:51 | |
--> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<div style="user-select: none;"> |
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
# 0. 免责:仅在本人的qBittorrent v4.1.8上测试通过,本人不承担任何责任 | |
# 1. 安装依赖: pip3 install requests python-qbittorrent | |
# 2. 修改代码开头的apikey和qbittorrent_config | |
# 3. 运行: python3 u2.py | |
# 4. 等待运行完成 | |
import time |
addEventListener('fetch', event => event.respondWith(handleRequest(event.request))); | |
// Add environment variable `TGBOT_TOKEN` via Worker-Settings | |
async function requestTelegramBotAPI(method, payload) { | |
return fetch(`https://api.telegram.org/bot${TGBOT_TOKEN}/${method}`, { | |
method: "POST", | |
headers: { | |
"Content-Type": "application/json; charset=utf-8" | |
}, | |
body: !payload ? undefined : JSON.stringify(payload) |