http://www.cnblogs.com/qiufuwu618/articles/vim.htmlvim常用命令1,gg快速定位到文件头2,G快速定位到文件尾3,ma 当前行创建一个名字为a的bookmark,你也可以mb,mc4,`a 快速跳转到名字为a的那一行5,`. 快速跳转到你最后编辑的...
分类:
系统相关 时间:
2014-11-02 12:14:53
阅读次数:
169
/*********************************************************************************
Copyright (C), 1988-1999, drvivermonkey. Co., Ltd.
File name:
Author: Driver Monkey
Version:
Ma...
分类:
编程语言 时间:
2014-11-02 00:41:22
阅读次数:
227
#include#include#include using namespace std;int main(){ cout ::max)(); cout ::min)() ::max)(); cout ::min)() ::max)(); cout ::min)() ::ma...
分类:
编程语言 时间:
2014-11-01 13:15:53
阅读次数:
225
方法来源于:http://www.eoeandroid.com/thread-281075-1-1.html试试这个,能解决国内访问Google服务器的困难启动 Android SDK Manager ,打开主界面,依次选择「Tools」、「Options...」,弹出『Android SDK Ma...
分类:
移动开发 时间:
2014-11-01 06:15:16
阅读次数:
184
当git clone之后,直接git pull它会自动匹配一个正确的remote url是因为在config文件中配置了以下内容:[java] view plaincopy[branch"master"]remote=originmerge=refs/heads/master表明:1.git处于ma...
分类:
其他好文 时间:
2014-10-31 21:56:19
阅读次数:
159
设置NSZombieEnabled和MallocStackLogging...
分类:
其他好文 时间:
2014-10-29 17:08:49
阅读次数:
177
方法一:# -*- coding: utf-8 -*-import sysimport osimport stringRCV_LOG = r"d:\c.txt"def get_last_n_lines(logfile, n): n = string.atoi(n) blk_size_ma...
分类:
编程语言 时间:
2014-10-29 12:53:19
阅读次数:
739
基于内容的图像分析的重点是提取出图像中具有代表性的特征,而线条、轮廓、块往往是最能体现特征的几个元素,这篇文章就针对于这几个重要的图像特征,研究它们在OpenCV中的用法,以及做一些简单的基础应用。一、Canny检测轮廓在上一篇文章中有提到sobel边缘检测,并重写了soble的C++代码让其与ma...
分类:
其他好文 时间:
2014-10-29 10:46:08
阅读次数:
282
DescriptionThe farm has many hills upon which Farmer John would like to place guards to ensure the safety of his valuable milk-cows. He wonders how ma...
分类:
其他好文 时间:
2014-10-29 01:34:28
阅读次数:
249
回溯问题,可以递归解决,不断试探走一步,走两步void go(int n,int step,int& sum){ n = n - step; if(n > 0) { go(n,1,sum); go(n,2,sum); } else if(n==0) { sum ++; }}int ma...
分类:
其他好文 时间:
2014-10-28 23:54:36
阅读次数:
203