会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
低级码农
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
下一页
2022年3月30日
C# 左外连接
摘要: internal class Patient { public int PType { get; set; } public string PatientName { get; set; } } internal class PatientType { public int PType { get;
阅读全文
posted @ 2022-03-30 17:04 ChasingDreams
阅读(69)
评论(0)
推荐(0)
2022年3月24日
C# Uri 拼接
摘要: > Console.WriteLine(new Uri(new Uri("https://www.baidu.com/api"), "/gateway/code")); https://www.baidu.com/gateway/code > Console.WriteLine(new Uri(ne
阅读全文
posted @ 2022-03-24 23:51 ChasingDreams
阅读(770)
评论(0)
推荐(2)
2022年2月13日
Docker+Nginx+FRP
摘要: 0.云服务器需要打开的端口:7000、80 1.反代将来自80端口的HTTP请求转发至FRPS 2.FRPS和FRPC之间通过7000通讯 3.FRPC接收到转发过来的流量,转发至本地80端口 以上所有端口都可以通过docker、nginx、frpc各种组合配置 增加反代的目的是捕获请求源的IP 服
阅读全文
posted @ 2022-02-13 17:38 ChasingDreams
阅读(325)
评论(0)
推荐(0)
2022年2月7日
Windows 禁用U盘
摘要: 
阅读全文
posted @ 2022-02-07 13:12 ChasingDreams
阅读(34)
评论(0)
推荐(0)
2022年1月17日
HttpClient超时时间
摘要: 建立连接超时时间 var httpClient = new HttpClient(new SocketsHttpHandler() { ConnectTimeout = ... }); 响应超时时间 httpClient.TimeOut = .... services.AddHttpClient("
阅读全文
posted @ 2022-01-17 22:36 ChasingDreams
阅读(206)
评论(0)
推荐(0)
Oracle时间戳格式化和求差显示毫秒数
摘要: SELECT TRANSID 交易编码, to_CHAR( MIN(ACCEPTTIME),'yyyy-mm-dd hh24:mi:ss,ff3') 接受请求时间, to_CHAR( MIN(TRANSDATE),'yyyy-mm-dd hh24:mi:ss,ff3') 推送结果时间, EXTRAC
阅读全文
posted @ 2022-01-17 14:48 ChasingDreams
阅读(346)
评论(0)
推荐(0)
2022年1月9日
查看Hyper-v保留端口端口
摘要: netsh interface ipv4 show excludedportrange protocol=tcp Restart-Service hns -Force netsh int ipv4 add excludedportrange protocol=tcp startport=1433 n
阅读全文
posted @ 2022-01-09 19:57 ChasingDreams
阅读(129)
评论(0)
推荐(1)
2022年1月6日
解决winform动态添加控件,width等属性并非指定值而是自动变换问题
摘要: 不要在父容器添加控件时,指定控件width等属性,要等控件添加到父容器后,在进行调整,属性就不会自动变换
阅读全文
posted @ 2022-01-06 16:12 ChasingDreams
阅读(98)
评论(1)
推荐(0)
解决 Winfrom richtextbox不显示RTF文档 图片问题
摘要: 取消richtextbox只读即可解决 参考链接:https://stackoverflow.com/questions/42278823/richtextbox-not-displaying-image
阅读全文
posted @ 2022-01-06 16:08 ChasingDreams
阅读(129)
评论(0)
推荐(0)
2022年1月2日
Ubuntu 20.04开启BBR
摘要: echo net.core.default_qdisc=fq >> /etc/sysctl.conf echo net.ipv4.tcp_congestion_control=bbr >> /etc/sysctl.conf sysctl -p sysctl net.ipv4.tcp_availabl
阅读全文
posted @ 2022-01-02 15:31 ChasingDreams
阅读(991)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
下一页
公告