摘要:Machine Platform Emulation Purpose and Scope This document provides an overview of QEMU's machine platform emulation, which defines the virtual hardwa
阅读全文
摘要:SPDX-License-Identifier: BSD-3-Clause 解析与使用指南 一、SPDX-License-Identifier 的作用 SPDX(Software Package Data Exchange)是由 Linux 基金会支持的开源标准,旨在通过标准化标识符统一软件许可
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要:软件行业本身就建立在copy的基础上的,据说视窗both Windows and Mac OS都借鉴了施乐的。 国内的很多的软件质量真的好差呀。 https://queue.acm.org/detail.cfm?id=945125 Jay Michaelson - There's No Such T
阅读全文
摘要:Linux使用wc来统计行数真的好用 如在当前路径下统计一共多少行代码 $ find ./ -name *.c |xargs wc -l #包括了空行 ##-l :lines 如果不包括空行 ¥find -name *.c | xargs grep -v ^$| wc -l # # 输出除之外的所有
阅读全文
摘要:/* This is a conclusion about the software testing job. */ /* Scope: middle level software tasks, < 1 Milllion lines */ /* */ 很多时候忙于低头做事,几乎不做任何深入的思考,权
阅读全文