pythonread()readline()readlines()write()writelines()方法总结与区别输出:read()方法用于直接读取字节到字符串中,可以接参数给定最多读取的字节数,如果没有给定,则文件读取到末尾。readline()方法读取打开文件的一行(读取下个行结束符之前的所有字节),然后整行,包括行..
分类:
编程语言 时间:
2016-09-20 06:55:19
阅读次数:
414
CentOS系统自动化安装概述:系统安装过程配置anaconda自动化安装系统CentOS系统安装:1.启动流程:bootloader-->kernel(initrd)-->rootfs-->anaconda(启动安装程序)2.anaconda:(系统安装程序)tui:基于cureses的文本配置窗口;gui:图形界面Anaconda是RedHat、Cen..
分类:
其他好文 时间:
2016-09-20 06:54:16
阅读次数:
518
pythonos.path模块常用方法详解1.os.path.abspath(path)返回path规范化的绝对路径。>>>importos>>>os.path.abspath(‘pjc.txt‘)‘/home/pjc/pjc.txt‘>>>os.path.abspath(‘c:\\test.csv‘)#Windows主机指定完美的路径‘c:\\test.csv‘2.os.path.split(pat..
分类:
编程语言 时间:
2016-09-20 06:54:13
阅读次数:
324
<?php
$page=newPage(53,10);
$p=$page->rendor();
echo‘<pre>‘;
var_dump($p);
echo‘</pre>‘;
/**
*分页类
*/
classPage
{
protected$url; //URL
protected$pageCount; //总页数
protected$total; //总条数
protected$num; //每页显示数
protect..
分类:
其他好文 时间:
2016-09-20 06:55:06
阅读次数:
157
一、下载所需要程序fetion20091117-linux.tar.gz下载地址http://www.it-adv.net/fetion/downng/fetion20091117-linux.tar.gz飞信机器人的官网:http://www.it-adv.net/然后解压tar-xzvffetion20091117-linux.tar.gz-C/opt/fetion/然后在目录下fxmkdirlib将库文件都拷进该目录。..
分类:
系统相关 时间:
2016-09-20 06:53:31
阅读次数:
281
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title>lvnian学习(http://lvnian.blog.51cto.com/)</title>
<style>
ul
{
list-style-type:none;
margin:0;
padding:0;
}
a:link,a:visited
{
display:block;
font-weight:bol..
分类:
Web程序 时间:
2016-09-20 06:52:58
阅读次数:
239
<!DOCTYPEhtml>
<html>
<head>
<title>下拉菜单实例|菜鸟教程(runoob.com)</title>
<metacharset="utf-8">
<style>
.dropbtn{
background-color:#4CAF50;
color:white;
padding:16px;
font-size:16px;
border:none;
cursor:pointer;..
分类:
Web程序 时间:
2016-09-20 06:51:56
阅读次数:
332
location表达式类型~表示执行一个正则匹配,区分大小写~*表示执行一个正则匹配,不区分大小写^~表示普通字符匹配。使用前缀匹配。如果匹配成功,则不再匹配其他location。=进行普通字符精确匹配。也就是完全匹配。@它定义一个命名的location,使用在内部定向时,例如error_page..
分类:
其他好文 时间:
2016-09-20 06:53:35
阅读次数:
193
Docker正火,衍生的微服务平台吸引无数创业者。作为兼顾操作系统、虚拟化平台、私有云、公有云的“传统”厂商——微软,很早就计划在Windows平台上支持Container容器技术。从NT时代就开始膜拜的大神MarkRussinovich,加入微软做CTO之后,在去年也发表了文章,详细描述了Docker..
1、添加数据库表使用sqlplus打开数据库sqlplusscott/tiger创建emps数据表createtableemps(
idvarchar(32)notnull,
usernamevarchar(20)notnull,
salarynumber(6,2),
hiredatedate
);2、添加jar包项目需要的jar包有spring-core、spring-web、spring-webmvc、oracle数据库驱..
分类:
编程语言 时间:
2016-09-20 06:53:28
阅读次数:
289
1.Dnspod官网注册帐号2.添加域名3.域名注册网站修改DNS,修改为以下DNSf1g1ns1.dnspod.netf1g1ns2.dnspod.net4.修改dns要0-72小时才能生效,修改dns地址后,A记录会自动提示是否导入:以上小图红色线的地方要开启监控5.开启在dnspod负载均衡,要开启D监控,用手机号码绑定,选择..
分类:
其他好文 时间:
2016-09-20 06:52:31
阅读次数:
356
HA即(highavailable)高可用,又被叫做双机热备,常用实现高可用的开源软件有heartbeat和keepalived,其中keepalived有负载均衡的功能。下面我们使用heartbeat来做HA集群,并且把nginx服务作为HA对应的服务。试验准备:两个机器,都是centos6.5,网卡eth0ip如下:aming192.168.3..
分类:
其他好文 时间:
2016-09-20 06:53:21
阅读次数:
291
常用的负载均衡开源软件有:nginx、lvs、keepalived商业的硬件负载设备:F5、Netscale1.LB、LVS介绍LB集群是loadbalance集群的简写,翻译成中文就是负载均衡集群http://www.aminglinux.com/bbs/data/p_w_upload/forum/201406/16/115112w1we1x4e5ueewzrd.pngLVS是一个实现负载均..
分类:
其他好文 时间:
2016-09-20 06:52:32
阅读次数:
318
1、引入jar包spring-corecommons-logging-1.2.jarspring-beans-3.2.5.RELEASE.jarspring-context-3.2.5.RELEASE.jarspring-core-3.2.5.RELEASE.jarspring-expression-3.2.5.RELEASE.jarspring-webspring-web-3.2.5.RELEASE.jarspring-webmvcspring-webmvc-3.2.5.RELEASE.jar2、..
分类:
编程语言 时间:
2016-09-20 06:50:25
阅读次数:
293
nginx配置如下: location ~ \.php$ { root /opt/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_roo ...
分类:
其他好文 时间:
2016-09-20 06:49:39
阅读次数:
216
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes ...
分类:
其他好文 时间:
2016-09-20 06:49:11
阅读次数:
141
Description: Count the number of prime numbers less than a non-negative number, n. Analyse: start from 2, label 2 * 2, 2 * 3... as false; then move to ...
分类:
其他好文 时间:
2016-09-20 06:50:36
阅读次数:
215