分类: 学习

93 篇文章

.net 调用 AI 例子
#load "AppLib" #load "seqlog" // https://learn.microsoft.com/en-us/dotnet/core/extensions/artificial-intelligence?tabs=dotnet-cli // https://www.bilibili.c…
cisco 设置 vlan
! 打算每个端口对应一个 vlan, 接一个光猫 ! 将 4 口万兆口设置为 trunk 口,接上拨号 !接上 console 线,设备管理中看端口,9600,8,1 接入交换机 !操作时注意看前缀,> # (config), 要进入或退出至相应的模式才能操作 ! 进入全局配置模式 Switch> enalbe ! 查看 vlan 设置…
pwsh windows 检测代理IP
$ipTxt = @" 1.1.1.1 2.2.2.2 3.3.3.3 "@ # 将 ip 文本拆分为数组 [string[]]$ips = $ipTxt.Split([char[]]"`r`n") | % { $_.Trim() } | ? { $_.Length -gt 0 } 0..19 | % { #…
.net 性能计数器指标
.net 性能计数器指标 https://learn.microsoft.com/en-us/dotnet/framework/debug-trace-profile/performance-counters https://www.cnblogs.com/cuihongyu3503319/p/13564334.html
检测当前 ip 地址信息的网址
https://proxy.incolumitas.com/proxy_detect.html 代理检测工具 https://proxy.888005.xyz/ 代理检测工具 https://ipcheck.ing/#/ 在线 ip 工具, 有提供 docker 自行部署 curl 4.ipcheck.ing/geo # 获取当前 ip https…