Dev
搜索

Dev

wsl ubuntu 安装 oh-my-zsh
发表于2024-06-25|ubuntu
安装zsh 1sudo apt install git zsh -y 安装oh-my-zsh码云地址 1https://gitee.com/mirrors/oh-my-zsh 执行其中的tools/install.sh 如果无法clone github代码可以尝试把ip写入host 安装自动补全 1git clone https://gitee.com/mirrors/zsh-autosuggestions.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions 修改配置 ~/.zshrc 1plugins=(git zsh-autosuggestions)
mysql coalesce json处理操作符
发表于2024-06-12|mysql
COALESCE 返回第一个非空值 1select COALESCE(country,extra_fields->>'$.buyer_nationality') as country_code 可以多个参数 ->和->>差异 12-> 永远返回的是json,例如返回字符串abc,则返回的是"abc",有引号->> 返回本来的值,没有引号,一般用`->>`可能更合适 获取json字段中的值 1SELECT VALUE->>"$" FROM email_rule_items
打包phar直接运行
发表于2024-06-06|php
准备 下载swoole cli,其中有一个pack-sfx.php php.ini中有个phar.readonly = Off 打包phar123456789101112131415161718192021222324252627282930313233343536373839404142<?php// 禁止缓冲输出,以便立即看到错误信息ini_set('display_errors', 1);ini_set('display_startup_errors', 1);error_reporting(E_ALL);// 确保Phar扩展可用if (!extension_loaded('phar')) { die('Phar extension is not loaded.');}// PHAR文件的名称和目标路径$pharName = 'app.phar';$projectDir = './src'; // 你的项目源代码目录//...
laravel 直接渲染模板,模板存到数据库,字符串
发表于2024-05-30|php
1234567$html = ' Hello, {{ $name }} @if($condition) There is one record @endif';return \Illuminate\Support\Facades\Blade::render($html, ['name' => 'Julian Bashir', 'condition' => true]);
php 流式请求
发表于2024-05-13|php
原生curl12345678910111213141516171819$ch = curl_init();curl_setopt($ch, CURLOPT_URL, $this->chatService->api);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_POST, 1);curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'Content-Type: application/json', 'Authorization: Bearer ' . $this->chatService->token,]);curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([ 'model' => $this->chatService->model, 'temperature' => ...
windows wsl1 可用最新的php swoole
发表于2024-05-12|php
https://dl.static-php.dev/static-php-cli/bulk/php-8.3.3-cli-linux-x86_64.tar.gz
小程序 animation 失效 高度闪烁
发表于2024-04-20|wechatdev
animation无效uniapp开发时候 v-show和animation一起使用必须在nextTick中执行动画,否则无效 123this.$nextTick(() => { this.showStar()}) 该表的值必须在style中写上 animation高度闪一次小程序性能较差,animation本质上使用style内联导致高度有一次闪烁,可以使用内联的style写死width和height
微信小程序 video 播放时候开始总有一段黑屏解决办法
发表于2024-04-13|wechatdev
不知是何原因,微信小程序video播放经常有一块黑屏,经过反复测试 video不能被隐藏display:none;可以使用z-index 上来就静音默认播放,再次播放时候不会黑屏 哪怕使用同一个url,不同的video标签,他还是会黑屏 也可能跟分辨率有关,我发现如果是高分辨率就会黑比较久,mp4也有好多个压缩级别,都有影响
python 百度 paddle 抠图
发表于2024-04-03|python
1234567891011import paddlehub as hub# 1.加载模型humanseg = hub.Module(name="deeplabv3p_xception65_humanseg")# 2.抠图results = humanseg.segmentation( paths=["./woman.jpg"], visualization=True, output_dir='humanseg_output')
yii2 rest api User--identityClass must be set
发表于2024-04-01|php
原因behaviors中默认rateLimiter限速中会调用用户组件,去掉即可
1…8910…102
avatar
developer
AI相伴的开发者博客
文章
1016
标签
715
分类
32
Follow Me
公告
This is my Blog
最新文章
统计代码行数2026-02-27
php easywechat 6.x 微信支付 手动解密2026-02-25
php 反引号 执行shell脚本2026-02-25
mysql使用记录2026-02-19
flutter开发流程2026-02-08
分类
  • apicloud3
  • bootstrap8
  • cocos2d-js5
  • createjs17
  • day45
  • docker16
  • egret14
  • flash2x2
标签
大量bug记录 播放声音 request css动画 变量导入数组 tsc版本不同 iptable 微信 生活日志 测试代码 yield 解决并发问题 chrome 显示 算法题 按 cmd composer 静态编译 $current_user ab lock 正态分布 Filter thinkphp linux L2TP font 为新开发 ab.exe 常见问题 高并发 js复制内容到剪贴板 乌龟 reset 用户 中国部分行业数据记录 list file 微信分享定制注意事项
归档
  • 二月 2026 5
  • 一月 2026 3
  • 十二月 2025 5
  • 十一月 2025 2
  • 十月 2025 5
  • 九月 2025 5
  • 八月 2025 2
  • 七月 2025 1
网站信息
文章数目 :
1016
最后更新时间 :
© 2025 - 2026 By developer框架 Hexo 8.1.1|主题 Butterfly 5.5.4
搜索
数据加载中