开发板资料、固件
开发板资料、固件 https://www.t-firefly.com/doc/download/172.html
|
560
|
|
18 字
|
几秒读完
.http 文件使用
使用 Visual Studio 2022 中的 .http 文件 | Microsoft Learn .http 文件语法 请求:HTTP 请求的格式为 HTTPMethod URL HTTPVersion,其中 HTTP 方法可以是 GET、POST、PUT 等,URL 是请求的目标地址,HTTPVersion 是可选的。 示例: GET ht…
|
322
|
|
671 字
|
8 分钟
pwsh 处理 yaml 文件
$ErrorActionPreference = 'Stop' $ipText = @" 10.10.103.31 10.10.103.61 "@ [string[]]$ipArry = $ipText.Split([char[]]"`r`n") | % { $_.Trim() } | ?…
|
575
|
|
103 字
|
6 分钟
.net 调用 AI 例子
#load "AppLib" #load "seqlog" // https://learn.microsoft.com/en-us/dotnet/core/extensions/artificial-intelligence?tabs=dotnet-cli // https://learn.microsof…
|
584
|
|
260 字
|
13 分钟
cisco 设置 vlan
! 打算每个端口对应一个 vlan, 接一个光猫 ! 将 4 口万兆口设置为 trunk 口,接上拨号 !接上 console 线,设备管理中看端口,9600,8,1 接入交换机 !操作时注意看前缀,> # (config), 要进入或退出至相应的模式才能操作 ! 进入全局配置模式 Switch> enalbe ! 查看 vlan 设置…
|
575
|
|
64 字
|
4 分钟
windows 11 Sandbox (沙盒) 软件界面显示乱码
https://github.com/xupefei/Locale-Emulator
|
601
|
|
6 字
|
几秒读完
docker cli 设置代理
## 创建配置文件 sudo mkdir -p /etc/systemd/system/docker.service.d sudo vim /etc/systemd/system/docker.service.d/http-proxy.conf ## 设置代理参数 [Service] Environment="HTTP_PROXY=htt…
|
729
|
|
18 字
|
1 分钟内
pwsh 使用 RunspacePool 进行并发操作
# 创建运行空间池 $runspacePool = [RunspaceFactory]::CreateRunspacePool(1, 100) # 创建运行空间池 最大 100 个 $runspacePool.Open() $fakeIdDcit = @{} $fakeIdDcit["9D370B71F76FC2"] = 1 $…
|
665
|
|
76 字
|
4 分钟