• 用户帐户限制(例如,时间限制)会阻止你登录。请与系统管理员或技术支持联系以获取帮助。

    键盘windows+R,打开运行输入gpedit.msc 把使用空密码的那个,点击进去改成禁用

    文章 2023-12-10 219

  • 华硕B760主板调压

    Ai Tweaker高级选项里面 方法一 限制CPU温度 最简单的办法,只限制CPU最高90度, 相对于比默认的好一点,CPU温度不会动不动就100度了, ASUS Performace Enhancement 3.0 切换成limit cpu 90度那个 方法二 调节CPU offset电压 同样Ai Tweaker页面, 找到Tweaker's Paradise,然后进去, 把Switch M…

    文章 2023-12-06 140

  • WordPress分类页面中如何排除子分类文章

    默认 WordPress 会在分类页面显示子分类文章,如果只想显示该分类的文章,而不显示子分类中的文章,可以通过下面的代码实现。 在主题文章归档模板主循环: 在上面添加: 下面添加:

    WordPress 2023-12-04 101

  • StableDiffusion安装教程

    StableDiffusion github下载地址https://github.com/AUTOMATIC1111/stable-diffusion-webui 首先,电脑上必备软件,python和git,下载资源需要用到, 最后,根据网速不同,个别资源可能需要通过魔法 运行webui.bat,会自动安装所需资源, 所需资源安装成功之后会自动打开一个网页, 改中文 因为都是英文的,如果需要中文包…

    学习 2023-12-04 123

  • python改国内源

    cmd执行 例如 改成阿里云源 单独某个 pip install 安装包名称 -i https://mirrors.aliyun.com/pypi/simple/ 一劳永逸所有的 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ 以下不同的源地址 1 清华大学(完全度和速度都很好,是一个优秀的pip镜像源…

    学习 2023-12-04 110

  • StableDiffusion webui ERROR: Ignored the following versions that require a different python version

    ERROR: Ignored the following versions that require a different python version: 1.6.2 Requires-Python >=3.7,=3.7,=3.7,=3.7,

    学习 2023-12-04 88

  • StableDiffusion webui 打开报错AsyncConnectionPool.__init__() got an unexpected keyword argument ‘socket_options

    找到requirements_versions.txt 在里面添加 httpx==0.24.1 然后保存,重新启动

    学习 2023-12-04 114

  • wodpress wp_list_bookmarks输出友情链接

    使用 参数 参数名 描述 order 升序 ASC 或 降序 DESC,默认 ASC。 limit -1 表示全部,1+整数表示要显示的个数。 category 以逗号分隔的类别ID列表,其中包含来自的链接。 category_name 要按名称检索链接的类别。 hide_invisible 是否显示或隐藏标记为“不可见”的链接。接受1|true或0|false。默认值1|true。 show_u…

    WordPress 2023-12-01 109

  • Linux lnmp ssl证书配置acme.sh命令

    lnmp 1.5 升级acme.sh . "/usr/local/acme.sh/acme.sh.env" /usr/local/acme.sh/acme.sh --upgrade sed -i 's/cat "\\\$CERT_PATH"\$/#cat "\\\$CERT_PATH"/g' /usr/local/acme.sh/acme.sh 手动续期 "/usr/local/acme.sh"/…

    学习 2023-11-27 4

  • lnmp 安装redis

    redis安装 进入lnmp解压后的目录,执行: ./addons.sh install redis 运行后有如下提示: 卸载 debian/ubuntu执行:update-rc.d -f redis remove centos执行:chkconfig --del redis on rm -rf /usr/local/redis rm -rf /etc/init.d/redis

    学习 2023-11-27 8

  • Linux Debian常用命令

    1.更新源 sudo apt-get update -y 2.更新已安装的包 sudo apt-get upgrade -y 3.升级系统 sudo apt-get dist-upgrade -y 4.使用 dselect 升级 sudo apt-get dselect-upgrade -y 5.了解使用依赖 sudo apt-cache depends package 6.查看该包被哪些包依赖 …

    学习 2023-11-27 113

  • Linux更换cmake版本

    先去官网http://www.cmake.org/files查看所需版本, 例如下面,我要换成3.27.8版本 mv /usr/bin/cmake /usr/bin/cmake.backup wget http://www.cmake.org/files/v3.27/cmake-3.27.8.tar.gz tar zxf cmake-3.27.8.tar.gz cd cmake-3.27.8 ./…

    学习 2023-11-27 135

  • 使用iperf软件局域网测速

    可以使用iperf这个软件测试内网之间的速度 官网下载: https://iperf.fr/iperf-download.php#windows 以下为软件 通过CMD命令窗口打开文件目录 需要使用两台及以上, 首先在A电脑, CMD输入下面命令,建立服务, iperf3 -s 在B电脑, CMD输入下面命令,进行速度测试,同时在A电脑也会同步显示速度 iperf3 -c A电脑的局域网ip地址

    文章 2023-08-10 549

  • ERROR: No matching distribution found for win32print

    执行pip install win32print的时候, 却提示这个, ERROR: Could not find a version that satisfies the requirement win32print (from versions: none) ERROR: No matching distribution found for win32print 所以需要这样安装 pip in…

    学习 2023-07-18 551

  • python pyqt

    这里只简单记录一下 安装 pip install PyQt6 pip install pyqt6-tools 第一个Qt程序 #!/usr/bin/python import sys from PyQt6.QtWidgets import QApplication, QWidget, QPushButton def main(): app = QApplication(sys.argv) w = …

    学习 2023-07-17 424