上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: devtmpfsi实在清理不干净又不能清空服务器的话 添加如下 shell 脚本,十分钟执行一次 ps -aux | grep kinsing |grep -v grep|cut -c 9-15 | xargs kill -9 ps -aux | grep kdevtmpfsi |grep -v g 阅读全文
posted @ 2020-12-30 14:38 悬剑丶 阅读(88) 评论(0) 推荐(0)
摘要: #测试网址: http://localhost/blog/testurl.php?id=5 //获取域名或主机地址 echo $_SERVER['HTTP_HOST']."<br>"; #localhost //获取网页地址 echo $_SERVER['PHP_SELF']."<br>"; #/b 阅读全文
posted @ 2020-12-23 12:03 悬剑丶 阅读(455) 评论(0) 推荐(0)
摘要: 修改Axios安装模块 /node_modules/axios/lib/core/settle.js 'use strict'; var createError = require('./createError'); /** * Resolve or reject a Promise based o 阅读全文
posted @ 2020-12-21 16:28 悬剑丶 阅读(663) 评论(0) 推荐(0)
摘要: 安装systemctl: yum install iptables-services 设置开机启动 systemctl enable iptables.service 如果报错:Failed to start IPv4 firewall with iptables. 因为centos7默认的防火墙是 阅读全文
posted @ 2020-12-18 16:05 悬剑丶 阅读(4438) 评论(0) 推荐(0)
摘要: 删除python(需注意如果使用宝塔面板不可卸载python,面板是基于python开发的) 强制删除已安装程序及其关联 rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ## 删除所有残余文件 ##xargs,允许你对输出执行其他某些命 阅读全文
posted @ 2020-12-18 15:57 悬剑丶 阅读(145) 评论(0) 推荐(0)
摘要: Win + R 输入 regedit 找到 HKEY_CLASSES_ROOT\Local Settings\MuiCache\XX\AAF68885 (XX 为路径,每个台电脑不一样),找到并编辑@C:\Windows\system32\notepad.exe,-469 在数值数据下,增加 (&T 阅读全文
posted @ 2020-12-01 17:34 悬剑丶 阅读(781) 评论(0) 推荐(0)
摘要: 写好的直接用,可指定模块,引入在主页面即可 index.vue <template> <div> <Footer specify="如果需要指定页面填写路径即可"></Footer> </div> </template> <script> import Footer from '../compone 阅读全文
posted @ 2020-11-27 11:34 悬剑丶 阅读(259) 评论(0) 推荐(0)
摘要: 线性渐变 background: linear-gradient(0deg, rgba(255,0,0,0), rgba(255,0,0,1)); deg: 重复线性渐变 background: repeating-linear-gradient(45deg,yellow 10px, green 9 阅读全文
posted @ 2020-11-25 18:15 悬剑丶 阅读(130) 评论(0) 推荐(0)
摘要: 记录位置 window.addEventListener("scroll", function () { var scrrtop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop 阅读全文
posted @ 2020-11-21 14:01 悬剑丶 阅读(268) 评论(0) 推荐(0)
摘要: 前端引入JS文件 <script src="http://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>或 <script src="http://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script> 阅读全文
posted @ 2020-11-11 13:59 悬剑丶 阅读(485) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页