摘要: #!/bin/bash ### # @Author: huangjinbang # @AuthorEmail: huangjinbang1996@163.com # @Date: 2024-12-10 19:12:22 # @LastEditors: huangjinbang # @LastEdit 阅读全文
posted @ 2025-01-02 16:15 ThreeFlower 阅读(166) 评论(0) 推荐(0)
摘要: link 参考链接 GNU Bash Reference Manual 文档 https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Redirections 超详细的Shell中特殊字符的用法总结大全 https://www 阅读全文
posted @ 2024-12-26 16:32 ThreeFlower 阅读(40) 评论(0) 推荐(0)
摘要: 银河麒麟桌面操作系统V10-设置窗口管理器为marco 注意: 不是SP1版本,是旧V10版本 #!/bin/bash #1.输入如下命令查看系统默认的窗口管理器: gsettings get org.mate.session.required-components windowmanager #2 阅读全文
posted @ 2024-12-25 17:21 ThreeFlower 阅读(249) 评论(0) 推荐(0)
摘要: linux jq 处理字典内的数组 字典 数组 cat data.json { "fruits": ["apple", "banana", "cherry"] } # 获取字典keys jq 'keys' data.json [ "fruits" ] # 获取获取字典中数组keys jq '.fru 阅读全文
posted @ 2024-12-25 16:32 ThreeFlower 阅读(58) 评论(0) 推荐(0)
摘要: Data format 一、COCO COCO数据集,是将所有图像的标签信息和类别信息存放在一个json文件。 Data Format 数据格式 https://cocodataset.org/#format-data JSON文件的基本格式,以实例分割为例,主要有五个部分:info、license 阅读全文
posted @ 2024-12-24 15:21 ThreeFlower 阅读(149) 评论(0) 推荐(0)
摘要: github链接及视频 https://github.com/xiaotudui/pytorch-tutorial https://www.bilibili.com/video/av74281036/?vd_source=48334bf584e5051d1187b1f0f2d076e8 训练套路 准 阅读全文
posted @ 2024-12-24 15:18 ThreeFlower 阅读(51) 评论(0) 推荐(0)
摘要: 各类网站 regular-expressions.info https://www.regular-expressions.info/index.html mozilla.org正则表达式 https://developer.mozilla.org/zh-CN/docs/Web/JavaScript 阅读全文
posted @ 2024-12-23 17:30 ThreeFlower 阅读(18) 评论(0) 推荐(0)
摘要: controller.py from model import HistoryModel from view import HistoryView class HistoryController: def __init__(self): self.model = HistoryModel() sel 阅读全文
posted @ 2024-12-23 16:06 ThreeFlower 阅读(13) 评论(0) 推荐(0)
摘要: ls | xargs -l |awk -F '.' '{printf("%s %s\n",$1,$0)}' |sed 's/^/fastboot flash /g' root@huang:/home/huang/1# ls abl.img cmnlib.img fw_4u1ea.img oem_st 阅读全文
posted @ 2024-12-23 14:52 ThreeFlower 阅读(28) 评论(0) 推荐(0)
摘要: # 文件内容 cat dhcpcode93配置.txt # Type,Architecture Name,Reference # 0x00 0x00,x86 BIOS,[RFC5970][RFC4578] # 0x00 0x01,NEC/PC98 (DEPRECATED),[RFC5970][RFC 阅读全文
posted @ 2024-12-19 18:03 ThreeFlower 阅读(8) 评论(0) 推荐(0)