分类: 随手记

which python3
whereis python

uview-plus文档去广告

uview-plus文档去广告

function clearAllTimers() {
  const maxTimeouts = 1000; 
  for (let i = 1; i <= maxTimeouts; i++) {
    clearTimeout(i);
    clearInterval(i);
  }
}
// 清除所有定时器
clearAllTimers();
window.alert = function() {};
document.querySelectorAll('.el-dialog__wrapper, .v-modal').forEach(item=>item.remove())

局域网查询冲突ip

扫描本地局域网ip 循环ping

for /L %i IN (1,1,254) DO ping -w 2 -n 1 192.168.0.%i

列出局域网ip列表

arp -a

给局域网ip发送消息

msg /server:192.168.1.166 * "ip冲突了"
1 2 3 5