"File"-"Settings"-"KeyMap"-"Main Menu"-"Refactor"-"Extract"-"Field" 我将其修改为Ctrl+1,与eclipse保持一致。 ...
分类:
移动开发 时间:
2016-10-09 13:49:31
阅读次数:
850
<!-- <audio src="1.mp3" controls="controls"></audio> --> <audio controls="controls"> <source src="1.mp3" type="audio/mp3"> <source src="1.ogg" type="a ...
分类:
Web程序 时间:
2016-10-07 18:15:03
阅读次数:
223
1. 提炼函数(Extract Method) 1.1 动机 (1)函数的粒度小,被复用的机会就会更大。而且细粒度的函数覆写也会更容易。 (2)简短而命名良好的函数,会使高层函数读起来就像一系列注释 1.2 做法 (1)创建一个新函数,并根据函数的意图命名(以它“做什么”来命名,而不是以它“怎么做” ...
分类:
其他好文 时间:
2016-10-07 13:46:55
阅读次数:
120
extract 从数组中将变量导入到当前的符号表 realpath — 返回规范化的绝对路径名 ...
分类:
Web程序 时间:
2016-09-28 12:10:36
阅读次数:
125
We could take advantage of plist to bypass Trust Relationship so as to extract data from a iDevice. Now it becomes an impossible mission in iOS 10. As ...
分类:
移动开发 时间:
2016-09-26 16:12:42
阅读次数:
175
2016年9月22日10:34:02一、Selector1.如何构建(1)text构建: body = '<html><body><span>good</span></body></html>' Selector(text=body).xpath('//span/text()').extract() ...
分类:
编程语言 时间:
2016-09-23 21:25:32
阅读次数:
144
<audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio> ...
分类:
其他好文 时间:
2016-09-23 19:53:17
阅读次数:
107
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> 您的浏览器不支持 HTML5 video 标签。 ...
分类:
其他好文 时间:
2016-09-23 19:52:15
阅读次数:
123
select * from emp where extract(year from hiredate)=1981 and extract(month from hiredate)>6; 结果: ...
分类:
其他好文 时间:
2016-09-23 16:25:54
阅读次数:
115
html5中有audio这样一个标签,这个标签支持3种格式,分别是wav、mp3、ogg格式,都是音频格式,
而且在不同的浏览器中还有不同的兼容性。
下面是主流的几个浏览器对它的支持性:
那...
分类:
微信 时间:
2016-09-22 18:05:43
阅读次数:
352