onfling参数:e1 The first down motion event that started the fling.e2 The move motion event that triggered the current onFling.velocityX The velocity of ...
分类:
其他好文 时间:
2015-03-17 19:46:32
阅读次数:
154
Linux下安装配置msmtp和muttLinux下有发送邮件的需求,mail搞不定,因为很多邮件服务器屏蔽了mail发送的请求(明显嘛,都木有发送源-_-)。在网上搜了一把,使用msmtp+mutt可以搞定,记录如下。一、安装配置msmtp1、下载、解压 msmtpwget http://down...
分类:
系统相关 时间:
2015-03-17 12:11:52
阅读次数:
176
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is trying to reach the bo...
分类:
其他好文 时间:
2015-03-17 10:29:46
阅读次数:
189
最近在利用SharePoint Server 2013的列表组织和存储数据,发现SharePoint列表原始不支持级联选择的功能。 谷歌百度一通以后,发现了很多通过代码实现的方案,利用第三方的插件spservices的http://spservices.codeplex.com/releases/v...
分类:
其他好文 时间:
2015-03-17 02:01:52
阅读次数:
269
1.信号量( 两个进程之间同步)
struct semaphore power_sem;
sema_init(&pdata->power_sem,1);
down(&pdata->power_sem);
up(&pdata->power_sem);
2.互斥量
struct mutex led_mutex;
mutex_init(&led_mutex);
m...
分类:
系统相关 时间:
2015-03-16 19:23:15
阅读次数:
237
paint触摸轨迹监听,主要是三种而已,ACTION_DOWN,ACTION_MOVE,ACTION_UPpublic boolean onTouchEvent(MotionEvent event){ int action = event.getAction(); float x = eve...
分类:
移动开发 时间:
2015-03-16 12:30:47
阅读次数:
173
这两天利用业余时间做了一个小的iOS app,简单的数据展示。 app虽小,却也有10+个类,当程序越来越大的时候,我发现思路越来越模糊,在开始之前很多功能的实现没有具体思路。导致增加新功能,就需要修改一部分实现,很头疼。 由于没有通用模块的储备,当需要用到通用模块的时候,从网上down或者...
分类:
其他好文 时间:
2015-03-16 06:10:46
阅读次数:
133
题目链接:Unique Paths
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is try...
分类:
其他好文 时间:
2015-03-15 23:45:04
阅读次数:
386
A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
分类:
其他好文 时间:
2015-03-15 23:31:23
阅读次数:
132
eclipse开发安卓时运行程序可能会出现如题的console信息。这种情况需要重启adb,
具体方法是:
cmd命令进入DOS命令行,如果adb.exe的路径已经加到了环境变量PATH中,就可以直接敲“ adb kill-server ”,把adb进程杀死;然后敲 “ adb start-server ”,重启adb服务。
如果adb.exe路径在环境变量里没有,也可以change...
分类:
移动开发 时间:
2015-03-15 18:27:10
阅读次数:
190