摘要:
党的十九大报告指出“推动中华优秀传统文化创造性转化、创新性发展”,展望未来,如是研究院将持续完善古籍数字化相关的技术与服务,持续推进和开展古籍文献数字化项目,为我国古籍数字化事业的发展与创新贡献一份力量。
阅读全文
posted @ 2021-09-02 02:08
愚公学编程
阅读(4503)
推荐(0)
2021年7月20日
摘要:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 凌风少年z 2020-10-16 20:01:12 84883 收藏 84分类专栏: CentOS7 文
阅读全文
posted @ 2021-07-20 08:04
愚公学编程
阅读(131)
推荐(0)
2021年4月1日
摘要:
AWS EBS磁盘挂载和卸载 Ellis Tao 2018-07-24 13:59:42 2009 收藏 4分类专栏: AWS版权一、AWS EBS挂载1、查看已经连接上的卷[root@worker-oss centos]# lsblkNAME MAJ:MIN RM SIZE RO TYPE MOU
阅读全文
posted @ 2021-04-01 06:26
愚公学编程
阅读(419)
推荐(0)
2020年7月7日
摘要:
1.卸载旧版本 $ sudo apt-get remove docker docker-engine docker.io containerd runc2 设置存储库更新apt软件包索引并安装软件包以允许apt通过HTTPS使用存储库: $ sudo apt-get update $ sudo ap
阅读全文
posted @ 2020-07-07 13:15
愚公学编程
阅读(561)
推荐(0)
2020年6月13日
摘要:
如何在Ubuntu 18.04上使用VSFTP快速设置FTP服务器 [日期:2018-08-13] 来源:Linux社区 作者:Linux [字体:大 中 小] 如果您需要配置一个FTP服务器快速启动运行,那么VSFTP的易用性是无与伦比的。 如果你想将应用程序迁移到最新版本Ubuntu Linux
阅读全文
posted @ 2020-06-13 20:54
愚公学编程
阅读(178)
推荐(1)
2019年10月28日
摘要:
首先,我们需要输入以下命令来下载镜像(解压完成后大约1.35GB)。 docker pull microsoft/mssql-server-linux:2017-latest 运行“docker images”来进行确认。 运行容器 接下来,您需要运行它。为此,您需要接受许可协议,并为管理员帐户指定
阅读全文
posted @ 2019-10-28 13:47
愚公学编程
阅读(566)
推荐(0)
2018年6月7日
摘要:
验证电话号码的主要代码如下: public bool IsTelephone(stringstr_telephone) { returnSystem.Text.RegularExpressions.Regex.IsMatch(str_telephone,@"^(\d{3,4}-)?\d{6,8}$"
阅读全文
posted @ 2018-06-07 16:05
愚公学编程
阅读(103)
推荐(0)
2017年11月29日
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using
阅读全文
posted @ 2017-11-29 15:20
愚公学编程
阅读(655)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web.Http; using System.Web.Http.Dispatcher; namespace WebApi多版本控制1 { p
阅读全文
posted @ 2017-11-29 12:02
愚公学编程
阅读(395)
推荐(0)
2017年11月13日
摘要:
public class MyExceptionFilter : IExceptionFilter { private ILogService logService; public MyExceptionFilter(ILogService logService) { this.logService = logS...
阅读全文
posted @ 2017-11-13 00:21
愚公学编程
阅读(456)
推荐(0)