1.在火狐地址栏里输入“about:config”,等系统调用完毕之后按照下列步骤:2.更改 "network.http.pipelining" 为ture3.更改 "network.http.proxy.pipelining"为ture4.更改 "network.http.pipelining.m...
分类:
其他好文 时间:
2014-07-23 12:07:16
阅读次数:
229
Wrote by mutouyun. (http://darkc.at/about-data-structure-alignment/)
1. 内存对齐(Data Structure Alignment)是什么
内存对齐,或者说字节对齐,是一个数据类型所能存放的内存地址的属性(Alignment is a property
of a memory address)。
这个属性...
分类:
其他好文 时间:
2014-07-22 23:52:08
阅读次数:
487
简介2010年F-i.com和Google Chrome团队合力致力于主题为《20 Things I Learned about Browsers and theWeb》(www.20thingsilearned.com)的web app的宣传教育。这个项目最主要的思想是在传达,用web展现电子书的...
分类:
Web程序 时间:
2014-07-22 22:35:34
阅读次数:
257
分2部分:手机:1.安装最新版firefox2.打开浏览器,输入about:config3.设置devtools.debugger.remote-enabled值为truedevtools.debugger.force-local值为false(这里比pc上多设置一个)4.重启firefoxpc:1.pc安装15以上版本firefox2.打开浏览器,输入about:config(可能会有个..
分类:
移动开发 时间:
2014-07-22 18:29:32
阅读次数:
290
chrome://flags/ 或 about:flags? 这是 “实验室” 其他 about:about 进入 List of Chrome URLs chrome://appcache-internals chrome://blob-internals chrome://bookmarks chrome://cache chrome://chrome-urls...
分类:
其他好文 时间:
2014-07-22 08:28:34
阅读次数:
764
Simply care about the boundary cases:class Solution {public: ListNode *mergeTwoLists(ListNode *l1, ListNode *l2) { if (l1 && !l2) return l1;...
分类:
其他好文 时间:
2014-07-21 11:07:04
阅读次数:
206
题目描述: It is said that in 2011, there are about 100 graduate schools ready to proceed over 40,000 applications in Zhejiang Province. It would help a lo...
分类:
其他好文 时间:
2014-07-21 00:12:54
阅读次数:
404
This week I was attending a CI training course about svn. Here I‘d like to share what I have learnt. As I am an absolutely green bird to svn, this post only covers those most common usages. (1) C...
分类:
其他好文 时间:
2014-07-20 23:33:04
阅读次数:
504
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
click to show spoilers.
Have you thought about this?
Here are some good questions to ask before c...
分类:
编程语言 时间:
2014-07-20 22:12:03
阅读次数:
251
Douglas Crockford classified the "class methods" in JavaScript into three types:
private, privileged and public.
Public methods have an obvious meaning: they can be accessed by the public.
Priv...
分类:
编程语言 时间:
2014-07-19 02:31:05
阅读次数:
282