摘要:
Add keys This guide assumes you have a working etcd, or consul server up and running and the ability to add new keys. Create the confdir The confdir i 阅读全文
2017年2月16日
摘要:
1、安装ETCD_VER=v3.1.0 DOWNLOAD_URL=https://github.com/coreos/etcd/releases/download curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar 阅读全文
2017年2月15日
摘要:
QQ国际版wine-qqintl的下载链接:http://pan.baidu.com/s/1jIwKdXs sudo apt install libgtk2.0-0:i386 sudo apt install lib32ncurses5 cd Downloads sudo apt-get insta 阅读全文
摘要:
wget https://dl.influxdata.com/influxdb/releases/influxdb_1.2.0_amd64.deb sudo dpkg -i influxdb_1.2.0_amd64.deb sudo service influxdb start 由于influxdb 阅读全文
摘要:
1、首先从官网上下载相应的包,网址为:http://grafana.org/download 2、安装 cd Downloads sudo dpkg -i grafana_4.1.2-1486989747_amd64.deb 3、运行sudo /bin/systemctl start grafana 阅读全文
2017年2月9日
摘要:
注:关乎对象的创建方式的设计模式就是“创建型设计模式”(creational design pattern) 1.1 抽象工厂模式 “抽象工厂模式”(Abstract Factory Pattern)用来创建复杂的对象,这种对象由许多小对象组成,而这些小对象都属于某个特定的“系列”(family)。 阅读全文
2016年4月5日
摘要:
clear all; clc; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %数据初始化 Data=zeros(3,20000); %加噪声 for i=1:4000 Data(1,i)=200; Data(2,i)=200; Data(3,i)=200; end... 阅读全文
2016年4月2日
摘要:
FIRST & BEST SOLUTION ANOTHER SOLUTION 阅读全文
2015年11月20日
摘要:
模板字符串:string模块提供另一种格式化值的方法:模板字符串。它的工作方式类似于很多UNIXShell里的变量替换。如下所示,substitute这个模块方法会用传递进来的关键字参数foo替换字符串中的$foo :>>>from string import Template>>>s=Templ... 阅读全文
2015年11月19日
摘要:
2.2.1 索引序列中的所有元素都是有编号的——从0开始递增。这些元素可以通过编号分别访问,如下例所示:>>>greeting='Hello'>>>greeting[0]'H'字符串字面值(就此而言,其他序列字面量亦可)能够直接使用索引>>>'Hello'[1]'e'2.2.2 分片编号在这里尤为重... 阅读全文