摘要:
通过设置个人的token来登陆github。 使用token登陆github也是相对安全的一种方式。 创建token方法 Log in to github.com on the web. Settings → Developer settings → Personal access tokens. 阅读全文
摘要:
简单实现 自定义链表 实现链表:①定义节点 ②定义链表 节点由数据域data和指针域next构成。数据域data存放本节点所含有的数据,指针域next指向下一个节点。 //定义节点 public class Node { int data; Node next=null; public Node(i 阅读全文
摘要:
问题描述 开机后,通过ui界面打开蓝牙,无法连接设备(蓝牙键盘) 原因 蓝牙设备需要删除,重新连接,并添加信任,以后打开蓝牙自动连接 解决 使用bluetoothctl工具 tips: 操作过程出现: Failed to set power on: org.bluez.Error.Blocked 这 阅读全文