摘要: https://www.bilibili.com/list/watchlater?oid=918750121 using System.Buffers; using BenchmarkDotNet.Attributes; namespace SearchValuesExample; [MemoryD 阅读全文
posted @ 2024-08-25 22:14 ChasingDreams 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 猜测和使用公司的辣鸡VPN网络不稳定有关,造成rdp协议错误,卡在用户认证这个环节 可能会成功的解决办法 组策略: Computer Configuration >> Administrative Templates >> Windows Components >> Remote Desktop S 阅读全文
posted @ 2024-08-07 09:03 ChasingDreams 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 感谢dongfo 阅读全文
posted @ 2024-05-16 10:28 ChasingDreams 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2023-12-24 21:44 ChasingDreams 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 众所周知,当我们使用IIS的时候,在使用负载均衡的情况下,想停掉一个站点,通常会点击Sites(网站)中的Stop(停止)来停止一个站点。但是这样做,会带来一个问题,当点击Stop(停止)时,正在响应中的请求会立刻被切断,使客户端无法收到响应,后续也无法连接该站点,在某些业务场景中,比如涉及金额交易 阅读全文
posted @ 2023-12-02 17:40 ChasingDreams 阅读(475) 评论(0) 推荐(0) 编辑
摘要: Set-PSReadlineKeyHandler -Key Tab -Function Complete 阅读全文
posted @ 2023-11-12 22:28 ChasingDreams 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 打开命令行 cd %USERPROFILE%\AppData\Roaming\Microsoft\InputMethod\Chs del /s /q *.tmp 轻松秒杀! 阅读全文
posted @ 2023-11-07 11:06 ChasingDreams 阅读(95) 评论(0) 推荐(0) 编辑
摘要: ``` systemctl stop docker iptables-save > /etc/sysconfig/iptables systemctl start docker systemctl enable docker ``` 阅读全文
posted @ 2023-08-26 12:05 ChasingDreams 阅读(25) 评论(0) 推荐(0) 编辑
摘要: ``` network: version: 2 renderer: networkd ethernets: ## 可以ip a查看以太网连接名称 eth0: dhcp4: no dhcp6: no ## addresses添加网络掩码,如192.168.56.3/24 addresses: - 19 阅读全文
posted @ 2023-08-16 21:03 ChasingDreams 阅读(28) 评论(0) 推荐(0) 编辑
摘要: ``` groupadd -g 1000 siyuan # 禁止登录 不创建家目录 useradd -M -u 1000 -g 1000 -s /sbin/nologin siyuan chown -R siyuan:siyuan /xxxx/siyuan/ usermod -a -G siyuan 阅读全文
posted @ 2023-08-16 15:09 ChasingDreams 阅读(11) 评论(0) 推荐(0) 编辑