gc d:\vm.txt|foreach -begin {write-host "It's beginning."} -process {$_ +"aa"} -end {write-host "The end"}
分类:
其他好文 时间:
2014-06-25 22:50:17
阅读次数:
243
1.Could not find gem 'sqlite3 (>= 0)' in any of the gem sources listed in you
r Gemfile
2.ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions into the /usr/local/lib/ruby/gems/1.9.1 director.y
3.rails 3遇到 Could n...
分类:
其他好文 时间:
2014-06-24 22:18:45
阅读次数:
316
我们在升级4.4的过程中,发现了部分第三方应用不能使用。查看发现以下几点要求:
1》 API 19以上现在强制要求android.permission.READ_EXTERNAL_STORAGE 和android.permission.WRITE_EXTERNAL_STORAGE 权限了。
2》如果发现仍然可以在真机上面没有加权限也可以读到sdcard的内容。请查看手机是否是r...
分类:
移动开发 时间:
2014-06-24 15:50:28
阅读次数:
273
Anchor 对象更改一个链接的文本、URL 以及 target使用 focus() 和 blur()向超链接添加快捷键Document 对象使用 document.write() 向输出流写文本使用 document.write() 向输出流写 HTML返回当前文档的标题返回当前文档的 URL返回...
分类:
编程语言 时间:
2014-06-24 14:41:22
阅读次数:
388
###How to qulick start Like virtual memory,before closing system,win8 write kernel dialog to a file named hiberfil.sys so ,it just write hiberfil.sy.....
今天来粗略的学习一下js JavaScript:写入 HTML 输出 document.write("This is a heading"); JavaScript:对事件作出反应 点击这里 JavaScript:改变 HTML 内容 function myFunction() ...
分类:
其他好文 时间:
2014-06-24 12:46:57
阅读次数:
193
1.原子和非原子属性1.1>OC在定义属性时又nonatomic和atomic两种选择(1)atomic:原子属性,为setter方法加锁(默认就是atomic)(2)nonatomic:非原子属性,不会为setter加锁1.2>atomic加锁原理@property (assign,atomic)...
分类:
其他好文 时间:
2014-06-24 11:39:45
阅读次数:
205
2014-5-20版本: Phenix.NET for CSLA & WF 开发平台:http://download.csdn.net/download/phenixiii/7390405转载自:http://write.blog.csdn.net/postedit/6853423CSLA & De...
分类:
Web程序 时间:
2014-06-22 13:33:55
阅读次数:
300
1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5...
分类:
编程语言 时间:
2014-06-22 12:26:07
阅读次数:
214
from:unix高级环境编程
unix/linux中共享内存是最高效的ipc方式。
有几种使用方式:
1)mmap /dev/zero设备:
fd = open("/dev/zero", O_RDWR);
area = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
close(fd);
加入MAP_SHARE...
分类:
其他好文 时间:
2014-06-22 06:21:16
阅读次数:
215