一. 移动: h,j,k,l: 左,下,上,右。 w: 下一个词的词首。 e:下一个词的词尾。 b:上一个词的词首。 : v 模式选中后进行缩进。二. 跳转: %: 可以匹配{},"",(),[]之间跳转。 H、M、L:直接跳转到当前屏幕的顶部、中部、底部。 #H:跳转到当前屏的第#行。 #L:跳转...
分类:
系统服务 时间:
2014-11-28 14:05:57
收藏:
0 评论:
0 赞:
0 阅读:
315
一 软件安装关于 makefile文件问题如果拿到的工程文件中,没有Makefile文件,而只有configure.in和Makefile.am文件,我们是不能够直接进行编译的,必须根据configure.in和Makefile.am文件生成编译所需的Makefile文件。具体操作步骤如下: 1、执...
分类:
其他 时间:
2014-11-28 14:05:37
收藏:
0 评论:
0 赞:
0 阅读:
215
The conventional way to produce dual (positive and negative) outputs from a single positive input is to use a transformer. Although such designs are r...
分类:
其他 时间:
2014-11-28 14:05:26
收藏:
0 评论:
0 赞:
0 阅读:
298
+ (void)choseRootVC{ NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSString *saveVersion = [defaults objectForKey:@"CFBundle...
分类:
移动平台 时间:
2014-11-28 14:05:16
收藏:
0 评论:
0 赞:
0 阅读:
240
CodeSmith学习笔记------1.新建一个Code Smith Generator Template(C sharp)2.一些常见标签的解释:①外部变量:表示定义一个string类型的外部变量,在需要在生成的时候才输入,此属性有默认值,也可以由用户在右下角的属性栏里修改属性的值。还有Opti...
分类:
其他 时间:
2014-11-28 14:05:07
收藏:
0 评论:
0 赞:
0 阅读:
276
http://blog.csdn.net/lwcumt/article/details/8027586importjava.util.Scanner;//质数又称素数,是指在一个大于1的自然数中,除了1和此整数自身外,不能被其他自然数整除的数publicclassPrimeNumber{public...
分类:
编程语言 时间:
2014-11-28 14:04:56
收藏:
0 评论:
0 赞:
0 阅读:
251
已经不是学生了 对于刚刚走出校园的我来说 哪怕是写一个小工具 不再仅仅是功能的完成 需要考虑到用户的可用性 当处理大批量文件时 程序可能会出现的问题 还有程序处理的效率 当谨记this.SetStyle(ControlStyles.AllPaintingInWmPaint,true);//解决闪烁t...
分类:
其他 时间:
2014-11-28 14:04:46
收藏:
0 评论:
0 赞:
0 阅读:
281
在进行对一个mXn的矩阵与mX1的矩阵进行==比较时,原意是想让mXn的矩阵的每一行分别与mX1的矩阵每一行进行比较,得到的结果虽然是对的,但会报一个warning: mx_el_eq: automatic broadcasting operation applied 。强迫症得治!如下图:出现这一...
分类:
移动平台 时间:
2014-11-28 14:04:36
收藏:
0 评论:
0 赞:
0 阅读:
1596
1.jquery 遍历对象 New Document 用户名 密码 2.jQuery遍历数组 New Document ------------此部分同1中的body部分-------...
分类:
Web开发 时间:
2014-11-28 14:04:26
收藏:
0 评论:
0 赞:
0 阅读:
288
Buck regulators find wide application as step-down regulators for converting large positive input voltages into a smaller positive output voltages.Fig...
分类:
其他 时间:
2014-11-28 14:04:16
收藏:
0 评论:
0 赞:
0 阅读:
543
上点:就是指得边界上得点,开区间的话,上点就是在域外,闭区间得话,上点就是在域内。离点:指得就是离上点最近得点,如果是开区间,那么离点就在域内,如果是闭区间,那么离点就在域外。内点:域内得任意点都是内点。实例: (6,15] 上点:6 15 离点:7 16
分类:
其他 时间:
2014-11-28 14:04:06
收藏:
0 评论:
0 赞:
0 阅读:
1111
一 C# 全局唯一标识符 (GUID)Represents a globally unique identifier (GUID).To browse the .NET Framework source code for this type, see theReference Source.Name...
分类:
Windows开发 时间:
2014-11-28 14:03:57
收藏:
0 评论:
0 赞:
0 阅读:
296
简述 使用selenium webdriver + Python做自动化测试,执行完成后要生成测试报告,Python我们使用的HTMLtestrunner 进行生成,但是默认提供的生成报告内容,并不能满足我们的需求,怎么才能让测试报告数据更清晰,内容更丰富呢。对于一些人来说,可能已经重写了报告生成方...
分类:
编程语言 时间:
2014-11-28 14:03:46
收藏:
0 评论:
0 赞:
0 阅读:
658
【FFmpeg】FFmpeg常用基本命令1.分离视频音频流ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流ffmpeg -i input_file -acodec copy -vn output_file_audio .....
分类:
其他 时间:
2014-11-28 14:03:26
收藏:
0 评论:
0 赞:
0 阅读:
480
1、jQuery - 添加元素我们将学习用于添加新内容的四个 jQuery 方法:append() - 在被选元素的结尾插入内容prepend() - 在被选元素的开头插入内容after() - 在被选元素之后插入内容before() - 在被选元素之前插入内容解析:append方法和after方法...
分类:
Web开发 时间:
2014-11-28 14:03:16
收藏:
0 评论:
0 赞:
0 阅读:
377
The circuit inFigure 1delivers programming voltages to an EEPROM under the control of an external DAC (not shown). You can replace the DAC with a pote...
分类:
其他 时间:
2014-11-28 14:02:56
收藏:
0 评论:
0 赞:
0 阅读:
238
1.手动设置高度(宽):把AutoSize属性设为false
2.重要的事件:Scroll事件和和ValueChanged事件
分类:
Windows开发 时间:
2014-11-28 14:02:46
收藏:
0 评论:
0 赞:
0 阅读:
1172
参考:win7下安装OSX10.8及XCODE4.5http://cleris.diandian.com/VB-Mountain-Lion1,本机环境:win8 64位, 8G内存。2,安装virtualbox:3,安装virtualbox扩展:4,安装完后打开virtualbox,然后创建虚拟机:...
分类:
Windows开发 时间:
2014-11-28 14:02:36
收藏:
0 评论:
0 赞:
0 阅读:
420
The step-up switching-converter circuit inFigure 1presents a familiar problem: If you shut down boost converter IC1by pulling itsinput low, external i...
分类:
其他 时间:
2014-11-28 14:02:16
收藏:
0 评论:
0 赞:
0 阅读:
274
You would normally use a series linear regulator or a dc/dc converter to obtain 3V dc from a higher supply. However, when breadboarding a concept, you...
分类:
其他 时间:
2014-11-28 14:02:06
收藏:
0 评论:
0 赞:
0 阅读:
268