..
上一页 1 2 3 4 5 6 ··· 19 下一页
摘要: // 左侧D0 ~ D10 是在arduino中对管脚的定义 // 右侧0 ~ 16 是在esp8266中对gpio的定义 static const uint8_t D0 = 16; static const uint8_t D1 = 5; static const uint8_t D2 = 4; 阅读全文
posted @ 2020-10-27 14:18 罗浩楠 阅读(4860) 评论(1) 推荐(0) 编辑
摘要: pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> </dependency> View Code properi 阅读全文
posted @ 2020-10-22 15:16 罗浩楠 阅读(72) 评论(0) 推荐(0) 编辑
摘要: set http_proxy socks5://127.0.0.1:10808 set https_proxy socks5://127.0.0.1:10808 go get -v url 阅读全文
posted @ 2020-10-19 11:35 罗浩楠 阅读(82) 评论(0) 推荐(0) 编辑
摘要: npm install http-server -g 在任意目录cmd hs 就开启了一个http服务器。方便文件传输。 阅读全文
posted @ 2020-10-17 17:26 罗浩楠 阅读(64) 评论(0) 推荐(0) 编辑
摘要: // 软件运行流程 // 亿点点细节 // 涉及到的库 // get到的知识点 阅读全文
posted @ 2020-10-14 17:22 罗浩楠 阅读(411) 评论(0) 推荐(0) 编辑
摘要: fast forward movie picture experts group. 官网这里,很有趣。 ffmpeg is a very fast video and audio converter that can also grab from a live audio/video source. 阅读全文
posted @ 2020-10-14 16:12 罗浩楠 阅读(111) 评论(1) 推荐(0) 编辑
摘要: //todo 阅读全文
posted @ 2020-10-14 11:57 罗浩楠 阅读(75) 评论(0) 推荐(0) 编辑
摘要: // 参考链接们 官方文档,参考文档1,参考文档2, // 可能遇到的问题们 400 - file already exists 上传时候指定版本号499 - client disconnected网络问题,多试几次403 - isn't allowed to upload to project改个 阅读全文
posted @ 2020-10-14 08:41 罗浩楠 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 1. 文件路径问题,参考1 import os os.path.realpath("用户输入的路径") #获取绝对路径,组要是路径分隔符会由操作系统决定,如果windows下输入/会被转换成\,更多相关请help("os.path")查看。gogs-repositories 2.获取脚本携带的参数, 阅读全文
posted @ 2020-10-14 08:37 罗浩楠 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 经常有批量修改文件名的需求,感觉网上找的不好用,自己整一个,C语言不会,网上找的代码拼凑了一个小工具。点我下载 用法: 代码: #include <iostream> #include <cstring> #include <io.h> #include <regex> #include <stri 阅读全文
posted @ 2020-10-13 10:56 罗浩楠 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 19 下一页
..