参考资料:Learning Globally-Consistent Local Distance Functions for Shape-Based Image Retrieval and Classification,Andrea Frome etc.昨晚总结完就睡着了,今天不知道为什么手欠给拉到...
分类:
其他好文 时间:
2014-09-24 01:30:35
阅读次数:
278
参考资料:http://www.oschina.net/code/snippet_166763_6502//以下是常用到的Intent的URI及其示例,包含了大部分应用中用到的共用Intent。//一、打开一个网页,类别是Intent.ACTION_VIEWUri uri = Uri.parse(“...
分类:
移动开发 时间:
2014-09-24 00:34:45
阅读次数:
230
参考资料
http://faye.jcoglan.com/
Faye is a publish-subscribe messaging system based on the Bayeux protocol/CometD. It provides message servers for Node.js and Ruby, and clients for use on...
分类:
Web程序 时间:
2014-09-23 12:12:24
阅读次数:
192
参考资料:1、版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明http://eshock.blogbus.com/logs/61459223.html2、http://www.cnblogs.com/anyanran/archive/2010/11/22/ndk1.html1、平台及...
分类:
系统相关 时间:
2014-09-23 11:51:44
阅读次数:
301
参考资料:Clustering by Passing Messages Between Data Points,Brendan J. Frey* and Delbert Dueck
分类:
其他好文 时间:
2014-09-23 01:38:33
阅读次数:
207
参考资料:http://blog.csdn.net/huiwolf2008/article/details/7901084http://www.cnblogs.com/Gaojiecai/archive/2013/06/18/3142783.html在TextView 和 EditText中,可以使...
分类:
移动开发 时间:
2014-09-22 15:12:32
阅读次数:
208
今天用到Excel的相关操作,看了一些资料,借此为自己保存一些用法。 参考资料: python excel 的相关操作 python操作excel之xlrd python操作Excel读写--使用xlrd 1 # -*- coding: UTF-8 -*- 2 3 import x...
分类:
编程语言 时间:
2014-09-21 02:10:29
阅读次数:
300
最近一直在研究XSS的攻防,特别是dom xss,问题慢慢的迁移到浏览器编码解码顺序上去。今儿被人放鸽子,无奈在KFC看了两个小时的资料,突然有种豁然开朗的感觉。参考资料先贴出来:1.http://www.freebuf.com/articles/web/43285.html2.http://www...
分类:
Web程序 时间:
2014-09-21 01:39:39
阅读次数:
399
参考资料
__setattr__、__getattr__和__delattr__以及__getattribute__可以拦截对对象属性的访问;
>>> s = Something()
>>> s.age = 3
set 'age' = 3
>>> s.age
3
注意到,s.age并没有调用__getattr__,是因为...
分类:
编程语言 时间:
2014-09-20 10:05:47
阅读次数:
188
参考资料
http://www.ibm.com/developerworks/library/os-pythondescriptors/
顾名思义,property用于生成一个属性,通过操作这个属性,可以映射为对某些函数的操作,类似于C#。
形式为
pvar = propery(get_func, set_func, del_fun, doc_func)...
分类:
编程语言 时间:
2014-09-19 21:14:16
阅读次数:
362