There are no interfaces on which a capture can be
done解决方法:Open a terminal by pressingCtrl+Alt+Tand type the following
commands:sudo dpkg-reconfigure ...
分类:
其他好文 时间:
2014-05-08 22:18:45
阅读次数:
397
出现乱码需要检查的项目:数据库编码、文件本身的字符集、html解析的字符集,如若上述项目编码一致仍然出现乱码,查看一下浏览器的编码,如果和设置的不一样说明上述设置有部分未成功,可以尝试使用header()函数再转化一下。FYI:1.
header("Content-type: text/html; ...
分类:
Web程序 时间:
2014-05-08 21:28:22
阅读次数:
331
IE10下的Input Text和谷歌下面的 input search
一旦输入内容,会在最右端出现一个叉号,点击后,内容就会自动清空,看似方便,其实有些场景并不需要,需要写代码清除掉。代码如下:input::-webkit-search-cancel-button{display:
none;} ...
分类:
其他好文 时间:
2014-05-08 20:15:33
阅读次数:
644
3. 函数在 $\infty$ 的留数(1) 定义: 设 $\infty$ 为 $f$ 的孤立奇点,
则称 $$\bex \cfrac{1}{2\pi i}\int_{\vGa^-}f(z)\rd z\quad (\vGa:\ |z|=\rho) \eex$$
为 $f$ 在 $\infty$ 的留...
分类:
其他好文 时间:
2014-05-08 19:54:02
阅读次数:
277
从蛋学习 CSS 选择器 + 做一个 Jumony 桌面工具,真费劲,目前Jumony
Tool两大问题无法解决,完美的显示 html 文档和根据结果在文档中定位,有点儿跑题了……1. 选择“class=A 并且
id=B”的元素:.A#B,中间不带空格2. 选择“既包括 rel 属性又包括 ty....
分类:
Web程序 时间:
2014-05-08 19:46:20
阅读次数:
363
block对于其变量都会形成strong reference,对于self也会形成strong
reference ,而如果self本身对block也是 strong reference 的话,就会形成 strong reference
循环,造成内存泄露,为了防止这种情况发生,在block外部应该...
分类:
其他好文 时间:
2014-05-07 19:27:49
阅读次数:
288
1 //varStat代表 遍历typeListDesc集合所用到的方法2 3 5 6
${stat.count}7 ${type.name}8 ...
分类:
其他好文 时间:
2014-05-07 17:46:56
阅读次数:
308
腾讯高级副总裁张小龙表示:微信公众平台,就是在移动互联网时代,让企业和个人以更简捷的形式提供服务给有需要的人。
分类:
微信 时间:
2014-05-06 11:13:29
阅读次数:
653
pid_t fork(void);返回值:
若成功调用一次则返回两个值,子进程返回0,父进程返回子进程ID;否则,出错返回-1int socketpair(int d, int type, int
protocol, int sv[2]);建立一对匿名的已经连接的套接字int ret = socke...
分类:
其他好文 时间:
2014-05-06 10:30:11
阅读次数:
438
private ImageInfo CreateImageFile(string fileName)
{ if (!File.Exists(fileName)) return null; Image image =
Image.FromFile(fileName); MemoryStream ms....
分类:
Web程序 时间:
2014-05-06 10:01:43
阅读次数:
313