本文分类:news发布日期:2025/1/20 19:47:39
相关文章
TEA 加密的 Java 实现
import java.nio.ByteBuffer;
import java.nio.ByteOrder;public class TeaUtils {private static final int DELTA 0x9E3779B9;private static final int ROUND 32;private static final String KEY "password";/*** 加密字符串,使用 TEA 加密算法*/p…
建站知识
2025/1/13 19:48:08
11.3 Go 标准库的使用技巧
💝💝💝欢迎莅临我的博客,很高兴能够在这里和您见面!希望您在这里可以感受到一份轻松愉快的氛围,不仅可以获得有趣的内容和知识,也可以畅所欲言、分享您的想法和见解。 推荐:「stormsha的主页」…
建站知识
2025/1/18 11:19:04
Ubuntu server 24 (Linux) 安装部署samba服务器 共享文件目录 windows访问
1 安装
sudo apt update
sudo apt-get install samba
#启动服务
sudo systemctl restart smbd.service
sudo systemctl enable smbd.service
#查看服务 2 创建用户
#创建系统用户
sudo useradd test2
#配置用户密码
sudo smbpasswd -a test2
# smbpasswd:
-a添加用户
…
建站知识
2025/1/20 3:03:25
C语言 | Leetcode C语言题解之第151题反转字符串中的单词
题目: 题解:
void myResverse(char* s,int start,int end){while(start<end){char temp s[start];s[start] s[end];s[end] temp;start;end--;}
}
char* reverseWords(char* s) {int start 0;int end strlen(s)-1;myResverse(s,start,end);if(s[…
建站知识
2025/1/16 23:25:58
旅游网站(携程旅行网页学习 vue3+element)
旅游网站
1. 创建项目
在你要创建项目的路径下打开vscode,新建终端,然后输入vue ui,进入Vue项目管理器。选择“创建”,确定项目路径,并点击“在此创建新项目”。在项目文件夹中输入项目名称,点击下一步;选…
建站知识
2025/1/17 13:31:51
【技术】MySQL 8.4 免安装版配置
MySQL 8.4 免安装版配置 官网下载压缩包解压文件创建配置文件初始化数据库安装MySQL服务链接数据库修改密码 官网下载压缩包
从MySQL官网下载压缩包,官网:https://www.mysql.com/
头部菜单点击【DOWNLOADS】,跳转到下载页面。在页面底部点击…
建站知识
2025/1/15 16:54:28
《Brave New Words 》9.1 AI 世界中的就业
Part IX: Work and What Comes Next 第九部分:工作及其未来发展 The one who plants trees, knowing that he will never sit in their shade, has at least started to understand the meaning of life. —Rabindranath Tagore 种树的人,虽然知道他永远…
建站知识
2025/1/14 2:24:49