Walking on the Safe Side
Square City is a very easy place for people to walk around. The two-way streets run North-South or East-West dividing the city into regular blocks. Most street int...
分类:
其他好文 时间:
2014-11-14 19:47:01
阅读次数:
270
今天在查数据的时候报错 ORA-01652:无法通过16(在表空间temp1中)扩展 temp 字段
查看表空间使用明细
SELECT b.tablespace,
b.segfile#,
b.segblk#,
b.blocks,
b.blocks * 32 / 1024 / 1...
分类:
数据库 时间:
2014-11-12 11:46:35
阅读次数:
329
DescriptionThe cows are going to space! They plan to achieve orbit by building a sort of space elevator: a giant tower of blocks. They have K (1 //把多重...
分类:
其他好文 时间:
2014-11-11 22:24:28
阅读次数:
232
一、什么是Blocks Block是一个C级别的语法以及运行时的一个特性,和标准C中的函数(函数指针)类似,但是其运行需要编译器和运行时支持,从ios4.0开始就很好的支持Block。二、在ios开发中,什么情况下使用Block Block除了能够定义参数列表、返回类型外,还能够获取被定义时的词法范...
分类:
移动开发 时间:
2014-11-07 20:37:19
阅读次数:
184
Blocks
Time Limit: 5000MS
Memory Limit: 65536K
Total Submissions: 4318
Accepted: 1745
Description
Some of you may have played a game called 'Blocks'. There are n bl...
分类:
其他好文 时间:
2014-11-04 11:02:23
阅读次数:
269
这篇文章主要介绍了相比于python2.6,python3.0的新特性。更详细的介绍请参见python3.0的文档。Common Stumbling Blocks本段简单的列出容易使人出错的变动(初学者应该注意)。print语句被print()函数取代了,可以使用关键字参数来替代老的print特殊语...
分类:
编程语言 时间:
2014-10-31 15:18:22
阅读次数:
300
linux服务器大并发调优时,往往需要预先调优linux参数,其中修改linux最大文件句柄数是最常修改的参数之一。在linux中执行ulimit -a 即可查询linux相关的参数,如下所示:[root@mongodb11 ~]# ulimit -acore file size (blocks, ...
分类:
系统相关 时间:
2014-10-31 13:23:48
阅读次数:
887
__author__ = 'Administrator'
import codecs def blocks(file, size=65536): while True: b = file.read(size) if not b: break yield b with codecs. open('h:...
分类:
编程语言 时间:
2014-10-30 10:54:09
阅读次数:
166
測试机OS为ubuntu 14.04.1 LTS x86_64磁盘分区情况为:Filesystem 1K-blocks Used Available Use% Mounted on/dev/sda1 19736236 3676896 15033756 20% /none 4 0 4 0% /sys/...
分类:
系统相关 时间:
2014-10-29 12:12:04
阅读次数:
299
vs2013是不错的IDE。嘿嘿。
源文件缩进编排
代码块的缩进更改
选中待更改的代码块,按“tab”增加缩进,按“shift”+“ctrl”减少缩进。
创建空白文件的代码模板
Settings|Editor|Default Code...
分类:
其他好文 时间:
2014-10-23 22:46:33
阅读次数:
216