04 2019 档案

摘要:+ plus 加号;正号 - minus 减号;负号 ± plus or minus 正负号 × is multiplied by 乘号 ÷ is divided by 除号 = is equal to 等于号 ≠ is not equal to 不等于号 ≡ is equivalent to 全等于号 ≌ is equal to or approximately equal... 阅读全文
posted @ 2019-04-30 12:34 1553 阅读(1092) 评论(0) 推荐(0)
摘要:这里我们用一个更新程序做示例, 下载文件的过程中让进度条实时显示下载进度。 如果下载和更新进度条的工作都放在一个线程中,会出现进度条卡顿的情况。 正确的做法是把界面刷新和工作任务交给不同的线程去运行,然后用信号同步。 # _*_ coding: utf-8 _*_ import os import 阅读全文
posted @ 2019-04-26 18:35 1553 阅读(1263) 评论(0) 推荐(0)
摘要:从httpd.conf 打开 status_module#LoadModule status_module modules/mod_status.so修改成LoadModule status_module modules/mod_status.soExtendedStatus On ##获得一个完整 阅读全文
posted @ 2019-04-25 10:30 1553 阅读(196) 评论(0) 推荐(0)
摘要:IIS7二级域名添加同一证书, 先绑定第一个域名到443 ,之后的用以下命令行绑定 cd C:\Windows\System32\Inetsrv\appcmd set site /site.name:"<IISSiteName>" /+bindings.[protocol='https',bindi 阅读全文
posted @ 2019-04-25 10:27 1553 阅读(236) 评论(0) 推荐(0)
摘要:<style type="text/css">.loading:after { overflow: hidden; display: inline-block; vertical-align: bottom; animation: ellipsis 2s infinite; content: "\2 阅读全文
posted @ 2019-04-25 10:25 1553 阅读(1744) 评论(0) 推荐(0)
摘要:# -*- coding:utf-8 -*- import socket import select class testserver(): def __init__(self): self.serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.serversocket... 阅读全文
posted @ 2019-04-24 18:29 1553 阅读(399) 评论(0) 推荐(0)