几乎所有的版本控制都以某种形式支持分支。使用分支意味着你可以把你的工作从开发主线上分离开来,以免影响开发主线。Git的分支模型成称为它的“必杀技特性”,也正因为这一特性,使得Git从众多版本控制系统中脱颖而出。Git处理分支的方式是难以置信的轻量,创建新的分支这一操作是秒级完成的,并且在不同分支之间的切换操作也是一样便捷。Git的分支,其实本质上仅仅是指向提交对象的可变指针。Git的默认分支是ma
分类:
其他好文 时间:
2020-03-13 01:10:37
阅读次数:
54
yum -y install libcap* libuv libuv-devel wget https://downloads.isc.org/isc/bind9/9.16.0/bind-9.16.0.tar.xz tar -xf bind-9.16.0.tar.xz useradd -s /sbi ...
分类:
其他好文 时间:
2020-03-12 18:51:12
阅读次数:
148
find_package查找不到eigen3 Could not find apackage configuration file provided by "Eigen3" with any of the followingnames: Eigen3Config.cmake eigen3-confi ...
分类:
其他好文 时间:
2020-03-12 15:55:09
阅读次数:
119
记录下如何在使用EasyUI的treegrid的情况下实现树型向上汇总功能。 首先是取出treegrid中的所有顶级节点。 var treeList = jQuery('#treegrid').treegrid('getChildren'); var treeListOnlyTopNodes = [ ...
分类:
其他好文 时间:
2020-03-12 09:28:44
阅读次数:
59
之前写过有关Windows下的python3的安装与使用,这次看一下Linux下的python3 1. 安装依赖环境 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-dev ...
分类:
编程语言 时间:
2020-03-11 23:51:42
阅读次数:
77
calHe <- function(fre, filename = "hets.txt"){ pops = row.names(fre) loci = unique(as.matrix(as.data.frame(strsplit(names(fre), split = ".", fixed = T ...
分类:
其他好文 时间:
2020-03-11 23:49:03
阅读次数:
58
一、表格 1、表格 thead 表头 tbody 表体(浏览器默认加上) tfoot 表尾 2、<colgroup span=" 2"> </colgroup> 把几列分成一组 3、<th> </ th> 列标题,默认文本加粗,上下居中,左右居中 4、<caption>表格标题 </caption> ...
分类:
其他好文 时间:
2020-03-11 11:04:35
阅读次数:
66
一、web 应用相关 /images/app_small.gif /images/app_large.gifMyWebApplication二、上下文参数声明应用范围内的初始化参数。 log4jConfigLocation classpath:config/log4j.properties log4... ...
分类:
Web程序 时间:
2020-03-10 16:20:39
阅读次数:
79
1.Linux前置环境准备(gcc,openssl等): yum -y install gcc pcre-devel zlib-devel openssl openssl-devel 2.下载Nginx安装包: https://nginx.org/download/ 3.将安装包上传至服务器后(/u ...
分类:
系统相关 时间:
2020-03-10 12:14:11
阅读次数:
83
先贴一下官方的Cinemachine文档 "Cinemachine Documentation" 简介 使用 我们第一次使用Cinemachine时大概是这样一个流程: 1. 在需要被控制的Camera上添加一个CinemachineBrain。 2. 创建一个自己需要的VirtualCamera。 ...
分类:
系统相关 时间:
2020-03-10 01:43:21
阅读次数:
386