摘要:
#### 限制必须是 长度必须是2的指数 * 直接取指数的低位长度算法 #### 演示 * 长度为8 * 0b000(0) * 0b001(1) * 0b010(2) * 0b011(3) * 0b100(4) * 0b101(5) * 0b110(6) * 0b11(7) * 13 二进制 0x1 阅读全文
摘要:
以下是一些常用的 HTTP Client API: . .setHeader("Header-Name", "Header-Value"): 设置请求头 . .addQueryParam("param-name", "param-value"): 添加查询参数 .setBody("{"key":"v 阅读全文
摘要:
#### 返回拉丁编码 ![](https://img2023.cnblogs.com/blog/2697130/202306/2697130-20230614145138580-163937630.png) #### python 处理方式 ``` text.encode('latin').dec 阅读全文
摘要:
``` ### Check response status, headers, and content-type GET https://httpbin.org/get > {% client.test("Request executed successfully", function() { cl 阅读全文
摘要:
#### oh-my-zsh ``` sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ``` ### 修改背景颜色 * 打开终端 右键背景-》检查显示器-》双击喜欢的背景-》设置 阅读全文
摘要:
#### 三个插件都是是用干啥的 #### maven-compiler-plugin * 进行源代码的编译 #### build-helper-maven-plugin * 项目中添加额外的资源、源代码、构建输出目录和依赖项等 #### Maven-assembly-plugin * 生成可执行 阅读全文
摘要:
### 在springboot 2.4.5之后的 变成了jinut5 * 直接引用即可 不需要排除 org.junit.jupiter.api.Test ``` org.springframework.boot:spring-boot-starter-test ``` #### 测试数据 H2 `` 阅读全文
摘要:
#### 目前xdebug你不支持arm 只能自编译 ### pecel 安装是arm64 ``` arch -arm64 sudo pecl install xdebug ``` ### 编译 * 下载 https://xdebug.org/download * 编译 ``` git clone 阅读全文
摘要:
#### 第一种直接用插件 spring-boot-gradle-plugin * 无需写入 版本 ``` buildscript { repositories { maven { url 'https://maven.aliyun.com/repository/public' } } depend 阅读全文
摘要:
### 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 阅读全文