上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 64 下一页
摘要: 执行docker info 没有权限 主要是因为一般使用过sudu root 用户操作 添加属组 sudo chown root:docker /var/run/docker.sock sudo groupadd docker sudo gpasswd -a $USER docker sudo ne 阅读全文
posted @ 2024-02-01 09:42 vx_guanchaoguo0 阅读(136) 评论(0) 推荐(0) 编辑
摘要: unix soket 默认 路径 unix:///var/run/docker.sock 如果不存在也可以使用 unix://~/.docker/run/docker.sock tcp soket 该方式必须 开始 tcp 2375端口 dockerdamon.json mac无效 { "hosts 阅读全文
posted @ 2024-01-31 11:51 vx_guanchaoguo0 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 默认已经安装ssh 查看状态 sudo systemsetup -getremotelogin 状态显示 Remote Login: Off Remote Login: On 开启服务 sudo systemsetup -setremotelogin on 关闭服务 sudo systemsetup 阅读全文
posted @ 2024-01-31 10:01 vx_guanchaoguo0 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 实现效果 首先实现横向 取模 也叫求余数 0~2 = 0, 3~5 = 1 ....... 可以确定行的交替 int colIndex = index % 3; 首先实现纵向 整除 0~2 = 0, 3~5 = 1 ....... 可以确定行的交替 int rowIndex = index ~/ 3 阅读全文
posted @ 2024-01-30 11:08 vx_guanchaoguo0 阅读(2) 评论(0) 推荐(0) 编辑
摘要: base64 base64 格式可读性强强 方便传输和查看 例如git 免密登录都这种格式 openssl base64 -in cert.cer -out cert.base64 二进制 DER Distinguished Encoding Rules 通常用于表示 X.509 格式的证书 二进制 阅读全文
posted @ 2024-01-29 14:41 vx_guanchaoguo0 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 系统自带的 tabbar 焦点 在 TV端无法很好的使用 使用card_swiper 组件作为tabview import 'package:card_swiper/card_swiper.dart'; import 'package:flutter/material.dart'; void mai 阅读全文
posted @ 2024-01-26 16:36 vx_guanchaoguo0 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 正确路劲 /Library/Java/JavaVirtualMachines/jdk1.8.0_271.jdk/Contents/Home/jre/lib/server/libjvm.dylib ``` ### 软连接 ``` sudo ln -s /Library/Java/JavaVirtual 阅读全文
posted @ 2024-01-26 10:51 vx_guanchaoguo0 阅读(38) 评论(0) 推荐(1) 编辑
摘要: cursor.execute(sql) rows = cursor.fetchall() result_list = [] columns = [desc[0] for desc in cursor.description] # get column names for row in rows: r 阅读全文
posted @ 2024-01-23 16:38 vx_guanchaoguo0 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/2697130/202401/2697130-20240119142816393-899360148.png) 阅读全文
posted @ 2024-01-19 14:28 vx_guanchaoguo0 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 获取证书 安装证书 sudo /Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/bin/keytool -import -alias carpooling -keystore "/Library/Java/Jav 阅读全文
posted @ 2024-01-16 17:24 vx_guanchaoguo0 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 64 下一页