上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 50 下一页
摘要: # 安装 ```bash # 安装软件。也可以同时安装多个包,只需以空格分隔包名即可。 pacman -S 软件名 # 安装软件,但不重新安装已经是最新的软件。 pacman -S --needed 软件名1 软件名2 # 安装软件前,先从远程仓库下载软件包数据库(数据库即所有软件列表)。 pacm 阅读全文
posted @ 2023-08-22 20:03 星小梦 阅读(1672) 评论(0) 推荐(0)
摘要: ![](https://img2023.cnblogs.com/blog/1063429/202308/1063429-20230818114032479-1250644401.png) > 所谓指针定义,可以认为一个指针位置有2个结构,第一个结构就是指针所指向的地址,第二个结构就是地址里的数据。 阅读全文
posted @ 2023-08-18 11:47 星小梦 阅读(79) 评论(0) 推荐(0)
摘要: # 说明 1. hexString是字节序是小端的(读值得时候会转为大端来读取值) 2. valueByteSizes是个根据要求顺序读取值得字节大小的数组。 > 例如:new byte[]{4,2,1},程序会顺序读取hexString字符串: > 1. 第一个值取4个字节并读取其值, > 2. 阅读全文
posted @ 2023-08-10 19:07 星小梦 阅读(1178) 评论(0) 推荐(0)
摘要: # 解决方法: 1. https://stackoverflow.com/questions/69343038/cant-import-the-named-export-xxxx-from-non-ecmascript-module-only-default-expo 2. https://gith 阅读全文
posted @ 2023-07-05 17:07 星小梦 阅读(2673) 评论(0) 推荐(0)
摘要: 建个工具类,以进行不同地方的调用复用。 调用方式,options参数的使用看自个的需求。 html调用方式 ```html 复制我 ``` vue组件调用方式 ```vue 复制我 ``` 工具类 ```js import ClipboardJS from 'clipboard' import { 阅读全文
posted @ 2023-06-16 17:03 星小梦 阅读(773) 评论(0) 推荐(0)
摘要: # 环境 SpringSecurity 6.1 版本 SpringBoot 3.1 版本 # 常见问题 ## 1. oauth2客户端请求oauth授权端,响应401 检查`spring.security.oauth2.client.registration.login-client.client- 阅读全文
posted @ 2023-06-14 18:06 星小梦 阅读(815) 评论(0) 推荐(0)
摘要: > MySQL社区版数据库8.0版本 [添加账号、分配权限、删除账号](https://dev.mysql.com/doc/refman/8.0/en/creating-accounts.html) [MySQL安全连接失败问题排查](https://dev.mysql.com/doc/refman 阅读全文
posted @ 2023-06-04 14:07 星小梦 阅读(17) 评论(0) 推荐(0)
摘要: https://dev.mysql.com/doc/refman/8.0/en/resetting-permissions.html 阅读全文
posted @ 2023-06-04 12:14 星小梦 阅读(16) 评论(0) 推荐(0)
摘要: # 主菜 ![](https://img2023.cnblogs.com/blog/1063429/202306/1063429-20230602150941307-1759003535.png) [括号外尾随Lambda](https://kotlinlang.org/docs/functions 阅读全文
posted @ 2023-06-02 15:21 星小梦 阅读(31) 评论(0) 推荐(0)
摘要: https://www.redhat.com/zh/blog/introducing-red-hat-universal-base-image https://hub.docker.com/r/redhat/ubi8-init https://hub.docker.com/r/redhat/ubi8 阅读全文
posted @ 2023-06-01 11:26 星小梦 阅读(78) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 50 下一页