摘要:
https://www.bilibili.com/list/watchlater?oid=918750121 using System.Buffers; using BenchmarkDotNet.Attributes; namespace SearchValuesExample; [MemoryD 阅读全文
摘要:
猜测和使用公司的辣鸡VPN网络不稳定有关,造成rdp协议错误,卡在用户认证这个环节 可能会成功的解决办法 组策略: Computer Configuration >> Administrative Templates >> Windows Components >> Remote Desktop S 阅读全文
摘要:
感谢dongfo 阅读全文
摘要:
ASP.NET Core creates an Activity that represents the request by default. This is what tells HttpClient to send an outgoing request id header. You can 阅读全文
摘要:
众所周知,当我们使用IIS的时候,在使用负载均衡的情况下,想停掉一个站点,通常会点击Sites(网站)中的Stop(停止)来停止一个站点。但是这样做,会带来一个问题,当点击Stop(停止)时,正在响应中的请求会立刻被切断,使客户端无法收到响应,后续也无法连接该站点,在某些业务场景中,比如涉及金额交易 阅读全文
摘要:
Set-PSReadlineKeyHandler -Key Tab -Function Complete 阅读全文
摘要:
打开命令行 cd %USERPROFILE%\AppData\Roaming\Microsoft\InputMethod\Chs del /s /q *.tmp 轻松秒杀! 阅读全文
摘要:
``` systemctl stop docker iptables-save > /etc/sysconfig/iptables systemctl start docker systemctl enable docker ``` 阅读全文
摘要:
``` network: version: 2 renderer: networkd ethernets: ## 可以ip a查看以太网连接名称 eth0: dhcp4: no dhcp6: no ## addresses添加网络掩码,如192.168.56.3/24 addresses: - 19 阅读全文
摘要:
``` groupadd -g 1000 siyuan # 禁止登录 不创建家目录 useradd -M -u 1000 -g 1000 -s /sbin/nologin siyuan chown -R siyuan:siyuan /xxxx/siyuan/ usermod -a -G siyuan 阅读全文