stash配置和Quantumult X,suger的区别

YouTube APP去广告 - 使用 Quantumult X / Surge/ Shadowrocket/ Loon/Stash 完美屏蔽YouTube App广告小白教程(神机规则) - 毒奶 - 欢迎使用代理访问本站。

https://github.com/deezertidal/stash-override

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!name = YouTube去广告
#!desc =支持pip,后台播放
#!author = Maasea
#!homepage=https://whatshub.top
#!icon = https://raw.githubusercontent.com/Koolson/Qure/master/IconSet/Color/YouTube.png
name: YouTubequguanggao
desc: 支持pip,后台播放
http:
mitm:
- "-redirector*.googlevideo.com"
- "*.googlevideo.com"
- "www.youtube.com"
- "s.youtube.com"
- "youtubei.googleapis.com"
script:
- match: ^https:\/\/youtubei\.googleapis\.com\/youtubei\/v1\/(browse|next|player|search|reel\/reel_watch_sequence|guide|account\/get_setting)\?
name: YouTubequguanggao1
type: response
require-body: true
binary-mode: true
timeout: 10
- match: ^https:\/\/youtubei\.googleapis\.com\/youtubei\/v1\/(browse|next|player|reel\/reel_watch_sequence)\?
name: YouTubequguanggao2
type: request
require-body: true
binary-mode: true
timeout: 10
rewrite:
- (^https?:\/\/[\w-]+\.googlevideo\.com\/(?!dclk_video_ads).+?)&ctier=L(&.+?),ctier,(.+) $1$2$3 302
- ^https?:\/\/[\w-]+\.googlevideo\.com\/(?!(dclk_video_ads|videoplayback\?)).+&oad - reject-200
- ^https?:\/\/(www|s)\.youtube\.com\/api\/stats\/ads - reject-200
- ^https?:\/\/(www|s)\.youtube\.com\/(pagead|ptracking) - reject-200
- ^https?:\/\/s\.youtube\.com\/api\/stats\/qoe\?adcontext - reject-200
script-providers:
YouTubequguanggao1:
url: https://raw.githubusercontent.com/Maasea/sgmodule/master/Script/Youtube/dist/youtube.response.beta.js
interval: 86400
YouTubequguanggao2:
url: https://raw.githubusercontent.com/Maasea/sgmodule/master/Script/Youtube/dist/youtube.request.beta.js
interval: 86400

代码复用逻辑和类命名

对于静态工具类的抽象复用,可以考虑以下几点:

  1. 将公共逻辑提取出来,放到一个基类或接口中。子类只需要实现自己业务相关的逻辑。

空间关系

1.Hole Outside Shell

Indicates that a hole of a polygon lies partially or completely in the exterior of the shell.

img

2.Nested Holes

Indicates that a hole lies in the interior of another hole in the same polygon.

图像相关的数据和介绍

有损压缩图片 jpg png

矢量图片 svg

tiff,tif数据 相比较 jpg png里面的信息更加丰富 每个栅格下 是RGB 还是什么不一定是显示,而是包含高度或者温度

程序员工具分享-转载

程序员

分享一些我常用的提升开发效率的工具:

AI工具

GitHub Copilot:能极大的提高效率,不仅能在编辑器中根据代码上下文自动编写代码,还能以ChatGPT对话的方式回答问题。有了它,极大的降低了对StackOverflow的依赖。

ChatGPT:虽然GitHub Copilot以及能在写代码方面平替ChatGPT,但ChatGPT的GPT4 V的识图功能、DALL E3的绘图功能、移动端的语音对话功能都是GitHub Copilot无法替代的。用ChatGPT绘图或练英语还是很方便的。

redis介绍

Redis是一个开源的内存数据存储解决方案,它可以用作缓存、数据库和消息代理。以下是它的主要特点和原理:

  • 内存存储:将所有数据存储在内存中,以实现快速读写访问。同时,它支持多种数据结构,如字符串、哈希、列表、集合和有序集合