相关文章
基于el-table实现行内增删改
实现效果: 核心代码:
<el-table :data"items"style"width: 100%;margin-top: 16px"border:key"randomKey"><el-table-column label"计划名称"property"name"><template slot-scope&q…
编程日记
2024/12/22 16:15:24
centos7.5 安装gitlab-ce (Omnibus)
一、安装前置依赖
# 安装基础依赖
$ sudo yum -y install policycoreutils openssh-server openssh-clients postfix# 启动 ssh 服务 & 设置为开机启动
$ sudo systemctl enable sshd & sudo systemctl start sshd二、安装gitlab rpm包
# 下载并执行社区版脚本
curl …
编程日记
2024/12/15 22:39:48
flutter生成二维码并截图保存到图库
引入库:flutter_screenutil、image_gallery_saver、qr_flutter弹窗布局
import dart:async;
import dart:typed_data;
import package/generated/l10n.dart;
import package:jade/configs/PathConfig.dart;
import package:jade/utils/ImageWaterMarkUtil.dart;
im…
编程日记
2024/12/17 23:47:26
CVAE——生成0-9数字图像(Pytorch+mnist)
1、简介
CVAE(Conditional Variational Autoencoder,条件变分自编码器)是一种变分自编码器(VAE)的变体,用于生成有条件的数据。在传统的变分自编码器中,生成的数据是完全由潜在变量决定的&…
编程日记
2024/12/17 11:05:47
cephadm安装reef版本ceph集群
环境
操作系统 Rocky Linux 9.2 minimal
三个节点节点名称
ipmipub ipclus ipceph1192.168.255.8192.168.120.10ceph2192.168.255.9192.168.120.20ceph3192.168.255.10192.168.120.30
所有节点
yum -y install dmidecode vim wget lvm2 chrony epel-release yum-utils dev…
编程日记
2024/12/20 3:45:14
力扣102. 二叉树的层序遍历(O(n)时间复杂度,通过queue实现简单BFS)
Problem: 102. 二叉树的层序遍历
思路 记录层次,要么建立树时记录,要么遍历时记录(利用queue) 解题方法 queue<pair<TreeNode*,int>>q; 记录节点及其层次 vector<vector> res; res[i]表示第i层(从0开始)的所有…
编程日记
2024/12/17 12:07:40
Leetcode 3100. Water Bottles II
Leetcode 3100. Water Bottles II 1. 解题思路2. 代码实现 题目链接:3100. Water Bottles II
1. 解题思路
这一题就是按照题目翻译一下,按照题中给出的规则不断进行bottle的兑换,直至无法兑换为止,即可得到最终的答案。
2. 代…
编程日记
2024/12/21 7:21:30
【spring】Spring Cloud Alibaba版本发布说明
Spring Cloud Alibaba版本发布说明
由于 Spring Boot 3.0,Spring Boot 2.7~2.4 和 2.4 以下版本之间变化较大,目前企业级客户老项目相关 Spring Boot 版本仍停留在 Spring Boot 2.4 以下,为了同时满足存量用户和新用户不同需求,社…
编程日记
2024/12/16 7:19:55