上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: 转载:https://blog.csdn.net/lc_2014c/article/details/125878730 public class Gps { private double wgLat; // 纬度 private double wgLon; // 经度 public Gps(){ } 阅读全文
posted @ 2023-09-12 21:57 qing222 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ``` git log git reset --hard commitid ``` 阅读全文
posted @ 2023-09-07 17:57 qing222 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ``` #查看队列 rabbitmqctl list_queues #清空队列中消息 rabbitmqctl -p / purge_queue QUEUE_TEMP_GS_PUSH ``` ``` rabbitmqctl status:节点状态 rabbitmqctl add_user userna 阅读全文
posted @ 2023-09-06 22:22 qing222 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ``` docker exec -it redis bash redis-cli -h 127.0.0.1 auth 123456 keys * ``` 阅读全文
posted @ 2023-08-30 09:34 qing222 阅读(35) 评论(0) 推荐(0) 编辑
摘要: ``` update railway r join railway_section rs on r.id = rs.railway_id join work_station ws on r.id = ws.railway_id join patroller p on r.id = p.railway 阅读全文
posted @ 2023-08-25 15:22 qing222 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ``` long epochMilli = LocalDateTime.now().plusHours(2).toInstant(ZoneOffset.UTC).toEpochMilli(); log.info("timestamp={}", epochMilli); Instant instant 阅读全文
posted @ 2023-08-23 11:06 qing222 阅读(175) 评论(0) 推荐(0) 编辑
摘要: ``` docker run --rm -it \ -v /opt/docker-work/ffmpeg-container/90.mov:/config/90.mov \ -v /opt/docker-work/img/test.jpg:/config/test.jpg \ linuxserver 阅读全文
posted @ 2023-08-19 11:54 qing222 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ``` volumes: - "/usr/share/zoneinfo/Asia/Shanghai:/etc/localtime" ``` ``` environment: - TZ=Asia/Shanghai ``` 阅读全文
posted @ 2023-08-14 09:53 qing222 阅读(73) 评论(0) 推荐(0) 编辑
摘要: ###openssl `openssl req -x509 -newkey rsa:4096 -sha256 -nodes -keyout private.key -out cacert.pem -days 365` ###nginx.conf ``` server { listen 443 ssl 阅读全文
posted @ 2023-08-13 16:30 qing222 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ##时序图 ![](https://img2023.cnblogs.com/blog/763591/202308/763591-20230802215708305-1431564276.png) ###流程描述 该场景中用户 A 将邀请用户 B 加入音视频会议,具体流程如下所述: 终端 App 的某 阅读全文
posted @ 2023-08-02 22:00 qing222 阅读(33) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页