上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 59 下一页
摘要: #### 目前xdebug你不支持arm 只能自编译 ### pecel 安装是arm64 ``` arch -arm64 sudo pecl install xdebug ``` ### 编译 * 下载 https://xdebug.org/download * 编译 ``` git clone 阅读全文
posted @ 2023-06-13 11:29 vx_guanchaoguo0 阅读(76) 评论(0) 推荐(0) 编辑
摘要: #### 第一种直接用插件 spring-boot-gradle-plugin * 无需写入 版本 ``` buildscript { repositories { maven { url 'https://maven.aliyun.com/repository/public' } } depend 阅读全文
posted @ 2023-06-12 18:07 vx_guanchaoguo0 阅读(478) 评论(0) 推荐(0) 编辑
摘要: ### dockerfile ``` FROM openjdk:8-jdk-alpine AS TEMP_BUILD_IMAGE ENV ENVREFRESH_DATE 2023-06-12 15:00 RUN set -eux && sed -i 's/dl-cdn.alpinelinux.org 阅读全文
posted @ 2023-06-12 15:10 vx_guanchaoguo0 阅读(29) 评论(0) 推荐(0) 编辑
摘要: #### 如果 JSON 数据中包含了 PHP 的关键字,如 true、false 或者 null,则 json_decode() 函数将无法成功解析该数据。 #### 因此可以使用单独判断的方式 ``` $v = $v true ? 'true' : $v; $v = $v false ? 'fa 阅读全文
posted @ 2023-06-12 14:05 vx_guanchaoguo0 阅读(65) 评论(0) 推荐(0) 编辑
摘要: #### 很多时候我们看到 .pem .cert .ras .pub ### 例如我们经常的免密的登录 ![](https://img2023.cnblogs.com/blog/2697130/202306/2697130-20230612110357790-163625745.png) #### 阅读全文
posted @ 2023-06-12 11:10 vx_guanchaoguo0 阅读(117) 评论(0) 推荐(0) 编辑
摘要: ### 更新后地址 * 原来地址 *http://nexus.pentaho.org/content/groups/omni/ * 新地址: * https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn * github: * https 阅读全文
posted @ 2023-06-09 15:26 vx_guanchaoguo0 阅读(438) 评论(0) 推荐(0) 编辑
摘要: #### 原来的excel ![](https://img2023.cnblogs.com/blog/2697130/202306/2697130-20230608105703375-1122037012.png) #### 更换底色后的 ![](https://img2023.cnblogs.co 阅读全文
posted @ 2023-06-08 11:00 vx_guanchaoguo0 阅读(17) 评论(0) 推荐(0) 编辑
摘要: ### 可以application 处理 也可以在nginx 上处理 #### nginx ``` server { listen 80; server_name localhost; location / { add_header Access-Control-Allow-Origin 'http 阅读全文
posted @ 2023-06-08 09:01 vx_guanchaoguo0 阅读(17) 评论(0) 推荐(0) 编辑
摘要: #### jinkens shell ``` make all IMG_NS=hygov ``` ### 项目makefile ``` IMG_NS?=MUST_SPECIFIED IMG_TAG?=latest SERVICE=kettle IMG=data-exchange-platform-k 阅读全文
posted @ 2023-06-07 15:32 vx_guanchaoguo0 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ### 由于gitlab 限制 导致413 * 文件太大了分批次提交 * 撤销太大的提交 ``` git reset --soft HEAD^ ``` 阅读全文
posted @ 2023-06-07 09:22 vx_guanchaoguo0 阅读(29) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 59 下一页