会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
0x0c,0x0d
Write The CODE,Change The World!
首页
新随笔
联系
管理
上一页
1
···
20
21
22
23
24
25
26
27
28
···
51
下一页
2022年8月3日
sed命令
摘要: ### windows下使用sed windows下可以通过下载sed.exe来实现 [sed.exe](https://files.cnblogs.com/files/ives/sed_4.2.2.zip?t=1659513037) !!! 如果需要匹配特殊字符如引号则需要用反斜杠转义 !!! !
阅读全文
posted @ 2022-08-03 15:46 Hey,Coder!
阅读(689)
评论(0)
推荐(0)
2022年8月1日
abp 切换默认项目为pgsql
摘要: 切换数据库为PGSQL 将EntityFrameworkCore项目中的Volo.Abp.EntityFrameworkCore.SqlServer包 替换为相同版本的Volo.AbpEntityFrameworkCore.Postgresql包 将TestEntityFrameworkCoreMo
阅读全文
posted @ 2022-08-01 16:48 Hey,Coder!
阅读(215)
评论(0)
推荐(0)
CQRS与事件溯源模式
摘要: CQRS : Command Query Responsibility Segregation 命令查询分离模式,指将对数据库的增删改操作和查询操作分离,后续可针对查询类业务和命令类业务分开处理分开优化 分离可以在上层进行,底层仍然共享表也是可以的。 另外也可以创建数据宽表来适应查询的业务。 分离后
阅读全文
posted @ 2022-08-01 13:48 Hey,Coder!
阅读(179)
评论(0)
推荐(0)
ubuntu静态ip
摘要: 网络管理服务为 network-manager.service ,使用systemctl进行管理 配置网络 vim /etc/network/interfaces auto lo iface lo inet loopback auto eth0 # 开机自启,eth0为网卡名可通过ip addr查看
阅读全文
posted @ 2022-08-01 09:45 Hey,Coder!
阅读(60)
评论(0)
推荐(0)
2022年7月26日
.net5 quartz
摘要: 安装quartz.aspnetcore ConfigureServices中注入 //services.AddHostedService<Worker>(); services.AddQuartz(q => { //依赖注入 q.UseMicrosoftDependencyInjectionJobF
阅读全文
posted @ 2022-07-26 15:56 Hey,Coder!
阅读(267)
评论(0)
推荐(0)
2022年7月3日
electron Helloworld
摘要: 本文使用纯手工方式、docker创建两种方式 设置镜像 npm config edit 如果不能使用此命令可以直接使用npm config set设置 npm config set registry http://registry.npm.taobao.org/ 在弹出的文档最后添加 electro
阅读全文
posted @ 2022-07-03 00:02 Hey,Coder!
阅读(202)
评论(0)
推荐(0)
2022年6月30日
oracle 转义
摘要: select * from test where ID like '%Test_001%'; ==> select * from test where IDlike '%Test_001%' escape '';
阅读全文
posted @ 2022-06-30 18:12 Hey,Coder!
阅读(76)
评论(0)
推荐(0)
2022年6月24日
.net5 gRPC支持swagger 同时支持grpc和webapi
摘要: 安装对应的nuget - 目前只有previce版本 Microsoft.AspNetCore.Grpc.HttpApi Microsoft.AspNetCore.Grpc.Swagge program.cs中调整监听端口同时支持http1和http2 public static IHostBuil
阅读全文
posted @ 2022-06-24 14:46 Hey,Coder!
阅读(464)
评论(0)
推荐(0)
2022年6月23日
mqttnet封装
摘要: 客户端基 /// <summary> /// /// </summary> public class BaseClient : IDisposable { protected string client; protected int port; protected string username;
阅读全文
posted @ 2022-06-23 11:27 Hey,Coder!
阅读(337)
评论(0)
推荐(0)
mqtt emqx
摘要: 下文以{mqttPath}代表安装目录 ### 开启授权 1. {mqttPath}/etc/emqx.conf关闭匿名访问 allow_anonymous = false 
评论(0)
推荐(0)
上一页
1
···
20
21
22
23
24
25
26
27
28
···
51
下一页
公告