1.创建用户信息 git config --global user.name 'your_name' git config --global user.email 'your_email' 注意: git config有三种情况:git config --local # 只对某个git仓库有效,默认 ...
分类:
其他好文 时间:
2020-05-24 16:44:56
阅读次数:
64
Ruby 提供了一整套 I/O 相关的方法,在内核(Kernel)模块中实现。所有的 I/O 方法派生自 IO 类。 类 IO 提供了所有基础的方法,比如 read、 write、 gets、 puts、 readline、 getc 和 printf。 本章节将讲解所有 Ruby 中可用的基础的 ...
分类:
其他好文 时间:
2020-05-23 18:10:31
阅读次数:
54
使用SpringBoot创建一个spring cloud gateway服务端的时候,当使用浏览器进行访问的时候,报错信息如下: 2020-05-23 05:43:34.198 ERROR 21300 [ctor-http-nio-1] reactor.netty.http.server.HttpS ...
分类:
编程语言 时间:
2020-05-23 09:19:14
阅读次数:
213
函数:c++ void readScaleAndOffset(const char* FileName,const char* VarName) { NcFile dataFile(FileName, NcFile::read); NcVar Varf = dataFile.getVar(VarNa ...
分类:
编程语言 时间:
2020-05-21 00:01:38
阅读次数:
71
1.新建springboot服务 依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSch ...
分类:
Web程序 时间:
2020-05-18 22:23:41
阅读次数:
74
1. 读邮件数据集文件,提取邮件本身与标签。 列表 numpy数组 from IPython.core.interactiveshell import InteractiveShell InteractiveShell.ast_node_interactivity = "all" import cs ...
分类:
其他好文 时间:
2020-05-17 21:58:56
阅读次数:
91
扫描发现www.zip和login.php,访问www.zip获得index.php的代码: <?php header('Content-type:text/html; charset=utf-8'); error_reporting(0); if(isset($_POST['login'])){ ...
分类:
其他好文 时间:
2020-05-17 19:20:29
阅读次数:
63