随笔分类 -  技术储备

上一页 1 2 3 4 5 6 7 下一页

用ssh进行git clone出现 fatal: Could not read from remote repository.
摘要:问题:在通过MobaXterm进行ssh连接的服务器上用ssh进行git clone出现 fatal: Could not read from remote repository. 解决方法:proxychains git clone xxx 在git clone之前加上proxychains即可。 阅读全文

posted @ 2018-10-25 14:48 穷酸秀才大草包 阅读(2494) 评论(0) 推荐(0)

git将本地项目上传到远程仓库
摘要:1、cd mygit 打开项目文件夹 2、git init 初始化git 3、git remote add origin xxx(远程仓库地址) 添加远程库 git remote -v 查看远程库 4、git add . 添加当前文件夹下的文件 5、git commit -m "the first 阅读全文

posted @ 2018-10-23 18:26 穷酸秀才大草包 阅读(236) 评论(0) 推荐(0)

web视频播放
摘要:webm、mp4/h264 video.js hevc libde265.js hls/m3u8 hls.js 阅读全文

posted @ 2018-10-10 21:59 穷酸秀才大草包 阅读(180) 评论(0) 推荐(0)

ffmpeg使用笔记
摘要:1、从mp4中提取h264:ffmpeg -i 264.mp4 -codec copy -bsf h264_mp4toannexb -f h264 output.h2642、从mp4中提取hevc:ffmpeg -i 265.mp4 -codec copy -bsf hevc_mp4toannexb 阅读全文

posted @ 2018-10-09 17:42 穷酸秀才大草包 阅读(1622) 评论(0) 推荐(1)

ffplay使用笔记
摘要:ffplay播放yuv文件命令: ffplay -f rawvideo -video_size 1920x1080 a.yuv ffplay播放mp4、h.264、hevc文件命令: ffplay a.mp4/a.h.264/a.hevc 阅读全文

posted @ 2018-10-09 10:07 穷酸秀才大草包 阅读(513) 评论(0) 推荐(0)

ffmpeg安装配置以及库调用
摘要:参考https://blog.csdn.net/jayson_jang/article/details/52329508 cd ffmpeg ./configure --enable-shared --prefix=/usr/local/ffmpeg make -j4sudo make instal 阅读全文

posted @ 2018-09-30 08:45 穷酸秀才大草包 阅读(2430) 评论(0) 推荐(0)

ffmpeg入门
摘要:参考:https://blog.csdn.net/leixiaohua1020/article/details/15811977(拜雷神) https://blog.csdn.net/qq_36688143/article/details/79162121 http://dranger.com/ff 阅读全文

posted @ 2018-09-27 14:09 穷酸秀才大草包 阅读(1047) 评论(0) 推荐(0)

Faster-RCNN
摘要:python27 labelImg.py 安全帽demo: 在E:\study\Deeplearning\py-faster-rcnn-master\tools文件夹下运行python27 hat_ui_demo.py 阅读全文

posted @ 2018-09-10 10:24 穷酸秀才大草包 阅读(178) 评论(0) 推荐(0)

C++机试笔记
摘要: 阅读全文

posted @ 2018-09-10 10:23 穷酸秀才大草包 阅读(98) 评论(0) 推荐(0)

OJ练习
摘要:1、京东OJ 保卫方案 (单调栈) http://www.cnblogs.com/mengmz/p/7263915.html #include <iostream> #include <vector> #include <algorithm> using namespace std; struct 阅读全文

posted @ 2018-08-29 09:34 穷酸秀才大草包 阅读(145) 评论(0) 推荐(0)

python搭建友盟以及个推推送web服务器
摘要:一、友盟客户端demo: 由于SDK原因,新版Android Studio的Android API 28 Platform无法同步新建项目, 所以我最终选择下载android-studio-bundle-141.1903250-windows.exe,Android API 22 Platform。 阅读全文

posted @ 2018-08-24 16:58 穷酸秀才大草包 阅读(376) 评论(0) 推荐(0)

C# 输出结果有System.Byte[]
摘要:byte[]类型直接输出或者调用ToString函数都会出现这个结果。 需要执行: byte[] a=new byte[10]; string text = "";for (int i = 0; i < a.Length; i++){ text += a[i].ToString("X2") ;} 阅读全文

posted @ 2018-08-17 09:40 穷酸秀才大草包 阅读(8732) 评论(1) 推荐(1)

linux 命令
摘要:netstat –apn 查看端口占用情况 kill -9 [进程号] 删除进程 阅读全文

posted @ 2018-08-16 08:42 穷酸秀才大草包 阅读(109) 评论(0) 推荐(0)

用go run命令启动main package中的多个文件
摘要:linux: go run *.go windows: go build后运行main.exe 阅读全文

posted @ 2018-08-15 16:25 穷酸秀才大草包 阅读(468) 评论(0) 推荐(0)

Docker使用入门
摘要:Docker安装 - 穷酸秀才大艹包 - 博客园 (cnblogs.com) Docker命令: docker images 查看本地镜像 docker ps -a 查询容器 docker ps -l 查询最近使用容器 docker rm CONTAINER_ID 删除容器 docker rmi I 阅读全文

posted @ 2018-08-15 15:17 穷酸秀才大草包 阅读(216) 评论(0) 推荐(0)

Go实现mqtt服务
摘要:package main import ( "os" "log" "github.com/eclipse/paho.mqtt.golang") func main() { mqtt.DEBUG = log.New(os.Stdout, "", 0) mqtt.ERROR = log.New(os.S 阅读全文

posted @ 2018-08-14 09:07 穷酸秀才大草包 阅读(11320) 评论(0) 推荐(0)

MongoDB的Go语言驱动注意点
摘要:当我们定义一个struct用来和集合对应时,要注意结构体的字段首字母应该大写,不然不可见。 通过`bson:"name"`这种方式可以定义MongoDB中集合的字段名,如果不定义,mgo自动把struct的字段名首字母小写作为集合的字段名。 如果不需要获得id_,Id_可以不定义,在插入的时候会自动 阅读全文

posted @ 2018-08-10 13:21 穷酸秀才大草包 阅读(205) 评论(0) 推荐(0)

Go实现发送解析GET与POST请求
摘要:参考链接: https://www.jb51.net/article/115693.htm https://www.jb51.net/article/60900.htm https://www.cnblogs.com/5bug/p/8494953.html 1、服务器解析GET请求,返回值为文本格式 阅读全文

posted @ 2018-08-09 13:56 穷酸秀才大草包 阅读(3664) 评论(0) 推荐(0)

用Go实现RabbitMQ消息收发
摘要:用Go实现RabbitMQ消息收发 阅读全文

posted @ 2018-08-09 10:20 穷酸秀才大草包 阅读(342) 评论(0) 推荐(1)

在Eclipse上编写Go项目
摘要:在Eclipse上编写Go项目 阅读全文

posted @ 2018-08-08 17:03 穷酸秀才大草包 阅读(2183) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 下一页

导航