相关链接: https://gitcode.net/mirrors/houbb/sensitive-word?utm_source=csdn_github_accelerator 一、maven引入 <dependency> <groupId>com.github.houbb</groupId> <artifact...
一个依赖搞定 Spring Boot 反爬虫,防止接口盗刷!
https://mp.weixin.qq.com/s?__biz=MzI5ODI5NDkxMw==&mid=2247607657&idx=6&sn=102dfafa9d7c4afebc557c691c0e7e0e&chksm=ecab6e87dbdce7912c427a0d39b7e5a904df12f7bfb70c252276254f157c6918c0c...
AI助手
1.Notion 有AI 2.AssemblyAI总结 3.tome AI做PPT 4.Canva有AI制作图片 5.LeonardoAI注册需要等几天 6.Clipdrop清理背景 7.Mokker换背景包括背光 8.Runway清理video 9.murfAI选择语言语音配音 10.Bhuman制作个性...
Socks5节点转换ClashX配置文件
ClashX>配置>打开本地配置文件夹,找到“config.yaml”打开编辑。(也可以新建一个配置文件) 官方的模板片段: proxies: # http - name: "http" type: http server: server port: 443 # username: us...
CentOS7 设置Docker开机启动
设置docker开机启动 root@localhost ~]# systemctl enable docker.service Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service. ...
控制数码管
GND用200R电阻链接两根杜邦线分别接入数码管下方的GND和esp32右边第二根针脚(GND) import machine import time a = machine.Pin(13, machine.Pin.OUT) b = machine.Pin(12, machine.Pin.OUT) c = ...
记录-解决element-plus自动引入后ElLoading、ElMessage、ElNotification、ElMessageBox样式丢失的问题
在入口main.js里加上对应的样式引用就可以了 // main.ts/main.js import "element-plus/theme-chalk/el-loading.css"; import "element-plus/theme-chalk/el-message.css"; import "element-plus/theme-chalk...
Sublime Text去除html标签
查找:(.?):(.)替换:'$1':'$2',
虚拟机centos时间与本地时间不一致
1.安装时间同步插件 yum install ntpdate 2.开启时间同步 service ntpdate restart 3.设置时区: 删除本地时间(美国时间) rm -rf /etc/localtime 设置时区为上海 ln -s /usr/share/zo...
通过电脑控制LED开关
# 整体流程 # 1. 链接wifi # 2. 启动网络功能(UDP) # 3. 接收网络数据 # 4. 处理接收的数据 import socket import time import network import machine def do_connect(): wlan = network.WLAN(networ...