摘要: uefi 闪存设备(flash device)的层级结构 Flash设备FD → FV → FFS → EFI文件。 多个EFI section组合成一个固件文件(FFS),由零个或多个EFI段组成。 一个或多个FFS文件(一个用以描述FFS文件的头部和一个或多个FFS数据块)被组合成一个固件卷(F 阅读全文
posted @ 2022-02-08 11:52 Leon呀 阅读(520) 评论(0) 推荐(0) 编辑
摘要: uefi guid 映射 guid 在uefi 框架中起着非常重要的作用,它可以唯一的标记变量、protocol、模块、c语言变量等。 编译后,会输出文件Guid.Xref作为构建的一部分生成。此文件将位于生成输出目录中。这个文件将列出所有GUID以及与每个GUID相关的模块。 另一种解码GUID的 阅读全文
posted @ 2022-02-08 11:33 Leon呀 阅读(912) 评论(0) 推荐(0) 编辑
摘要: Manage WiFi with Native API WIFI on Windows XP SP2 This article will demonstrate the ability to establish and operate a WiFi connection from a C# prog 阅读全文
posted @ 2020-11-19 11:19 Leon呀 阅读(134) 评论(0) 推荐(0) 编辑
摘要: Linux下安装钉钉 阅读全文
posted @ 2020-09-23 13:57 Leon呀 阅读(1835) 评论(0) 推荐(0) 编辑
摘要: 最大子矩阵 1,借助最大连续子序列和来取得最大子矩阵 def MaxSubArray(nums): n = len(nums) dp = [] dp.append(nums[0]) mymax = dp[0] startidx = 0 endidx = 0 for i in range(1, n): 阅读全文
posted @ 2020-09-18 13:30 Leon呀 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 最大子数组 1,暴力法 def getMaxNumList(numlist): max=0 curtotal=0 startidx = 0 endidx = 0 mylen = len(numlist) for idx in range(mylen): curtotal = 0 curtotal + 阅读全文
posted @ 2020-09-18 10:55 Leon呀 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 总结的linux连接wifi的一般方式 阅读全文
posted @ 2020-08-18 16:45 Leon呀 阅读(483) 评论(0) 推荐(0) 编辑
摘要: Windows与Linux文件互传 使用技术 openssh scp命令包 阅读全文
posted @ 2019-08-29 14:13 Leon呀 阅读(740) 评论(0) 推荐(0) 编辑