JavaScript中的this关键字JavaScript函数中的关键字this并不指其本身(Itself),举例说明:function foo(num) {
console.log( "foo: " + num ); // keep track of how many times `foo` is called
this.count++;
}foo.count = 0;var...
分类:
编程语言 时间:
2015-08-26 07:08:18
阅读次数:
198
angularjs 使用ng-repeat报错 {{word}}[ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys 发现...
分类:
其他好文 时间:
2015-08-21 13:30:44
阅读次数:
131
[root@CORPSE2010/]# fdisk -l
Disk /dev/sda: 322.1 GB, 322122547200 bytes
255 heads, 63 sectors/track, 39162 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/phys...
分类:
系统相关 时间:
2015-08-20 19:00:53
阅读次数:
261
1. 磁盘的物理结构
盘面:磁盘是由一叠盘面组成
磁头(Heads):每个磁头对应一个盘面,负责该盘面上的数据的读写
磁道(Track):每个盘面会围绕圆心划分出多个同心圆圈,每个圆圈叫做一个磁道
柱面(Cylinders):所有盘片上的同一位置的磁道组成的立体叫做一个柱面
扇区(Sector):以磁道为单位管理磁盘仍然太大,所以计算机前辈们又把每个磁道划分出了多个扇区
磁盘...
分类:
系统相关 时间:
2015-08-18 11:54:52
阅读次数:
213
题目描述
There are so many different religions in the world today that it is difficult to keep track of them all. You are interested in finding out how many different religions students in your univers...
分类:
其他好文 时间:
2015-08-17 12:09:00
阅读次数:
143
Make an existing Git branch track a remote branch?Given a branchfooand a remoteupstream:As of Git 1.8.0:git branch -u upstream/fooOr, if local branchf...
分类:
其他好文 时间:
2015-08-14 18:59:34
阅读次数:
525
忽略某些文件1.忽略某些文件项目中经常会生成一些Git系统不需要追踪(track)的文件。典型的是在编译生成过程中产生的文件或是编程器生成的临时备份文件。当然,你不追踪(track)这些文件,可以 平时不用"git add"去把它们加到索引中。 但是这样会很快变成一件烦人的事,你发现 项目中到处有未...
分类:
编程语言 时间:
2015-08-14 11:11:15
阅读次数:
149
通常项目中编译过程产生的文件或者编译器生成的临时备份文件,不需要通过Git系统去追逐(track)。在项目顶层工作目录中添加一个叫".gitignore"的文件,来告诉Git系统要忽略掉哪些文件,下面是文件的示例。# 以'#' 开始的行,被视为注释.# 忽略掉所有文件名是 foo.txt 的文件.f...
分类:
其他好文 时间:
2015-08-13 20:07:17
阅读次数:
195
关于Hadoop HDFS文件的压缩格式选择, 我们通过多个真实的Track数据做测试,得出结论如下: 1.? 系统的默认压缩编码方式 DefaultCodec 无论在压缩性能上还是压缩比上,都优于GZIP 压缩编码。这一点与网上的一些观...
分类:
其他好文 时间:
2015-08-12 23:48:38
阅读次数:
908
请点击此处,将会让你传送 <– **Ubiquitous Religions**
DescriptionThere are so many different religions in the world today that it is difficult to keep track of them all. You are interested in find...
分类:
其他好文 时间:
2015-08-10 12:02:10
阅读次数:
118