#lang scheme
( define-syntax my-when
( syntax-rules ()
[ ( _ pred body ... )
( if pred ( begin body ... ) ( void ) ) ] ) )
( my-when
( = 2 1 )
( display 1 )
( disp...
分类:
其他好文 时间:
2015-07-04 14:09:08
阅读次数:
221
``Accordian'' PatienceYou are to simulate the playing of games of ``Accordian'' patience, the rules for which are as follows:Deal cards one by one in ...
分类:
其他好文 时间:
2015-07-03 20:24:34
阅读次数:
103
Google Developing for Android 二 - Memory 最佳实践 | 分类于Android最佳实践原文:Developing for Android, IIThe Rules: Memory在决定应用的行为,是否有好的用户体验以及整体的设备体验来说,内存的使用可能是独立因....
分类:
移动开发 时间:
2015-07-03 00:05:02
阅读次数:
199
The top 100 papersNatureexplores the most-cited research of all time.The discovery of high-temperature superconductors, the determination of DNA’s dou...
分类:
其他好文 时间:
2015-07-02 21:01:13
阅读次数:
98
How to create .gitignore fileI need to add some rules to my.gitignorefile, however, I can't find it in my project folder. Isn't it created automatical...
/** * 扩展的基本校验规则, */$.extend($.fn.validatebox.defaults.rules, { minLength : { // 判断最小长度 validator : function(value, param) { va...
分类:
其他好文 时间:
2015-07-01 06:10:56
阅读次数:
108
今天在写代码的时候遇到了jre system libraries的访问限制问题,该库是jvm运行的依赖库rt.jar,解决方案如下:
步骤:
(1)项目右击,出现Build Path,点击进入Java Build Path配置,点击Libraries中的JRE Syatem Library,如下图所示:
(2)点击Access rules,可自定义jvm运行库的访问规则,如下图所示...
分类:
数据库 时间:
2015-06-29 17:18:36
阅读次数:
174
Mesos 的 配置项 可以通过启动时候传递参数或者配置目录下文件的方式给出(推荐方式,一目了然)。
分为三种类型:通用项(master 和 slave 都支持),只有 master 支持的,以及只有 slave 支持的。
通用项
--ip=VALUE 监听的 IP 地址--firewall_rules=VALUE endpoint 防火墙规则,VALUE 可以是
JSON...
分类:
其他好文 时间:
2015-06-29 17:05:12
阅读次数:
498
1、在snort网站注册2、注册成功后,会在个人信息中生成:Oinkcode3、https://www.snort.org/rules/snortrules-snapshot-2973.tar.gz?oinkcode=需要手动补充注:2973代表snort版本ps:百度搜索的方法都是老的url,现在...
分类:
其他好文 时间:
2015-06-29 16:31:15
阅读次数:
177
WPF学习之数据绑定WPF中的数据绑定提供了很强大的功能。与普通的WinForm程序相比,其绑定功能为我们提供了很多便利,例如Binding对象的自动通知/刷新,Converter,Validation Rules,Two Way Binding等功能,省去了很多维护的繁琐工作。另外对于WPF中提供...