摘要: Php composer downloads two kinds of files: meta data and actual packages. The meta data of packages is in json format while the actual package is in z 阅读全文
posted @ 2019-11-05 15:05 赵丰数33 阅读(84) 评论(0) 推荐(0) 编辑
摘要: Use an terminal emulator, you can and see all the files listed. 阅读全文
posted @ 2019-11-04 21:49 赵丰数33 阅读(128) 评论(0) 推荐(0) 编辑
摘要: See "PAWS" . Configuration: Usage: Warning: Do not paste from external sources. It will crash the terminal editor. 阅读全文
posted @ 2019-10-06 11:06 赵丰数33 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 实验室的网络环境是电脑一旦待机网就断了,需要每次手动打开浏览器输入用户名和密码连网;如果部署在实验室网络环境中的服务器没有图形界面且断网,则无法通过打开浏览器的方式连接。 为此,本文介绍自动化处理这两种情形的方法。 连网脚本 以清华深研院的网络环境为例,官方使用了某知名厂商的认证系统,通过借鉴网上现 阅读全文
posted @ 2019-09-27 23:10 赵丰数33 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Problem: "Show one axis label on echart radar" You should use echart version 阅读全文
posted @ 2019-09-05 15:05 赵丰数33 阅读(384) 评论(0) 推荐(0) 编辑
摘要: Use open folder project, you need to specify it as follows: See "user defined environment" for detail. A key step is to specify the predefined macro f 阅读全文
posted @ 2019-08-28 20:27 赵丰数33 阅读(219) 评论(0) 推荐(0) 编辑
摘要: see "U盘安装linux出现dracut问题解决方案" 可以在安装盘下的 boot/efi 文件夹里的 config 文件修改 Label 为 U 盘实际的名称。 阅读全文
posted @ 2019-08-24 20:43 赵丰数33 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Using C++ 11 C++ include include class Simple { private: int m_id; public: Simple(int id) { setID(id); } void setID(int id) { m_id = id; } int getID() 阅读全文
posted @ 2019-08-23 15:49 赵丰数33 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 前提:只有有了私钥才能解密数据 应用程序与服务器采用 HTTPS 协议进行数据传输,服务器先把公钥给应用程序,应用程序不是直接用公钥加密之后传输的数据,否则服务器后面传来的数据没法解密;应用程序先生成一个随机数,用公钥加密这个随机数传给服务器,然后服务器端用私钥解密后就知道这个随机数了;之后传输数据 阅读全文
posted @ 2019-08-18 11:28 赵丰数33 阅读(141) 评论(0) 推荐(0) 编辑
摘要: C++ lemon library provides a copy class "DigraphCopy" . However, this class does not preserve the node id between the newly created graph and old grap 阅读全文
posted @ 2019-08-11 18:33 赵丰数33 阅读(228) 评论(0) 推荐(0) 编辑