上一页 1 2 3 4 5 6 ··· 27 下一页
摘要: 达人教程之 OpenWrt 开发人员入门指南 https://iyzm.net/openwrt/624.html OpenWrt 作为一款基于 Linux 的嵌入式系统,很多功能特性其实与 Linux 一样,软件开发的难点在于解决交叉编译时出现的问题,为了新入门的开发人员更快的上手,特在此汇总一些最 阅读全文
posted @ 2023-02-02 10:06 船长博客 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 利用VLC实现组播流服务器 https://blog.csdn.net/c_base_jin/article/details/103225138 VLC组播与接收 https://blog.csdn.net/wangjiannuaa/article/details/6461316 使用 iperf测 阅读全文
posted @ 2022-12-24 19:06 船长博客 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个python文件,确认能够执行,放入任意一个目录(如C:\CustomLibrary\helloworld.py)。 # -*- coding:utf-8 -*- def hi(name): u'''接收一个名字,并问候.例如 | hi | xiaoming | ''' print('H 阅读全文
posted @ 2022-12-20 13:40 船长博客 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 通过修改已存在的profile的ssid和密码来连接新的wifi。 1. 查看当前存在的profile(本机连接过的wifi会生成一个profile) netsh wlan show profiles User profiles All User Profile : Mohito All User 阅读全文
posted @ 2022-12-18 17:28 船长博客 阅读(2118) 评论(0) 推荐(0) 编辑
摘要: OperatingSystem是内置库,可以直接导入使用,不需要单独安装。 *** Settings *** Library OperatingSystem *** Test Cases *** exec_bat ${ret} OperatingSystem.Run echo "HelloWorld 阅读全文
posted @ 2022-12-17 20:57 船长博客 阅读(319) 评论(0) 推荐(0) 编辑
摘要: DIV内嵌CSS: <div style="width:98%;margin:auto;"> <div style="width:30%;height:300px;background-color:rgb(145, 176, 145);float:left;">111</div> <div styl 阅读全文
posted @ 2022-12-17 14:30 船长博客 阅读(527) 评论(0) 推荐(0) 编辑
摘要: Captain Home 首页 博客 简历 关于 谷歌 Youtube 和B站一样有一些教学视频,Python,数学等等 FaceBook Twitter div并排布局(div居中,块级元素:为其自身设置margin:auto样式) 111 222 333 表格布局 Commands What d 阅读全文
posted @ 2022-12-17 11:42 船长博客 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 一、利用strtok()函数进行分割函数头文件#include<string.h>函数原型:char *strtok(char s[], const char *delim); s[]是原字符串,delim为分隔符函数返回被分解的第一个子字符串,若无可检索的字符串,则返回空指针特性:1)strtok 阅读全文
posted @ 2022-12-16 10:47 船长博客 阅读(544) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { char* str = "HELLO"; char c = str[0]; printf("str[0]:%c\n", c); char d = "Hello"[1]; printf("\"Hello\"[1]:%c\n", d); } 阅读全文
posted @ 2022-12-16 09:57 船长博客 阅读(709) 评论(0) 推荐(0) 编辑
摘要: 文化苦旅 - 余秋雨 平凡的世界 莎士比亚 乌合之众 未来简史 阅读全文
posted @ 2022-12-15 10:25 船长博客 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1.下载Nodejs并安装,默认路径即可。(用最新的版本没成功,按照一篇博客里提示的版本nodejs v10.23.0,成功创建gitbook) https://nodejs.org/download/release/v10.23.0/node-v10.23.0-x64.msi 2.命令行查看一下版 阅读全文
posted @ 2022-12-08 17:19 船长博客 阅读(548) 评论(0) 推荐(2) 编辑
摘要: 嵌入式软件开发-书籍推荐,道哥总结的很详细:https://zhuanlan.zhihu.com/p/459609733 致敬道哥,提供PDF下载:https://github.com/sewain5780/ShareBooks 我购买过的两本书:《深入理解LINUX内核》《构建嵌入式Linux系统 阅读全文
posted @ 2022-12-03 14:26 船长博客 阅读(885) 评论(0) 推荐(1) 编辑
摘要: echo json.txt | jq '.' 输出整个json字符串 echo json.txt | jq '.[0]' 取出数组中第一个object echo json.txt | jq '.[0].name' 取出数组第一个object中键为name的值 root@JDBox_LuBan:~# 阅读全文
posted @ 2022-11-28 14:57 船长博客 阅读(3715) 评论(0) 推荐(0) 编辑
摘要: 一、安装插件Environment Injector 二、添加shell构建步骤,在这里对变量进行赋值,文件名字自定义就行 echo releaseVersion='1.2.2' > env.properties 三、添加注入环境变量构建步骤,属性文件路径输入步骤二自定义的文件名,内容为空。 四、在 阅读全文
posted @ 2022-11-24 14:59 船长博客 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 我这里配置的是任意源IP:端口号都允许,根据自己的需要进行配置。 配置完入站、出站规则如果通了就不需要往下看。 使用iptables-save命令查看有这么一条链: -A IN_public_allow -p tcp -m tcp --dport 22 -m conntrack --ctstate 阅读全文
posted @ 2022-11-15 09:20 船长博客 阅读(421) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 27 下一页
永远相信美好的事情即将发生!