对于$controller ,用来初始化controllers的。 $controller(constructor,locals,later,ident) 对于 constructor 参数: if called with a function then it‘s 对于 locals 参数: injection locals for controlle...
分类:
其他好文 时间:
2015-10-14 18:13:58
阅读次数:
173
在iOS开发中,播放视频通常有两种方式,一种是使用MPMoviePlayerController(需要导入MediaPlayer.Framework),还有一种是使用AVPlayer。关于这两个类的区别可以参考http://stackoverflow.com/questions/814694...
分类:
其他好文 时间:
2015-10-14 18:14:11
阅读次数:
157
function foo(arg1, arg2, arg3){ alert(art1 + arg2 + arg3); } foo.call(this,?arg1,arg2,arg3)?==?foo.apply(this,?arguments)?==?this.foo(arg1,?arg2,?arg3) call , apply 都属于 Function.prototy...
分类:
移动开发 时间:
2015-10-14 18:13:53
阅读次数:
190
本文最后更新于:2015-05-25 13:12:00 原文:http://www.yaosansi.com/post/ffmpeg-burn-subtitles-into-video 向视频文件里添加字幕是件很常见的事,本文使用FFmpeg将字幕文件集成到视频文件里。 在CentOS上编译...
分类:
其他好文 时间:
2015-10-14 18:15:39
阅读次数:
898
第一种跳出的方法: ok:for (int i = 0; i < 10 ; i++) {
for (int j = 0; j < 10; j++) {
System.out.println(" i= "+i + " ,j="+j );
if( j==5 ){
break ok;
}
}
} 第二种跳出的方法 ...
分类:
编程语言 时间:
2015-10-14 18:12:16
阅读次数:
182
Android基础入门教程——8.2.2 Bitmap引起的OOM问题标签(空格分隔): Android基础入门教程本节引言:
上节,我们已经学习了Bitmap的基本用法,而本节我们要来探讨的Bitmap的OOM问题,
大家在实际开发中可能遇到过,或者没遇到过因为Bitmap引起的OOM问题,本节我们
就来围绕这个话题来进行学习~了解什么是OOM,为什么会引起OOM,改善因Bitma...
分类:
移动开发 时间:
2015-10-14 18:11:23
阅读次数:
284
Overview:System Time: local && NTPManaging Event and Session LoggingConfiguring Event and Session LoggingVerifying Event and Session LoggingTroublesho...
分类:
其他好文 时间:
2015-10-14 18:10:48
阅读次数:
205
.bsizec{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;}/*border和padding不计算入width之内(default)---大*/.bsizep{box-sizin...
分类:
其他好文 时间:
2015-10-14 18:10:25
阅读次数:
177
一、BLOB字段 BLOB是指二进制大对象也就是英文Binary Large Object的所写,而CLOB是指大字符对象也就是英文Character Large Object的所写。其中BLOB是用来存储大量二进制数据的;CLOB用来存储大量文本数据。BLOB通常用来保存图片、文件等二进制类型.....
分类:
数据库 时间:
2015-10-14 18:10:15
阅读次数:
289
iframe对应的div: 记录 点击加载页面到iframe。对应的js://iframe自适应高,onload会在iframe没加载完时就触发,所以要加上setTimeout,防止自适应高度出现为零的情况function autoHeight() { setTi...
分类:
其他好文 时间:
2015-10-14 18:11:22
阅读次数:
224
Tornado对asynchronous http有很好的支持。 所以跟着demo,总结下一个消息墙要怎么做。思路: 首先查了下有两种思路,一种是client pull 一种是server push。这里使用的是server pull,技术就是挺流行的comet技术。comet大概就是说:我客户端发...
分类:
其他好文 时间:
2015-10-14 18:10:21
阅读次数:
193
前提:mysql只支持英文内容的全文索引,所以只考虑英文的全文搜索。假定数据表名为post,有三列:id、title、content。id是自增长序号,title是varchar,content是text,给content添加全文索引。mysql全文搜索有三种模式:一、自然语言查找。这是mysql默...
分类:
数据库 时间:
2015-10-14 18:11:43
阅读次数:
258
FR除了能够实现对报表等的二次开发,还能实现对决策系统的操作:FS.Trans.signOut()退出决策平台系统FS.tabPane._doCloseTab(FS.tabPane._getSelectedTab())关闭当前决策平台的标签FS.tabPane.addItem({title:"bai...
分类:
其他好文 时间:
2015-10-14 18:10:57
阅读次数:
198
因为我是X86系统,所以64位的系统安装下面的软件包可能不行,需要换成64位的软件包:TortoiseSVN-1.8.7.25475-win32-svn-1.8.9.msi LanguagePack_1.8.7.25475-win32-zh_CN.msi下载TortoiseSVN-1.8.7....
分类:
其他好文 时间:
2015-10-14 18:08:56
阅读次数:
185
本篇文章由:http://xinpure.com/perl-warning-setting-locale-failed/将 mac 系统切换成英文后,使用 git 命令出现如下错误:perl: warning: Setting locale failed.perl: warning: Please ...
分类:
其他好文 时间:
2015-10-14 18:07:39
阅读次数:
162
最近做一个项目时,发现浮动的div总是被object里的flash文件给盖住了。。本以为只是z-index的问题,于是去修改div和object、embed的z-index值~ 在改之前突然想到div是jqueryui里的dialog创建的~也就是说div本身默认的z-index已经是1000了,这...
分类:
其他好文 时间:
2015-10-14 18:07:18
阅读次数:
194
效果:代码:using System;using System.Text;using System.IO;using System.Security.Cryptography;public partial class _Default : System.Web.UI.Page{ protect...
分类:
Web程序 时间:
2015-10-14 18:07:18
阅读次数:
206