db db
码龄6年
关注
提问 私信
  • 博客:37,555
    37,555
    总访问量
  • 42
    原创
  • 1,487,344
    排名
  • 7
    粉丝
  • 0
    铁粉

个人简介:慢慢的,慢慢的

IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:湖北省
  • 加入CSDN时间: 2019-03-31
博客简介:

qq_44857505的博客

查看详细资料
个人成就
  • 获得29次点赞
  • 内容获得7次评论
  • 获得109次收藏
  • 代码片获得587次分享
创作历程
  • 1篇
    2023年
  • 11篇
    2022年
  • 5篇
    2021年
  • 27篇
    2020年
成就勋章
创作活动更多

如何做好一份技术文档?

无论你是技术大神还是初涉此领域的新手,都欢迎分享你的宝贵经验、独到见解与创新方法,为技术传播之路点亮明灯!

180人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

ADS1284 TI官方驱动

在这里插入代/* * ads1248.h * * Function prototypes and device definitions for the ADS1248 * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redis
原创
发布博客 2023.09.17 ·
366 阅读 ·
0 点赞 ·
0 评论 ·
5 收藏

链接指定顺序

gcc -o myprogram myprogram.c -Wl,–start-group -lA -lB -Wl,–end-group
原创
发布博客 2022.12.05 ·
185 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

调试串口直接通过scanf接受输入 过滤回车操作符!!!

【代码】调试串口直接通过scanf接受输入 过滤回车操作符!!!
原创
发布博客 2022.10.18 ·
338 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

ffmpeg读取rtsp流通过sdl渲染

【代码】ffmpeg读取rtsp流通过sdl渲染。
原创
发布博客 2022.10.14 ·
275 阅读 ·
0 点赞 ·
1 评论 ·
1 收藏

使用ffmpeg 保存视频帧到png里面

【代码】使用ffmpeg 保存视频帧到png里面。
原创
发布博客 2022.10.13 ·
1897 阅读 ·
0 点赞 ·
0 评论 ·
5 收藏

ffmpeg在ubuntu上面的sh脚本 建议一行一行运行

【代码】ffmpeg在ubuntu上面的sh脚本 建议一行一行运行。
原创
发布博客 2022.10.12 ·
343 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Ubuntu配置DNS(永久配置),解决ping不通外网的问题

dbs配置
原创
发布博客 2022.09.29 ·
2066 阅读 ·
1 点赞 ·
0 评论 ·
9 收藏

单片机日志打印宏_好用!(带颜色)

嵌入式日志打印宏(带颜色)
原创
发布博客 2022.09.22 ·
350 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

嵌入式通信协议制作demo 服务端和客户端代码 同时支持大小端模式

嵌入式 单片机 通信协议
原创
发布博客 2022.09.20 ·
260 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

test点点滴滴

4让她
原创
发布博客 2022.06.02 ·
95 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

c语言 获取系统时间

struct timespec tout;struct tm *tmp;char buf[64];clock_gettime(CLOCK_REALTIME, &tout);tmp = localtime(&tout.tv_sec);strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", tmp);printf("current time is %s
", buf);
原创
发布博客 2022.04.20 ·
952 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

ffmpeg中视频时长计算问题

通过AVFormatContext中的duration计算就可以了,注意duration的单位是微秒,要除以1000000如果想通过AVStream来计算,就要注意AVStream中duration的单位是时间基数(AVRational time_base) 所以时长 = duration * time_base...
原创
发布博客 2022.04.16 ·
1629 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

消息队列实现服务器和客户端

服务器#include <stdio.h>#include <sys/types.h>#include <sys/ipc.h>#include <stdlib.h>#include <sys/msg.h>#include <string.h>#include <unistd.h>#define SERVER_PATH "/tmp/server_msg"#define LEN 100struct mess
原创
发布博客 2021.07.26 ·
576 阅读 ·
0 点赞 ·
0 评论 ·
6 收藏

linux内核命令实现cp用法

#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <stdlib.h>#include <unistd.h>int main(int agrs,char *argv[]) { int src_fd,des_fd; src_fd = open(argv[1],O_RDONLY);
原创
发布博客 2021.07.19 ·
140 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

c++简单封装thread多线程操作

#include <iostream>#include <pthread.h>#include <stdlib.h>#include <stdio.h>#include <unistd.h>using namespace std;class Thread{ public: Thread(){ } private: pthread_t thread[10];
原创
发布博客 2021.07.08 ·
422 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

简单选择排序 C语言

#include<stdio.h>#include<string.h>void main(){ int array[] = {2,3,4,6,1}; int temp; int length = sizeof(array)/sizeof(int); for (int i = 0; i < length; ++i){ //要排序的次数 for (int j = i; j < length; ++j) { //进行要交换位
原创
发布博客 2021.06.02 ·
61 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

scrapy多层数据传递,数据出现重复问题的解决

https://www.jianshu.com/p/42f22085f4c5使用深度拷贝
原创
发布博客 2021.01.05 ·
527 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

云服务器数据库被黑解决办法

限制ip登录,设置复杂密码update mysql.user set host='ip地址' where user='用户名';
原创
发布博客 2020.11.30 ·
932 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

code-server在linux上面的环境配置

下载code-server的安装包安装 rpm -ivh code-server-3.7.3-amd64.rpm启动 在Linux下面后台运行 nohup code-server --port 8080 --host 0.0.0.0 --auth none >> vscode.log 2>&1 &在你的游览器下输入公网ip地址加端口号,就可以访问了 http://ip:port注意事项上述为无密码运行的,任何终端都可以用,至于怎么设置密码,我的设置了.
原创
发布博客 2020.11.28 ·
1034 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Uncaught SyntaxError: Unexpected token <问题的解决

在用js写代码时,引入了自己的js文件,一直报错 Uncaught SyntaxError: Unexpected token <第一开始,以为自己代码写错了,搞了好半天,发现不是的。答案是你的js文件没有引入进来,报404错误,有人说为什么没有引进来呀,不是写了路径嘛,不管是相对路径或者绝对路径我都式了一下呀,答案是:你的后端服务没有写返回你自己引入文件的代码...
原创
发布博客 2020.10.29 ·
3385 阅读 ·
2 点赞 ·
0 评论 ·
1 收藏
加载更多