摘要: 正则表达式篇 之三(BRE和ERE区别) POSIX规范 常见的正则表达式记法,其实都源于Perl,实际上,正则表达式从Perl衍生出一个显赫的流派,叫做PCRE(Perl Compatible Regular Expression),\d、\w、\s 之类的记法,就是这个流派的特征。但是在PCRE 阅读全文
posted @ 2024-04-29 20:55 岁月长河 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1. Register configuration 2. Clock isolation issue. whether the one module clock off has effect on other module function? how to one module implement 阅读全文
posted @ 2023-12-08 13:49 岁月长河 阅读(3) 评论(0) 推荐(0) 编辑
摘要: readyout: 由slave 产生,表示数据的接收,或extend data phase,用于数据传输,代表本身的状态 readyin(ready) : 有multiplexor提供,表示AHB正在完成一笔transfer,当hselx为1的时候,可以sample address,用于采样地址, 阅读全文
posted @ 2023-06-03 16:50 岁月长河 阅读(48) 评论(0) 推荐(0) 编辑
摘要: [ODE] Oxford Dictionary of English 最新版在 oxforddictionaries.com ,免费。纸版最新版也是 2010 年出的了,我隐约觉得和 OED 一样,牛津也已经放弃 ODE 这本词典的纸版了 [OALD] Oxford Advanced Learner 阅读全文
posted @ 2019-10-21 12:49 岁月长河 阅读(450) 评论(0) 推荐(0) 编辑
摘要: ' fso判断环境变量添加脚本是否存在Set fso = CreateObject("Scripting.FileSystemObject")' 以管理员权限运行环境变量添加脚本Set UAC = CreateObject("Shell.Application")tmpFile = ".\addTo 阅读全文
posted @ 2019-03-27 09:35 岁月长河 阅读(196) 评论(0) 推荐(0) 编辑
摘要: $(foreach <var>,<list>,<text>) library = -y $(dir) directorys = $(foreach dir, $(DIRS), $(library)) $(subst <from>;,<to>;,<text>;) $(wildcard *.c) $(s 阅读全文
posted @ 2019-03-11 17:41 岁月长河 阅读(111) 评论(0) 推荐(0) 编辑
摘要: There is an interesting article here regarding the difference between import and `include when it comes to packages. I'm going to attempt to summarise 阅读全文
posted @ 2019-03-05 18:35 岁月长河 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 常用命令汇总 where is equivalent cmd for linux which cmd 帮助:shutdown /? 关机:shutdown /s 重启:shutdown /r netstat -ano|findstr port Nslookup——-IP地址侦测器explorer—— 阅读全文
posted @ 2019-03-02 21:36 岁月长河 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 导入包名,相当于在当前域中声明一个包标识符,那么当前域中不能在声明同样的标识符 package.__file__: print the package location, e.g. os.__file__ dir(__builtins__): show all builtin functions 阅读全文
posted @ 2019-03-01 11:27 岁月长河 阅读(281) 评论(0) 推荐(0) 编辑
摘要: The * and ? will be extended to filename only outside of single quotation and double quotation noticely, the . will not be extended in shell wildcard 阅读全文
posted @ 2019-02-20 11:04 岁月长河 阅读(1000) 评论(0) 推荐(0) 编辑