Chinaunix首页 | 论坛 | 博客
  • 博客访问: 219536
  • 博文数量: 61
  • 博客积分: 305
  • 博客等级: 二等列兵
  • 技术积分: 480
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-29 22:46
文章分类

全部博文(61)

文章存档

2015年(3)

2014年(9)

2013年(28)

2012年(21)

我的朋友

发布时间:2014-11-13 20:47:28

浏览器/网页工作原理 25 二月, 2010 (18:59) | OTHER | By: cq 原文:http://igoro.com/archive/what-really-happens-when-you-navigate-to-a-url/    http://cq-cser.cn/2010/02/%E6%B5%8F%E8%A7%88%E5%99%A8%E7%BD%91%E9%A1%B5%E5%B7%A5%E4%BD%9C%E5%8E%9F%E7%90%86/ 作为一个软件开发者,你一定会对网.........【阅读全文】

阅读(1323) | 评论(0) | 转发(0)

发布时间:2014-10-19 20:09:11

对比表,以 apache / httpd 为例 任务 旧指令 新指令 使某服务自动启动 chkconfig --level 3 httpd on systemctl enable httpd.service 使某服务不自动启动 chkconfig --level 3 httpd off systemctl disable httpd.service 检查服务状态 service httpd status systemctl status httpd.service (.........【阅读全文】

阅读(1426) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(3610) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(2054) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(1015) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册