突出显示EXCEL选定范围内最大值

开发工具---VB编辑器---插入模块,输入:Sub HighlightMaxValue() Dim selectedRange As Range Dim maxValue As Double Dim cell As Range Dim hasData As Boolean ' 检查是否已选择范围 If Ty ...

DD系统遭遇curl: (6) Could not resolve host: raw.githubusercontent.com解决方法

今日打算DD系统,结果提示:curl: (6) Could not resolve host: raw.githubusercontent.com遂搜索解决,直接在命令行输入:echo "nameserver 8.8.8.8" | tee /etc/resolv.conf再运行DD命令即可

DD系统遭遇Err:1 http://deb.debian.org/debian buster/main amd64 hdparm amd64 9.58+ds-1 404 Not Found

依次运行下面的代码即可解决sed -i 's/deb.debian.org/archive.debian.org/g' /etc/apt/sources.listsed -i 's/http:/http:/g' /etc/apt/sources.listapt updateapt install hdparm ...

通过配置Nginx来禁止直接下载网站目录下的.xls文件

server {listen 80; server_name yourdomain.com; # 禁止访问.xls文件 location ~ \.xls$ { deny all; return 403; } # 其他配置 location / { root /var/www/html ...

记oracle:amd一次DD过程

依次运行下面的程序1.DDwget --no-check-certificate -O NewReinstall.sh https://git.io/newbetags && chmod a+x NewReinstall.sh && bash NewReinstall.sh2.bbrecho "net.core ...