会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
0x0c,0x0d
Write The CODE,Change The World!
首页
新随笔
联系
管理
上一页
1
···
15
16
17
18
19
20
21
22
23
···
51
下一页
2023年6月28日
windows配置时间服务器 linux配置从windows同步时间
摘要: ## 背景 两台服务器,其中windows能够联网,linux不能联网 windows为windows server 2016 linux为centos7 ## 配置windows时间服务 配置HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\
阅读全文
posted @ 2023-06-28 13:06 Hey,Coder!
阅读(851)
评论(0)
推荐(0)
2023年6月21日
程序删除自身 c++ win32
摘要: #include //设置本程序进程基本为实时执行,快速退出。 SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS); SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_
阅读全文
posted @ 2023-06-21 17:56 Hey,Coder!
阅读(158)
评论(0)
推荐(0)
2023年6月16日
wpf datagrid tooltip
摘要:
阅读全文
posted @ 2023-06-16 15:55 Hey,Coder!
阅读(79)
评论(0)
推荐(0)
2023年6月15日
oracle脚本启动插件数据库
摘要: 配置启动脚本 start.sql ``` connect /as sysdba; startup pfile=D:\OracelDB\admin\MES\pfile\init.ora.228202212038; alter pluggable database all open; ``` cmd执行
阅读全文
posted @ 2023-06-15 11:56 Hey,Coder!
阅读(54)
评论(0)
推荐(0)
2023年6月14日
c# 通过注册表获取系统服务安装路径
摘要: ``` string key = @"SYSTEM\CurrentControlSet\Services\"; var services = Registry.LocalMachine.OpenSubKey(key); if (services == null) { return; } var se
阅读全文
posted @ 2023-06-14 17:58 Hey,Coder!
阅读(166)
评论(0)
推荐(0)
2023年6月13日
emqx 监听设备连接、掉线
摘要: 方式一 emqx中配置规则,将上线、离线的消息转发到新的主题,随后程序中监听这个新主题即可  规则sql配置为 ```
阅读全文
posted @ 2023-06-13 18:04 Hey,Coder!
阅读(1885)
评论(0)
推荐(0)
.net 动态从容器中获取对象实例 IOC 依赖注入
摘要: 创建对象保存ApplicationServices startup中的app参数的ApplicationServices属性 public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { Startup.appli
阅读全文
posted @ 2023-06-13 14:25 Hey,Coder!
阅读(45)
评论(0)
推荐(0)
WPF datagrid动态影藏列
摘要: ``` public class BindingProxy : Freezable { #region Overrides of Freezable protected override Freezable CreateInstanceCore() { return new BindingProxy
阅读全文
posted @ 2023-06-13 13:40 Hey,Coder!
阅读(173)
评论(0)
推荐(0)
2023年5月25日
算法导论阅读记录
摘要: \(\color{red}{不正确的算法如果其错误率可以被控制的情况下肯是很有用的}\) 动态图解排序算法 插入排序 对少量元素的排序较为有效,每次选择一个待排序元素,依次与已排序集合比较 伪代码 ``` //从第2个元素开始比较 for(i=2;i0 && arr[j]>value;j--) ar
阅读全文
posted @ 2023-05-25 16:00 Hey,Coder!
阅读(27)
评论(0)
推荐(0)
2023年5月22日
win11跳过安装时的微软账号
摘要: Shift + F10 oobe\bypassnro.cmd
阅读全文
posted @ 2023-05-22 09:39 Hey,Coder!
阅读(159)
评论(0)
推荐(0)
上一页
1
···
15
16
17
18
19
20
21
22
23
···
51
下一页
公告