摘要:
# -*- coding:utf-8 -*- import socket import select class testserver(): def __init__(self): self.serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.serversocket... 阅读全文
摘要:
忘了出处是哪儿 ,实现很巧妙 阅读全文
摘要:
page.htm 阅读全文
摘要:
// 时间戳转时间 function time(time = +new Date()) { var date = new Date((time + 8 * 3600) * 1000); return date.toJSON().substr(0, 19).replace('T', ' '); } / 阅读全文
摘要:
from PyQt5 import QtCore, QtGui, QtWidgets from PyQt5.QtCore import Qt, QSortFilterProxyModel from PyQt5.QtWidgets import QCompleter, QComboBox class ExtendedComboBox(QComboBox): def __init__(se... 阅读全文