一、安装Git 下载:# wget https://www.kernel.org/pub/software/scm/git/git-2.9.5.tar.gz 解压:# tar -zxvf git-2.9.5.tar.gz 配置(安装路径):# ./configure 编译:# make 安装:# s ...
分类:
系统相关 时间:
2017-10-12 21:50:09
阅读次数:
317
1.Constraints priority 将evInputView的高度约束的priority设为750,evInputView的inputTextView如果不设高度约束,那么高度就是defaultInputViewH,如果设了高度,那么就是这个高度. evInputView.snp.rema ...
分类:
其他好文 时间:
2017-10-12 16:59:21
阅读次数:
160
yum install -y binutils*yum install -y compat-libstdc*yum install -y elfutils-libelf*yum install -y gcc*yum install -y glibc*yum install -y ksh*yum in ...
分类:
数据库 时间:
2017-10-12 12:14:56
阅读次数:
183
- Text area: The height of the text should not be much smaller than 23.5 cm and the width should not be much smaller than 18.4 cm. Your text area is t ...
分类:
其他好文 时间:
2017-10-12 00:55:36
阅读次数:
174
classCar():
"""一次模拟汽车的简单尝试"""
def__init__(self,make,model,year):
self.make=make
self.model=model
self.year=year
self.odometer_reading=0
defget_descriptive_name(self):
long_name=str(self.year)+‘‘+self.make+‘‘+self.model
returnlong_name.title()
d..
分类:
其他好文 时间:
2017-10-11 22:36:20
阅读次数:
157
Intellij idea创建javaWeb以及Servlet简单实现 ...
分类:
编程语言 时间:
2017-10-11 21:48:38
阅读次数:
164
题意 Alice和Bob在玩一个游戏,Alice先手。 每次一个人可以从一堆式子中拿走任意数量(不超过m)的式子。 取走最后一颗式子的人胜利。 当一个取完某一步的时候剩下的石子数量的二进制表示中1的个数为奇数时,这个人直接输。 $n <= 5* 10^{8}, m <= 50$ 考虑博弈 我们可以用 ...
分类:
其他好文 时间:
2017-10-11 21:06:06
阅读次数:
262
caffe2的安装的使用过程中出现了一些有意思的问题,现在将遇到的问题及其解决方法简单记录一下。 1. 首先caffe2 在安装过程中需要使用 git clone, 其中的--recuresive不能丢掉,否则会无法下载第三方库; 2. make 过程中会出现Eigen相关的错误,可以通过修改caf ...
分类:
系统相关 时间:
2017-10-11 18:03:49
阅读次数:
1558
Chrome 内置抓包工具 Block requests 截取长图 代码的覆盖率分析 Make site better Chrome 内置抓包工具 在浏览器地址栏输入chrome://net-internals/#events,即可打开自带的抓包工具。工具处于live状态,其他tab 页有请求刷新, ...
分类:
其他好文 时间:
2017-10-11 13:03:45
阅读次数:
191
一、安装篇 博主注:截至2017-10-10,官网上thrift最新版0.10.0一直无法成功编译。所以,请选择0.9.3版本,避免走各种弯路: wget http://apache.fayea.com/thrift/0.9.3/thrift-0.9.3.tar.gz 1、安装开发平台工具 yum ...
分类:
Web程序 时间:
2017-10-10 20:30:14
阅读次数:
214