相关文章
D88【python 接口自动化学习】- pytest基础用法
day88 pytest运行参数-q -s -v
学习日期:20241203
学习目标:pytest基础用法 -- pytest运行参数-q -s -v&pytest使用ini配置指定运行参数
学习笔记:
pytest -q
说明:简化控制台的输出
pytest -q .\testcases\test_reques…
编程日记
2024/12/21 6:24:34
利用PHP和GD库实现图片切割
利用PHP和GD库实现图片切割的详细步骤如下:
一、检查GD库是否安装
确保服务器上已经安装了PHP和GD库。可以使用phpinfo()函数来检查GD库是否已经安装和启用。
二、加载原始图片
使用PHP提供的imagecreatefromjpeg()、imagecreatefrompng()或imagecreatefromgif(…
编程日记
2024/12/21 9:32:45
spring boot通过连接池的方式连接时序库IotDB
1、maven依赖
<dependency><groupId>org.apache.iotdb</groupId><artifactId>iotdb-session</artifactId><version>1.3.2</version></dependency>2、配置文件
iotdb:server:url: localhostport: 6667name: rootpwd: rootmax…
编程日记
2024/12/21 1:13:39
使用Redis的Bitmap实现签到功能
1.基础签到实现
1.1代码如下Service
Slf4j
public class SignInService {Autowiredprivate StringRedisTemplate redisTemplate;private static final String SIGN_KEY_PREFIX "sign:";/*** 用户签到* param userId 用户ID* param date 签到日期*/public boolean s…
编程日记
2024/12/23 1:12:12
力扣143.重排链表
题目描述
题目链接143. 重排链表
给定一个单链表 L 的头节点 head ,单链表 L 表示为:
L0 → L1 → … → Ln - 1 → Ln请将其重新排列后变为:
L0 → Ln → L1 → Ln - 1 → L2 → Ln - 2 → …
不能只是单纯的改变节点内部的值ÿ…
编程日记
2024/12/17 19:26:18
【GESP】C++一级练习 luogu-P1424, 小鱼的航程(改进版)
GESP一级综合练习,难度★☆☆☆☆。
题目题解详见:https://www.coderli.com/gesp-1-luogu-p1424/
【GESP】C一级练习 luogu-P1424, 小鱼的航程(改进版) | OneCoderGESP一级综合练习,难度★☆☆☆☆。https://www.cod…
编程日记
2024/12/22 23:21:55