1: 升级自己的手机到ios8, 同时mac os也要升级到10.102: 用usb数据线将手机连上电脑。3: 打开quicktime player创建新movie4: 选择手机作为音频、视频源(Options键进行选择)5: 开始录制,并保存
分类:
移动开发 时间:
2014-12-24 13:18:32
阅读次数:
178
caffe在cifar10 的example上给出了两个模型,一个是quick模式,一个是full模式,训练full模式时会出现loss=nan的错误...
分类:
其他好文 时间:
2014-12-24 11:48:27
阅读次数:
1583
主要最近学习python,两个练习的小例子,也是看书上写的,非常简单,感觉有点用**********写文件**********#_*_coding:UTF-8_*_importosls=os.linesepwhileTrue:fname=raw_input(‘输入文件名:‘)ifos.path.exists(fname):print"ERROR:‘%s‘alreadyexists"%fnameelse:breakall=[]wh..
分类:
编程语言 时间:
2014-12-24 06:31:17
阅读次数:
134
Description
N(3N20000)
ping pong players live along a west-east street(consider the street as a line segment). Each player has a unique skill rank. To improve their skill rank, they often c...
分类:
其他好文 时间:
2014-12-23 21:12:24
阅读次数:
205
创建多个目录使用 mkdirs()方法 创建单个目录使用mkdir()方法
//创建多个目录
File ftarget = new File("imag/aaaaa/bbb/jjjjj");
try {
if(!ftarget.exists() && !ftarget.isDirectory()){
ftarget.mkdirs();
}
}catch(E...
分类:
编程语言 时间:
2014-12-23 19:36:58
阅读次数:
183
VB.NET自动加载.xla文件
Public Function Loadxla(ByVal xlaPath As String, ByVal load As Boolean) As Boolean
Dim loaded As Boolean = False
Try
If (File.Exists(xlaPath)) Then
...
分类:
Web程序 时间:
2014-12-23 19:35:15
阅读次数:
234
Volley主页https://android.googlesource.com/platform/frameworks/volleyhttp://www.youtube.com/watch?v=yhv8l9F44qo&feature=player_embedded1. 什么是Volley在这之前,...
分类:
移动开发 时间:
2014-12-23 15:25:58
阅读次数:
246
在quick-cocos2d-x lua的开发过程中,我们在传递参数的时候需要传入函数作为我们的参数,通常有两种方法,一种是使用function把我们的函数包起来,另一种是用handler将我们的函数封装起来,这两种方法在使用的时候是明显不同的,下面我就要贴出自己在quick中的代码来说明我理解的二者的不同。
首先是handler,如果我们的参数函数本身是没有参数的,那么应该是:
local ...
分类:
其他好文 时间:
2014-12-23 12:32:48
阅读次数:
430
一、Key Key命令速查:命令说明DEL删除给定的一个或多个 key,不存在的 key 会被忽略,返回值:被删除 key 的数量DUMP序列化给定 key,返回被序列化的值,使用 RESTORE 命令可以将这个值反序列化为 Redis 键EXISTS检查给定key是否存在EXPIRE为给定key....
分类:
其他好文 时间:
2014-12-23 12:14:27
阅读次数:
926
总结的不错的Volley介绍:
Volley主页 https://android.googlesource.com/platform/frameworks/volley
http://www.youtube.com/watch?v=yhv8l9F44qo&feature=player_embedded
1. 什么是Volley
在这之前,我们在程序中需要和网络通...
分类:
其他好文 时间:
2014-12-23 00:19:09
阅读次数:
269