《鸢尾花书》免费的 python 机器学习书籍
https://github.com/Visualize-ML
|
394
|
|
5 字
|
几秒读完
串流将平板作为PC第三屏
1. PC 安装 Sunshine > https://github.com/LizardByte/Sunshine 1. PC 上安装虚拟屏幕工具,我用的是 ParsecVDisplay > https://github.com/nomi-san/parsec-vdd 1. 平板上安装 moonlight > https://github.com…
|
405
|
|
19 字
|
1 分钟内
wireguard
# https://github.com/wg-easy/wg-easy # 生成密码 docker run --rm -it ghcr.io/wg-easy/wg-easy wgpw '1234567' # 如果密码中的 $ 使用 $$ 转义, 返回如下 # PASSWORD_HASH='xxxxxx' v…
|
401
|
|
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 ""…
|
443
|
|
61 字
|
3 分钟
检测局域网中 DHCP 服务器地址
McTVDHCPDiscoveryTool_0_9_1
|
447
|
|
1 字
|
几秒读完
Swagger 配置
# 进行参数修改 builder.Services.AddSwaggerGen(opt => {}); 修改标题 opt.SwaggerDoc("v1", new OpenApiInfo { Title = "Test01", Version = "v1", }); 在 header…
|
330
|
|
178 字
|
5 分钟
pwsh 对一组 IP 进行排序
# 将 ip 转为 int 值 function Convert-IPv4ToInt { param ( [string]$ipAddr ) $ip = $ipAddr.Split(':')[0] $ipAddress = [System.Net.IPAddress]::Parse($ip) # 获取小端序整数 $littleE…
|
451
|
|
28 字
|
2 分钟
windows 安装 docker 时 wsl 补丁
安装完成 docker 后无法正常工作时,可以尝试安装一下 https://github.com/microsoft/WSL/releases
|
459
|
|
30 字
|
几秒读完
ubuntu 阿里镜像源
https://developer.aliyun.com/mirror/ubuntu?spm=a2c6h.13651102.0.0.3e221b11NWSsF4 https://mirrors.aliyun.com/ubuntu-releases/?spm=a2c6h.13651104.d-5263.1.631243efRiAkrx
|
378
|
|
25 字
|
几秒读完
ubuntu 下安装 nvidia 驱动
# 查看显卡型号 lspci | grep -i vga # 0000:b3:00.0 VGA compatible controller: NVIDIA Corporation GA106 [GeForce RTX 3060] (rev a1) # 查看当前可用驱动 ubuntu-drivers devices # driver : nvidia…
|
390
|
|
46 字
|
3 分钟