会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
JerryChen
代码干货,拿来即用
博客园
首页
新随笔
管理
上一页
1
2
3
4
5
6
7
8
···
12
下一页
2021年7月1日
安装yarn
摘要: 系统要求:安装了nodejs、npm(包含在nodejs安装包中) 安装 npm install -g yarn 设置忽略引擎版本检查,不是必须 用于修复node版本不兼容的命令配置 本质上是忽略引擎版本检查 主要用于在install过程中的版本过低提示 yarn config set ignore
阅读全文
posted @ 2021-07-01 09:30 chenjingchun
阅读(135)
评论(0)
推荐(1)
2021年6月3日
.Net5 SignalR在Nginx上的配置
摘要: location / { proxy_pass http://localhost:5000; #以下为WebSocket需要配置 proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Conn
阅读全文
posted @ 2021-06-03 14:51 chenjingchun
阅读(227)
评论(0)
推荐(0)
2021年3月13日
Docker中部署.Net5项目
摘要: 关联阅读:CentOS7部署.Net5项目到Docker中 https://www.cnblogs.com/Jerrycjc/p/15135882.html 本机环境:win10,已安装好docker,新建一个基于.net5的webapi项目 设置Dockerfile FROM mcr.micros
阅读全文
posted @ 2021-03-13 17:57 chenjingchun
阅读(415)
评论(0)
推荐(0)
2020年10月2日
Google Nexus 5X刷机并root
摘要: 手机当前状态,开机正常,已解BL锁电脑当前状态,已经有ADB驱动,并添加了path环境变量,可以连上手机进入FastBoot(关机状态下同时按下 音量-和电源键)1.手机安装twrp,下载地址https://dl.twrp.me/bullhead/将下载好的twrp放到adb目录我的adb是在D:\Program Files\platform-tools,将twrp放到这个目录中执行以下命令(在本...
阅读全文
posted @ 2020-10-02 15:33 chenjingchun
阅读(2456)
评论(0)
推荐(0)
2020年8月1日
web调用摄像头拍照
摘要: 参考了:https://blog.csdn.net/weixin_34100227/article/details/88016462 发布之后要有https协议才能调用成功 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8">
阅读全文
posted @ 2020-08-01 16:54 chenjingchun
阅读(493)
评论(0)
推荐(0)
导出SQL SERVER 数据字典语句
摘要: SELECT表名=case when a.colorder=1 then d.name else '' end,表说明=case when a.colorder=1 then isnull(f.value,'') else '' end,字段序号=a.colorder,字段名=a.name,标识=case when COLUMNPROPERTY(a.id,a.name,'IsIdentity')=...
阅读全文
posted @ 2020-08-01 16:49 chenjingchun
阅读(208)
评论(0)
推荐(0)
2020年4月26日
树莓派安装.Net Core3.1
摘要: .Net Core3.1地址https://dotnet.microsoft.com/download/dotnet-core/thank-you/sdk-3.1.201-linux-arm32-binaries以下均在树莓派终端中输入1wget https://download.visualstudio.microsoft.com/download/pr/ccbcbf70-9911-40b1-a...
阅读全文
posted @ 2020-04-26 22:08 chenjingchun
阅读(417)
评论(0)
推荐(0)
2020年3月15日
使用Open Live Writer写博客
摘要: 设置博客园 进入后台【设置】最下面,允许 MetaWeblog 博客客户端访问 下载并安装Open Live Writer 下载地址http://openlivewriter.org/ 开始配置吧 旧版地址https://i1.cnblogs.com/Configure.aspx 然后下一步下一步
阅读全文
posted @ 2020-03-15 12:42 chenjingchun
阅读(221)
评论(0)
推荐(0)
2020年2月20日
EFCore的外键级联删除导致的【可能会导致循环或多重级联路径】
摘要: 亲测有效,摘自 https://www.cnblogs.com/caijt/p/11998440.html#commentform protected override void OnModelCreating(ModelBuilder modelBuilder) { var foreignKeys
阅读全文
posted @ 2020-02-20 13:12 chenjingchun
阅读(410)
评论(0)
推荐(0)
2019年12月2日
重新装Mysql数据的恢复办法,还原data文件夹下数据库
摘要: 1安装完成mysql 2关闭mysql服务 3复制原ProgramData/MySQL/MySQL Server 8.0/Data/下的文件(除了mysql文件夹,其它的都复制进来) 4重启mysql服务
阅读全文
posted @ 2019-12-02 21:42 chenjingchun
阅读(2130)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
12
下一页
公告