现在都知道运维自动化的重要性,尤其是对于在服务器数量按几百台、几千台增加的公司而言,单单是装系统,如果不通过自动化来完成,根本是不可想象的。运维自动化安装方面,早期一般使用人工配置pxe+dhcp+tftp配合kickstart,现在开源工具就多了,如cobbler,OpenQRM和Spacewalk..
分类:
其他好文 时间:
2014-10-05 23:37:59
阅读次数:
412
T1 >>> 创建一个新的selectvar $newSelect = $(""); // 注意转义\T2 >>> 创建一个新的option var $option = $("1");T3 >>> 将option添加进数组 options方式一:$newSelect.append($option.....
分类:
Web程序 时间:
2014-10-05 00:08:27
阅读次数:
229
题目链接:https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1416题目大意:一个老师带他的一群学生去旅游。带走的这群学生整体必须满足给出四个条...
分类:
其他好文 时间:
2014-10-04 22:18:27
阅读次数:
327
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1620
题意:
给出一个文本串和若干个模式串,问模式串是否在文本串中出现过。
分析:
简单粗暴的AC自动机模板题,要注意模式串可能有重复的情况。
/*
*
* Aut...
分类:
其他好文 时间:
2014-10-04 21:14:17
阅读次数:
327
链接:
https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&category=566
A uva live 6182 - Ginkgo
Numbers
题目意思:
规则:
1、m, n>
· x, y>
= mx ? ny, my + nx>
2、如果是的“除数”,则...
分类:
其他好文 时间:
2014-10-04 19:50:17
阅读次数:
286
1.获得帮助:option+click / option+double click2.@property里的nonatomic,表示非原子性访问,atomic是obj-c里使用的一种线程保护技术,是防止在写未完成的时候被另一个线程读取,造成数据错误。而这种机制是耗费系统资源的。3.使用@synthe...
分类:
其他好文 时间:
2014-10-04 13:01:16
阅读次数:
207
var street = '清华园路';$('#streetid option:contains(' + street + ')').each(function(){ if ($(this).text() == street) { $(this).attr('selected', true); }}...
分类:
Web程序 时间:
2014-10-04 11:35:46
阅读次数:
257
T1 >>> 创建一个新的selectvar sel_obj = document.createElement('select');T2 >>> 创建一个新的option 方式1:var new_option = document.createElement('option');new_option...
分类:
编程语言 时间:
2014-10-04 09:53:46
阅读次数:
193
1、二层交换机配置1、VTP学生宿舍/教学Switch(config)#vtpdomainYeyuPeiSwitch(config)#vtpmodeclient2、接口划入vlan学生宿舍Switch(config)#interfacefastEthernet0/1Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlan10Switch(config-if)spann..
分类:
其他好文 时间:
2014-10-03 15:41:25
阅读次数:
433
step1:新建一个Console App工程(其他工程也行),勾选编译模块选项
step2:新建一个模块,命名b.asm。
下面是Test3.asm(主模块)的源代码:
.386
.model flat, stdcall
option casemap:none
include windows.inc
include user32.inc
includelib user...
分类:
其他好文 时间:
2014-10-03 15:35:34
阅读次数:
305