为啥不能追求自己的爱好一辈子呢
发布时间:2013-07-11 15:28:11
Bad owner or permissions on .ssh/configThe file has bad permissions. If you get this error try:chmod 600 *inside the .ssh folder.according to the manual of openssh ~/.ssh/config This is the per-user configuration file. This file is used by the SSH client.Because of the p.........【阅读全文】
发布时间:2013-06-25 16:39:45
综述: ORACLE like涉及模式匹配,他根据第二个参数指定的模式,匹配第一个参数。其中下划线(_)匹配一个字符,百分号(%)匹配零个或者多个字符。其中oracle把like前面参数的当作字符串,把like后边的参数当作匹配符。讲解:我们建立一个新表点击(此处).........【阅读全文】
发布时间:2013-06-22 00:48:24
综述: 今天看了计算机编程艺术,第一张是关于最大公约数的,基本的算法思想是 假设求m,n的最大公约数k,并且m = tn + x;所以m,n的最大公约数,就是n与x的最大公约数。因为m能被k整除,必须x也能被k整除。算法如下:点击(此处)折叠或打开unsigned&nbs.........【阅读全文】