上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页
摘要: 1. 日期转秒: datestr="2021-12-30 03:27" pattern="(%d+)-(%d+)-(%d+) (%d+):(%d+)" year,month,day,hour,min=datestr:match(pattern) print(day, month, year, hou 阅读全文
posted @ 2021-12-30 20:28 船长博客 阅读(2105) 评论(0) 推荐(0) 编辑
摘要: --test.lua if arg[1] == '1' then print("Hello World!") elseif arg[1] == '2' then print("Hi, Captain!") else print("Hi, Tom") end root@test# lua test.l 阅读全文
posted @ 2021-12-24 10:18 船长博客 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 需要在Makefile里面添加一句 DEPENDS:=+kmod-nf-nat 思路:查看nf_nat.ko是哪个包编译出来的,然后把包名加到DEPENDS后面 find ./ -name nf_nat.ko 阅读全文
posted @ 2021-12-20 16:45 船长博客 阅读(209) 评论(1) 推荐(0) 编辑
摘要: 计算机中的有符号数有三种表示方法,即原码、反码和补码。三种表示方法均有符号位和数值位两部分,符号位都是用0表示“正”,用1表示“负”,而数值位,三种表示方法各不相同。在计算机系统中,数值一律用补码来表示和存储。原因在于,使用补码,可以将符号位和数值域统一处理;同时,加法和减法也可以统一处理 正整数的 阅读全文
posted @ 2021-11-20 09:19 船长博客 阅读(920) 评论(0) 推荐(0) 编辑
摘要: dkjson下载 local dkjson = require "dkjson" local data = {} data.name= "test" data.array = {} print(dkjson.encode(data)) 输出: {"name":"test","array":[]} 阅读全文
posted @ 2021-11-10 20:11 船长博客 阅读(448) 评论(1) 推荐(0) 编辑
摘要: [OpenWrt Wiki] 在Virtualbox虚拟机中运行OpenWrt 其它版本下载:https://downloads.openwrt.org/https://downloads.openwrt.org/releases/21.02.1/targets/x86/64/https://arc 阅读全文
posted @ 2021-11-09 09:51 船长博客 阅读(489) 评论(0) 推荐(0) 编辑
摘要: // vue.config.js module.exports = {...// 加入下面这行即可,如果加到最后,需要把逗号去掉。 assetsDir:"static", ... } npm run build ls dist favicon.ico index.html static 阅读全文
posted @ 2021-11-01 21:27 船长博客 阅读(1505) 评论(0) 推荐(0) 编辑
摘要: Python3 简易服务器 python -m http.server 80或 python3 -m http.server 80 会看到如下输出: Serving HTTP on 0.0.0.0 port 80 (http://0.0.0.0:80/) ... 阅读全文
posted @ 2021-10-13 22:42 船长博客 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 特别鸣谢《构建嵌入式Linux系统》第九章 设置bootloader U-Boot引导 cubieboard6本想把rootfs放到移动硬盘上/dev/sda1,结果修改uenv.txt后,无法启动。 用网上的办法,把固件烧到TF卡上也不能启动,最后通过修改uboot启动参数解决。 另外的方法没试: 阅读全文
posted @ 2021-10-06 21:49 船长博客 阅读(533) 评论(0) 推荐(0) 编辑
摘要: https://install.appcenter.ms/orgs/rdmacios-k2vy/apps/microsoft-remote-desktop-for-mac/distribution_groups/all-users-of-microsoft-remote-desktop-for-ma 阅读全文
posted @ 2021-09-21 20:21 船长博客 阅读(376) 评论(0) 推荐(0) 编辑
摘要: Can't reach database server or port SQLState - 08S01com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last pack 阅读全文
posted @ 2021-09-04 09:57 船长博客 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 1. https://www.amazon.cn/ 登陆账户-点击我的账户-管理我的内容和设备: 2. 显示:选择个人文档,就可以看到自己推送过的文档,可以删除及归类到收藏夹 3. 设备里显示自己注册上来的kindle,首选项-个人文档设置:管理 〖发送至Kindle〗电子邮箱 4. 美亚https 阅读全文
posted @ 2021-08-15 22:56 船长博客 阅读(1986) 评论(0) 推荐(0) 编辑
摘要: 1. 到官网下载tgz文件:https://kafka.apache.org/downloads 2. 创建存放kafka的文件夹:sudo mkdir /opt/module 3. 解压下载的文件: sudo tar -xvf kafka_2.12-2.8.0.tgz -C /opt/module 阅读全文
posted @ 2021-08-10 21:26 船长博客 阅读(793) 评论(0) 推荐(1) 编辑
摘要: seq(as.Date("2020-02-01"), length=12, by="1 month") - 1 [1] "2020-01-31" "2020-02-29" "2020-03-31" "2020-04-30" "2020-05-31" "2020-06-30" "2020-07-31" 阅读全文
posted @ 2021-07-07 19:32 船长博客 阅读(118) 评论(0) 推荐(0) 编辑
摘要: R for循环示例 for(i in 1:10){ print(i) } for(i in seq(10)){ print(i) } a <- list(1,2,4) for(i in a){ print(i) } for (year in c(2010,2011)){ print(paste("T 阅读全文
posted @ 2021-07-01 20:17 船长博客 阅读(535) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页
永远相信美好的事情即将发生!