上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: 背景知识 ES 5.x 以上版本安装 head 需要 node 和 grunt 环境(之前的直接用plugin命令即可安装)。 操作步骤 1. 安装 ElasticSearch 6.x,访问 http://localhost:9200/ 查看是否安装成功。 2. 安装 Node,使用 node -v 阅读全文
posted @ 2018-12-02 02:38 jinzesudawei 阅读(2341) 评论(0) 推荐(0)
摘要: 查询 Node 的安装目录where node 升级 Node:在官网下载最新的安装包,直接安装即可。https://nodejs.org/ 升级 npmnpm install -g npm 使用 npm-check 检查更新npm install -g npm-checknpm-check 使用 阅读全文
posted @ 2018-12-01 23:38 jinzesudawei 阅读(2106) 评论(0) 推荐(0)
摘要: 背景 EF + Oracle,并发存储监控记录,使用 BackgroundWorker 时产生错误如下: Error An asynchronous module or handler completed while an asynchronous operation was still pendi 阅读全文
posted @ 2018-11-26 15:41 jinzesudawei 阅读(900) 评论(0) 推荐(1)
摘要: Issue: 删除命令执行失败 如果在 CMD 命令提示符下删除容器可能失败,可切换至 PowerShell 中执行成功。 Doker 常用命令 阅读全文
posted @ 2018-11-03 00:06 jinzesudawei 阅读(2895) 评论(1) 推荐(1)
摘要: 另一篇:在 Docker 中手工部署 ASP.NET Core 应用 操作步骤 1. 安装 Docker For Windows(安装之前 Windows 需要 开启 Hyper-V 虚拟机功能 ) https://store.docker.com/editions/community/docker 阅读全文
posted @ 2018-10-30 01:08 jinzesudawei 阅读(385) 评论(0) 推荐(0)
摘要: 另一篇:在 Visual Studio 中部署 ASP.NET Core 应用 操作步骤 1. 安装 Docker For Windows(安装之前 Windows 需要开启 Hyper-V 虚拟机功能) https://store.docker.com/editions/community/doc 阅读全文
posted @ 2018-10-30 00:45 jinzesudawei 阅读(671) 评论(0) 推荐(0)
摘要: 查看方式:Visual Studio -> Analyze -> Calculate code metrics feature 代码度量(Code Metrics)是用来测量专业标准的软件特性。在某些方面,它提供了量化的有用反馈给开发者。 查看代码度量值很简单:在项目或解决方案上按右键,选择"Cal 阅读全文
posted @ 2018-09-19 12:07 jinzesudawei 阅读(4493) 评论(0) 推荐(0)
摘要: 背景 在单元测试中请求 HTTPS API 失败。 异常 Result StackTrace: at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request) at System.Web.Se 阅读全文
posted @ 2018-07-18 11:27 jinzesudawei 阅读(4639) 评论(0) 推荐(0)
摘要: 1. 使用 Nuget 安装 NLog。 2. 在 Sql Server 中创建 NLog 数据表。 3. 创建并配置 nlog.config。 4. 在 Startup 中配置 NLog 5. 测试:手工记 Log + 全局异常捕获。 参考资料 https://blog.csdn.net/u013 阅读全文
posted @ 2018-06-23 23:15 jinzesudawei 阅读(402) 评论(0) 推荐(0)
摘要: DittoClipboard manager; 剪贴板工具https://ditto-cp.sourceforge.io/ 参考资料 https://www.liutf.com/posts/3720794851.html 阅读全文
posted @ 2018-05-15 13:17 jinzesudawei 阅读(559) 评论(0) 推荐(0)
摘要: 什么是 SFTP ? 在了解 SFTP 之前,我们先看看什么是 FTP 。 FTP( File Transfer Protocol )文件传输协议,是一种常用来在两终端系统之间传输文件的方法。 SFTP( SSH File Transfer Protocol )安全文件传输协议,是一个独立的 SSH 阅读全文
posted @ 2018-05-13 21:33 jinzesudawei 阅读(2351) 评论(0) 推荐(0)
摘要: 公共服务领域英文译写规范 第1部分:通则http://www.moe.gov.cn/ewebeditor/uploadfile/2015/01/13/20150113091910679.pdf 第2部分:交通第3部分:旅游第4部分:文化娱乐第5部分:体育第6部分:教育第7部分:医疗卫生第8部分:邮政 阅读全文
posted @ 2018-05-07 00:10 jinzesudawei 阅读(945) 评论(0) 推荐(0)
摘要: Scaffold-DbContext 命令 参数 范例(注意反斜线是一个) 效果(转载自参考资料) 参考资料 通过现有数据库在 ASP.NET Core 上开始使用 EF Corehttps://docs.microsoft.com/zh-cn/ef/core/get-started/aspnetc 阅读全文
posted @ 2018-04-21 22:39 jinzesudawei 阅读(1132) 评论(0) 推荐(1)
摘要: 背景 根据HTTP标准,HTTP请求可以使用多种请求方法。 HTTP 1.0 定义了三种请求方法:GET、POST 和 HEAD 方法。HTTP 1.1 新增了五种请求方法:OPTIONS、PUT、DELETE、TRACE 和 CONNECT 方法。 1) GET:请求指定的页面信息,并返回实体主体 阅读全文
posted @ 2018-04-13 09:57 jinzesudawei 阅读(304) 评论(0) 推荐(0)
摘要: 背景 在做网页数据分析的时候,我们关注的部分是内容,可以过滤掉HTML标签、Javascript、CSS等代码。 目标输入 输出结果 开发工具 Html Agility Packhttp://html-agility-pack.net/ 实现方案1:(过滤规则严谨,保留HTML版式,推荐使用!) 实 阅读全文
posted @ 2018-04-04 00:48 jinzesudawei 阅读(1839) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页