1. 背景本文尝试使用的试验对象是SDK自带的NotePad应用实例,假设已经有两个Notes分别是“note1”和“note2”添加到Notepad上面,我们要做的就是尝试用xpath的方法来定位“note2”这个ListView下面的TextView控件。注意界面上有3个TextView类型的控...
分类:
移动开发 时间:
2015-08-18 13:33:24
阅读次数:
138
题目是iOS Learn Notes,不过这篇文章更多的是梳理了一下过去半个月的弯路:没有跟iOS视频,去看国内的教材去了……掐指一算,已经半个月没有更新这个博客了,恍恍惚惚了半个月呀。其实这半个月也没有闲着,把《Swift语言实战入门》的前8章翻了一下。第8章没有看完,实在看不下去了。怎么评价呢?...
分类:
移动开发 时间:
2015-08-18 01:01:53
阅读次数:
178
已经发在了并发编程网:?http://ifeve.com/spring4-2/ 1. 简介. ? ? 前些天spring4.2出来了, 从GA开始就一直在跟了, 前2天看完了所有Release Notes, 觉得记录下我比较感兴趣的特性. ? ? 官方的Release Notes...
分类:
编程语言 时间:
2015-08-17 14:12:05
阅读次数:
711
1. 监督学习的一种方法学,广义线性模型(GLM)的方法学【转载时请注明来源】:http://www.cnblogs.com/aria313——根据Andrew Ng 2008年课程的第1~4节,以及相关的讲义notes 1,进行总结网易公开课地址:http://study.163.com/plan...
分类:
其他好文 时间:
2015-08-16 22:42:20
阅读次数:
295
动画12 basic principles of animationhttps://en.wikipedia.org/wiki/12_basic_principles_of_animationhttp://the12principles.tumblr.com GIFhttp://vimeo.com/...
分类:
其他好文 时间:
2015-08-16 19:36:32
阅读次数:
123
http://www.cnblogs.com/foreach-break/p/notes_about_distributed_system_and_The_log.html
分类:
其他好文 时间:
2015-08-14 11:37:17
阅读次数:
127
form 也没什么可说的,我只给一个例子大家就懂了form modelfrom django import formsclass UserForm(forms.Form): username = forms.CharField(label='UserName', max_length=100)...
分类:
其他好文 时间:
2015-08-12 19:16:57
阅读次数:
93
CRUD 也没什么可说的,django 提供了完善的 orm api, 直接用就行了。我只贴几个列子,一看就明白了,自己再用用就熟了。# createb = Blog(name='Beatles Blog', tagline='All the latest Beatles news.')b.save...
分类:
数据库 时间:
2015-08-12 19:05:13
阅读次数:
110
巧用emacs的org-mode模式浏览:1017|更新:2013-07-25 23:45一键约师傅百度师傅,专治各种手机、电脑问题介绍转个官方文档Org is a mode for keeping notes, maintaining TODO lists, and doingproject pl...
分类:
系统相关 时间:
2015-08-11 18:08:03
阅读次数:
185
package notebook;import java.util.ArrayList;public class NoteBook {
private ArrayList notes =new ArrayList(); //创建容器类的对象notes public void add(String s)
{//添加笔记
notes.add(s);
}...
分类:
编程语言 时间:
2015-08-11 12:17:14
阅读次数:
111