PyQt初见_强制更新程序
PyQt挺好用上源码瞎搞的强制更新程序,来练手(1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950import sysfrom PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton,QLabel,QProgressBar,QWidgetfrom PyQt5.QtGui import QFontfrom PyQt5.QtCore import QTimerclass updatE(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): self.setGeometry(100, 100, 500, 200) self.setWindowTitle("更新") self.labe ...
简单记一下cmd命令
1、常识可以输个help问win系统自己
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798有关某个命令的详细信息,请键入 HELP 命令名ASSOC 显示或修改文件扩展名关联。ATTRIB 显示或更改文件属性。BREAK 设置或清除扩展式 CTRL+C 检查。BCDEDIT 设置启动数据库中的属性以控制启动加载。CACLS 显示或修改文件的访问控制列表(ACL)。CALL 从另一个批处理程序调用这一个。CD 显示当前目录的名称或将其更改。CHCP 显示或设置活动代码页数。CHDIR 显示当前目录的名称或 ...
爪巴虫实战
爪巴虫!实战!派森!启动!浏览器!启动!F12!启动!源码!看不懂!派恰姆!启动!以下是源码,爬旧博客的相册:
1234567891011121314import requestsimport reurl="https://old.descentdd.top/about/"response=requests.get(url=url)response=re.findall("<img src=\"(.*?)\" class=\"responsive-img\">",response.text)for i in range(len(response)): response[i]="https://old.descentdd.top/"+response[i][3:]print(response)for i in range(len(response)): req=requests.get(response[i]) with open(f"a{ ...
幻想生物图鉴1到22在线网页版源码放出
这是网页版地址:点我!!!!!
这是部分源代码,生成卡片展示的代码纯html512345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182<!DOCTYPE html><html><head> <title>(人丸)幻想生物图鉴</title> <style>/* 样式 */ .card { border: 1px solid #ccc; border-radius: 5px; box-shadow: 2px 2px 5px #ccc; padding: 20px; margin: 20px; width: 300px; height: 350px; display: inline-block; text-align: c ...
二战理解linux
一些文件夹的名字
/bin:常用命令目录
/boot:核心文件
/dev :Device,Linux 的外部设备
/home:主目录
/lib:Library基本的动态连接共享库
/root:管理员主目录
/tmp:存放临时文件的
/usr:类似program files目录
/usr/bin:系统用户的应用程序
/var:变量库
/run:临时文件系统
命令目录的
ls: 列目录-al全部,大概这样123456789 drwxr-xr-x 20 root root 4096 6月 5 22:58 . drwxr-xr-x 20 root root 4096 6月 5 22:58 .. lrwxrwxrwx 1 root root 7 6月 5 22:54 bin -> usr/bin drwxr-xr-x 4 root root 4096 6月 8 21:10 b ...