TortoiseSVN使用简介2009-04-24 来源: dev.idv.tw1.安装及下载client 端2.什么是SVN(Subversion)?3.为甚么要用SVN?4.怎么样在Windows下面建立SVN Repository?5.建立一个Working目录6.新增档案及目录到Reposi...
分类:
其他好文 时间:
2015-06-22 20:37:27
阅读次数:
165
Bash将波浪号作为路径扩展符$echo ~ //扩展为当前用户主目录的全路径名/home/user$echo ~user //扩展为用户user的主目录/home/user$echo ~+ //扩展为当前工作目录/home/user/doc/working$echo ~- //扩展为先前工作...
分类:
其他好文 时间:
2015-06-22 08:40:02
阅读次数:
110
http://www.soapui.org/about-soapui-pro/working-with-soapui-pro.htmlDataSource type dropdown – lets you pick which external source you would use to pul...
分类:
数据库 时间:
2015-06-21 22:13:24
阅读次数:
168
//给一个有向图,每个点都有权值,问最少需要几个起点和最少花费多少能将整个图遍历完
//用tarjan缩点,然后找出所有入度为0的点
#include
#include
#include
#include
using namespace std ;
const int maxn = 1010 ;
const int inf = 0x7fffffff ;
vector vec[ma...
分类:
其他好文 时间:
2015-06-21 15:51:30
阅读次数:
140
首先参考文章:http://www.oschina.net/translate/working-with-hashcode-and-equals-methods-in-java1,equals方法的比较与 == 的区别是什么?为什么需要重写equals方法?2,为什么说重写了equals方法最好重写...
分类:
编程语言 时间:
2015-06-17 23:19:48
阅读次数:
215
Recently while working with data migration,got an error while running a following query where Server2 has beed added as linked server.SELECT * FROM Se...
分类:
数据库 时间:
2015-06-16 18:37:25
阅读次数:
290
转帖:http://www.glenstevens.ca/unity3d-best-practices/另外可以参考:http://devmag.org.za/2012/07/12/50-tips-for-working-with-unity-best-practices/组件的拆分可以参考:htt...
分类:
编程语言 时间:
2015-06-16 10:54:55
阅读次数:
204
敏捷(Agile)目标向客户提供有价值的软件最短时间内完成最大的商业价值敏捷核心Working Software(可工作的软件)Deliver Frequently(持续交付)Continuous Integration(持续集成)敏捷方法XP(极限编程)ScrumTDD(测试驱动开发)...Scr...
分类:
其他好文 时间:
2015-06-15 01:45:32
阅读次数:
185
libgdx assets file not foundSelect Run -> Edit Configurations from the menuIn the "Working Directory:" text box, add "android/assets" to the end of th...
分类:
其他好文 时间:
2015-06-14 18:25:58
阅读次数:
118
1. 空间维度搜索,我们发现经常有需求是想找到某个函数在哪些文件里出现过。
git grep
在当前working directory下搜索含有某个字符串的文件,要显示行号可以使用-n参数。
# git grep -n hongchang
zhc.conf:1:hongchangfirst
只显示包含的文件和其包含的个数可以使用--count参数。
# git gr...
分类:
其他好文 时间:
2015-06-12 13:27:42
阅读次数:
131