The ChallengeOftentimes in the world of Dynamics CRM, the need arises for non-CRM users to gain access to CRM data. A common solutionis the implementa...
分类:
其他好文 时间:
2014-09-08 02:09:26
阅读次数:
594
1.the concept of List2. how to define a method of myself3.how to iterator a listPS:for Step 2,3. it is related with a key word: 'def'. we define a fun...
分类:
编程语言 时间:
2014-09-07 21:00:15
阅读次数:
229
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:
其他好文 时间:
2014-09-06 21:18:33
阅读次数:
263
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:
其他好文 时间:
2014-09-06 17:20:33
阅读次数:
229
OpenCV中Mat矩阵data数据的存储方式和二维数组不一致,二维数组按照行优先的顺序依次存储,而Mat中还有一个标示行步进的变量Step。使用Mat.ptr(row) 行指针的方式定位到每一行,可快速遍历矩阵。例程如下: 1 std::cout (i);// mInv...
分类:
其他好文 时间:
2014-09-06 09:40:12
阅读次数:
297
STEP 1. 装fcitx框架,apt-get install fcitxSTEP 2. 装googlepinyin输入法,apt-get install fcitx-googlepinyinSTEP 3. 需要重启机器Done.PS:fcitx means Free Chinese Input ...
分类:
其他好文 时间:
2014-09-05 17:59:41
阅读次数:
258
gdb基础使用:如果需要使用gdb,在gcc的时候需要-g选项,不加无法调试。help 查看命令帮助list 看代码 list 行号 l list 函数名run 运行start 进行单步调试step 跳进函数里 逐语句next 下一步 逐过程finish 结束一个函数,返回函数调用的位置 print...
分类:
数据库 时间:
2014-09-04 00:01:07
阅读次数:
353
Step-By-Step: Creating a SQL Server 2012 AlwaysOn Availability Group http://blogs.technet.com/b/canitpro/archive/2013/08/20/step-by-step-creating-a-sq...
分类:
数据库 时间:
2014-09-03 14:45:06
阅读次数:
167
-- Demostratin 2A (Using SQL Server Audit)-- Step 1: Use the master databaseUSE master;GO-- Step 2: Create a SQL Server Audit and define tis target as...
分类:
数据库 时间:
2014-09-03 12:36:56
阅读次数:
272
1, 首先在一个java文件中设断点,然后运行,当程序走到断点处就会转到debug视图下,2, F5键与F6键均为单步调试,F5是step into,也就是进入本行代码中执行,F6是step over, 也就是执行本行代码,跳到下一行,3,F7是跳出函数4,F8是执行到最后。//////////.....
分类:
系统相关 时间:
2014-08-31 18:34:21
阅读次数:
264