pdx892369441
文章 0
文章搜索
阿蛮君
有了AI以后,笔记似乎变得不那么重要......
用户数
792
文章数
533
评论数
1769
阅读量
850888
随机文章

Docker 不常用但很实用的命令总结
1、查看容器 ip docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' 容器名 2、查看 run 命令 docker run --rm -v /var/run/docker.sock:/var/run/docker.sock assaflavie/runlike -p <...

Corepress 主题美化友链模块
1. 友链申请按钮美化 对于友链模块,阿蛮君首先觉得友链申请应该让别人觉得按钮是可以点击的,我的美化 css 如下: /* 按钮美化 */ .friend-links-apply { padding: 5px 10px; color: white !important; text-decoration: none; border-radius: 50px; background: linear-g...

iptables 两种持久化方式 – centos 和 ubuntu 下 iptables 的持久化
这里介绍两种 iptables 持久化的方法: iptables-persistent 用于基于 deb 的 Linux 发行版,比如 ubuntu iptables-services 用于基于 rpm 的 Linux 发行版,比如 centos 1. iptables-persistent iptables-persistent 会在重启后自动加载 iptables 规则。 1.1 安装并设置自...

WordPress 禁用版本、主题、插件更新提醒
总是能看见一堆更新提醒,不更新看着难受,更新了怕不稳定,并且下次更新还是会提醒。 其实想要解决也比较简单,首先禁用 wordpress 版本更新提醒。 在 wp-config.php 文件中添加以下代码: // 禁用所有核心更新 define( 'WP_AUTO_UPDATE_CORE', false ); 然后在主题中禁用主题更新提醒,在 functions.php 文件中添...

50 个 Java 编程技巧
一、语法类技巧 1.1. 使用三元表达式 普通: String title; if (isMember(phone)) { title = "会员"; } else { title = "游客"; } 精简: String title = isMember(phone) ? "会员" : "游客"; 1.2.利用 fo...
标签云
最新评论