发布时间:2014-09-01 16:44:14
Cisco IOU Web Interface 又称 Web IOU,是国外技术大拿的作品。作者(Andrea Dainese)主页是http://www.routereflector.com/,作者给IOU做了个Web的操作界面,方便我们在实验时,更简易的搭建拓扑,能够图形化管理IOU。 特别强调下,IOU属于Cisco内部使用文件。本文不提供相关IOU的下载,需要更多细节的可以邮我。(6.........【阅读全文】
发布时间:2014-06-10 08:25:39
from random import randintboard = []for x in range(0,5): board.append(["O"] * 5)def print_board(board): for row in board: print (" ".join(row))def random_row(board): return randint(0, len(board) - 1)def random_col(board): return randint(0, len(board[0]) - 1)ship_r.........【阅读全文】
发布时间:2014-06-10 08:23:42
lloyd = { "name": "Lloyd", "homework": [90.0, 97.0, 75.0, 92.0], "quizzes": [88.0, 40.0, 94.0], "tests": [75.0, 90.0]}alice = { "name": "Alice", "homework": [100.0, 92.0, 98.0, 100.0], "quizzes": [82.0, 83.0, 91.0], "tests": [89.0, 97.0]}tyler = { "name": "Tyl.........【阅读全文】
发布时间:2014-05-23 14:49:05
If you spend lot of time in Linux environment, it is essential that you know where the log files are located, and what is contained in each and every log file. When your systems are running smoothly, take some time to learn and understand the content of various log files, which will help you when t.........【阅读全文】
发布时间:2013-03-23 18:39:55
1 shell 的$! ,$?, $$,$@$n $1 the first parameter,$2 the second...$# The number of command-line parameters.$0 The name of current program.........【阅读全文】