Notes from C++PrimerIn general, head file includes: class definition, declaration of extern variable and declaration of function.1. Head file is used ...
分类:
其他好文 时间:
2015-01-27 13:01:17
阅读次数:
117
SICP 习题:
#lang scheme
( define ( variable? x )
( symbol? x ) )
( define ( same-variable? x y )
( and ( variable? x )
( variable? y )
( eq? x y ) ) )
( define ...
分类:
其他好文 时间:
2015-01-26 22:49:12
阅读次数:
156
笔者面临的问题如下: 笔者有一台Cisco C240的服务器, 其中有十块容量一样大的SAS的local disk, 一块SSD. 其中的两块SAS盘组成了一个RAID 1的virtual drive. 其他的九块SAS盘都做成了独立的virtual drive. 那么问题来了, 我们要在RAID ...
分类:
系统相关 时间:
2015-01-26 18:52:24
阅读次数:
255
在stackoverflow中找到了终极解决办法:>>> import matplotlib>>> matplotlib.matplotlib_fname()# This is the file location in Ubuntu'/etc/matplotlibrc'找到matplotlibrc之...
分类:
其他好文 时间:
2015-01-26 13:21:29
阅读次数:
708
首先查看系统信息,cat proc/version。 显示系统信息
下面查看有木有做raid,软raid:
1.软件raid的话可以通过 cat /proc/mdstat
md1 : active raid1 sdb3[1] sda3[0]
480572352 blocks [2/2] [UU]
md3 : active raid1 sdb2[1...
分类:
其他好文 时间:
2015-01-26 12:03:25
阅读次数:
179
机器学习Machine Learning - Andrew NG
courses学习笔记...
分类:
系统相关 时间:
2015-01-25 21:07:24
阅读次数:
185
1.单位,基准 module
2.乘法 multiplication
3.事件 occurrence
4.页面失效 page fault
5.队列 queue
6.会话层 session layer
7.变量 variable
8.加法器 adder
9.字符 character
10.方程式,等式 equation
11.询问 inqui...
分类:
其他好文 时间:
2015-01-24 17:23:24
阅读次数:
174
for(variable in object) statement//variable 是声明一个变量的var语句,数组的一个元素或者是对象的一个属性//在循环体内部,对象的一个属性名会被作为字符串赋给变量variable。注意:对象的有些属性以相同的方式标记成了只读的,永久的(不可删除的)或者.....
分类:
Web程序 时间:
2015-01-24 12:59:20
阅读次数:
214
tomcatlinux命令The BASEDIR environment variable is not defined correctlyThis environment variable is needed to run this program原来要为bin目录下所有的.sh文件授予权限执行命...
分类:
系统相关 时间:
2015-01-23 16:02:01
阅读次数:
199
Implicitly unwrapped optionals:
// an implicitly unwrapped optional variable
varmaybeString:String!maybeString=nilmaybeString="fish"
// methods invoked directly, failing at runtime// if the opt...
分类:
移动开发 时间:
2015-01-23 14:44:18
阅读次数:
203