从零开始:使用三台服务器搭建最简 Kubernetes 集群并集成 Gitea + Harbor 示例
对比主流云原生KubeSphere、KubeVela、Rancher、Sealos和Rainbond五者之间的区别

对比主流云原生KubeSphere、KubeVela、Rancher、Sealos和Rainbond五者之间的区别

KubeSphere、KubeVela、Rancher、Sealos和Rainbond五者之间的区别:

这个表格简要概述了KubeSphere、KubeVela、Rancher、Sealos和Rainbond五者之间的主要区别。每个项目都有其独特的特点和优势,适用于不同的场景和用户群体。在选择时,建议根据实际需求、技术栈和团队经验来权衡各个选项。

Read more
macOS Ghostty Terminal Ddefault binding keyboard shortcut key list(Ghostty.org Ghostty 终端默认快捷键列表)

macOS Ghostty Terminal Ddefault binding keyboard shortcut key list(Ghostty.org Ghostty 终端默认快捷键列表)

macOS Ghostty 终端默认快捷键列表

  • 基本常用快捷键
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
command + t:                新建标签页
command + n: 新建窗口
command + w: 关闭当前终端界面(标签页或分割窗口)
command + shift + w: 关闭当前窗口
command + shift + enter: 切换分割窗口缩放
command + alt + shift + w: 关闭所有窗口
command + page_up: 向上滚动页面
command + page_down: 向下滚动页面
command + home: 滚动到顶部
command + end: 滚动到底部
command + q: 退出 Ghostty
command + enter: 切换全屏模式
command + ctrl + f: 切换全屏模式
command + c: 复制到剪贴板
command + v: 从剪贴板粘贴
command + a: 全选
command + k: 清空屏幕
command + comma: 打开配置文件
command + alt + i: 切换检查器
Read more
人是怎样废掉的?

人是怎样废掉的?

  • 一、懒
  • 二、谗
  • 三、拖延
  • 四、爱熬夜!:继续睡觉做梦;
  • 五、自控力差
  • 六、整天精神内耗
  • 七、停止思考不学习
  • 八、假装努力,持续幻想
  • 九、言语上的巨人,行动上的矮子
Read more
Rocky Linux系统初始化常用基础命令和工具包的便捷安装脚本(ljq@GitHub)

Rocky Linux系统初始化常用基础命令和工具包的便捷安装脚本(ljq@GitHub)

Description: A script to check system version and installed tools on Rocky Linux.(脚本描述:一个用于检查系统版本和Rocky Linux系统初始化工具的便捷脚本,安装系统常用命令和工具包。)

Author: Jacoliu (ljq@GitHub)
Usage: ./rocky-linux-init.sh
Version: 1.0
Date: 2023-07-04
License: MIT
Page Site: https://github.com/ljq

release-version/rocky-linux/rocky-linux-init.sh

Rocky Linux 发行版本默认检查安装基础工具包含:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Define tools list in lowercase
tools=(
"vim" # 0
"ping" # 1
"net-tools" # 2
"firewalld" # 3
"tar" # 4
"gzip" # 5
"bzip2" # 6
"wget" # 7
"curl" # 8
"python 3" # 9
"git" # 10
"ncurses" # 11
)
Read more