会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
0x0c,0x0d
Write The CODE,Change The World!
首页
新随笔
联系
管理
上一页
1
···
12
13
14
15
16
17
18
19
20
···
47
下一页
2023年6月21日
程序删除自身 c++ win32
摘要: #include //设置本程序进程基本为实时执行,快速退出。 SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS); SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_
阅读全文
posted @ 2023-06-21 17:56 Hey,Coder!
阅读(144)
评论(0)
推荐(0)
2023年6月16日
wpf datagrid tooltip
摘要:
阅读全文
posted @ 2023-06-16 15:55 Hey,Coder!
阅读(76)
评论(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!
阅读(43)
评论(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!
阅读(157)
评论(0)
推荐(0)
2023年6月13日
emqx 监听设备连接、掉线
摘要: 方式一 emqx中配置规则,将上线、离线的消息转发到新的主题,随后程序中监听这个新主题即可  规则sql配置为 ```
阅读全文
posted @ 2023-06-13 18:04 Hey,Coder!
阅读(1783)
评论(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!
阅读(44)
评论(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!
阅读(163)
评论(0)
推荐(0)
2023年5月25日
算法导论阅读记录
摘要: #### $\color{red}{不正确的算法如果其错误率可以被控制的情况下肯是很有用的}$ [动态图解排序算法](https://visualgo.net/zh/sorting) ### 插入排序 对少量元素的排序较为有效,每次选择一个待排序元素,依次与已排序集合比较 伪代码 ``` //从第2
阅读全文
posted @ 2023-05-25 16:00 Hey,Coder!
阅读(21)
评论(0)
推荐(0)
2023年5月22日
win11跳过安装时的微软账号
摘要: Shift + F10 oobe\bypassnro.cmd
阅读全文
posted @ 2023-05-22 09:39 Hey,Coder!
阅读(151)
评论(0)
推荐(0)
2023年5月11日
.net 动态api
摘要: 本文在webapi的基础上进行后续的扩展,也可以实现不依赖项目类型的模式,只需要添加webapi对应的Nuget即可。 首先创建接口来识别动态API的实现类 public interface IAutoAPIService { } ControllerFeatureProvider 创建一个类继承C
阅读全文
posted @ 2023-05-11 22:25 Hey,Coder!
阅读(891)
评论(3)
推荐(2)
上一页
1
···
12
13
14
15
16
17
18
19
20
···
47
下一页
公告