首页 > 2017年02月20日 > 全部分享
python内置函数3-compile()
Helponbuilt-infunctioncompileinmodule__builtin__:compile(...)compile(source,filename,mode[,flags[,dont_inherit]])->codeobjectCompilethesourcestring(aPythonmodule,statementorexpression)intoacodeobjectthatcanbeexecutedbytheexecstatementoreval().Thefilename..
分类:编程语言   时间:2017-02-20 23:27:52    收藏:0  评论:0  赞:0  阅读:193
Webpack入门教程二十四
116.输出HtmlWebpackPlugin.files中的内容,修改模板文件index.html,代码如下<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metahttp-equiv="X-UA-Compatible"content="IE=edge"> <title>webpackdemo</title> <linkre..
分类:Web开发   时间:2017-02-20 23:27:42    收藏:0  评论:0  赞:0  阅读:234
QDateTime的之前的时间如何获取和QTime简单使用
QStringtime=QDateTime::currentDateTime().addSecs(-10).toString("yyyy-MM-ddhh:mm:ss");//10S之前的时间qDebug()<<time;QTimecurrent_time=QTime::currentTime();//当前时间qDebug()<<current_time;/*"2017-02-2016:50:38"QTime("16:50:48")*/
分类:其他   时间:2017-02-20 23:27:18    收藏:0  评论:0  赞:0  阅读:1127
python内置函数3-complex()
Helponclasscomplexinmodule__builtin__:classcomplex(object)|complex(real[,imag])->complexnumber||Createacomplexnumberfromarealpartandanoptionalimaginarypart.|Thisisequivalentto(real+imag*1j)whereimagdefaultsto0.||Methodsdefinedhere:||__abs__(...)|x.__abs_..
分类:编程语言   时间:2017-02-20 23:27:01    收藏:0  评论:0  赞:0  阅读:271
Linux的版本发展和基本法则
版本发展linuxtimeline:1.slackware---S.U.S.E2.Debian------ubuntu/~~~~~Fedora3.Redhat-----RHEL\_____centos基本法则一切皆文件(包括硬件)由众多的单一小程序组成组合小程序完成复杂任务尽可能避免捕获用户接口(GUI),为了方便脚本编程以实现自动化执行;使用文本文件..
分类:系统服务   时间:2017-02-20 23:26:49    收藏:0  评论:0  赞:0  阅读:288
oracle 学习笔记 删除example表空间
SQL>droptablespaceEXAMPLEincludingcontentsanddatafiles;droptablespaceEXAMPLEincludingcontentsanddatafiles*ERRORatline1:ORA-29857:domainindexesand/orsecondaryobjectsexistinthetablespace---提示:ORA-29857:表空间存在域索引和/次级对象SQL>colownerformata1..
分类:数据库技术   时间:2017-02-20 23:26:35    收藏:0  评论:0  赞:0  阅读:280
Webpack入门教程二十五
119.输出HtmlWebpackPlugin.options中的内容,修改模板文件index.html,代码如下<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metahttp-equiv="X-UA-Compatible"content="IE=edge"> <title>webpackdemo</title> <link..
分类:Web开发   时间:2017-02-20 23:26:26    收藏:0  评论:0  赞:0  阅读:228
第十一天知识总结
#1.日志的管理##1-1.rsyslog服务**日志同步(把desktop主机上的日志同步到server主机)1).关闭两主机的防火墙2).desktop:修改/etc/rsyslog.conf文件(`*.*@172.25.254.178`),重启rsyslog服务;3).server:修改/etc/rsyslog.conf文件(打开udp接收日志端口),重启rsyslog服务4).检测:实..
分类:其他   时间:2017-02-20 23:25:41    收藏:0  评论:0  赞:0  阅读:162
影响JavaScript应用可扩展性因素
引言:JavaScript应用变得越来越庞大。这是因为使用JavaScript能做的事情远比我们大多数人所需求的要多得多。我们不能仅因为技术上可行,就去考虑软件系统的扩展问题。为一个不需要扩展的系统增加扩展性是不值得的,尤其对最终用户来说,这只会使系统显得更加笨重。本文选自《..
分类:编程语言   时间:2017-02-20 23:25:18    收藏:0  评论:0  赞:0  阅读:226
python内置函数3-delattr()
Helponbuilt-infunctiondelattrinmodule__builtin__:delattr(...)delattr(object,name)Deleteanamedattributeonanobject;delattr(x,‘y‘)isequivalentto``delx.y‘‘.delattr(object,name)Thisisarelativeofsetattr().Theargumentsareanobjectandastring.Thestringmustbethenameof..
分类:编程语言   时间:2017-02-20 23:25:06    收藏:0  评论:0  赞:0  阅读:217
kubernetes整合ceph rbd
一、有一个cephcluster,假设已经准备好了,文档网上一大堆二、开始集成ceph和kuberntes2.1禁用rbdfeaturesrbdp_w_picpath有4个features,layering,exclusive-lock,object-map,fast-diff,deep-flatten因为目前内核仅支持layering,修改默认配置每个cephnode的/etc/ceph/ceph.co..
分类:Web开发   时间:2017-02-20 23:24:48    收藏:0  评论:0  赞:0  阅读:373
python读取excel表格的数据
1.在Windows命令行中安装第三方模块xlrd,先切到python安装目录(Python34),然后切到Scripts,然后输入命令easy_installxlrd按回车进行安装安装完成2.新建一个excel表,然后保存,造数据3.编写python脚本#utf-8importxlrd#导入第三方模块xlrdexcel=xlrd.open_workbook(‘C:\\..
分类:编程语言   时间:2017-02-20 23:24:32    收藏:0  评论:0  赞:0  阅读:197
python读取excel表格的数据
1.在Windows命令行中安装第三方模块xlrd,先切到python安装目录(Python34),然后切到Scripts,然后输入命令easy_installxlrd按回车进行安装安装完成2.新建一个excel表,然后保存,造数据3.编写python脚本#utf-8importxlrd#导入第三方模块xlrdexcel=xlrd.open_workbook(‘C:\\..
分类:编程语言   时间:2017-02-20 23:24:16    收藏:0  评论:0  赞:0  阅读:289
Spring-ehcache RMI形式的分布式缓存配置
ehcache所需jar:ehchache-core和spring注解所需spring-context<dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache-core</artifactId> <version>2.6.6</version> </dependency> <dependency> <gro..
分类:编程语言   时间:2017-02-20 23:24:04    收藏:0  评论:0  赞:0  阅读:265
python内置函数3-dir()
Helponbuilt-infunctiondirinmodule__builtin__:dir(...)dir([object])->listofstringsIfcalledwithoutanargument,returnthenamesinthecurrentscope.Else,returnanalphabetizedlistofnamescomprising(someof)theattributesofthegivenobject,andofattributesreachablefromit...
分类:编程语言   时间:2017-02-20 23:23:47    收藏:0  评论:0  赞:0  阅读:302
多种脚本语言生成九九乘法口诀表
一、语言种类不断的完善中…………1、CentOS7AWK[xqliu@virtual01Desktop]$awk‘BEGIN{for(n=0;n<9;n++){m=n+1;for(i=0;i++<m;)printfi"x"m"="i*m"";print""}}‘1x1=11x2=22x2=41x3=32x3=63x3=91x4=42x4=83x4=124x4=161x5=52x5=103x5=154x5=205x5=251x6=62x6=123x6=184x6=2..
分类:编程语言   时间:2017-02-20 23:23:30    收藏:0  评论:0  赞:0  阅读:245
excel--数据分列
有时候工作需要粘贴的数据是显示在一整列显示的,但实际统计时需要分列,如下图2.这时候需要调整“列宽”,将整个数据包含在一个列里面,如下图3.然后鼠标左键选定这些数据4.点击“分列”5.点击“分隔符号”,点击“下一步”6.点击“逗号”,点击“下一步”7.选中“常规”,点..
分类:其他   时间:2017-02-20 23:23:15    收藏:0  评论:0  赞:0  阅读:167
Windows 系统下配置python环境变量
在Dos中,输入setpath=%path%;C:\python36,其中红字部分为python的安装路径
分类:编程语言   时间:2017-02-20 23:23:02    收藏:0  评论:0  赞:0  阅读:262
python读取excel表格的数据
1.在Windows命令行中安装第三方模块xlrd,先切到python安装目录(Python34),然后切到Scripts,然后输入命令easy_installxlrd按回车进行安装安装完成2.新建一个excel表,然后保存,造数据3.编写python脚本#utf-8importxlrd#导入第三方模块xlrdexcel=xlrd.open_workbook(‘C:\\..
分类:编程语言   时间:2017-02-20 23:22:49    收藏:0  评论:0  赞:0  阅读:239
360公司上报kvm 漏洞,进行修复
漏洞原址http://security.360.cn/News/news/id/125.htmlQEMU严重漏洞,vga驱动默认是cirrus替换xml配置文件为vga就行<video> <modeltype=‘cirrus‘vram=‘16384‘heads=‘1‘/>
分类:其他   时间:2017-02-20 23:22:34    收藏:0  评论:0  赞:0  阅读:194
1168条   上一页 1 2 3 4 5 ... 59 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!