import java.util.Base64; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.SecretKeyFactory; import javax.crypto.spec.DES ...
分类:
其他好文 时间:
2020-01-19 19:33:16
阅读次数:
85
前言 移植代码到板子上出现小问题,其实非常简单,但是不一定能立即想到,故还是记录一下。好记性不如烂笔头~ 错误 Vxworks上的error 0x21c411c0 (iRtp_imx6): RTP 0x2117b0e0 has been deleted due to signal 6. OpenCV ...
分类:
其他好文 时间:
2020-01-19 19:18:24
阅读次数:
182
SIT:System Integration Test(系统集成测试,即内部测试)根据用例描述测试每一个场景,优化系统性能,提交数据库性能excution plan给DBA review。对系统进行压力测试(必要情况下提交到APCC的压力测试组进行测试)。里程碑:完成内部测试报告和得到DBA的上线批 ...
分类:
其他好文 时间:
2020-01-19 16:34:26
阅读次数:
169
1) what is Hooks? 之前也有函数式组件,但是没有状态,无法保存数据,所以一直用类式组件 引入Hooks函数,重写上述组件 1. setCount代替之前 this.setState的功能,修改state数据,其实也是reducer的功能,useState也是useReducer实现的 ...
分类:
其他好文 时间:
2020-01-18 16:47:37
阅读次数:
97
转自:https://www.cnblogs.com/fengeryi/p/3449720.html linux内核中ffs(x)宏是平台相关的宏,在arm平台,该宏定义在 arch/arm/include/asm/bitops.h __t & -__t 等于找到__t 第一个为1的位(从低位开始) ...
分类:
系统相关 时间:
2020-01-17 19:26:26
阅读次数:
126
An analogy usually helps. You are cooking in a restaurant. An order comes in for eggs and toast. Synchronous: you cook the eggs, then you cook the toa ...
分类:
编程语言 时间:
2020-01-17 13:13:55
阅读次数:
62
可以将输入子系统看做由三大部分组成,体现了一种分离分层思想。分别为:核心层事件处理层设备驱动层核心层:这部分主要由input.c来实现,它为事件处理层和设备驱动层提供统一接口,这里我们先列出几个重要的函数。staticint__initinput_init(void)intinput_register_device(structinput_dev*dev)intinput_register_han
分类:
其他好文 时间:
2020-01-17 11:29:17
阅读次数:
64
前言 该文章描述了函数zip()的使用 2020-01-16 天象独行 0X01;查看zip()使用方法 #!/uer/bin/env python #coding:utf-8 help(zip) Help on class zip in module builtins: class zip(obj ...
分类:
编程语言 时间:
2020-01-16 23:44:57
阅读次数:
68
今天做物流查询,用到了快递鸟. 首先去快递鸟官网注册一个账号,然后进行实名认证.认证完之后进会员中心. 这里有用户id和api key. 在右侧技术支持中有一个API开发指南. 之前已经实名认证过了,直接点击技术文档 我现在用的是PHP,下载PHP版的. 这里的EBusinessID的值和AppKe ...
分类:
Web程序 时间:
2020-01-16 10:37:58
阅读次数:
144