telnet: 远程登录协议, 23/tcp C/S S:telnet服务器 C:telnet客户端
ssh:Secure SHell, 应用层协议,22/tcp 通信过程及认证过程是加密的, 主机认证 用户认证过程加密 ...
分类:
其他好文 时间:
2014-05-01 10:14:05
阅读次数:
324
本文演示如何在Windows上和Linux上安装Jenkins。 1.
Windows上Jenkins安装
参考网页:https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+as+a+Windows+service
在Window...
分类:
其他好文 时间:
2014-05-01 09:52:49
阅读次数:
455
ubuntu分辨率真是坑爹,不知什么原因,ubuntu分辨率一下子变了,通过,显示->分辨率,都改不过来。。。
无奈,有重装系统的冲动,从网上找了很多方法,都不管用,有一次,在这里 sudo gedit /etc/X11/xorg.conf 更改还黑屏了。。。
电脑上还有很...
分类:
其他好文 时间:
2014-05-01 09:50:47
阅读次数:
410
其实与其说是不同倒是可以说是需要注意的地方1. Linux下面,Model Component
等...在调用的时候要注意大小写..下面一段就会报错 1 class LinkController extends Controller 2 { 3 4
public function acti...
原题地址:http://oj.leetcode.com/problems/swap-nodes-in-pairs/题意:将链表中的节点两两交换。Given1->2->3->4,
you should return the list as2->1->4->3.解题思路:这题主要涉及到链表的操作,没什么...
分类:
编程语言 时间:
2014-05-01 06:44:21
阅读次数:
339
原题地址:http://oj.leetcode.com/problems/remove-nth-node-from-end-of-list/题意:Given
a linked list, remove thenthnode from the end of list and return its he...
分类:
编程语言 时间:
2014-05-01 06:42:15
阅读次数:
332
1 #include 2 #include 3 #include 4 #include 5 6
typedef void* (*fun)(void*); 7 8 fun fun1, fun2; 9 10 pthread_mutex_t pmu =
PTHREAD_MUTEX_INITI...
分类:
编程语言 时间:
2014-05-01 06:36:02
阅读次数:
427
题目链接Given a list, rotate the list to the right
bykplaces, wherekis non-negative.For
example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.首...
分类:
其他好文 时间:
2014-05-01 04:52:19
阅读次数:
288