相关文章
【Ubuntu22使用过程问题记录】
Ubuntu22.04 使用过程问题解决方案
1 系统基本设置
1.1 输入法
增加中文输入
1、Settings -> Region & Language -> Manage Installed Languages -> 选中chinese,然后apply;
2、Settings -> Keyboard -> Input Sources -> 点号…
建站知识
2024/12/16 21:24:14
在Ubuntu上建立博客网站,利用Cpolar+Inis快速实现专业写作
文章目录 前言1. Inis博客网站搭建1.1. Inis博客网站下载和安装1.2 Inis博客网站测试1.3 cpolar的安装和注册 2. 本地网页发布2.1 Cpolar临时数据隧道2.2 Cpolar稳定隧道(云端设置)2.3.Cpolar稳定隧道(本地设置) 3. 公网访问测试总…
建站知识
2024/12/23 22:09:02
博客之QQ登录功能(一)
流程图 上图spring social 封装了1-8步需要的工作
1、新建包和书写配置文件 public class QQProperties {//App唯一标 识private String appId "100550231";private String appSecret "69b6ab57b22f3c2fe6a6149274e3295e";//QQ供应商private String…
建站知识
2024/10/23 11:55:45
android 车载widget小部件部分详细源码实战开发-千里马车载车机framework开发实战课程
官网参考链接:https://developer.android.google.cn/develop/ui/views/appwidgets/overview
1、什么是小部件
App widgets are miniature application views that can be embedded in other applications (such as the home screen) and receive periodic updates…
建站知识
2024/12/22 8:44:09
Java——》synchronized锁粗化锁消除
推荐链接: 总结——》【Java】 总结——》【Mysql】 总结——》【Redis】 总结——》【Kafka】 总结——》【Spring】 总结——》【SpringBoot】 总结——》【MyBatis、MyBatis-Plus】 总结——》【Linux】 总结——》【MongoD…
建站知识
2024/12/23 16:50:46
Go语言使用AES加密解密
Go语言提供了标准库中的crypto/aes包来支持AES加密和解密。下面是使用AES-128-CBC模式加密和解密的示例代码:
package mainimport ("crypto/aes""crypto/cipher""encoding/base64""fmt"
)func main() {key : []byte("…
建站知识
2024/12/9 19:20:49