Tailscale
一些资料 快捷使用 https://www.escapelife.site/posts/bb022c74.html https://www.ghostchu.com/tailscale-%e5%ae%89%e5%88%a9%e6%8c%87%e5%8d%97-%e5%bf%ab%e9%80%9f%e5%90%91%e4%bd%a0%e7%9a%84…
|
618
|
|
387 字
|
5 分钟
Redis 一些资料
【GeekHour】一小时Redis教程 https://www.bilibili.com/video/BV1Jj411D7oG 一些应用场景 https://juejin.cn/post/7325132133168971813 StackExchange.Redis 中文文档目录 https://www.cnblogs.com/liang24/t…
|
569
|
|
50 字
|
几秒读完
《鸢尾花书》免费的 python 机器学习书籍
https://github.com/Visualize-ML
|
852
|
|
5 字
|
几秒读完
串流将平板作为PC第三屏
Windows 1. PC 安装 Sunshine > https://github.com/LizardByte/Sunshine 1. PC 上安装虚拟屏幕工具,我用的是 ParsecVDisplay > https://github.com/nomi-san/parsec-vdd 1. 平板上安装 moonlight > https://gi…
|
894
|
|
177 字
|
8 分钟
wireguard
# https://github.com/wg-easy/wg-easy # 生成密码 docker run --rm -it ghcr.io/wg-easy/wg-easy wgpw '1234567' # 如果密码中的 $ 使用 $$ 转义, 返回如下 # PASSWORD_HASH='xxxxxx' v…
|
592
|
|
170 字
|
3 分钟
HeidiSQL 导出密码解密
https://www.fournoas.com/posts/how-to-recover-a-stored-password-from-heidisql/ function Decrypt { param( [string]$str ) if ([string]::IsNullOrEmpty($str)) { return ""…
|
871
|
|
61 字
|
3 分钟
检测局域网中 DHCP 服务器地址
McTVDHCPDiscoveryTool_0_9_1
|
864
|
|
1 字
|
几秒读完
Swagger 配置
# 进行参数修改 builder.Services.AddSwaggerGen(opt => {}); 修改标题 opt.SwaggerDoc("v1", new OpenApiInfo { Title = "Test01", Version = "v1", }); 在 header…
|
640
|
|
178 字
|
5 分钟
pwsh 对一组 IP 进行排序
# 将 ip 转为 int 值 function Convert-IPv4ToInt { param ( [string]$ipAddr ) $ip = $ipAddr.Split(':')[0] $ipAddress = [System.Net.IPAddress]::Parse($ip) # 获取小端序整数 $littleE…
|
898
|
|
28 字
|
2 分钟
windows 安装 docker 时 wsl 补丁
安装完成 docker 后无法正常工作时,可以尝试安装一下 https://github.com/microsoft/WSL/releases
|
918
|
|
30 字
|
几秒读完