在API的手册中可以看出, 根据此函数,能读取最大有效载荷的大小; ti论坛的解释: The maximum payload size for an application is based on several factors. The MAC layer provides a constant ...
分类:
其他好文 时间:
2017-07-04 13:18:46
阅读次数:
171
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21-Ubuntu SMP Thu Apr 6 17:04:57 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux 查找源代码: ze ...
分类:
其他好文 时间:
2017-07-04 09:54:26
阅读次数:
215
Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telepho ...
分类:
其他好文 时间:
2017-07-04 00:55:49
阅读次数:
192
CSS选择器复习 通用选择器:* 选择到全部的元素 选择子元素:> 选择到元素的直接后代(第一级子元素) 相邻兄弟选择器:+ 选择到紧随目标元素后的第一个元素 普通兄弟选择器:~ 选择到紧随其后的全部兄弟元素 伪元素选择器: ::first-line 匹配文本块的首行 ::first-letter ...
分类:
Web程序 时间:
2017-07-03 13:56:31
阅读次数:
302
//引用新建对象require "../phpexcel/Classes/PHPExcel.php"; $excel = new PHPExcel(); 建表格 //Excel表格式,这里简略写了4列 $letter = array('A','B','C','D',); 填充值 $excel->ge... ...
分类:
Web程序 时间:
2017-07-02 10:13:07
阅读次数:
213
记得5年前遇到一个SQL。就是一个简单的两表关联。SQL跑了几乎相同一天一夜,这两个表都非常巨大。每一个表都有几十个G。数据量每一个表有20多亿,表的字段也特别多。相信大家也知道SQL慢在哪里了,单个进程的PGA 是绝对放不下几十个G的数据,这就会导致消耗大量temp tablespace,SQL慢 ...
分类:
其他好文 时间:
2017-06-30 21:06:53
阅读次数:
155
题目链接 Problem Description Matt loves letter L.A point set P is (a, b)-L if and only if there exists x, y satisfying:P = {(x, y), (x + 1, y), . . . , (x ...
分类:
其他好文 时间:
2017-06-30 13:55:50
阅读次数:
212
1. Linux 查找文件的命令 find /usr/local/ -name 文件的名字 在usr/local 目录下面查找文件。。。。。。 2. 如何查看自己的linux是32位还是64位 可以用命令“getconf LONG_BIT”查看, 如果返回的结果是32则说明是32位,返回的结果是64 ...
分类:
其他好文 时间:
2017-06-30 01:08:23
阅读次数:
148
伪元素顾名思义伪装成元素,但不是元素,这与生成内容相关。生成内容主要指由浏览器创建的内容,而不是由标志或内容来表示。生成内容主要由:before和:after伪元素来实现,当然伪元素还包括:first-line,:first-letter和::selection用法:first-letter指定一个元素第一个字母的样..
分类:
其他好文 时间:
2017-06-29 17:27:02
阅读次数:
179