会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
0x0c,0x0d
Write The CODE,Change The World!
首页
新随笔
联系
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
48
下一页
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!
阅读(45)
评论(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!
阅读(159)
评论(0)
推荐(0)
2023年6月13日
emqx 监听设备连接、掉线
摘要: 方式一 emqx中配置规则,将上线、离线的消息转发到新的主题,随后程序中监听这个新主题即可  规则sql配置为 ```
阅读全文
posted @ 2023-06-13 18:04 Hey,Coder!
阅读(1806)
评论(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!
阅读(165)
评论(0)
推荐(0)
2023年5月25日
算法导论阅读记录
摘要: #### $\color{red}{不正确的算法如果其错误率可以被控制的情况下肯是很有用的}$ [动态图解排序算法](https://visualgo.net/zh/sorting) ### 插入排序 对少量元素的排序较为有效,每次选择一个待排序元素,依次与已排序集合比较 伪代码 ``` //从第2
阅读全文
posted @ 2023-05-25 16:00 Hey,Coder!
阅读(23)
评论(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!
阅读(897)
评论(3)
推荐(2)
Visual Studio Connected Services 生成http api 调用代码
摘要: 生成的代码将和接口对应的参数、返回值一一对应,本文底层使用的工具为NSwag.exe,其他可替代的方案还有AutoSet.exe。 本文中生成的代码将在编译过程中自动编译,类似grpc生成代码的模式,如果使用AutoSet则需要手动引入代码。 另外也可以使用NSwag对应的vs插件(https://
阅读全文
posted @ 2023-05-11 16:53 Hey,Coder!
阅读(378)
评论(0)
推荐(0)
2023年5月10日
js空心字
摘要: .test{ /* font-family: element-icons; / font-size: 40px; text-shadow: 0 0 2px black; / // 使用了 字体阴影,然后把字体颜色调成背景颜色,就是空心字了 */ color: white; }
阅读全文
posted @ 2023-05-10 15:00 Hey,Coder!
阅读(48)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
48
下一页
公告