Skip to content

Instantly share code, notes, and snippets.

View tclh123's full-sized avatar
💭
Be an artist

Harry Lee tclh123

💭
Be an artist
View GitHub Profile
https://www.v2aky.com/#/register?code=wFPA8fv7
Limited-A4
@tclh123
tclh123 / vpn.md
Created November 8, 2023 17:02 — forked from condorheroblog/vpn.md
#!/bin/bash
dir=${1:-.}
dirs=`find $dir -not -path '*/.*' -not -path './venv' -type d -maxdepth 1`
for d in $dirs; do
cnt=`find $d -type f -exec wc -l {} + | awk '{s+=$1} END {print s}'`
echo -e "$cnt\t$d/"
done | sort -nr
@tclh123
tclh123 / URL Schemes.md
Created November 28, 2025 09:18 — forked from zhuziyi1989/URL Schemes.md
iOS 系统上常用的 URL Schemes 收集

** 由于此文年事已久,可能某些 URL Schemes 已失效,可在评论区留言指出!(最后更新于 2024.10.28)

关于 URL Scheme 你知道多少?

iOS 系统中

由于苹果的各应用都是在沙盒中,不能够互相之间访问或共享数据。但是苹果还是给出了一个可以在 APP 之间跳转的方法:URL Scheme。简单的说,URL Scheme 就是一个可以让 APP 相互之间可以跳转的协议。每个 APP 的 URL Scheme 都是不一样的,如果存在一样的 URL Scheme,那么系统就会响应先安装那个 APP 的 URL Scheme,因为后安装的 APP 的 URL Scheme 被覆盖掉了,是不能被调用的。

Android 系统中