02 2022 档案

windows进程列表存入list
摘要:class CProcessItem; typedef list<CProcessItem*> ProcessList; 阅读全文

posted @ 2022-02-23 06:59 lydstory 阅读(20) 评论(0) 推荐(0) 编辑

seal算法
摘要:seal算法 经典密码算法 阅读全文

posted @ 2022-02-23 06:05 lydstory 阅读(313) 评论(0) 推荐(0) 编辑

https cer证书
摘要:后台同事给的事.pem和.key文件,项目中要用cer证书,所以要转一下 pem证书转cer证书 命令: 1.openssl pkcs12 -export -out cacert.p12 -in cacert.pem -inkey cacert.key 先转p12 2.openssl pkcs12 阅读全文

posted @ 2022-02-23 05:47 lydstory 阅读(271) 评论(0) 推荐(0) 编辑

使用微软的FCI/FDI库进行文件压缩
摘要:简介:FCI(File Compression Interface)和FDI(File Decompression Interface)是由微软提供的用于压缩和解压缩的开发包。最大的好处是在WinNT、Win2000、WinXP下系统都提供了相应的API接口。所以,我们的程序不需要额外的压缩库。本文 阅读全文

posted @ 2022-02-17 07:08 lydstory 阅读(441) 评论(0) 推荐(0) 编辑

中软可信移动存储管理系统简介
摘要:一、概述 目前,存储介质作为企业核心商业机密和敏感信息的载体,实现对它们安全、有效的管理是保证企业信息安全的重要手段。移动存储介质的使用灵 活、方便使它在企业信息化的过程中迅速得到普及,越来越多的敏感信息、秘密数据和档案资料被存贮在移动介质里,大量的秘密文件和资料变为磁性介质,光学介质,存贮在无保护 阅读全文

posted @ 2022-02-17 06:58 lydstory 阅读(420) 评论(0) 推荐(0) 编辑

com 标准实现
摘要:https://www.cnblogs.com/zhehan54/p/4646904.html 阅读全文

posted @ 2022-02-17 06:33 lydstory 阅读(18) 评论(0) 推荐(0) 编辑

虚拟可信磁盘
摘要:虚拟可信磁盘 虚拟可信磁盘 虚拟可信磁盘 阅读全文

posted @ 2022-02-17 06:21 lydstory 阅读(26) 评论(0) 推荐(0) 编辑

数据对齐 int char*
摘要:struct sbuffer { struct sbuffer* next; int sz; char* ptr; char data[0]; }; int main() { cout<<sizeof(sbuffer)<<endl; return 0; } 24 阅读全文

posted @ 2022-02-17 05:18 lydstory 阅读(15) 评论(0) 推荐(0) 编辑

c语言内存池分配
摘要:#include <iostream> using namespace std; #include <stdlib.h> #include <stdio.h> #include <stdio.h> #include <memory.h> #include <malloc.h> struct _pag 阅读全文

posted @ 2022-02-17 05:13 lydstory 阅读(49) 评论(0) 推荐(0) 编辑

char begint[0]不占地址,结构体中
摘要:#include <stdlib.h>#include <stdio.h> struct _page { struct _page* next; char begin[0];}; int main(){ cout << sizeof(_page) << endl; return 0;} 输出8 ch 阅读全文

posted @ 2022-02-17 05:03 lydstory 阅读(22) 评论(0) 推荐(0) 编辑

c参数解析
摘要:#include <iostream> using namespace std; #include <string.h> #include <stdlib.h> #define ARGS_BUF 1024 #define ARGS_MAX 10 struct args { char buf[ARGS 阅读全文

posted @ 2022-02-17 04:19 lydstory 阅读(59) 评论(0) 推荐(0) 编辑

c shaco网络库
摘要:https://ithub.com/lvshaco/shaco_first 阅读全文

posted @ 2022-02-17 03:53 lydstory 阅读(27) 评论(0) 推荐(0) 编辑

easemob 环信
摘要:https://www.easemob.com/ 阅读全文

posted @ 2022-02-17 01:48 lydstory 阅读(24) 评论(0) 推荐(0) 编辑

图搜天下(北京)科技有限公司
摘要:图搜天下(北京)科技有限公司 java 阅读全文

posted @ 2022-02-17 01:28 lydstory 阅读(50) 评论(0) 推荐(0) 编辑

图像传感器
摘要:图像传感器 图像传感器 阅读全文

posted @ 2022-02-16 05:32 lydstory 阅读(25) 评论(0) 推荐(0) 编辑

上海招聘要求
摘要:http://www.infotmic.com.cn/index.php/zh/jrwm/ 阅读全文

posted @ 2022-02-16 05:01 lydstory 阅读(16) 评论(0) 推荐(0) 编辑

lame speex
摘要:lame mp3解码库 speex 音频解码库 阅读全文

posted @ 2022-02-16 04:48 lydstory 阅读(21) 评论(0) 推荐(0) 编辑

aacEncode
摘要:aacEncode aac编解码 阅读全文

posted @ 2022-02-16 04:39 lydstory 阅读(17) 评论(0) 推荐(0) 编辑

c语言获取当前年月日时分秒
摘要:#include <iostream> using namespace std; #include <stdio.h> #include <time.h> #include <sys/time.h> typedef struct { int id; char *ptr; } OSA_IpcShmHn 阅读全文

posted @ 2022-02-16 04:32 lydstory 阅读(587) 评论(0) 推荐(0) 编辑

两进程通过消息队列收发消息
摘要:msgrcv msgsnd ipc 消息队列通信 阅读全文

posted @ 2022-02-16 03:36 lydstory 阅读(22) 评论(0) 推荐(0) 编辑

c语言设置gpio的值
摘要:snprintf(commandBuf, COMMAND_BUF_MAX_SIZE, "echo %d > /sys/class/gpio/export ", RESETGPIO); ret = system(commandBuf); 阅读全文

posted @ 2022-02-16 02:55 lydstory 阅读(106) 评论(0) 推荐(0) 编辑

生产现场设备检测完正确亮绿灯不正确亮红灯
摘要:static int ReadGpioValue(int r) { char commandBuf[COMMAND_BUF_MAX_SIZE] = {0}; FILE *fp = NULL; int ret = -1, value = -1; snprintf(commandBuf, COMMAND 阅读全文

posted @ 2022-02-16 02:35 lydstory 阅读(33) 评论(0) 推荐(0) 编辑

uboot模式下操作spi flash
摘要:一. Uboot模式下通过串口烧写镜像到spi flash1. 安装并打开tftp工具,如tftp322. 将需要烧录的文件放在tftp目录;3. 重启设备,进入u-boot模式4. 设置tftp服务器IPsetenv serverip 192.168.x.xxx5. 设置主板ipsetenv ip 阅读全文

posted @ 2022-02-16 01:07 lydstory 阅读(1239) 评论(0) 推荐(0) 编辑

V4L2
摘要:V4L2是Video for linux2的简称,为linux中关于视频设备的内核驱动。在Linux中,视频设备是设备文件,可以像访问普通文件一样对其进行读写,摄像头在/dev/video*下,如果只有一个视频设备,通常为/dev/video0。 V4L2在设计时,是要支持很多广泛的设备的,它们之中 阅读全文

posted @ 2022-02-15 05:58 lydstory 阅读(136) 评论(0) 推荐(0) 编辑

用FPGA实现H.264/AVC硬件编解码器的构想
摘要:用FPGA实现H.264/AVC硬件编解码器的构想 阅读全文

posted @ 2022-02-15 05:51 lydstory 阅读(36) 评论(0) 推荐(0) 编辑

SPIflash MiniGUI
摘要:SPIflash MiniGUI 阅读全文

posted @ 2022-02-15 05:42 lydstory 阅读(14) 评论(0) 推荐(0) 编辑

G.711aLaw
摘要:G.711aLaw 网络摄像机 音频编码 g.711alaw 阅读全文

posted @ 2022-02-15 05:39 lydstory 阅读(34) 评论(0) 推荐(0) 编辑

TUTK p2p穿透的使用介绍
摘要:TUTK p2p穿透的使用介绍 阅读全文

posted @ 2022-02-15 05:35 lydstory 阅读(319) 评论(0) 推荐(0) 编辑

上海盈方微
摘要:infotmic.com.cn IPC摄像头 阅读全文

posted @ 2022-02-15 05:04 lydstory 阅读(18) 评论(0) 推荐(0) 编辑

生产测试软件
摘要:adbshell libshell socket ?? 做的好????????????? 阅读全文

posted @ 2022-02-02 12:55 lydstory 阅读(13) 评论(0) 推荐(0) 编辑

ICG介绍
摘要:ICG介绍 北京爱赛立技术有限公司(英文缩写ICG)是位于海淀区的国家高新技术企业,公司创立于2007年,并于2009年获得海外风险投资。 公司定位于高性能网络通信设备的研发生产,主要从事基于RISC多核CPU的高性能通信处理平台的研发、生产、销售以及技术服务,产品可广泛应用于防火墙、UTM、IDS 阅读全文

posted @ 2022-02-02 12:43 lydstory 阅读(758) 评论(0) 推荐(0) 编辑

机智云
摘要:https://www.gizwits.com/app 阅读全文

posted @ 2022-02-02 12:22 lydstory 阅读(22) 评论(0) 推荐(0) 编辑

中国红歌在线
摘要:http://mp3.hot1949.com/st-music/list-id-1-13.html 阅读全文

posted @ 2022-02-01 04:45 lydstory 阅读(93) 评论(0) 推荐(0) 编辑

导航

点击右上角即可分享
微信分享提示