摘要: 制作DEB包:https://blog.csdn.net/gatieme/article/details/52829907 https://www.cnblogs.com/cyfonly/p/6059374.html www.buyya.com/papers/CloudManifesto.pdf h 阅读全文
posted @ 2018-07-30 11:33 soul.stone 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1、ASIC 1)broadcom:https://www.broadcom.com/products/ethernet-connectivity/ 2、P4&可编程 1)barefoot:P4芯片厂商,代表作为tofino芯片 http://www.cnblogs.com/soul-stone/p 阅读全文
posted @ 2018-06-25 21:07 soul.stone 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1、linux常见问题:https://www.cnblogs.com/soul-stone/p/9979336.html 2、压缩&解压: http://www.cnblogs.com/soul-stone/p/6798716.html 3、安装samba:http://www.cnblogs.c 阅读全文
posted @ 2017-12-17 19:12 soul.stone 阅读(440) 评论(0) 推荐(0) 编辑
摘要: Formal proof cunit check: https://www.hahack.com/codes/cmake/ mock cmake 阅读全文
posted @ 2019-05-31 14:25 soul.stone 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 稳定的排序[编辑] 冒泡排序(bubble sort)— {\displaystyle O(n^{2})} 插入排序(insertion sort)—{\displaystyle O(n^{2})} 鸡尾酒排序(cocktail sort)—{\displaystyle O(n^{2})} 桶排序( 阅读全文
posted @ 2019-05-29 11:58 soul.stone 阅读(941) 评论(0) 推荐(0) 编辑
摘要: #ifdef RC_DEBUG_ENABLE#define xprintf(fmt, ...) printf(fmt, ##__VA_ARGS__) #else#define xprintf(fmt, ...) #endif 阅读全文
posted @ 2019-04-22 14:24 soul.stone 阅读(3434) 评论(0) 推荐(0) 编辑
摘要: int my_getline(char* line, int max_size) { int c; int len = 0; //fflush(stdin); while( (c=getchar()) != '\n' && c != EOF); while( (c=getchar()) != EOF && len < max_size){ ... 阅读全文
posted @ 2019-04-19 11:50 soul.stone 阅读(188) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fcx520/article/details/49889985 阅读全文
posted @ 2019-04-17 10:01 soul.stone 阅读(330) 评论(0) 推荐(0) 编辑
摘要: todo 阅读全文
posted @ 2019-04-17 09:39 soul.stone 阅读(87) 评论(0) 推荐(0) 编辑
摘要: root_inc common_inc mod_a_inc mod_b_inc dir_mod_a mod_a_inc mod_a_submod1 a1_func.c a1_func.h mod_a_submod2 a2_func.c a2_func2.h dir_mod_b mod_b_inc m 阅读全文
posted @ 2019-04-15 14:36 soul.stone 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1、依赖倒置的场景需求: 1) 模块A、B互相依赖,耦合较大,希望改成单向依赖 2)模块A是底层,模块B是上层,底层不应该调用上层,即只允许B调用A。 2、未倒置前,A调用B:module_a_func 调用module_b_func(in_data, out_data) module_b: 提供m 阅读全文
posted @ 2019-04-11 15:02 soul.stone 阅读(145) 评论(0) 推荐(0) 编辑
摘要: https://36kr.com/p/5065605 阅读全文
posted @ 2019-04-11 10:52 soul.stone 阅读(374) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/viaiu/p/9939301.html http://www.sohu.com/a/207062452_464084 阅读全文
posted @ 2019-04-10 16:45 soul.stone 阅读(107) 评论(0) 推荐(0) 编辑