上一页 1 ··· 4 5 6 7 8

pdftk - handy tool for manipulating PDF 免费的pdf合并工具

摘要: Linux pdf合并的工具 安装工具 $ sudo apt-get install pdftk 使用 $ pdftk *.pdf cat output all-in-one.pdf && Try it by your way Ref: http://web.mit.edu/outland/arch 阅读全文
posted @ 2019-07-15 08:41 ENGINEER-F 阅读(174) 评论(0) 推荐(0)

pyserial 挺强大的

摘要: Ref: https://pythonhosted.org/pyserial/ pyserial写的很规范,无论安装和使用都非常的容易,目前使用下来非常好。 没有使用它做过压力测试,不知道表现如何。 一个硬件出身的老的工程师,也是学习了很多! 一个经常跟硬件打交道的,从一开始认识电子这个行业,就使用 阅读全文
posted @ 2019-07-12 08:37 ENGINEER-F 阅读(174) 评论(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)

SoC的设计变的如此复杂和高成本

摘要: 当一些硬件IP变成了标准的螺丝钉和螺母的时候,硬件设计的未来就没有了吗? 由于太过于复杂,而整体的毛利率又不高,无法迅速迭代,产生边际效应,也无法迅速扩张。 就成了一个传统行业,从业者也逐渐被时代遗忘,从而边缘化...... 阅读全文
posted @ 2019-05-14 09:14 ENGINEER-F 阅读(157) 评论(0) 推荐(0)

Windows 远程访问 ubuntu 16 lts

摘要: remote access ubuntu 使用安装使用vncserver (除非必要,不要使用图形界面,底层码农真的应该关心效率) $ sudo apt-get install vncsever win10 搜索了一圈好用且免费(不知道是不是充分),推荐使用 TightVNC(尊重知识产权) www 阅读全文
posted @ 2019-04-02 10:28 ENGINEER-F 阅读(144) 评论(0) 推荐(0)

Celebrate it, this is my first time on this blog.

摘要: After hovered around the technology edge many years(so ashamed), I want to collected all the points together even maybe less useful for the others. I 阅读全文
posted @ 2019-03-04 08:40 ENGINEER-F 阅读(95) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8