上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页
摘要: 看到一篇讲解nginx很好的文章,转发一下 原链接:https://www.cnblogs.com/wcwnina/p/8728391.html 特此感谢作者。感兴趣的可以移步到原作者博客阅读。再次感谢作者 Nginx 相关介绍(Nginx是什么?能干嘛?) Nginx的产生 没有听过Nginx?那 阅读全文
posted @ 2020-07-03 16:00 向萧 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 修改根目录站点配置文件_config.yml: permalink: :year/:month/:day/:title/ 比如可以去掉时间,改为 permalink: :title/ 阅读全文
posted @ 2020-07-03 10:12 向萧 阅读(1115) 评论(0) 推荐(0) 编辑
摘要: {% post_link 文章文件名(不要后缀) 文章标题(可选) %} 阅读全文
posted @ 2020-07-03 10:11 向萧 阅读(623) 评论(0) 推荐(0) 编辑
摘要: 如果在执行sql时表名或者数据库名等需要是动态的,这个时候就需要定义字段来拼接sql。之后再执行sql。 示例如下: set @pre='dev_'; set @teachersql:=CONCAT('insert into teacher(id,CreateTime,Creater,`Name`, 阅读全文
posted @ 2020-07-03 09:29 向萧 阅读(444) 评论(0) 推荐(0) 编辑
摘要: Docker从入门到深入(一)基本概念和操作 Docker从入门到深入(二)Net Core使用dockerfile部署 阅读全文
posted @ 2020-07-02 16:18 向萧 阅读(97) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { var services = new ServiceCollection(); ConfigureServices(services); using (ServiceProvider serviceP 阅读全文
posted @ 2020-07-02 15:28 向萧 阅读(626) 评论(0) 推荐(0) 编辑
摘要: 1、引用 System.Speech 2、代码示例 static void Main(string[] args) { var synthesizer = new SpeechSynthesizer(); synthesizer.SetOutputToDefaultAudioDevice(); sy 阅读全文
posted @ 2020-06-29 11:51 向萧 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 一、什么是Docker 概念 Docker是在传统容器的基础上,进行了进一步的封装,从文件系统、网络互连到进程隔离等等,极大的简化了容器的创建和维护。使得Docker比虚拟机技术更加轻便快捷。 项目地址 https://github.com/moby/moby 二、为什么要用Docker Docke 阅读全文
posted @ 2020-06-24 16:03 向萧 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-24 09:40 向萧 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 用docker rmi [imageId] 删除镜像的时候,报如下错误: Error response from daemon: conflict: unable to delete 90603fd516d1 (must be forced) - image is referenced in mul 阅读全文
posted @ 2020-06-24 09:32 向萧 阅读(1982) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页