摘要: 比较两个字段值是否相等 SELECT * FROM table_a WHERE account = card_num; 比较两个字段值是否不等 SELECT * FROM table_a WHERE account != card_num; 比较两个字段值大小 SELECT * FROM table 阅读全文
posted @ 2023-12-11 19:39 羽*枫 阅读(74) 评论(0) 推荐(0) 编辑
摘要: laravel 验证器,参数具备多种类型验证 //控制器 //正常情况下验证 public function getList(ListRequest $request){ $params = $request->validated(); } //参数具备多种类型验证 use Illuminate\S 阅读全文
posted @ 2023-11-02 19:21 羽*枫 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 遇到情况:截屏完成后发送图片,微信黑屏/卡死 解决方法: 管理员cmd运行命令:NETSH WINSOCK RESET CATALOG 尝试过办法: 开启winodws 设置,允许剪切板历史记录,修改后重启微信,但几次后又开始出现黑屏/卡死现象 阅读全文
posted @ 2023-10-31 11:23 羽*枫 阅读(505) 评论(0) 推荐(0) 编辑
摘要: docker访问外网提示:"cURL error 6: Could not resolve host:gateway.xx.com" 1、获取域名ip地址,如123.12.12.12 ping gateway.xx.com 进入容器,编辑 vi /etc/resolv.conf 新增nameserv 阅读全文
posted @ 2023-02-01 11:55 羽*枫 阅读(1239) 评论(0) 推荐(0) 编辑
摘要: @echo off echo Delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration[version and language] for /f %%i in ('"REG QUERY "HKEY_CURREN 阅读全文
posted @ 2022-11-22 10:48 羽*枫 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1、安装xdebug mkdir /tmp/packages cd /tmp/packages wget https://pecl.php.net/get/xdebug-3.0.2.tgz mkdir -p /usr/src/php/ext/xdebug && \tar -xf /tmp/packa 阅读全文
posted @ 2022-08-29 20:09 羽*枫 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 查看本机所有容器 docker ps -a 方案① docker export {image_id} > xx.tar docker import - {image_new_name} < xx.tar 方案② docker save {image_id} > xx.tar docker save 阅读全文
posted @ 2022-08-08 10:07 羽*枫 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Internal error. Please refer to http://jb.gg/ide/critical-startup-errors java.util.concurrent.CompletionException: java.net.BindException: Address alr 阅读全文
posted @ 2022-07-04 10:12 羽*枫 阅读(423) 评论(0) 推荐(0) 编辑
摘要: java decompiler 全局搜索 阅读全文
posted @ 2021-12-29 17:02 羽*枫 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 激活教程 https://zhile.io/2020/11/18/jetbrains-eval-reset-da33a93d.html 手动安装步骤: setting >> plugins << 更多设置 << install plugin from disk << 选择对应jar文件 << ins 阅读全文
posted @ 2021-11-09 11:48 羽*枫 阅读(151) 评论(0) 推荐(0) 编辑