随笔分类 -  Software

QEMU - Machine Platform Emulation
摘要:Machine Platform Emulation Purpose and Scope This document provides an overview of QEMU's machine platform emulation, which defines the virtual hardwa 阅读全文

posted @ 2025-10-16 13:50 ENGINEER-F 阅读(10) 评论(0) 推荐(0)

源文件头的标识 // SPDX-License-Identifier: BSD-3-Clause 解析
摘要:SPDX-License-Identifier: BSD-3-Clause 解析与使用指南 ​一、SPDX-License-Identifier 的作用​ SPDX(Software Package Data Exchange)是由 Linux 基金会支持的开源标准,旨在通过标准化标识符统一软件许可 阅读全文

posted @ 2025-10-15 17:13 ENGINEER-F 阅读(25) 评论(0) 推荐(0)

Pure C static coding analysis tools
摘要:Cppcheck - A tool for static C/C++ code analysiscppcheck.sourceforge.netCppcheck is a static analysis tool for C/C++ code. It provides unique code ana 阅读全文

posted @ 2019-11-22 22:50 ENGINEER-F 阅读(157) 评论(0) 推荐(0)

What is Code Quality?
摘要:Ref detail : https://realpython.com/python-code-quality/ What is Code Quality? Of course you want quality code, who wouldn’t? But to improve code qual 阅读全文

posted @ 2019-10-30 09:33 ENGINEER-F 阅读(242) 评论(0) 推荐(0)

YES, There is No such thing as a free lunch
摘要:软件行业本身就建立在copy的基础上的,据说视窗both Windows and Mac OS都借鉴了施乐的。 国内的很多的软件质量真的好差呀。 https://queue.acm.org/detail.cfm?id=945125 Jay Michaelson - There's No Such T 阅读全文

posted @ 2019-09-02 18:22 ENGINEER-F 阅读(197) 评论(0) 推荐(0)

使用wc -l 来统计代码行数
摘要:Linux使用wc来统计行数真的好用 如在当前路径下统计一共多少行代码 $ find ./ -name *.c |xargs wc -l #包括了空行 ##-l :lines 如果不包括空行 ¥find -name *.c | xargs grep -v ^$| wc -l # # 输出除之外的所有 阅读全文

posted @ 2019-07-03 09:22 ENGINEER-F 阅读(1174) 评论(0) 推荐(0)

[software test - 001] Why we need software test?
摘要:/* This is a conclusion about the software testing job. */ /* Scope: middle level software tasks, < 1 Milllion lines */ /* */ 很多时候忙于低头做事,几乎不做任何深入的思考,权 阅读全文

posted @ 2019-07-03 08:57 ENGINEER-F 阅读(154) 评论(0) 推荐(0)