按下Fn键加上以下功能键可以调节背光模式: PrtSc切换常亮、呼吸、波浪、叠加和下坠5种背光模式,并可调节背光亮度和频率。 Scrlk切换常亮、呼吸、关闭三种Logo灯模式。 Ins进行开关键盘灯。 Home和End调节背光亮度。 Esc进行模式切换,短按关闭或者开启灯光。 键盘驱动调节: 下载对...
// 启动MySQL服务: sudo /usr/local/MySQL/support-files/mysql.server start //停止MySQL服务 sudo /usr/local/mysql/support-files/mysql.server stop //重启MySQL服务 sud...
it-tools安装 GitHub:https://github.com/CorentinTh/it-tools docker安装,按照官网按照,语言无法切换,参考:https://github.com/CorentinTh/it-tools/issues/996 解决方案: 使用:nightly ...
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod +x Miniconda3-latest-Linux-x86_64.sh ./Miniconda3-latest-Linux-x86_64...
#### 配置git ssh - 生成:ssh-keygen -t rsa -b 4096 -C "1049598673@qq.com" - cd /home/.ssh - cat id_rsa.pub - 这里配置:https://github.com/settings/keys...
参考文章:https://stackoverflow.com/questions/7942154/mysql-error-2006-mysql-server-has-gone-away cat /etc/my.cnf sudo vim /etc/my.cnf max_allowed_packet=5...
~~~ import os.path import subprocess import numpy as np import torch import xlsxwriter from PIL import Image import cn_clip.clip as clip from cn_clip....
~~~ import random def random_color(): # 生成随机颜色值 r = lambda: random.randint(0, 255) color = f"#{r():02x}{r():02x}{r():02x}" print(color) return color ~...