相关文章
Python Qt学习(八)Treeview
源代码:
# -*- coding: utf-8 -*-# Form implementation generated from reading ui file qt_treeview.ui
#
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not…
建站知识
2024/10/16 11:03:07
Ubuntu无法加载exfat的USB存储设备
当接入设备USB存储设备提示: 不能挂在63GB 卷 Error mounting /dev/sdb1 at /media/ubuntu/83C9-26F4: Command-line mount -t "exfat" -o "uhelperudisks2,nodev,nosuid,uid1000,gid1000,iocharsetutf8,namecase0,errorsremount-ro,umask0077"…
建站知识
2024/10/17 6:11:54
leecode 数据库:1158. 市场分析 I
数据导入:
SQL Schema: Create table If Not Exists Users (user_id int, join_date date, favorite_brand varchar(10));
Create table If Not Exists Orders (order_id int, order_date date, item_id int, buyer_id int, seller_id int);
Create tab…
建站知识
2024/10/31 16:12:38
OpenCV: cv2.findContours - ValueError: too many values to unpack
OpenCV找轮廓findContours报错 ValueError: not enough values to unpack (expected 3,got 2) 问题指向这行代码👇
binary, cnts, hierarchy cv2.findContours(thresh.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE ) 报错的意思是需要3个返回值但只给了两…
建站知识
2024/11/3 15:36:19
Leetcode1006笨阶乘
思路:以4为一个分组分别进行处理
class Solution:def clumsy(self, n: int) -> int:answer_dict {0:0,1: 1, 2: 2, 3: 6, 4: 7}if n > 4:answer n * (n - 1) // (n - 2) n - 3n - 4else:print(answer_dict[n])return answer_dict[n]print(answer)while n …
建站知识
2025/1/17 3:26:17
谨慎使用Lombok的@Builder注解
现在很多程序员都习惯使用Lombok来使代码更加 “简洁”。但是使用Lombok也会造成很多问题,尤其Builder 有个很大的坑,已经见过好几次由于使用Builder注解导致默认值失效的问题,如果测试时没有在意这个问题,就很容易引发线上问题。…
建站知识
2024/10/18 18:02:29
Git 同步远程新的同名分支
背景
因为远程分支的提交记录过多,导致本地的commit内容过大,会产生一些问题:
第一次拉取时间较长占用本地和远程的存储
原因
因为项目已有一些年头,若是每次文件提交比较大,那么占用空间就更大
解决方案
该方案…
建站知识
2024/12/24 2:21:55